index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
AsmPrinter
/
DIE.h
Age
Commit message (
Expand
)
Author
2013-03-29
Use SmallVectorImpl instead of SmallVector at the uses.
Eric Christopher
2013-03-29
Use 12 as the magic number for our abbreviation data and our
Eric Christopher
2013-03-18
Fix integer comparison in DIEInteger::BestForm.
Hans Wennborg
2013-03-12
Debug Info: use DW_FORM_ref_addr instead of DW_FORM_ref4 if the referenced DIE
Manman Ren
2013-01-07
Whitespace and 80-col.
Eric Christopher
2012-12-19
Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...
Bill Wendling
2012-10-11
Remove unnecessary classof()'s
Sean Silva
2012-01-24
Bit pack DIE structures better.
Benjamin Kramer
2012-01-24
Remove generation of DW_AT_sibling. Nothing as far as I can tell uses it.
Eric Christopher
2011-12-20
Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...
David Blaikie
2011-10-28
Always use the string pool, even when it makes the .o larger. This may help
Nick Lewycky
2011-10-25
Remove dead enum value. There is no DIESectionOffset.
Nick Lewycky
2011-10-18
Fix some typo/formatting issues. No functionality change.
Nick Lewycky
2011-03-09
Remove unused virtual dtor.
Benjamin Kramer
2011-02-25
Roll out r126425 and r126450 to see if it fixes the failures on the buildbots.
Cameron Zwarich
2011-02-24
Enable DebugInfo support for COFF object files.
Devang Patel
2010-05-25
First cut at supporting .debug_loc section.
Devang Patel
2010-04-16
Add support to emit dwarf ranges.
Devang Patel
2010-04-05
change SizeOf to take AsmPrinter instead of TargetData,
Chris Lattner
2010-04-05
1) make DIE take AsmPrinter instead of DwarfPrinter.
Chris Lattner
2010-03-31
DwarfDebug: Allocate DIEValues with a BumpPtrAllocator. Most of them are
Benjamin Kramer
2010-03-22
DW_AT_stmt_list attribute attached with a compile unit encodes offset of line...
Devang Patel
2010-03-22
Fix a memory leak from DIE::addSiblingOffset() by adding the DIEValue
Jeffrey Yasskin
2010-03-12
Free DbgScopes in DwarfDebug::endFunction(). Also increased the const-ness of
Jeffrey Yasskin
2010-03-08
simplify EmitSectionOffset to always use .set if it is
Chris Lattner
2010-03-08
merge DIEObjectLabel and DIEDwarfLabel into DIELabel.
Chris Lattner
2010-03-08
elimiante the DWLabel class, using MCSymbol instead. Start
Chris Lattner
2010-03-08
Revert r97917, which was causing Clang Debug self-host failures.
Douglas Gregor
2010-03-07
Roll r97906 forward again, without double-deleting CompileUnit::IndexTyDie.
Jeffrey Yasskin
2010-01-23
teach MCAsmStreamer::EmitBytes to use .ascii and .asciz
Chris Lattner
2010-01-22
move uleb printing from asmprinter to dwarfprinter, mcize,
Chris Lattner
2010-01-22
rename the dwarf class to DwarfPrinter. This matches the filename
Chris Lattner
2010-01-16
Change DIEObjectLabel to take an MCSymbol instead of std::string.
Chris Lattner
2009-12-15
Add support to emit debug info for C++ namespaces.
Devang Patel
2009-12-02
Clarify that DIEString does not keep a copy of the string.
Devang Patel
2009-11-24
Use StringRef instead of std::string in DIEString.
Devang Patel
2009-11-21
Cosmetic changes, which were long overdue, in DwarfDebug.cpp.
Devang Patel
2009-11-21
There is no need to use FoldingSet to unique DIEs.
Devang Patel
2009-11-17
Remove VISIBILITY_HIDDEN from the classes in this directory. Fixes bug 5507.
Nick Lewycky
2009-08-23
convert the DIE printing stuff to use raw_ostream instead of std::ostream.
Chris Lattner
2009-06-24
Down with _even more_ statics!
Owen Anderson
2009-05-15
Split out the DwarfDebug module from the DwarfWriter module.
Bill Wendling
2009-05-15
Mark class as hidden.
Bill Wendling
2009-05-15
Split out the Dwarf writer stuff into separate files. This is a much more
Bill Wendling