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
/
CGVtable.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Add a data structure for efficient storing of vtable methods. Not used yet.
Anders Carlsson
2009-12-04
1
-0
/
+57
*
Eli, I copied my code from this code... Let's fix the souce of the bad idea!
Mike Stump
2009-12-03
1
-4
/
+1
*
Attempt to fix the MSVC build.
Anders Carlsson
2009-12-03
1
-4
/
+4
*
Add support for thunking dtors. Oh why does this make my head hurt?
Mike Stump
2009-12-03
1
-1
/
+1
*
Revert r90402 for now, virt.cpp is failing.
Anders Carlsson
2009-12-03
1
-11
/
+9
*
Use Eli's ComputeThunkAdjustment for calculating the return adjustment.
Anders Carlsson
2009-12-03
1
-9
/
+11
*
Remove the index from the Thunk struct.
Anders Carlsson
2009-12-03
1
-14
/
+10
*
Change the Thunks map to use the vtable index as the key.
Anders Carlsson
2009-12-03
1
-7
/
+9
*
Add the global decl to the Thunk struct.
Anders Carlsson
2009-12-03
1
-5
/
+7
*
Remove unused struct fields.
Anders Carlsson
2009-12-03
1
-7
/
+2
*
Delay computing the return adjustments for covariant thunks until when they a...
Anders Carlsson
2009-12-03
1
-98
/
+113
*
No need to create the covariant thunk in both places now.
Anders Carlsson
2009-12-03
1
-12
/
+5
*
Whoops, forgot to save :)
Anders Carlsson
2009-12-03
1
-2
/
+4
*
Remove the index field from the CovariantThunk structure.
Anders Carlsson
2009-12-03
1
-14
/
+6
*
Change the CovariantThunk map to use the vtable index as its key.
Anders Carlsson
2009-12-03
1
-9
/
+9
*
Store a GlobalDecl in the return adjustment.
Anders Carlsson
2009-12-03
1
-4
/
+7
*
Do not include the 'this' pointer adjustment in the covariant return type. In...
Anders Carlsson
2009-12-03
1
-26
/
+39
*
Move VtableBuilder::OverrideMethod out of line in preparation of other change...
Anders Carlsson
2009-12-03
1
-112
/
+117
*
Turn off for now.
Mike Stump
2009-12-02
1
-2
/
+2
*
Put the Builder classes into the anonymous namespace.
Mike Stump
2009-12-02
1
-1
/
+2
*
Change rtti/Rtti to RTTI, as it is an acronym.
Mike Stump
2009-12-02
1
-3
/
+3
*
Have ASTRecordLayout keep track of the key function, in preparation of fixing...
Anders Carlsson
2009-11-30
1
-8
/
+35
*
Fix an assert.
Anders Carlsson
2009-11-30
1
-2
/
+2
*
Minor cleanup (no functionality change).
Eli Friedman
2009-11-30
1
-23
/
+12
*
Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.
Benjamin Kramer
2009-11-28
1
-3
/
+1
*
We always want to create a virtual function pointer entry if the path from th...
Anders Carlsson
2009-11-28
1
-27
/
+5
*
Move the vtable builder to an anonymous namespace.
Anders Carlsson
2009-11-27
1
-1
/
+5
*
Don't build the entire vtable when all we want is the index of a virtual method.
Anders Carlsson
2009-11-27
1
-13
/
+233
*
Lazily create the __cxa_pure_virtual reference.
Anders Carlsson
2009-11-26
1
-11
/
+19
*
Use the new CovariantThunkAdjustment in the vtable builder.
Anders Carlsson
2009-11-26
1
-49
/
+63
*
Add a Thunk struct to the vtable builder.
Anders Carlsson
2009-11-26
1
-19
/
+45
*
Add a CovariantThunkAdjustment struct that represents the adjustments needed ...
Anders Carlsson
2009-11-26
1
-2
/
+4
*
Add a ThunkAdjustment struct which holds a non-virtual and a virtual adjustme...
Anders Carlsson
2009-11-26
1
-1
/
+2
*
It is common for vtables to contain pointers to functions that have either in...
Anders Carlsson
2009-11-24
1
-4
/
+1
*
IRgen: Switch the C++ mangler interfaces to take the SmallVector to write into,
Daniel Dunbar
2009-11-21
1
-7
/
+5
*
Sink free mangle* methods into MangleContext.
Daniel Dunbar
2009-11-21
1
-3
/
+3
*
Fixup address point computations. WIP.
Mike Stump
2009-11-19
1
-18
/
+26
*
Refine vtable, rtti and rtti name instantiation so that they follow
Mike Stump
2009-11-19
1
-24
/
+78
*
Improve instantiation control for rtti data and allow key functions to
Mike Stump
2009-11-19
1
-0
/
+6
*
Refine linkage on thunks. WIP.
Mike Stump
2009-11-19
1
-2
/
+1
*
Set up vtable visibility appropriately.
Mike Stump
2009-11-18
1
-7
/
+12
*
Finisgh off rest of class_type_info rtti generation.
Mike Stump
2009-11-14
1
-1
/
+2
*
Handle descructor printing better.
Mike Stump
2009-11-13
1
-6
/
+7
*
Also track address points for primaries bases.
Mike Stump
2009-11-13
1
-4
/
+27
*
Instead of storing CXXMethodDecls in the vtable builder, store GlobalDecls so...
Anders Carlsson
2009-11-13
1
-58
/
+94
*
Include header for printf.
Zhongxing Xu
2009-11-13
1
-0
/
+1
*
Refine construction vtables; they don't include bits that don't have
Mike Stump
2009-11-13
1
-0
/
+5
*
Refine the construction vtables with respect to offsets. WIP.
Mike Stump
2009-11-13
1
-15
/
+15
*
Allow the tracking of address points for construction vtables as well.
Mike Stump
2009-11-13
1
-26
/
+43
*
Refine which vtbl is refernced in VTTs.
Mike Stump
2009-11-12
1
-6
/
+12
[prev]
[next]