Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More dead code removal (using -Wunreachable-code) | David Blaikie | 2012-01-20 | 1 | -2/+0 |
| | | | | llvm-svn: 148578 | ||||
* | Reduce the offsets in DwarfDebugInfoEntry to 32 bit, they're printed with %x and | Benjamin Kramer | 2011-11-05 | 1 | -1/+1 |
| | | | | | | | | that breaks on big-endian machines. I have to clean up the 32/64 bit confusion in libDebugInfo some day. llvm-svn: 143812 | ||||
* | DWARF: wire up .debug_str dumping. | Benjamin Kramer | 2011-09-15 | 1 | -1/+1 |
| | | | | llvm-svn: 139799 | ||||
* | DWARF: Make DIE printing more bulletproof. | Benjamin Kramer | 2011-09-15 | 1 | -5/+18 |
| | | | | llvm-svn: 139786 | ||||
* | DWARF: Generate the address lookup table from the DIE tree if .debug_aranges ↵ | Benjamin Kramer | 2011-09-14 | 1 | -1/+25 |
| | | | | | | | | is not available. Ported from LLDB. llvm-svn: 139732 | ||||
* | DWARF: Improve indentation of DIE dumping so it's easier to see the structure. | Benjamin Kramer | 2011-09-14 | 1 | -8/+8 |
| | | | | llvm-svn: 139705 | ||||
* | DebugInfo: Don't print DIEs multiple times. | Benjamin Kramer | 2011-09-14 | 1 | -3/+1 |
| | | | | llvm-svn: 139671 | ||||
* | Style & indentation tweaks. | Benjamin Kramer | 2011-09-13 | 1 | -2/+1 |
| | | | | llvm-svn: 139646 | ||||
* | Sketch out a DWARF parser. | Benjamin Kramer | 2011-09-13 | 1 | -0/+410 |
This introduces a new library to LLVM: libDebugInfo. It will provide debug information parsing to LLVM. Much of the design and some of the code is taken from the LLDB project. It also contains an llvm-dwarfdump tool that can dump the abbrevs and DIEs from an object file. It can be used to write tests for DWARF input and output easily. llvm-svn: 139627 |