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
*
Always emit vcall offset for the primary base, not only if it's virtual. Remo...
Anders Carlsson
2010-02-23
1
-5
/
+1
*
Simplify the vcall offset calculation and make it give the correct answers :)...
Anders Carlsson
2010-02-23
1
-26
/
+17
*
More work on vcall offsets. We now emit the right number of vcall offsets in ...
Anders Carlsson
2010-02-23
1
-5
/
+1
*
Move BaseOffset out of the FinalOverriders class.
Anders Carlsson
2010-02-23
1
-45
/
+44
*
Change the name of the vtable-debugging environment variable to
Douglas Gregor
2010-02-22
1
-1
/
+1
*
Don't use NamedDecl::getNameAsCString() when dealing with C++ methods,
Douglas Gregor
2010-02-22
1
-13
/
+13
*
Add the CK_UnusedFunctionPointer component kind for unused function pointers.
Anders Carlsson
2010-02-19
1
-3
/
+34
*
Dump this-adjustments for destructors as well.
Anders Carlsson
2010-02-19
1
-10
/
+27
*
Attempt to fix the 32-bit test failures.
Anders Carlsson
2010-02-18
1
-1
/
+1
*
Fix another bug and add another class.
Anders Carlsson
2010-02-18
1
-2
/
+10
*
More work on vcall offsets.
Anders Carlsson
2010-02-18
1
-4
/
+61
*
Start stubbing out vcall offset handling.
Anders Carlsson
2010-02-18
1
-10
/
+60
*
Store the base offset of the final overrider in the OverriderInfo struct, to ...
Anders Carlsson
2010-02-18
1
-1
/
+6
*
Remove some dead code.
Anders Carlsson
2010-02-18
1
-13
/
+0
*
silence warning in a cleaner way
Chris Lattner
2010-02-17
1
-2
/
+1
*
Make FinalOverriders handle virtual bases correctly. Unfortunately this can't...
Anders Carlsson
2010-02-17
1
-3
/
+33
*
Handle primary bases in AddVCallOffsets.
Anders Carlsson
2010-02-17
1
-2
/
+9
*
Silence GCC warning by marking an assert-only variable as unused.
Chandler Carruth
2010-02-17
1
-1
/
+1
*
First cut at emitting vcall offsets.
Anders Carlsson
2010-02-17
1
-3
/
+77
*
Pass through whether a base is virtual or not.
Anders Carlsson
2010-02-17
1
-17
/
+26
*
Correctly calculate base offsets for 'this' pointer adjustments involving vir...
Anders Carlsson
2010-02-17
1
-3
/
+40
*
Handle layout of vtables for virtual bases.
Anders Carlsson
2010-02-16
1
-1
/
+41
*
Move some code around in preparation for virtual base vtables.
Anders Carlsson
2010-02-16
1
-9
/
+18
*
Fix a bug where we would not emit secondary vtables for bases of a primary base.
Anders Carlsson
2010-02-16
1
-12
/
+29
*
Emit vbase offsets.
Anders Carlsson
2010-02-16
1
-4
/
+38
*
More work on the new layout code.
Anders Carlsson
2010-02-16
1
-11
/
+66
*
Don't compute final overriders or build vtables for bases that don't need a v...
Anders Carlsson
2010-02-14
1
-3
/
+17
*
Build fix.
Anders Carlsson
2010-02-14
1
-1
/
+1
*
Baby steps towards teaching FinalOverriders about virtual bases.
Anders Carlsson
2010-02-14
1
-14
/
+31
*
Don't try to layout construction vtables for now.
Anders Carlsson
2010-02-14
1
-1
/
+2
*
Improve support for non-virtual 'this' pointer adjustments. With this, it sho...
Anders Carlsson
2010-02-14
1
-27
/
+41
*
Add basic support for simple non-virtual 'this' pointer adjustments.
Anders Carlsson
2010-02-13
1
-5
/
+85
*
Add support for very simple non-virtual this adjustments in the FinalOverride...
Anders Carlsson
2010-02-13
1
-17
/
+68
*
Cleanup; remove some duplicated code.
Anders Carlsson
2010-02-13
1
-96
/
+4
*
Assert if we encounter this adjustments.
Anders Carlsson
2010-02-13
1
-2
/
+9
*
Start laying out secondary vtables.
Anders Carlsson
2010-02-13
1
-10
/
+17
*
Merge base offsets and dump them.
Anders Carlsson
2010-02-13
1
-6
/
+42
*
Don't make return adjustments for pure virtual member functions.
Anders Carlsson
2010-02-13
1
-5
/
+8
*
Handle virtual bases in return adjustment types.
Anders Carlsson
2010-02-13
1
-17
/
+37
*
Handle virtual bases in ComputeBaseOffset.
Anders Carlsson
2010-02-13
1
-10
/
+27
*
More work on covariant return types. We now handle non-virtual adjustments fine.
Anders Carlsson
2010-02-13
1
-27
/
+96
*
Fix think-o, attributes can't come *within* the type of the variable.
Chandler Carruth
2010-02-13
1
-1
/
+1
*
Silence unused variable warning in a build without assertions.
Chandler Carruth
2010-02-13
1
-1
/
+2
*
Remove dead {include, semicolon, variable}.
Benjamin Kramer
2010-02-13
1
-5
/
+1
*
Use a different name for this iterator. MSVC and clang++ didn't like "I" in t...
Benjamin Kramer
2010-02-13
1
-3
/
+3
*
More work on return type adjustments in the new vtable builder.
Anders Carlsson
2010-02-13
1
-34
/
+155
*
Switch the standard DeclarationName comparator to be a tri-valued comparator.
John McCall
2010-02-13
1
-4
/
+5
*
if-0 out printf.
Eli Friedman
2010-02-13
1
-1
/
+1
*
Fix a refacto that broke the clang-on-clang build.
Anders Carlsson
2010-02-12
1
-7
/
+1
*
Start stubbing out more of the covariant thunk support.
Anders Carlsson
2010-02-12
1
-10
/
+20
[next]