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
/
CGVTables.h
Age
Commit message (
Expand
)
Author
2013-01-25
The standard ARM C++ ABI dictates that inline functions are
John McCall
2013-01-02
Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to
Chandler Carruth
2012-12-04
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-09-27
Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...
Sylvestre Ledru
2012-09-27
Fix a typo 'iff' => 'if'
Sylvestre Ledru
2011-09-26
Move VTable builder to AST
Peter Collingbourne
2011-09-26
Have CodeGenVTables::GenerateConstructionVTable use VTableLayout
Peter Collingbourne
2011-09-26
Implement VTableContext::createConstructionVTableLayout
Peter Collingbourne
2011-09-26
Move all vtable layout data into new VTableLayout class
Peter Collingbourne
2011-09-26
Move VTableComponent to header file
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
Create a VTableContext class and start moving CodeGenVTables methods to it
Peter Collingbourne
2011-09-26
Move BaseSubobject class to AST
Peter Collingbourne
2011-09-26
Make the VTTBuilder class independent of LLVM core
Peter Collingbourne
2011-07-20
now that we have a centralized place to do so, add some using declarations for
Chris Lattner
2011-06-14
Move GlobalDecl to AST
Peter Collingbourne
2011-04-07
[Reapply r128776, modified so that it does not break debug info.]
Ken Dyck
2011-04-07
[Reapply r128773. This is not the source of the issues Devang was seeing
Ken Dyck
2011-04-04
Revert r128770, r128771, r128773 and r128776 for now. It breaks debug info.
Devang Patel
2011-04-02
Change the return type of CodeGenVTables::getVirtualBaseOffsetOffset() to
Ken Dyck
2011-04-02
Use CharUnits for the offsets in the VirtualBaseClassOffsetOffsetsMapTy. No
Ken Dyck
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-06
When building with optimizations, emit thunks with available_externally linka...
Anders Carlsson
2011-01-29
Make emitting a VTT a two-step process, much like emitting a VTable. You firs...
Anders Carlsson
2011-01-13
Move name mangling support from CodeGen to AST. In the
Peter Collingbourne
2010-10-11
Make sure the VTables for template instantiations are emitted even if the key...
Argyrios Kyrtzidis
2010-07-07
Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of...
Argyrios Kyrtzidis
2010-06-02
Don't try to emit the vtable for a class just because we're emitting a
John McCall
2010-05-13
Rework when and how vtables are emitted, by tracking where vtables are
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-19
If a method is virtual and the class key function is in another file, emit th...
Rafael Espindola
2010-04-17
Vtable -> VTable renames across the board.
Anders Carlsson
2010-04-08
Rename CGVtable files to CGVTables.
Anders Carlsson