aboutsummaryrefslogtreecommitdiff
path: root/lib/DebugInfo
AgeCommit message (Expand)Author
2013-03-21Fix missing std::. Not sure how this compiles for anyone else.Matt Arsenault
2013-03-20xlC doesn't like Header being both a type and a member variable. Rename theRafael Espindola
2013-02-22Code cleanup: pass Offset by pointer to parseInstruction to more explicitlyEli Bendersky
2013-02-21Previously, parsing capability of the .debug_frame section was addedEli Bendersky
2013-02-15Make helpers static. Add missing include so LLVMInitializeObjCARCOpts gets C ...Benjamin Kramer
2013-02-12Add support for the pubnames section to llvm-dwarfdump.Krzysztof Parzyszek
2013-02-08The patch to fix some issues in r174543 fixed the lines failing the test, but...David Tweed
2013-02-07FDE::dumpHeader(): Forgot to fix one more formatting, ... take two!NAKAMURA Takumi
2013-02-07FDE::dumpHeader(): Forgot to fix one more formatting. It affected bigendian h...NAKAMURA Takumi
2013-02-07DWARFDebugFrame.cpp: Fix formatting on i686 hosts.NAKAMURA Takumi
2013-02-06Add some comments to new frame entriesEli Bendersky
2013-02-06Failing builds because a private class member is not being used afterEli Bendersky
2013-02-06Add virtual desctructor to FrameEntry to avoid error on delete-non-virtual-dtorEli Bendersky
2013-02-06Fix some formatting & add comments, following Eric's reviewEli Bendersky
2013-02-05Add missing file to CMake listEli Bendersky
2013-02-05Initial support for DWARF CFI parsing and dumping in LLVMEli Bendersky
2013-01-26DWARFDebugLine.cpp: Fix true path. Did you forget "return true" here?NAKAMURA Takumi
2013-01-26Add DIContext::getLineInfoForAddressRange() function and test. This function...Andrew Kaylor
2013-01-25Fix a warning in the new DWARFheader. Add a new line at the end of the file.Nadav Rotem
2013-01-25Add support for applying in-memory relocations to the .debug_line section and...Andrew Kaylor
2013-01-25Add command-line flags for DWARF dumping.Eli Bendersky
2013-01-17Fix the assembly and dissassembly of DW_FORM_sec_offset. Found this byEric Christopher
2013-01-17Add the DW_AT_GNU_addr_base for the skeleton cu. Add support forEric Christopher
2013-01-15Split address information for DWARF5 split dwarf proposal. This involvesEric Christopher
2013-01-09[Object, DebugInfo] Make DWARFContext BE-aware.NAKAMURA Takumi
2013-01-07Whitespace and 80-col.Eric Christopher
2013-01-07Add support for separating strings for the split debug info DWARF5Eric Christopher
2013-01-07Update comment.Eric Christopher
2013-01-04Add a space to the end of the line so we don't get "itsbounds" in output.Eric Christopher
2013-01-02Extend the dumping infrastructure to deal with additionalEric Christopher
2012-12-27Right now all of the relocations are 32-bit dwarf, and the relocationEric Christopher
2012-12-21Don't skip __DWARF,Rafael Espindola
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-04Sort includes for all of the .h files under the 'lib' tree. These wereChandler Carruth
2012-11-27The section is .debug_line.Eric Christopher
2012-11-16Add some basic support for the fission addr forms to DebugInfo.Eric Christopher
2012-11-16[DebugInfo] Generate address ranges for compile units even if .debug_aranges ...Alexey Samsonov
2012-11-12Rewrite DIContext interface to take an object. Update all callers.Eric Christopher
2012-11-12Fixup for r167558: Store raw pointer (instead of reference) to RelocMap in DI...Alexey Samsonov
2012-11-07Add a relocation visitor to lib object. This works via caching relocatedEric Christopher
2012-10-30Reformat and 80-column this. It's not strictly conformingEric Christopher
2012-10-16Use a typedef to reduce some typing and reformat code accordingly.Eric Christopher
2012-10-16Variable name cleanup.Eric Christopher
2012-09-18Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper
2012-09-05Stop casting away const qualifier needlessly.Roman Divacky
2012-09-05Remove unused typedefs gcc4.8 warns about.Roman Divacky
2012-09-04Add support for fetching inlining context (stack of source code locations)Alexey Samsonov
2012-08-30Refactor fetching file/line info from DWARFContext to simplify theAlexey Samsonov
2012-08-27Fix compile error when building with C++11 - clang thinks that PRIx64 is a us...Marshall Clow
2012-08-27DWARFDebugRangeList.cpp: Use PRIx64 for uint64_t as format string.NAKAMURA Takumi