aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGRecordLayoutBuilder.cpp
AgeCommit message (Expand)Author
2010-05-05Use a more appropriate LLVM type for the vtable pointer.Anders Carlsson
2010-04-22IRgen: Fix another case where we generated an invalid access component when weDaniel Dunbar
2010-04-22IRgen: Fix case where we might generate an access component with width == 0, ifDaniel Dunbar
2010-04-22IRgen: Set alignment correctly on bit-field accesses.Daniel Dunbar
2010-04-22IRgen: Rewrite bit-field access policy to not access data beyond the bounds o...Daniel Dunbar
2010-04-22IRgen: Fix CGRecordLayout::print to print the bit-field infos in a consistent...Daniel Dunbar
2010-04-21IRgen: Add checking that the LLVM and AST record layout offsets agree (forDaniel Dunbar
2010-04-20IRgen: Always use i8 arrays to access union bit-fields. This is ugly, butDaniel Dunbar
2010-04-19AST: Dump ASTRecordLayout objects when they are created with -fdump-record-la...Daniel Dunbar
2010-04-19IRgen: Kill unused function and move the type match assert to after record du...Daniel Dunbar
2010-04-17Simplify wide bit-field layout in CGRecordLayoutBuilder, and also fix a bug w...Anders Carlsson
2010-04-17Unnamed bit-fields in a union should be laid out with a type that doesn't aff...Anders Carlsson
2010-04-17Factor union field layout code out into a separate function. No functionality...Anders Carlsson
2010-04-17Vtable -> VTable renames across the board.Anders Carlsson
2010-04-16Make CGRecordLayoutBuilder deal with wide bit-fields. Will land tests shortly...Anders Carlsson
2010-04-15IRgen: Change CGBitFieldInfo to take the AccessInfo as constructor arguments,...Daniel Dunbar
2010-04-15IRgen: Eliminate now unused fields from CGBitFieldInfo.Daniel Dunbar
2010-04-13IRgen: Enhance CGBitFieldInfo with enough information to fully describe the "...Daniel Dunbar
2010-04-12IRgen: Factor out ComputeBitFieldInfo.Daniel Dunbar
2010-04-12IRgen: Add CGRecordLayout::dump, and dump (irgen) record layouts as part of -...Daniel Dunbar
2010-04-08IRgen: Move the bit-field access type into CGBitFieldInfo, and change bit-fie...Daniel Dunbar
2010-04-06IRgen: Move BitFieldIsSigned bit into CGBitFieldInfo.Daniel Dunbar
2010-04-06Simplify.Daniel Dunbar
2010-04-05IRgen: Lift BitFieldInfo to CGBitFieldInfo at namespace level.Daniel Dunbar
2010-03-31IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out o...Daniel Dunbar
2010-03-31CGRecordLayoutBuilder: Switch unions to use same mechanism for tracking field...Daniel Dunbar
2010-03-31IRGen: Hide CGRecordLayoutBuilder class, because I can.Daniel Dunbar
2010-03-30IRgen: Move CGRecordLayout to its own happy little file.Daniel Dunbar
2010-02-02Improve handling of emitting 'null' pointers to data members.Anders Carlsson
2010-01-28Fix an incorrect union layout assert. Fixes PR6164.Anders Carlsson
2009-12-16Baby steps towards fixing PR5589. If a class needs a vtable pointer, add one.Anders Carlsson
2009-12-08No need to add tail padding if the resulting LLVM struct type will have the s...Anders Carlsson
2009-11-30Have ASTRecordLayout keep track of the key function, in preparation of fixing...Anders Carlsson
2009-11-20Fixup key function calculations.Mike Stump
2009-11-19This doesn't work yet.Mike Stump
2009-11-06Prevent a code gen. crash on empty unions - pr5408.Fariborz Jahanian
2009-10-12Store the key function of a record decl inside CGRecordLayout.Anders Carlsson
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-03If the alignment of the chosen field in a union is greater than the alignment...Anders Carlsson
2009-09-02Packed unions should be packed. Fixes an assert Daniel reported.Anders Carlsson
2009-08-23More work towards zero-initializing structs that contain member pointers in c...Anders Carlsson
2009-08-23Remove the PaddingFields member from CGRecordLayout, it wasn't used anyway.Anders Carlsson
2009-08-13Update for LLVM API change.Owen Anderson
2009-08-08Take #pragma pack into account when laying out structs. Fixes rdar://problem/...Anders Carlsson
2009-08-08Introduce a new PragmaPack attribute, and use it for #pragma pack. The Packed...Anders Carlsson
2009-08-08Assert that the LLVM type has the same size as the RecordDecl size.Anders Carlsson
2009-08-05Update for LLVM API change.Owen Anderson
2009-08-04Simplify alignment handling in the record builder.Anders Carlsson
2009-07-29No longer need to keep base class offsets in the offsetFariborz Jahanian
2009-07-28More CGRecordLayoutBuilder cleanup.Anders Carlsson