diff options
author | Warren Hunt <whunt@google.com> | 2014-02-21 23:49:50 +0000 |
---|---|---|
committer | Warren Hunt <whunt@google.com> | 2014-02-21 23:49:50 +0000 |
commit | 21db05d136d6af2e90dcb148a307a71908d31049 (patch) | |
tree | 10ec44dabec4c2e21c071f52a80d4523305ac7a6 /test/CodeGenCXX/pragma-pack-3.cpp | |
parent | 9298d56cfbc5abd66ec296f7ea1273dd25339ed6 (diff) | |
download | clang-21db05d136d6af2e90dcb148a307a71908d31049.tar.gz |
Complete Rewrite of CGRecordLayoutBuilder
CGRecordLayoutBuilder was aging, complex, multi-pass, and shows signs of
existing before ASTRecordLayoutBuilder. It redundantly performed many
layout operations that are now performed by ASTRecordLayoutBuilder and
asserted that the results were the same. With the addition of support
for the MS-ABI, such as placement of vbptrs, vtordisps, different
bitfield layout and a variety of other features, CGRecordLayoutBuilder
was growing unwieldy in its redundancy.
This patch re-architects CGRecordLayoutBuilder to not perform any
redundant layout but rather, as directly as possible, lower an
ASTRecordLayout to an llvm::type. The new architecture is significantly
smaller and simpler than the CGRecordLayoutBuilder and contains fewer
ABI-specific code paths. It's also one pass.
The architecture of the new system is described in the comments. For the
most part, the new system simply takes all of the fields and bases from
an ASTRecordLayout, sorts them, inserts padding and dumps a record.
Bitfields, unions and primary virtual bases make this process a bit more
complicated. See the inline comments.
In addition, this patch updates a few lit tests due to the fact that the
new system computes more accurate llvm types than CGRecordLayoutBuilder.
Each change is commented individually in the review.
Differential Revision: http://llvm-reviews.chandlerc.com/D2795
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201907 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/pragma-pack-3.cpp')
-rw-r--r-- | test/CodeGenCXX/pragma-pack-3.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGenCXX/pragma-pack-3.cpp b/test/CodeGenCXX/pragma-pack-3.cpp index e244ef55df..49509a5b2a 100644 --- a/test/CodeGenCXX/pragma-pack-3.cpp +++ b/test/CodeGenCXX/pragma-pack-3.cpp @@ -11,7 +11,8 @@ struct Derived_1 : virtual Base #pragma pack(1) struct Derived_2 : Derived_1 { - // CHECK: %struct.Derived_2 = type <{ [5 x i8], %struct.Base }> + // CHECK: %struct.Derived_2 = type { %struct.Derived_1.base, %struct.Base } + // CHECK: %struct.Derived_1.base = type <{ i32 (...)**, i8 }> }; Derived_2 x; |