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
/
CGCXX.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Always emit associated thunks when emitting the function itself. Remove getVt...
Anders Carlsson
2010-03-23
1
-1
/
+7
*
Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTable...
Anders Carlsson
2010-03-23
1
-7
/
+7
*
Change CodeGenModule to rely on the Module's symbol table instead of
John McCall
2010-03-19
1
-32
/
+23
*
Use static method in GlobalValue
Rafael Espindola
2010-03-06
1
-11
/
+1
*
Don't produce an alias for a destructor if the target is weak.
Rafael Espindola
2010-03-05
1
-0
/
+16
*
Don't emit derived-to-base destructor aliases if we don't have a definition
John McCall
2010-03-03
1
-1
/
+7
*
Fix an iterator-invalidation bug that was causing selfhost errors
John McCall
2010-02-24
1
-10
/
+6
*
Perform two more constructor/destructor code-size optimizations:
John McCall
2010-02-23
1
-15
/
+106
*
Re-introduce the ctor/dtor alias optimization, this time hidden behind a
John McCall
2010-02-19
1
-7
/
+104
*
Revert the ctor/dtor alias optimization for now; the buildbots can detect
John McCall
2010-02-18
1
-103
/
+10
*
Emit complete constructors and destructors as aliases to base constructors
John McCall
2010-02-17
1
-10
/
+103
*
IRgen optimization: cache the value of 'this' and 'vtt' instead of
John McCall
2010-02-16
1
-12
/
+0
*
Standardize the parsing of function type attributes in a way that
John McCall
2010-02-05
1
-3
/
+5
*
Move a few more functions away from CGCXX and to CGClass and CGExprCXX.
Anders Carlsson
2010-01-01
1
-671
/
+0
*
Add a sanity assertion so that we don't silently generate bad code; I'll file
Eli Friedman
2009-12-27
1
-0
/
+2
*
Fix obvious mistake.
Eli Friedman
2009-12-27
1
-1
/
+1
*
Make copy constructor elimination work in more cases; the case in question
Eli Friedman
2009-12-24
1
-0
/
+3
*
Move a bunch of class related functions to CGClass.cpp, no functionality change.
Anders Carlsson
2009-12-24
1
-774
/
+0
*
Pass the return value slot to all call exprs.
Anders Carlsson
2009-12-24
1
-10
/
+14
*
Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us half...
Anders Carlsson
2009-12-24
1
-1
/
+1
*
Pass ReturnValueSlot to EmitCall. No functionality change yet.
Anders Carlsson
2009-12-24
1
-10
/
+11
*
Add a ReturnValueSlot class. Change the argument order in EmitCall to match t...
Anders Carlsson
2009-12-24
1
-3
/
+2
*
Eliminate the ASTContext argument to CXXConstructorDecl::isCopyConstructor, s...
Douglas Gregor
2009-12-22
1
-2
/
+2
*
Work in progress for setting the vtable pointers for all bases correctly in
Eli Friedman
2009-12-18
1
-11
/
+55
*
Fix for PR5830: fix the computation of the offset to a virtual base.
Eli Friedman
2009-12-18
1
-3
/
+36
*
CK_UserDefinedConversion is a valid kind when doing copy ctor elision.
Anders Carlsson
2009-12-18
1
-1
/
+2
*
Address some of Anders comments
Douglas Gregor
2009-12-18
1
-4
/
+8
*
Switch the initialization required by return statements over to the
Douglas Gregor
2009-12-18
1
-3
/
+6
*
When value-initializing a class with no user-defined constructors but
Douglas Gregor
2009-12-16
1
-1
/
+2
*
Don't force the emission of destructor definitions.
Eli Friedman
2009-12-15
1
-3
/
+3
*
More array cookie improvements.
Anders Carlsson
2009-12-13
1
-8
/
+10
*
Random string-related cleanups.
Benjamin Kramer
2009-12-11
1
-3
/
+2
*
Get rid of static variable.
Eli Friedman
2009-12-10
1
-2
/
+1
*
Move more decl related functions to CGDeclCXX.cpp
Anders Carlsson
2009-12-10
1
-117
/
+0
*
Add CGDeclCXX.cpp and move EmitCXXGlobalVarDeclInit there.
Anders Carlsson
2009-12-10
1
-45
/
+0
*
Fix spacing.
Mike Stump
2009-12-10
1
-1
/
+1
*
Build fix.
Eli Friedman
2009-12-08
1
-1
/
+1
*
Fix for PR5707: make sure implicit copy constructors initialize the vtable
Eli Friedman
2009-12-08
1
-0
/
+6
*
Fix some direct checks of expressions which might be surrounded by parentheses.
Eli Friedman
2009-12-08
1
-3
/
+4
*
Make copy assignment operator synthesis not explode for classes with complex
Eli Friedman
2009-12-08
1
-2
/
+10
*
A bunch more thunk fixes from misc testing.
Eli Friedman
2009-12-07
1
-20
/
+26
*
Work-in-progess rewrite of thunks: move thunk generation outside of vtable
Eli Friedman
2009-12-06
1
-0
/
+96
*
CodeGenModule::GenerateVtable now returns a pointer directly to the vtable an...
Anders Carlsson
2009-12-05
1
-9
/
+14
*
Simplify some code.
Anders Carlsson
2009-12-05
1
-11
/
+11
*
When generating a virtual destructor, don't try to make a virtual call to the...
Anders Carlsson
2009-12-04
1
-10
/
+18
*
Fix thunk generation for thunks with a parameter with reference type.
Eli Friedman
2009-12-03
1
-1
/
+2
*
Minor cleanup.
Eli Friedman
2009-12-03
1
-9
/
+4
*
Add support for thunking dtors. Oh why does this make my head hurt?
Mike Stump
2009-12-03
1
-10
/
+22
*
Added an assert.
Fariborz Jahanian
2009-12-01
1
-1
/
+4
*
More support for virtual destructor calls.
Fariborz Jahanian
2009-11-30
1
-15
/
+26
[prev]
[next]