index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
CGVTT.cpp
Age
Commit message (
Expand
)
Author
2012-02-07
simplify a bunch of code to use the well-known LLVM IR types computed by Code...
Chris Lattner
2012-02-05
Basic: import SmallString<> into clang namespace
Dylan Noblesmith
2011-10-22
Remove obsolete debugging macro, make helper static.
Benjamin Kramer
2011-09-26
Move all vtable layout data into new VTableLayout class
Peter Collingbourne
2011-09-26
Move vtable component accessors to VTableContext
Peter Collingbourne
2011-09-26
Remove CodeGenVTables::ComputeVTableRelatedInformation dependency on CodeGen
Peter Collingbourne
2011-09-26
Move VTT builder to AST
Peter Collingbourne
2011-09-26
Remove CodeGenModule field from VTTBuilder
Peter Collingbourne
2011-09-26
Make the VTTBuilder class independent of LLVM core
Peter Collingbourne
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-21
Convert ConstantExpr::getGetElementPtr and
Jay Foad
2011-07-18
de-constify llvm::Type, patch by David Blaikie!
Chris Lattner
2011-06-22
Replace the existing forms of ConstantArray::get() with a single form
Jay Foad
2011-05-16
Fix another regression from the "skip vtable pointer initialization"
Anders Carlsson
2011-03-27
We were emitting construction v-tables with internal linkage all the time.
John McCall
2011-03-24
Convert the BaseOffset member of BaseSubobject to CharUnits from bits. No
Ken Dyck
2011-02-11
For consistency, use llvm::raw_ostream in the rest of the mangle api.
Rafael Espindola
2011-01-29
Change CodeGenModule::setTypeVisibility to take a TypeVisibilityKind enum ins...
Anders Carlsson
2011-01-29
Give VTTs the right visibility.
Anders Carlsson
2011-01-29
Make emitting a VTT a two-step process, much like emitting a VTable. You firs...
Anders Carlsson
2011-01-15
Also set unnamed_addr on declarations.
Rafael Espindola
2011-01-13
Only add unnamed_addr to definitions.
Rafael Espindola
2011-01-11
Set unnamed_addr in VTTs.
Rafael Espindola
2010-11-24
Rename RecordLayout::getPrimaryBaseWasVirtual to isPrimaryBaseVirtual.
Anders Carlsson
2010-10-31
Rename getBaseClassOffset to getBaseClassOffsetInBits and introduce a getBase...
Anders Carlsson
2010-10-30
Better solution: calculate the visibility of functions and variables
John McCall
2010-08-31
Teach IR generation to return 'this' from constructors and destructors
John McCall
2010-05-06
The global variable for the VTT might not have external linkage; allow
Douglas Gregor
2010-05-03
Store the entire base subobject in SubVTTIndices.
Anders Carlsson
2010-05-02
Have getSubVTTIndex take a BaseSubobject instead of just a base.
Anders Carlsson
2010-04-11
Clarify an assertion.
Anders Carlsson
2010-03-30
Remove the old vtable layout code.
Anders Carlsson
2010-03-29
Use the newly added function in the VTT builder.
Anders Carlsson
2010-03-29
Fix thinko.
Anders Carlsson
2010-03-29
Two bug fixes, we weren't updating the thunk index when creating the vtable i...
Anders Carlsson
2010-03-26
Add and implement CodeGenVTables::getSecondaryVirtualPointerIndex (not used y...
Anders Carlsson
2010-03-26
More cleanup.
Anders Carlsson
2010-03-26
Way more VTT builder cleanup.
Anders Carlsson
2010-03-26
More VTT builder cleanup.
Anders Carlsson
2010-03-26
More VTT cleanup.
Anders Carlsson
2010-03-26
Start cleaning up the VTT builder to make it work more like the VTable builder.
Anders Carlsson
2010-03-26
Remove some VTT builder arguments that were always zero.
Anders Carlsson
2010-03-25
More address point map shuffling.
Anders Carlsson
2010-03-25
Shuffle some code around; this will make it easier to use the new layout code...
Anders Carlsson
2010-03-24
Use getNamedGlobal instead of getGlobalVariable. (Fixes self-host).
Anders Carlsson
2010-03-24
More vtable work; preparations for moving over to the new vtable layout code ...
Anders Carlsson
2010-03-23
Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTable...
Anders Carlsson
2010-02-28
Pass information about whether a base is virtual or not down to getCtorVtable...
Anders Carlsson
2010-01-21
Move the VTT related code into its own file, CGVTT.cpp
Anders Carlsson