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
...
*
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
*
Don't pass false (default) for isVolatile parameter to CreateStore.
Daniel Dunbar
2009-11-29
1
-8
/
+8
*
Don't build the entire vtable when all we want is the index of a virtual method.
Anders Carlsson
2009-11-27
1
-3
/
+3
*
Fix for PR5594: use EmitGlobalDefinition instead of EmitCXXDestructor so that
Eli Friedman
2009-11-27
1
-3
/
+3
*
Remove unused variable.
Eli Friedman
2009-11-26
1
-1
/
+0
*
Shortcut explicit calls to a trivial copy assignment operator.
Eli Friedman
2009-11-26
1
-0
/
+8
*
Simplify and fix up the handling of implicit constructors, copy assignment
Eli Friedman
2009-11-26
1
-5
/
+9
*
Add a CovariantThunkAdjustment struct that represents the adjustments needed ...
Anders Carlsson
2009-11-26
1
-50
/
+58
*
Move the mangler into the CodeGen namespace. Change mangleThunk to take a Thu...
Anders Carlsson
2009-11-26
1
-2
/
+1
*
Add a ThunkAdjustment struct which holds a non-virtual and a virtual adjustme...
Anders Carlsson
2009-11-26
1
-9
/
+15
*
Add VTT parameter to base ctors/dtors with virtual bases. (They aren't used y...
Anders Carlsson
2009-11-25
1
-2
/
+2
*
Handle references correctly when synthesizing copy constructors.
Anders Carlsson
2009-11-24
1
-8
/
+28
*
Handle cases where we're constructing an array of objects and the constructor...
Anders Carlsson
2009-11-24
1
-8
/
+32
*
Handle base-to-derived casts. Will land test case shortly.
Anders Carlsson
2009-11-23
1
-14
/
+14
*
IRgen: Switch the C++ mangler interfaces to take the SmallVector to write into,
Daniel Dunbar
2009-11-21
1
-12
/
+7
*
Sink free mangle* methods into MangleContext.
Daniel Dunbar
2009-11-21
1
-5
/
+5
*
Checkpoint current work. WIP.
Mike Stump
2009-11-20
1
-6
/
+0
*
Reflow to fit 80-col.
Mike Stump
2009-11-18
1
-2
/
+2
*
Refactor emitting call to delete operator into common function EmitDeleteCall.
Eli Friedman
2009-11-18
1
-20
/
+3
*
Unify the way destructor epilogues are generated for synthesized and regular ...
Anders Carlsson
2009-11-17
1
-103
/
+79
*
Fix up EmitMemberInitializer to handle many more cases.
Eli Friedman
2009-11-16
1
-11
/
+24
*
Reorganize EmitMemberInitializer to put anonymous unions on the common codepath.
Eli Friedman
2009-11-16
1
-29
/
+31
*
Make member initializers for union members work correctly.
Eli Friedman
2009-11-16
1
-1
/
+1
*
Implement a few more cases for copy constructor synthesis.
Eli Friedman
2009-11-16
1
-2
/
+10
*
Fix a couple of cases where we weren't generating the right kind of call
Eli Friedman
2009-11-16
1
-8
/
+19
*
When generating the deleting ctor, emit a call to delete.
Anders Carlsson
2009-11-15
1
-4
/
+24
*
PR5483: Generate missing form of destructor when it is virtual. (Someone
Eli Friedman
2009-11-14
1
-0
/
+2
*
Code gen. For virtual destructor call on array objects
Fariborz Jahanian
2009-11-13
1
-1
/
+10
*
Code gen for arrady delete operator. Fixes pr5472.
Fariborz Jahanian
2009-11-13
1
-4
/
+13
*
Instead of storing CXXMethodDecls in the vtable builder, store GlobalDecls so...
Anders Carlsson
2009-11-13
1
-1
/
+1
[prev]
[next]