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
/
AST
/
RecordLayout.cpp
Age
Commit message (
Expand
)
Author
2013-01-25
First pass at abstracting out a class for the target C++ ABI.
John McCall
2012-07-04
Remove get(V)BaseClassOffsetInBits, the CharUnit functions should be used ins...
Benjamin Kramer
2012-05-01
Add support for laying out vtordisps according to our current
John McCall
2011-10-21
More ASTRecordLayout changes for MS ABI; based on patch by r4start.
Eli Friedman
2011-09-27
Some changes to improve compatibility for MSVC-style C++ struct layout. Patch...
Eli Friedman
2011-02-15
Convert RecordLayout::Alignment to CharUnits from bit units. No change in
Ken Dyck
2011-02-11
Convert RecordLayout::DataSize to CharUnits from bits, eliminating two
Ken Dyck
2011-02-09
Convert RecordLayout::Size to CharUnits from bits. No changes to
Ken Dyck
2011-02-08
Convert RecordLayout::NonVirtualAlign to CharUnits. No change in
Ken Dyck
2011-02-01
Convert RecordLayout::NonVirtualSize from bit units to CharUnits.
Ken Dyck
2011-01-12
PR3558: mark "logically const" accessor methods in ASTContext as const,
Jay Foad
2010-11-24
Remove the PrimaryBaseInfo class.
Anders Carlsson
2010-11-24
Rename RecordLayout::getPrimaryBaseWasVirtual to isPrimaryBaseVirtual.
Anders Carlsson
2010-10-31
Port over a couple of getVBaseClassOffsetInBits call sites to use getVBaseCla...
Anders Carlsson
2010-10-31
Rename getBaseClassOffset to getBaseClassOffsetInBits and introduce a getBase...
Anders Carlsson
2010-10-31
EmptyObjectMap now uses CharUnits wherever possible.
Anders Carlsson
2010-08-25
Plug leak. The DenseMaps of CXXRecordLayoutInfo weren't freed.
Argyrios Kyrtzidis
2010-05-26
No need to use the PrimaryBaseInfo struct in the builder.
Anders Carlsson
2010-05-08
Add a SizeOfLargestEmptySubobject member to ASTRecordLayout. For C++ classes ...
Anders Carlsson
2010-03-11
Replace the class offset vectors in RecordLayoutBuilder with maps instead so ...
Anders Carlsson
2010-03-11
Assert that primary bases always have offset 0.
Anders Carlsson
2010-03-09
Replace copy loops with memcpy.
Benjamin Kramer
2010-03-08
Allocate ASTRecordLayout objects using the allocator associated with ASTContext.
Ted Kremenek