2013-08-12 20:51:05 +08:00
|
|
|
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -O3 | FileCheck -check-prefix CHECK-LP64 %s
|
|
|
|
// RUN: %clang_cc1 %s -triple=i386-apple-darwin10 -emit-llvm -o - -O3 | FileCheck -check-prefix CHECK-LP32 %s
|
2010-04-18 04:21:41 +08:00
|
|
|
|
2010-04-18 06:54:57 +08:00
|
|
|
// CHECK-LP64: %union.Test1 = type { i32, [4 x i8] }
|
2010-04-18 04:21:41 +08:00
|
|
|
union Test1 {
|
|
|
|
int a;
|
|
|
|
int b: 39;
|
2010-04-18 05:04:52 +08:00
|
|
|
} t1;
|
2010-04-18 04:21:41 +08:00
|
|
|
|
2010-04-18 06:54:57 +08:00
|
|
|
// CHECK-LP64: %union.Test2 = type { i8 }
|
2010-04-18 05:04:52 +08:00
|
|
|
union Test2 {
|
|
|
|
int : 6;
|
|
|
|
} t2;
|
|
|
|
|
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
llvm-svn: 201907
2014-02-22 07:49:50 +08:00
|
|
|
// CHECK-LP64: %union.Test3 = type { i16 }
|
2010-04-18 05:04:52 +08:00
|
|
|
union Test3 {
|
|
|
|
int : 9;
|
|
|
|
} t3;
|
2010-04-18 06:54:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define CHECK(x) if (!(x)) return __LINE__
|
|
|
|
|
|
|
|
int f() {
|
|
|
|
struct {
|
|
|
|
int a;
|
|
|
|
|
|
|
|
unsigned long long b : 65;
|
|
|
|
|
|
|
|
int c;
|
|
|
|
} c;
|
|
|
|
|
|
|
|
c.a = 0;
|
|
|
|
c.b = (unsigned long long)-1;
|
|
|
|
c.c = 0;
|
|
|
|
|
|
|
|
CHECK(c.a == 0);
|
|
|
|
CHECK(c.b == (unsigned long long)-1);
|
|
|
|
CHECK(c.c == 0);
|
|
|
|
|
|
|
|
// CHECK-LP64: ret i32 0
|
|
|
|
// CHECK-LP32: ret i32 0
|
|
|
|
return 0;
|
|
|
|
}
|