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
/
AST
/
RecordLayoutBuilder.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Move ComputeEmptySubobjectSizes to EmptySubobjectMap.
Anders Carlsson
2010-05-26
1
-61
/
+65
*
Stub out the EmptySubobjectsMap class.
Anders Carlsson
2010-05-26
1
-2
/
+23
*
Inline the RecordLayoutBuilder constructor.
Anders Carlsson
2010-05-26
1
-9
/
+7
*
Add a Layout overload that takes a CXXRecordDecl.
Anders Carlsson
2010-05-26
1
-38
/
+48
*
Move RecordLayoutBuilder into an anonymous namespace.
Benjamin Kramer
2010-05-26
1
-0
/
+2
*
Rename ASTRecordLayoutBuilder to RecordLayoutBuilder.
Anders Carlsson
2010-05-26
1
-34
/
+34
*
Move the ASTRecordLayoutBuilder class declaration into the .cpp file.
Anders Carlsson
2010-05-26
1
-3
/
+155
*
Fix thinko and remove another unused function.
Anders Carlsson
2010-05-26
1
-36
/
+1
*
Fix build.
Anders Carlsson
2010-05-26
1
-2
/
+4
*
No need to use the PrimaryBaseInfo struct in the builder.
Anders Carlsson
2010-05-26
1
-19
/
+22
*
Remove FIXME.
Anders Carlsson
2010-05-26
1
-1
/
+0
*
Fold the other Layout overload into its sole call site.
Anders Carlsson
2010-05-26
1
-2
/
+37
*
Fold the ASTRecordLayoutBuilder::ComputeLayout overload that takes an ObjCInt...
Anders Carlsson
2010-05-26
1
-17
/
+9
*
Move the relevant ASTContext member functions that deal with ASTRecordLayoutB...
Anders Carlsson
2010-05-26
1
-0
/
+73
*
When recording empty subobjects we should always look at the primary virtual ...
Anders Carlsson
2010-05-23
1
-0
/
+7
*
Add an UpdateVBases parameter to UpdateEmptyClassOffsets. Not used just yet.
Anders Carlsson
2010-05-10
1
-7
/
+11
*
More work on handling empty classes.
Anders Carlsson
2010-05-10
1
-8
/
+14
*
Cleanup.
Anders Carlsson
2010-05-09
1
-5
/
+5
*
Actually compute the empty subobject sizes. No functionality change yet.
Anders Carlsson
2010-05-08
1
-3
/
+55
*
Add a SizeOfLargestEmptySubobject member to ASTRecordLayout. For C++ classes ...
Anders Carlsson
2010-05-08
1
-11
/
+13
*
AST: Dump ASTRecordLayout objects when they are created with -fdump-record-la...
Daniel Dunbar
2010-04-19
1
-12
/
+25
*
Fix -Wcast-qual warnings.
Dan Gohman
2010-04-19
1
-1
/
+1
*
If a wide bit-field is inside a union its offset should always be 0.
Anders Carlsson
2010-04-17
1
-4
/
+7
*
Add raw_ostream operators to NamedDecl for convenience. Switch over all users...
Benjamin Kramer
2010-04-17
1
-3
/
+2
*
Remove printfs.
Anders Carlsson
2010-04-16
1
-6
/
+0
*
More work on wide bit-fields, WIP.
Anders Carlsson
2010-04-16
1
-0
/
+65
*
Rename the ASTContext member 'Context'.
Anders Carlsson
2010-04-16
1
-34
/
+34
*
Split adding the primary virtual base offsets out into a separate pass. This ...
Anders Carlsson
2010-04-15
1
-34
/
+67
*
Tweak spelling (Bitfield -> BitField)
Daniel Dunbar
2010-04-15
1
-1
/
+1
*
Add TargetInfo::useBitfieldTypeAlignment().
Daniel Dunbar
2010-04-15
1
-4
/
+3
*
Remove unnecessary cast.
Daniel Dunbar
2010-04-13
1
-1
/
+1
*
Fix another vbase layout bug.
Anders Carlsson
2010-04-10
1
-1
/
+5
*
Add a simple debug-only verification pass to the record layout builder.
Anders Carlsson
2010-04-10
1
-0
/
+25
*
Simplify the virtual base layout code and fix a bug where we wouldn't store t...
Anders Carlsson
2010-04-10
1
-24
/
+25
*
AST: Move C++ record layout dumping to ASTContext::DumpRecordLayout.
Daniel Dunbar
2010-04-08
1
-91
/
+197
*
More record layout builder cleanup and simplification.
Anders Carlsson
2010-03-11
1
-35
/
+24
*
Get rid of the PrimaryBase parameter from LayoutVirtualBases.
Anders Carlsson
2010-03-11
1
-13
/
+18
*
More cleanup towards fixing the real bug.
Anders Carlsson
2010-03-11
1
-18
/
+31
*
Replace the class offset vectors in RecordLayoutBuilder with maps instead so ...
Anders Carlsson
2010-03-11
1
-20
/
+24
*
More cleanup.
Anders Carlsson
2010-03-11
1
-18
/
+15
*
More record layout builder cleanup.
Anders Carlsson
2010-03-11
1
-9
/
+7
*
Remove the IndirectPrimary parameter in LayoutVirtualBases; it's already ther...
Anders Carlsson
2010-03-11
1
-9
/
+5
*
More cleanup and simplification of the record layout builder.
Anders Carlsson
2010-03-11
1
-65
/
+75
*
Get rid of the LayoutBaseNonVirtually; it was used to lay out a base either a...
Anders Carlsson
2010-03-10
1
-18
/
+20
*
More shuffling.
Anders Carlsson
2010-03-10
1
-61
/
+64
*
Cleanups, no functionality change yet.
Anders Carlsson
2010-03-10
1
-3
/
+0
*
Allocate ASTRecordLayout objects using the allocator associated with ASTContext.
Ted Kremenek
2010-03-08
1
-17
/
+18
*
Patch removes IVars list from ObjCInterfaceDecl and
Fariborz Jahanian
2010-02-19
1
-2
/
+2
*
Simplify code. If we can reach here, the base must be virtual.
Zhongxing Xu
2010-02-15
1
-5
/
+4
*
Be sure to select primary bases among the nearly empties in preorder,
Mike Stump
2010-01-22
1
-0
/
+5
[prev]
[next]