aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-17Remove unused includes and out of date comment. NFC.Rafael Espindola1-1/+0
2014-11-14Reapply "[dwarfdump] Add support for dumping accelerator tables."Frederic Riss1-0/+4
2014-11-13Revert "[dwarfdump] Add support for dumping accelerator tables."Frederic Riss1-4/+0
2014-11-12[dwarfdump] Add support for dumping accelerator tables.Frederic Riss1-0/+4
2014-08-30Fix some cases where StringRef was being passed by const reference. Remove co...Craig Topper1-1/+1
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-3/+4
2014-08-01Remove some calls to std::move.Rafael Espindola1-3/+3
2014-07-31Use a reference instead of a pointer.Rafael Espindola1-1/+1
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola1-2/+3
2014-07-06Update the MemoryBuffer API to use ErrorOr.Rafael Espindola1-4/+5
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola1-1/+1
2014-06-13Remove 'using std::error_code' from tools.Rafael Espindola1-3/+2
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-06-12Remove system_error.h.Rafael Espindola1-1/+1
2014-05-19Kill symbolization functionality in llvm-dwarfdump. We have llvm-symbolizer f...Alexey Samsonov1-48/+4
2014-05-15[DWARF parser] Use enums instead of bitfields in DILineInfoSpecifier.Alexey Samsonov1-6/+6
2014-04-18[DWARF parser] Turn DILineInfo into a struct.Alexey Samsonov1-4/+2
2014-03-25DebugInfo: Support debug_loc under fissionDavid Blaikie1-0/+1
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-4/+3
2014-03-05[C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles1-1/+1
2014-02-24llvm-dwarfdump: Support for debug_line.dwo section for file names for type un...David Blaikie1-0/+1
2014-01-22Change createObjectFile to return an ErrorOr.Rafael Espindola1-3/+4
2014-01-09llvm-dwarfdump: type unit dwo supportDavid Blaikie1-0/+1
2013-11-19llvm-dwarfdump: support for emitting only the debug_types section using -debu...David Blaikie1-0/+1
2013-09-25Add gnu pubsections as options to llvm-dwarfdump.Eric Christopher1-0/+2
2013-09-25Dump the normal dwarf pubtypes section as well.Eric Christopher1-0/+1
2013-06-19llvm-dwarfdump: Add support for dumping the .debug_loc sectionDavid Blaikie1-0/+1
2013-02-12Add support for the pubnames section to llvm-dwarfdump.Krzysztof Parzyszek1-0/+1
2013-02-05Initial support for DWARF CFI parsing and dumping in LLVMEli Bendersky1-0/+1
2013-01-25When encountering an unknown file format, ObjectFile::createObjectFile shouldEli Bendersky1-0/+5
2013-01-25Add command-line flags for DWARF dumping.Eli Bendersky1-1/+18
2013-01-25Rename variable to be more comprehensible and follow naming conventionEli Bendersky1-4/+4
2012-12-04Sort the #include lines for tools/...Chandler Carruth1-2/+2
2012-11-12Rewrite DIContext interface to take an object. Update all callers.Eric Christopher1-93/+1
2012-11-12Fixup for r167558: Store raw pointer (instead of reference) to RelocMap in DI...Alexey Samsonov1-1/+1
2012-11-07Add a relocation visitor to lib object. This works via caching relocatedEric Christopher1-1/+58
2012-10-16Formatting and 80-col.Eric Christopher1-3/+3
2012-09-04Add support for fetching inlining context (stack of source code locations)Alexey Samsonov1-9/+32
2012-08-27Add basic support for .debug_ranges section to LLVM's DebugInfo library.Alexey Samsonov1-1/+5
2012-07-19DebugInfo library: add support for fetching absolute paths to source filesAlexey Samsonov1-1/+2
2012-07-02This patch extends the libLLVMDebugInfo which contains a minimalistic DWARF p...Alexey Samsonov1-1/+12
2011-10-07Fix a few changes I missed.Michael J. Spencer1-3/+3
2011-09-15llvm-dwarfdump: Add an option to print out line info for a specific addressBenjamin Kramer1-5/+15
2011-09-15DWARF: wire up .debug_str dumping.Benjamin Kramer1-1/+5
2011-09-15DWARF: Add basic support for line tables.Benjamin Kramer1-1/+2
2011-09-14llvm-dwarfdump: Make the "is debug info section" heuristic stricter so it doe...Benjamin Kramer1-4/+8
2011-09-14DWARF: Port support for parsing .debug_aranges section from LLDB and wire it ...Benjamin Kramer1-1/+5
2011-09-13Sketch out a DWARF parser.Benjamin Kramer1-0/+93