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
/
Analysis
/
DebugInfo.cpp
Age
Commit message (
Expand
)
Author
2009-07-13
Begin the painful process of tearing apart the rat'ss nest that is Constants....
Owen Anderson
2009-07-08
Switch GlobalVariable ctors to a sane API, where *either* a context or a modu...
Owen Anderson
2009-07-08
Push LLVMContext through GlobalVariables and IRBuilder.
Owen Anderson
2009-07-07
Re-LLVMContext-ize DebugInfo, now with less breakage.
Owen Anderson
2009-07-07
Revert part of r74873 that broke Clang's debug info generation.
Owen Anderson
2009-07-06
Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's thr...
Owen Anderson
2009-07-02
Simplify debug info intrisinc lowering.
Devang Patel
2009-07-02
Fix typo.
Devang Patel
2009-07-02
Add debug info utility routines.
Devang Patel
2009-07-01
Keep DIDescriptor methods together.
Devang Patel
2009-07-01
improve the APIs for creating struct and function types with no arguments/ele...
Chris Lattner
2009-06-26
Remove debug info anchors - llvm.dbg.compile_units, llvm.dbg.subprograms
Devang Patel
2009-06-23
It is not a good idea to have data member's name match argument's name. In fa...
Devang Patel
2009-06-14
Fix old-style type names in comments.
Dan Gohman
2009-05-21
Use v.data() instead of &v[0] when SmallVector v might be empty.
Jay Foad
2009-05-14
Non-functionality changes:
Bill Wendling
2009-05-08
Print out nicer dump info for DIDescriptor.
Bill Wendling
2009-05-07
Revert 71165. It did more than just revert 71158 and it introduced
Dan Gohman
2009-05-07
Temporarily revert r71158. It was causing a failure during a full bootstrap:
Bill Wendling
2009-05-05
Add dump method to DIDescriptor.
Bill Wendling
2009-05-05
Do not require variable debug info nodes to have a compile unit.
Chris Lattner
2009-05-03
-Move the DwarfWriter::ValidDebugInfo check to a static DIDescriptor::ValidDe...
Argyrios Kyrtzidis
2009-04-15
Add a method to check that the subprogram holds debug info for the given Func...
Devang Patel
2009-03-25
Do not ignore DW_TAG_class_type!
Devang Patel
2009-03-13
Oops...I committed too much.
Bill Wendling
2009-03-13
Temporarily XFAIL this test.
Bill Wendling
2009-03-10
Global variables don't have a corresponding llvm.dbg.declare, yet it is possible
Torok Edwin
2009-03-09
Pass in a std::string when getting the names of debugging things. This cuts down
Bill Wendling
2009-03-07
Introduce new linkage types linkonce_odr, weak_odr, common_odr
Duncan Sands
2009-02-24
If compile unit's language is not set then don't crash while dump'ing compile...
Devang Patel
2009-02-17
The debugger sometimes lookup dynamically in the runtime to find ivar info of...
Devang Patel
2009-02-17
Emit debug info for bitfields.
Devang Patel
2009-01-30
Each input file is encoded as a separate compile unit in LLVM debugging
Devang Patel
2009-01-30
Add dump() routines to help debug debug info :)
Devang Patel
2009-01-23
Introduce two DWARF attribute extentions DW_AT_APPLE_optimized, DW_AT_APPLE_f...
Devang Patel
2009-01-20
Need only one set of debug info versions enum.
Devang Patel
2009-01-19
Verify debug info.
Devang Patel
2009-01-12
Add classof() methods to support isa<> and other related facilities.
Devang Patel
2009-01-05
Add classof() methods so that dwarf writer can decide what DIDescriptor is in...
Devang Patel
2009-01-05
Construct array/vector type DIEs using DebugInfo.
Devang Patel
2008-12-17
Today the front-ends (llvm-gcc and clang) generate multiple llvm.dbg.compile_...
Devang Patel
2008-12-16
Add utility functions to search for DbgStopPointInst corresponding to an
Torok Edwin
2008-12-16
use different name for parameter to make it clear that we set DIDescriptor::GV
Torok Edwin
2008-12-13
Fix getFieldAs() to use the parameter instead of 6.
Torok Edwin
2008-11-10
Move getCastToEmpty out of DIDescriptor into DIFactory. It is an
Chris Lattner
2008-11-10
Add a new set of helper classes for creating and reading debug
Chris Lattner