Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix another obscure corner layout case. | Argyrios Kyrtzidis | 2010-12-10 | 1 | -9/+13 |
| | | | | llvm-svn: 121436 | ||||
* | Add a LayoutBase member function. No functionality change. | Anders Carlsson | 2010-12-04 | 1 | -15/+22 |
| | | | | llvm-svn: 120924 | ||||
* | Replace calls to AppendBytes with calls to AppendPadding when the bytes ↵ | Anders Carlsson | 2010-12-04 | 1 | -11/+6 |
| | | | | | | appended are padding. llvm-svn: 120922 | ||||
* | CGRecordLayoutBuilder does not need to be exported from this module. | John McCall | 2010-11-30 | 1 | -3/+1 |
| | | | | llvm-svn: 120489 | ||||
* | Don't store the maximum alignment, we can trivially compute it. | Anders Carlsson | 2010-11-28 | 1 | -12/+21 |
| | | | | llvm-svn: 120268 | ||||
* | More work on laying out virtual bases. | Anders Carlsson | 2010-11-28 | 1 | -9/+46 |
| | | | | llvm-svn: 120257 | ||||
* | Begin work on actually laying out virtual bases. | Anders Carlsson | 2010-11-25 | 1 | -1/+32 |
| | | | | llvm-svn: 120140 | ||||
* | Rename RecordLayout::getPrimaryBaseWasVirtual to isPrimaryBaseVirtual. | Anders Carlsson | 2010-11-24 | 1 | -2/+2 |
| | | | | llvm-svn: 120133 | ||||
* | Add CXXRecordDecl::getIndirectPrimaryBases. | Anders Carlsson | 2010-11-24 | 1 | -1/+6 |
| | | | | llvm-svn: 120129 | ||||
* | Simplify code. | Anders Carlsson | 2010-11-24 | 1 | -13/+1 |
| | | | | llvm-svn: 120109 | ||||
* | CGRecordLayout types are always struct types. | Anders Carlsson | 2010-11-24 | 1 | -4/+4 |
| | | | | llvm-svn: 120106 | ||||
* | Remove FIXME; we don't ever want to lay out empty bases. | Anders Carlsson | 2010-11-22 | 1 | -7/+6 |
| | | | | llvm-svn: 119957 | ||||
* | Rename BaseLLVMType to NonVirtualBaseLLVMType. | Anders Carlsson | 2010-11-21 | 1 | -2/+2 |
| | | | | llvm-svn: 119956 | ||||
* | Add getCGRecordLayout helper function. No functionality change. | Anders Carlsson | 2010-11-21 | 1 | -6/+13 |
| | | | | llvm-svn: 119955 | ||||
* | Remove debugging printf. | Nick Lewycky | 2010-11-09 | 1 | -3/+0 |
| | | | | | | Fix linux build. llvm-svn: 118497 | ||||
* | Introduce the concept of a non-virtual base type to CGRecordLayoutBuilder as ↵ | Anders Carlsson | 2010-11-09 | 1 | -9/+109 |
| | | | | | | a first step towards fixing PR6995. llvm-svn: 118491 | ||||
* | Rename getBaseClassOffset to getBaseClassOffsetInBits and introduce a ↵ | Anders Carlsson | 2010-10-31 | 1 | -1/+1 |
| | | | | | | getBaseClassOffset which returns the offset in CharUnits. Do the same thing for getVBaseClassOffset. llvm-svn: 117881 | ||||
* | IRgen: Move CGBitFieldInfo strategy computation helpers to static member | Daniel Dunbar | 2010-09-02 | 1 | -11/+23 |
| | | | | | | functions. llvm-svn: 112913 | ||||
* | Go back to asking CodeGenTypes whether a type is zero-initializable. | John McCall | 2010-08-22 | 1 | -26/+21 |
| | | | | | | | | | Make CGT defer to the ABI on all member pointer types. This requires giving CGT a handle to the ABI. It's way easier to make that work if we avoid lazily creating the ABI. Make it so. llvm-svn: 111786 | ||||
* | AST: Rename PragmaPackAttr to MaxFieldAlignmentAttr, which is more accurate. | Daniel Dunbar | 2010-05-27 | 1 | -2/+3 |
| | | | | llvm-svn: 104795 | ||||
* | Correctly initialize bases with member pointers. This should fix PR6441 but ↵ | Anders Carlsson | 2010-05-18 | 1 | -7/+19 |
| | | | | | | that test case is a bit weird and I'd like to investigate further before closing that bug. llvm-svn: 104025 | ||||
* | Keep track of the LLVM field numbers for non-virtual bases. | Anders Carlsson | 2010-05-18 | 1 | -4/+16 |
| | | | | llvm-svn: 104013 | ||||
* | Start laying out bases as individual fields. We still use ugly i8 arrays but ↵ | Anders Carlsson | 2010-05-18 | 1 | -14/+61 |
| | | | | | | this is a step in the right direction. llvm-svn: 104012 | ||||
* | Use a more appropriate LLVM type for the vtable pointer. | Anders Carlsson | 2010-05-05 | 1 | -3/+5 |
| | | | | llvm-svn: 103078 | ||||
* | IRgen: Fix another case where we generated an invalid access component when we | Daniel Dunbar | 2010-04-22 | 1 | -13/+12 |
| | | | | | | | immediately narrowed the access size. Fix this (and previous case) by just choosing a better access size up-front. llvm-svn: 102068 | ||||
* | IRgen: Fix case where we might generate an access component with width == 0, if | Daniel Dunbar | 2010-04-22 | 1 | -0/+10 |
| | | | | | | | we have to narrow the access side immediately (can happen with packed, -fno-bitfield-type-align). llvm-svn: 102067 | ||||
* | IRgen: Set alignment correctly on bit-field accesses. | Daniel Dunbar | 2010-04-22 | 1 | -4/+4 |
| | | | | llvm-svn: 102046 | ||||
* | IRgen: Rewrite bit-field access policy to not access data beyond the bounds ↵ | Daniel Dunbar | 2010-04-22 | 1 | -39/+83 |
| | | | | | | | | | | | | of the structure, which we also now verify as part of the post-layout consistency checks. - This fixes some pedantic bugs with packed structures, as well as major problems with -fno-bitfield-type-align. - Fixes PR5591, PR5567, and all known -fno-bitfield-type-align issues. - Review appreciated. llvm-svn: 102045 | ||||
* | IRgen: Fix CGRecordLayout::print to print the bit-field infos in a ↵ | Daniel Dunbar | 2010-04-22 | 1 | -1/+14 |
| | | | | | | consistent order. llvm-svn: 102044 | ||||
* | IRgen: Add checking that the LLVM and AST record layout offsets agree (for | Daniel Dunbar | 2010-04-21 | 1 | -1/+20 |
| | | | | | | non-bit-fields). llvm-svn: 102014 | ||||
* | IRgen: Always use i8 arrays to access union bit-fields. This is ugly, but | Daniel Dunbar | 2010-04-20 | 1 | -15/+6 |
| | | | | | | | matches how we currently handle structs, and this correctly handles -fno-bitfield-type-align. llvm-svn: 101918 | ||||
* | AST: Dump ASTRecordLayout objects when they are created with ↵ | Daniel Dunbar | 2010-04-19 | 1 | -1/+1 |
| | | | | | | -fdump-record-layouts. llvm-svn: 101815 | ||||
* | IRgen: Kill unused function and move the type match assert to after record ↵ | Daniel Dunbar | 2010-04-19 | 1 | -13/+8 |
| | | | | | | dumping. llvm-svn: 101814 | ||||
* | Simplify wide bit-field layout in CGRecordLayoutBuilder, and also fix a bug ↵ | Anders Carlsson | 2010-04-17 | 1 | -15/+10 |
| | | | | | | where assigning to a bit-field member would overwrite other parts of the struct. llvm-svn: 101681 | ||||
* | Unnamed bit-fields in a union should be laid out with a type that doesn't ↵ | Anders Carlsson | 2010-04-17 | 1 | -1/+17 |
| | | | | | | affect alignment. llvm-svn: 101673 | ||||
* | Factor union field layout code out into a separate function. No ↵ | Anders Carlsson | 2010-04-17 | 1 | -18/+31 |
| | | | | | | functionality change. llvm-svn: 101671 | ||||
* | Vtable -> VTable renames across the board. | Anders Carlsson | 2010-04-17 | 1 | -1/+1 |
| | | | | llvm-svn: 101666 | ||||
* | Make CGRecordLayoutBuilder deal with wide bit-fields. Will land tests ↵ | Anders Carlsson | 2010-04-16 | 1 | -1/+20 |
| | | | | | | shortly (Daniel, please review). llvm-svn: 101472 | ||||
* | IRgen: Change CGBitFieldInfo to take the AccessInfo as constructor ↵ | Daniel Dunbar | 2010-04-15 | 1 | -5/+6 |
| | | | | | | | | arguments, it is now an immutable object. Also, add some checking of various invariants that should hold on the CGBitFieldInfo access. llvm-svn: 101345 | ||||
* | IRgen: Eliminate now unused fields from CGBitFieldInfo. | Daniel Dunbar | 2010-04-15 | 1 | -7/+4 |
| | | | | llvm-svn: 101344 | ||||
* | IRgen: Enhance CGBitFieldInfo with enough information to fully describe the ↵ | Daniel Dunbar | 2010-04-13 | 1 | -5/+65 |
| | | | | | | | | | | "policy" with which a bit-field should be accessed. - For now, these policies are computed to match the current IRgen strategy, although the new information isn't being used yet (except in -fdump-record-layouts). - Design comments appreciated. llvm-svn: 101178 | ||||
* | IRgen: Factor out ComputeBitFieldInfo. | Daniel Dunbar | 2010-04-12 | 1 | -18/+21 |
| | | | | llvm-svn: 101066 | ||||
* | IRgen: Add CGRecordLayout::dump, and dump (irgen) record layouts as part of ↵ | Daniel Dunbar | 2010-04-12 | 1 | -1/+38 |
| | | | | | | -fdump-record-layouts. llvm-svn: 101051 | ||||
* | IRgen: Move the bit-field access type into CGBitFieldInfo, and change ↵ | Daniel Dunbar | 2010-04-08 | 1 | -4/+4 |
| | | | | | | bit-field LValues to just store the base address of object containing the bit-field. llvm-svn: 100745 | ||||
* | IRgen: Move BitFieldIsSigned bit into CGBitFieldInfo. | Daniel Dunbar | 2010-04-06 | 1 | -2/+5 |
| | | | | llvm-svn: 100513 | ||||
* | Simplify. | Daniel Dunbar | 2010-04-06 | 1 | -28/+11 |
| | | | | llvm-svn: 100512 | ||||
* | IRgen: Lift BitFieldInfo to CGBitFieldInfo at namespace level. | Daniel Dunbar | 2010-04-05 | 1 | -1/+1 |
| | | | | llvm-svn: 100433 | ||||
* | IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out ↵ | Daniel Dunbar | 2010-03-31 | 1 | -3/+7 |
| | | | | | | | | of CodeGenTypes, to per-record CGRecordLayout structures. - I did a cursory check that this was perf neutral, FWIW. llvm-svn: 99978 | ||||
* | CGRecordLayoutBuilder: Switch unions to use same mechanism for tracking ↵ | Daniel Dunbar | 2010-03-31 | 1 | -3/+4 |
| | | | | | | | | field and bit-field info as structs. - Anders, please check. llvm-svn: 99977 | ||||
* | IRGen: Hide CGRecordLayoutBuilder class, because I can. | Daniel Dunbar | 2010-03-31 | 1 | -28/+133 |
| | | | | llvm-svn: 99967 |