index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
CodeGen
/
CGDebugInfo.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Emit debug info for objc getters and setters.
Devang Patel
2010-04-05
1
-1
/
+3
*
NewDebugLoc got renamed to DebugLoc.
Chris Lattner
2010-04-02
1
-5
/
+5
*
adjust to IRBuilder change and use faster DebugLoc apis.
Chris Lattner
2010-04-01
1
-18
/
+8
*
use the new optimized debug info metadata accessors. In
Chris Lattner
2010-03-31
1
-2
/
+2
*
Replace some constant-sized SmallVectors.
Benjamin Kramer
2010-03-30
1
-8
/
+4
*
Cache results computed by CGDebugInfo::getOrCreateFile() in a DenseMap.
Ted Kremenek
2010-03-30
1
-3
/
+21
*
Change 'TypeCache' from being an std::map to a llvm::DenseMap. This reduces ...
Ted Kremenek
2010-03-29
1
-1
/
+1
*
Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTable...
Anders Carlsson
2010-03-23
1
-2
/
+2
*
Comment the reasons for the strange little dance we do with the main file nam...
Douglas Gregor
2010-03-22
1
-0
/
+4
*
Change CodeGenModule to rely on the Module's symbol table instead of
John McCall
2010-03-19
1
-5
/
+5
*
Try to improve computation of the main file name for debug
Douglas Gregor
2010-03-19
1
-7
/
+10
*
For debug information, get the main file name from the source manager
Douglas Gregor
2010-03-18
1
-2
/
+7
*
Use raw_ostream instead of sprintf.
Benjamin Kramer
2010-03-13
1
-3
/
+2
*
If main file name is empty then use "<unknown>".
Devang Patel
2010-03-12
1
-1
/
+4
*
Keep track of Record context to ensure that record elements are properly nest...
Devang Patel
2010-03-11
1
-1
/
+20
*
Rename getVirtualBaseOffsetIndex to getVirtualBaseOffsetOffset to reflect wha...
Anders Carlsson
2010-03-11
1
-2
/
+2
*
Create a new InjectedClassNameType to represent bare-word references to the
John McCall
2010-03-10
1
-0
/
+1
*
Use SmallString instead of alloca.
Devang Patel
2010-03-10
1
-2
/
+3
*
Fix file reference for derived and composite types. Now, dwarf writer uses st...
Devang Patel
2010-03-09
1
-41
/
+38
*
More then one anonymous aggregates on one line creates chaos when MDNode uniq...
Devang Patel
2010-03-09
1
-4
/
+4
*
Use getLast() instead of getBasename().
Devang Patel
2010-03-09
1
-1
/
+1
*
Start using DIFile. Corresponding llvm patch is r98020.
Devang Patel
2010-03-09
1
-117
/
+95
*
Avoid using DIDescriptor.isNull().
Devang Patel
2010-03-08
1
-4
/
+4
*
Revert r97949.
Devang Patel
2010-03-08
1
-4
/
+4
*
Avoid DIDescriptor.isNull() checks.
Devang Patel
2010-03-08
1
-4
/
+4
*
Targets (like pic16) may have mangled the name of global variables,
Sanjiv Gupta
2010-02-25
1
-1
/
+1
*
Emit debug info for VectorType.
Devang Patel
2010-02-23
1
-2
/
+25
*
Distinguish two lexical blocks at the same level.
Devang Patel
2010-02-16
1
-1
/
+4
*
Do not ignore anonymous records.
Devang Patel
2010-02-12
1
-2
/
+2
*
Cache new compile unit.
Devang Patel
2010-02-12
1
-1
/
+8
*
Eliminate the ASTContext parameter from RecordDecl::getDefinition()
Douglas Gregor
2010-02-11
1
-1
/
+1
*
Refactor code that generates debug info for variables that has BlocksAttr.
Devang Patel
2010-02-10
1
-245
/
+124
*
Use current location as the location of compiler generated arguments, e.g. se...
Devang Patel
2010-02-10
1
-8
/
+10
*
Fix virtual bases' debug info.
Devang Patel
2010-02-09
1
-2
/
+4
*
Mark implicit "this" argument as an artificial argument.
Devang Patel
2010-02-09
1
-1
/
+4
*
Fix FIXME and surrounding comment.
Devang Patel
2010-02-01
1
-4
/
+1
*
Use appropriate context descriptor in RecordDecl's debug info.
Devang Patel
2010-02-01
1
-3
/
+9
*
Do not use clang type name to name a local variable, e.g. Decl.
Devang Patel
2010-02-01
1
-44
/
+44
*
Do not use clang type name to name a local variable, e.g. Decl.
Devang Patel
2010-02-01
1
-29
/
+25
*
Use DeclContext as getContextDescriptor() argument.
Devang Patel
2010-02-01
1
-18
/
+27
*
Emit debug info for namespaces.
Devang Patel
2010-02-01
1
-0
/
+25
*
Use appropriate context for typedefs.
Devang Patel
2010-01-29
1
-7
/
+5
*
Maintain a map of regions (lexical scopes) and use it to find context for a g...
Devang Patel
2010-01-29
1
-10
/
+8
*
s/CGDebugInfo::getContext/CGDebugInfo::getContextDescriptor/g to avoid confus...
Devang Patel
2010-01-28
1
-5
/
+5
*
Fix indentation.
Devang Patel
2010-01-28
1
-30
/
+30
*
Static methods do not need "this" pointer argument.
Devang Patel
2010-01-28
1
-0
/
+5
*
Emit base classes info first, as expected by the debugger.
Devang Patel
2010-01-28
1
-3
/
+3
*
s/FunctionNames/DebugInfoNames/g
Devang Patel
2010-01-28
1
-2
/
+2
*
Emit vtable info.
Devang Patel
2010-01-28
1
-1
/
+70
*
While emitting debugging infor for a C++ class, identify the holder of class'...
Devang Patel
2010-01-28
1
-1
/
+11
[next]