DWARF is a file format for representing debugging information.
0
votes
1answer
26 views
Check DWARF version of compilation unit
all,
is there a tool to check DWARF version of file? Something like this:
$ dwarf_tool binary_name
4
0
votes
1answer
40 views
Type-Safe Linking using DWARF
Why doesn't GCC together with GNU ld support type-checked linking when the DWARF-format contains all the type-information we need? We waste a lot of time on our company trying to make Ada and C ...
0
votes
1answer
57 views
debugging info for Mac System Python - how to get line numbers
When I have a some crash report including some MacOSX library (in this case, I'm mostly interested in Python), how can I get more info about it? The library does not contain the debugging information, ...
2
votes
1answer
209 views
Getting started with OS X Assembly and the Mach-O format
I am interested in programming in x86-64 assembly on the Mac OS X platform, if for no other reason than I love the efficiency of writing assembly (that is, program efficiency, not time efficiency). I ...
0
votes
1answer
139 views
How do I convert an elf file from dwarf to stabs format?
Have a ELF debugging file.
The file uses the DWARF format.
How can I convert it into the stabs format?
Are there any tools or methods that may be helpful to do this?
Thank You.
1
vote
1answer
96 views
Valgrind new tool, read dwarf2 or dwarf3 info
I am developing a new tool of valgrind in which at some point I want to read the dwarf debug info in order to get the starting address and the size of a global array.
I know that this info is ...
0
votes
1answer
839 views
Objdump/GCC - BFD: Dwarf Error: mangled line number section
While trying to generate assembly code(intermixed with source code) using objdump,
gcc -g -c test.c ;
objdump -S -M intel test.o > out.asm
I get the following error.
BFD: Dwarf Error: mangled ...
1
vote
2answers
190 views
dtrace: failed to compile script Preprocessor not found
I'm trying to test this script from oracle to get active NFS clients on Ubuntu 10.04, but I can' get it to run.
To achieve that, I first installed dtrace following these instructions. This is what ...
0
votes
2answers
100 views
Am I getting the wrong ebp using instrumentation routines (pin), or am I missing something here?
So here's the deal. I am working on a debugger using a pin tool and the dwarf info from the process that I am attaching to. Pin is a framework that lets you create instrumentation tools for processes ...
2
votes
1answer
74 views
In the DWARF info, what do they exactly mean by the DW_OP registers?
I am trying to parse the DWARF info and then using that information get the local variables from a program using a pin tool. It is kind of like using pin as GDB on steroids. However, I am having ...
1
vote
1answer
107 views
Getting calling conventions from DWARF info
I am trying to get information about calling conventions from DWARF info. More specific, I want to get which registers / stack locations are used to pass arguments to functions. My problem is that I ...
1
vote
1answer
121 views
Any experienced DWARF parsers/users? Need to get the attribute type offset of a DIE
So I'm trying to parse the DWARF file of a program using libdwarf (I have to stick with C for this purposes), I am trying to specifically get the DW_AT_type tag from each DIE. Most of them (I am not ...
0
votes
1answer
183 views
Compile libdwarf with VC++ Express 2010 failed to run Demo applications
I was able to compile libdwarf and libelf sucessfully with some warnings. I also successfully compiled the simplereader demo application but, failed to process the elf file. It always fail at:
void* ...
0
votes
1answer
168 views
Using pahole (from dwarves package) on Windows
Is there a way to easily configure/install the dwarves Linux package/tools on Windows systems? I need to use the pahole command in an automation script that will be run on Windows systems.
I'm not ...
2
votes
1answer
664 views
Dwarf Error: wrong version in compilation unit header (is 4, should be 2)
A shared object was built on RedHat Linux and while all the code was compiled with debug, the debugger (gdb) refused to load the symbols and issued an error as in:
...
GNU gdb Fedora (6.8-37.el5)
...
0
votes
1answer
187 views
Change sourcefiles listed in elf debug info
Basically I want to be able to change the path to the source file in debug dwarf section in a elf binary.
3
votes
1answer
231 views
Figure out pattern in order to find variables in compiled program
I need to extract the global variables from a compiled c program. What am I doing right now is using the Linux readelf command in order to get that information. In other words when I do:
...
0
votes
0answers
256 views
No debug information generated using mingw (MS win platform)
guru.
I'm using profiler "Very Sleepy" to analysis my executable (pgen.exe) and it said "WINE: failed to load DWARF debug info for pgen".
Referring to mingw gcc compilation and gdb debugging, I use ...
0
votes
1answer
263 views
readelf -s does not output full variable names
I need to get the global symbols from a compiled c program file. What I use is the linux command readelf -s filePath when I use that command this is what I get:
I draw a blue rectangle to show ...
0
votes
2answers
825 views
/usr/bin/ld: Dwarf Error
I'm trying to compile a complex application with nvcc, and a need to change the compiler from mpic++ to g++, since that I'm having this error:
/usr/bin/ld: Dwarf Error: found dwarf version '3', this ...
0
votes
1answer
154 views
Get location of symbols in a.out file
This question does a great job explaining how to get the symbols (variables, functions, etc) of an elf file.
Now that I have the symbols I will like to know on what location (module) they are.
For ...
1
vote
1answer
359 views
objdump not found on cygwin
I will like to use the objdump command on cygwin. I get the exception:
-bash: objdump: command not found
why cygwin is not able to find objdump?
EDIT
---- I am able to see binutils at ...
0
votes
1answer
283 views
objdump in windows in order to see debug info
I need to get the addresses and member names of the variables in a .out file. I basically compiled a c program in linux using gcc and I will like to see the info of the file. There are a lot of ...
5
votes
1answer
927 views
Extract global variables from a.out file
Edit (updated question)
I have a simple C program:
// it is not important to know what the code does you may skip the code
main.c
#include <bsp.h>
unsigned int AppCtr;
unsigned ...
0
votes
1answer
153 views
invalid DWARF generated by the compiler
warning: invalid DWARF generated by the compiler: DIE 0x000629bb has
multiple AT_decl_line attributes in
...
1
vote
0answers
120 views
ELF Parsing : Accessing a DIE Directly using pyelftools
I need a method for accessing DIE's directly using their offset. So far, I have found that there is a method for the Computation Unit (CU) object in which you can access a DIE from its offset.
...
1
vote
0answers
87 views
retrieving variable type from debug info
Consider :
int x[] = {1, 2, 3};
int main(){
return 0;
}
If we do an objdump of the data section, we will get the variable x with the starting address and the size as (4*3) bytes. Is there any ...
4
votes
3answers
2k views
atos and dwarfdump won't symbolicate my address
I received a crash report via AirBrake.io that isn't symbolicated. Since the crash report is not in exactly the same format as an Apple crashlog I can't just drop it on XCode as usual, so I took the ...
3
votes
4answers
353 views
Need a C structure parser
Lets say I have a file system.h in which I have the following structures
typedef struct Foo {
int count;
uint32 world;
Temp id;
} Foo;
typedef struct Temp {
uint64 id;
} Temp;
Foo bar;
...
2
votes
1answer
530 views
How to get mach-o uuid of a running process?
to get UUID on mac i can use
dwarfdump -u path/to/compile/executable
also i can get UUID with simple crash
in 'Binary Images' section
Is the way to get UUID without crash on ios device?
0
votes
1answer
131 views
How do I emulate objdump --dwarf=decodedline in .bundle files?
I've been successfully using objdump --dwarf=decodedline to find the source location of each offset in a .so file on Linux.
Unfortunately on Mac-OS X. It seems that .bundle files (used as shared ...
0
votes
3answers
358 views
where/how does Apples GCC store DWARF inside an executable
Where/how does Apples GCC store DWARF inside an executable?
I compiled a binary via gcc -gdwarf-2 (Apples GCC). However, neither objdump -g nor objdump -h does show me any debug information.
Also ...
0
votes
1answer
188 views
use and meaning of DW_AT_location
I wanted to know the use of the attribute DW_AT_location for debugging. It is one of the attributes specified by dwarf for debugging, but could not really understand what exactly it represents. And ...
1
vote
0answers
254 views
Address of element within a structure from elf executable
Is it possible to obtain the address of an element within a structure from an ELF executable not compile for debug?
Example, given the following code:
typedef struct {
int tokyo;
int paris;
...
5
votes
1answer
2k views
GAS: Explanation of .cfi_def_cfa_offset
I would like an explanation for the values used with the .cfi_def_cfa_offset directives in assembly generated by GCC. I know vaguely that the .cfi directives are involved in call frames and stack ...
2
votes
1answer
438 views
LLVM exceptions; how to unwind
at the moment, i'm inserting variables into the beginning of block scope using CreateEntryBlockAlloca:
template <typename VariableType>
static inline llvm::AllocaInst ...
2
votes
0answers
175 views
Change ELF Endian Data Format
I am trying to edit some software to work with both Big and Little Endian ELF/DWARF files. In order to this, I think it would be a good idea to have both a Little and Big ELF file of the same data. I ...
2
votes
1answer
292 views
representation of C++ by clang
I would like to know which classes clang uses to represent C++(not C) source information
I need the internal representation ,that can be useful in the DWARF(http://en.wikipedia.org/wiki/DWARF) .For ...
3
votes
1answer
829 views
dSYM files for release builds
Do .dSYM resources contain any other information except DWARF information? I have created a release build of an app. Now if I run dwarfdump on it, it says the executable has no DWARF info (says it's ...
2
votes
3answers
2k views
Missing line numbers from debug symbols for library in whole program, but not on its own
I'm seeing an odd issue when trying to use gdb to debug a test program for a package built with libtool. If I run libtool --mode=execute gdb .libs/libfoo.so and ask it to list the source of some ...
2
votes
1answer
309 views
map memory addresses to line numbers using DWARF information
I have an application that traces program execution through memory. I tried to use readelf --debug-dump=decodedline to get memory address / line # information, but the memory addresses I see don't ...
1
vote
1answer
296 views
stack unwinding in dwarf2
I don't understand that how the stack unwinding in dwarf2 ensures reliable recovery of arguments in some very basic ABI(Application Binary Interface) scenarios. Consider a ABI, which says that the ...
1
vote
3answers
311 views
Getting value of stack pointer while stack unwinding with dwarf2
In DWARF2 debugging format, stack unwinding is supported with the help of CFI(Call Frame Information) present in .debug_frame section. This is precisely a table that keeps a rule for every register to ...
7
votes
2answers
846 views
How to get the function name of a C function pointer
I have the following problem: when I get a backtrace in C using the backtrace(3) function the symbols returned the name of the functions is easily determinable with the dwarf library and dladdr(3).
...
1
vote
2answers
783 views
Trying to compile libdwarf, gives undefined errors
I'm trying to build the libdwarf api under windows but I'm receiving the following compile errors.
in dwarf_elf_access.c
undefined type Elf32_Ehdr,
undefined symbol EI_CLASS
undefined symbol ...
2
votes
2answers
532 views
Suggestions on how to write a debug format conversion tool
I'm looking to write a tool that aims to convert debug symbols of one format to another format that's compatible for use under GDB. This seems like a tedious and potentially complex project so I'm not ...
0
votes
1answer
654 views
gdb\bfd: get child variable address or size or offset
I'm using gdb and libbfd to retrieve global variables information from an elf file and show it.
I can get the following data from libbfd: Global Variable name, address and size.
I retrieve the type of ...
2
votes
1answer
382 views
implementing step over, dwarf
Im working on a source level debugger. The debug info available in elf
format. How could be 'step over' implemented?
The problem is at 'Point1', anyway I can wait for the
next source line (reading it ...
2
votes
1answer
392 views
Using ptrace to generate a stack dump
I am compiling C++ on *nix and I would like to generate a stack dump
a) at an arbitrary point in the program,
b) during any signal, particularly during SIGSEGV.
Google tells me that ptrace is ...
0
votes
1answer
743 views
Info.plist file processing modifies executable
I've been working on an iPhone application had an issue where dSYM file generation was seg faulting on me.
GenerateDSYMFile /Users/kaom/Projects/build/Release-iphoneos/NodeAppGen.app.dSYM ...