Tagged Questions

DWARF is a file format for representing debugging information.

learn more… | top users | synonyms

7
votes
2answers
517 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). ...
7
votes
6answers
3k views

Python libdwarf module

I'm working on a utility which needs to resolve hex addresses to a symbolic function name and source code line number within a binary. The utility will run on Linux on x86, though the binaries it ...
4
votes
5answers
5k views

Library to read ELF file DWARF debug information

Any recommendations for a good cross-platform library for reading ELF file debug information in DWARF format? I'd like to read the DWARF debug info in a Python program.
4
votes
2answers
492 views

in Java: programmatically determining addresses of C/C++ variables given a COFF/ELF/DWARF executable

This is a situation I run into now and then: For an embedded system which does not use virtual addressing, I have an executable file that was compiled from C or C++ code with debugging information ...
3
votes
1answer
149 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 ...
3
votes
1answer
172 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
1answer
145 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
1answer
108 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 ...
2
votes
2answers
270 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 ...
2
votes
1answer
290 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 ...
2
votes
3answers
492 views

Reading DWARF file in Mac OSX

Can anybody help me writing a program which can read DWARF files and gives me the file name, line number and function name details. Thanks in advance -A
1
vote
0answers
72 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 ...
1
vote
1answer
144 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 ...
1
vote
3answers
301 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 ...
1
vote
3answers
148 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 ...
1
vote
2answers
389 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 ...
1
vote
1answer
191 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 ...
0
votes
0answers
81 views

Compile libelf and libdw on W32 using Eclipse CDT

I've wrote a small programm under linux(in c++) that is able to compute the dwarf debugging information of elf files using libdw1. Libdw is part of elfutils. Now I want to transfer my application to a ...
0
votes
1answer
101 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 ...
0
votes
1answer
229 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 ...
0
votes
1answer
576 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 ...