blob: e1d9dfc1fc308d4e957e7ff0eaabf279cc1e290f [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s
Anders Carlsson0a8f8472009-09-16 15:53:40 +00002
Daniel Dunbarce9f4232009-11-22 23:01:23 +00003// Basic base class test.
4struct f0_s0 { unsigned a; };
5struct f0_s1 : public f0_s0 { void *b; };
Anders Carlssoneb9d81d2011-04-17 21:56:13 +00006// CHECK: define void @_Z2f05f0_s1(i32 %a0.coerce0, i8* %a0.coerce1)
Daniel Dunbarce9f4232009-11-22 23:01:23 +00007void f0(f0_s1 a0) { }
8
9// Check with two eight-bytes in base class.
10struct f1_s0 { unsigned a; unsigned b; float c; };
11struct f1_s1 : public f1_s0 { float d;};
Anders Carlssoneb9d81d2011-04-17 21:56:13 +000012// CHECK: define void @_Z2f15f1_s1(i64 %a0.coerce0, <2 x float> %a0.coerce1)
Daniel Dunbarce9f4232009-11-22 23:01:23 +000013void f1(f1_s1 a0) { }
14
15// Check with two eight-bytes in base class and merge.
16struct f2_s0 { unsigned a; unsigned b; float c; };
17struct f2_s1 : public f2_s0 { char d;};
Chris Lattner225e2862010-06-29 00:14:52 +000018// CHECK: define void @_Z2f25f2_s1(i64 %a0.coerce0, i64 %a0.coerce1)
Daniel Dunbarce9f4232009-11-22 23:01:23 +000019void f2(f2_s1 a0) { }
20
Daniel Dunbar4971ff82009-12-22 01:19:25 +000021// PR5831
Chris Lattner117e3f42010-07-30 04:02:24 +000022// CHECK: define void @_Z2f34s3_1(i64 %x.coerce)
Daniel Dunbar4971ff82009-12-22 01:19:25 +000023struct s3_0 {};
24struct s3_1 { struct s3_0 a; long b; };
25void f3(struct s3_1 x) {}
Daniel Dunbar67d438d2010-05-15 00:00:37 +000026
Chris Lattner800588f2010-07-29 06:26:06 +000027// CHECK: define i64 @_Z4f4_0M2s4i(i64 %a)
Chris Lattner9c254f02010-06-29 06:01:59 +000028// CHECK: define {{.*}} @_Z4f4_1M2s4FivE(i64 %a.coerce0, i64 %a.coerce1)
Daniel Dunbar67d438d2010-05-15 00:00:37 +000029struct s4 {};
30typedef int s4::* s4_mdp;
31typedef int (s4::*s4_mfp)();
32s4_mdp f4_0(s4_mdp a) { return a; }
33s4_mfp f4_1(s4_mfp a) { return a; }
Chris Lattnerbcaedae2010-06-30 19:14:05 +000034
35
36namespace PR7523 {
37struct StringRef {
38 char *a;
39};
40
41void AddKeyword(StringRef, int x);
42
43void foo() {
44 // CHECK: define void @_ZN6PR75233fooEv()
45 // CHECK: call void @_ZN6PR752310AddKeywordENS_9StringRefEi(i8* {{.*}}, i32 4)
46 AddKeyword(StringRef(), 4);
47}
Chris Lattnera7206c52010-07-29 17:04:54 +000048}
49
Chris Lattnera7206c52010-07-29 17:04:54 +000050namespace PR7742 { // Also rdar://8250764
51 struct s2 {
52 float a[2];
53 };
54
55 struct c2 : public s2 {};
56
Anders Carlssoneb9d81d2011-04-17 21:56:13 +000057 // CHECK: define <2 x float> @_ZN6PR77423fooEPNS_2c2E(%"struct.PR7742::c2"* %P)
Chris Lattnera7206c52010-07-29 17:04:54 +000058 c2 foo(c2 *P) {
59 }
60
Chris Lattner117e3f42010-07-30 04:02:24 +000061}
62
63namespace PR5179 {
64 struct B {};
65
66 struct B1 : B {
67 int* pa;
68 };
69
70 struct B2 : B {
71 B1 b1;
72 };
73
74 // CHECK: define i8* @_ZN6PR51793barENS_2B2E(i32* %b2.coerce)
75 const void *bar(B2 b2) {
76 return b2.b1.pa;
77 }
78}
Chris Lattnerb6c504b2010-08-23 05:26:13 +000079
80namespace test5 {
81 struct Xbase { };
82 struct Empty { };
83 struct Y;
84 struct X : public Xbase {
85 Empty empty;
86 Y f();
87 };
88 struct Y : public X {
89 Empty empty;
90 };
91 X getX();
92 int takeY(const Y&, int y);
93 void g() {
94 // rdar://8340348 - The temporary for the X object needs to have a defined
95 // address when passed into X::f as 'this'.
96 takeY(getX().f(), 42);
97 }
98 // CHECK: void @_ZN5test51gEv()
99 // CHECK: alloca %"struct.test5::Y"
100 // CHECK: alloca %"struct.test5::X"
101 // CHECK: alloca %"struct.test5::Y"
102}
Chris Lattner66e7b682010-09-01 00:50:20 +0000103
104
105// rdar://8360877
106namespace test6 {
107 struct outer {
108 int x;
109 struct epsilon_matcher {} e;
110 int f;
111 };
112
113 int test(outer x) {
114 return x.x + x.f;
115 }
116 // CHECK: define i32 @_ZN5test64testENS_5outerE(i64 %x.coerce0, i32 %x.coerce1)
117}
Eli Friedmanded137f2011-06-29 07:04:55 +0000118
119namespace test7 {
120 struct StringRef {char* ptr; long len; };
121 class A { public: ~A(); };
122 A x(A, A, long, long, StringRef) { return A(); }
123 // Check that the StringRef is passed byval instead of expanded
124 // (which would split it between registers and memory).
125 // rdar://problem/9686430
126 // CHECK: define void @_ZN5test71xENS_1AES0_llNS_9StringRefE({{.*}} byval align 8)
127
128 // And a couple extra related tests:
129 A y(A, long double, long, long, StringRef) { return A(); }
130 // CHECK: define void @_ZN5test71yENS_1AEellNS_9StringRefE({{.*}} i8*
131 struct StringDouble {char * ptr; double d;};
132 A z(A, A, A, A, A, StringDouble) { return A(); }
133 A zz(A, A, A, A, StringDouble) { return A(); }
134 // CHECK: define void @_ZN5test71zENS_1AES0_S0_S0_S0_NS_12StringDoubleE({{.*}} byval align 8)
135 // CHECK: define void @_ZN5test72zzENS_1AES0_S0_S0_NS_12StringDoubleE({{.*}} i8*
136}
Bruno Cardoso Lopesb8981df2011-07-13 21:58:55 +0000137
138namespace test8 {
139 // CHECK: declare void @_ZN5test83fooENS_1BE(%"class.test8::B"* byval align 8)
140 class A {
141 char big[17];
142 };
143
144 class B : public A {};
145
146 void foo(B b);
147 void bar() {
148 B b;
149 foo(b);
150 }
151}