blob: 5e14cbef897632603670d8667370186c3c27fe8e [file] [log] [blame]
Anders Carlssonabea9512011-02-28 00:40:07 +00001// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o - -mconstructor-aliases -fcxx-exceptions -fexceptions | FileCheck %s
John McCallc0bf4622010-02-23 00:48:20 +00002
3// CHECK: @_ZN5test01AD1Ev = alias {{.*}} @_ZN5test01AD2Ev
4// CHECK: @_ZN5test11MD2Ev = alias {{.*}} @_ZN5test11AD2Ev
5// CHECK: @_ZN5test11ND2Ev = alias {{.*}} @_ZN5test11AD2Ev
6// CHECK: @_ZN5test11OD2Ev = alias {{.*}} @_ZN5test11AD2Ev
7// CHECK: @_ZN5test11SD2Ev = alias bitcast {{.*}} @_ZN5test11AD2Ev
8
John McCallc76702c2010-05-27 01:45:30 +00009// CHECK: @_ZN5test312_GLOBAL__N_11DD1Ev = alias internal {{.*}} @_ZN5test312_GLOBAL__N_11DD2Ev
10// CHECK: @_ZN5test312_GLOBAL__N_11DD2Ev = alias internal bitcast {{.*}} @_ZN5test312_GLOBAL__N_11CD2Ev
11// CHECK: @_ZN5test312_GLOBAL__N_11CD1Ev = alias internal {{.*}} @_ZN5test312_GLOBAL__N_11CD2Ev
12
Anders Carlsson174754c2009-09-01 18:33:46 +000013struct A {
14 int a;
15
16 ~A();
17};
18
19// Base with non-trivial destructor
20struct B : A {
21 ~B();
22};
23
24B::~B() { }
25
26// Field with non-trivial destructor
27struct C {
28 A a;
29
30 ~C();
31};
32
Douglas Gregor45132722009-10-01 20:44:19 +000033C::~C() { }
34
Douglas Gregord92ec472010-07-01 05:10:53 +000035namespace PR7526 {
36 extern void foo();
37 struct allocator {
38 ~allocator() throw();
39 };
40
41 struct allocator_derived : allocator { };
42
Chris Lattner9cbe4f02011-07-09 17:41:47 +000043 // CHECK: define void @_ZN6PR75269allocatorD2Ev(%"struct.PR7526::allocator"* %this) unnamed_addr
Douglas Gregord92ec472010-07-01 05:10:53 +000044 // CHECK: call void @__cxa_call_unexpected
45 allocator::~allocator() throw() { foo(); }
46
Chris Lattner9cbe4f02011-07-09 17:41:47 +000047 // CHECK: define linkonce_odr void @_ZN6PR752617allocator_derivedD1Ev(%"struct.PR7526::allocator_derived"* %this) unnamed_addr
John McCall9c0c1f32010-07-08 06:48:12 +000048 // CHECK-NOT: call void @__cxa_call_unexpected
49 // CHECK: }
Douglas Gregord92ec472010-07-01 05:10:53 +000050 void foo() {
51 allocator_derived ad;
52 }
53}
54
Douglas Gregor45132722009-10-01 20:44:19 +000055// PR5084
56template<typename T>
57class A1 {
58 ~A1();
59};
60
61template<> A1<char>::~A1();
Anders Carlsson9f853df2009-11-17 04:44:12 +000062
63// PR5529
64namespace PR5529 {
65 struct A {
66 ~A();
67 };
68
69 A::~A() { }
70 struct B : A {
71 virtual ~B();
72 };
73
74 B::~B() {}
75}
John McCall9fc6a772010-02-19 09:25:03 +000076
77// FIXME: there's a known problem in the codegen here where, if one
78// destructor throws, the remaining destructors aren't run. Fix it,
79// then make this code check for it.
80namespace test0 {
81 void foo();
82 struct VBase { ~VBase(); };
83 struct Base { ~Base(); };
84 struct Member { ~Member(); };
85
86 struct A : Base {
87 Member M;
88 ~A();
89 };
90
91 // The function-try-block won't suppress -mconstructor-aliases here.
92 A::~A() try { } catch (int i) {}
93
John McCallc0bf4622010-02-23 00:48:20 +000094// complete destructor alias tested above
John McCall9fc6a772010-02-19 09:25:03 +000095
Rafael Espindola0691a5c2011-01-25 19:10:24 +000096// CHECK: define void @_ZN5test01AD2Ev(%"struct.test0::A"* %this) unnamed_addr
John McCall9fc6a772010-02-19 09:25:03 +000097// CHECK: invoke void @_ZN5test06MemberD1Ev
98// CHECK: unwind label [[MEM_UNWIND:%[a-zA-Z0-9.]+]]
99// CHECK: invoke void @_ZN5test04BaseD2Ev
100// CHECK: unwind label [[BASE_UNWIND:%[a-zA-Z0-9.]+]]
101
102 struct B : Base, virtual VBase {
103 Member M;
104 ~B();
105 };
106 B::~B() try { } catch (int i) {}
107 // It will suppress the delegation optimization here, though.
108
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000109// CHECK: define void @_ZN5test01BD1Ev(%"struct.test0::B"* %this) unnamed_addr
John McCall9fc6a772010-02-19 09:25:03 +0000110// CHECK: invoke void @_ZN5test06MemberD1Ev
111// CHECK: unwind label [[MEM_UNWIND:%[a-zA-Z0-9.]+]]
112// CHECK: invoke void @_ZN5test04BaseD2Ev
113// CHECK: unwind label [[BASE_UNWIND:%[a-zA-Z0-9.]+]]
114// CHECK: invoke void @_ZN5test05VBaseD2Ev
115// CHECK: unwind label [[VBASE_UNWIND:%[a-zA-Z0-9.]+]]
116
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000117// CHECK: define void @_ZN5test01BD2Ev(%"struct.test0::B"* %this, i8** %vtt) unnamed_addr
John McCall9fc6a772010-02-19 09:25:03 +0000118// CHECK: invoke void @_ZN5test06MemberD1Ev
119// CHECK: unwind label [[MEM_UNWIND:%[a-zA-Z0-9.]+]]
120// CHECK: invoke void @_ZN5test04BaseD2Ev
121// CHECK: unwind label [[BASE_UNWIND:%[a-zA-Z0-9.]+]]
122}
John McCallc0bf4622010-02-23 00:48:20 +0000123
124// Test base-class aliasing.
125namespace test1 {
126 struct A { ~A(); char ***m; }; // non-trivial destructor
127 struct B { ~B(); }; // non-trivial destructor
128 struct Empty { }; // trivial destructor, empty
129 struct NonEmpty { int x; }; // trivial destructor, non-empty
130
John McCall9a708462010-03-03 03:40:11 +0000131 // There must be a definition in this translation unit for the alias
132 // optimization to apply.
133 A::~A() { delete m; }
134
John McCallc0bf4622010-02-23 00:48:20 +0000135 struct M : A { ~M(); };
136 M::~M() {} // alias tested above
137
138 struct N : A, Empty { ~N(); };
139 N::~N() {} // alias tested above
140
141 struct O : Empty, A { ~O(); };
142 O::~O() {} // alias tested above
143
144 struct P : NonEmpty, A { ~P(); };
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000145 P::~P() {} // CHECK: define void @_ZN5test11PD2Ev(%"struct.test1::P"* %this) unnamed_addr
John McCallc0bf4622010-02-23 00:48:20 +0000146
147 struct Q : A, B { ~Q(); };
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000148 Q::~Q() {} // CHECK: define void @_ZN5test11QD2Ev(%"struct.test1::Q"* %this) unnamed_addr
John McCallc0bf4622010-02-23 00:48:20 +0000149
150 struct R : A { ~R(); };
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000151 R::~R() { A a; } // CHECK: define void @_ZN5test11RD2Ev(%"struct.test1::R"* %this) unnamed_addr
John McCallc0bf4622010-02-23 00:48:20 +0000152
153 struct S : A { ~S(); int x; };
154 S::~S() {} // alias tested above
155
156 struct T : A { ~T(); B x; };
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000157 T::~T() {} // CHECK: define void @_ZN5test11TD2Ev(%"struct.test1::T"* %this) unnamed_addr
John McCallc0bf4622010-02-23 00:48:20 +0000158
159 // The VTT parameter prevents this. We could still make this work
160 // for calling conventions that are safe against extra parameters.
161 struct U : A, virtual B { ~U(); };
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000162 U::~U() {} // CHECK: define void @_ZN5test11UD2Ev(%"struct.test1::U"* %this, i8** %vtt) unnamed_addr
John McCallc0bf4622010-02-23 00:48:20 +0000163}
John McCall9a708462010-03-03 03:40:11 +0000164
165// PR6471
166namespace test2 {
167 struct A { ~A(); char ***m; };
168 struct B : A { ~B(); };
169
170 B::~B() {}
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000171 // CHECK: define void @_ZN5test21BD2Ev(%"struct.test2::B"* %this) unnamed_addr
John McCall9a708462010-03-03 03:40:11 +0000172 // CHECK: call void @_ZN5test21AD2Ev
173}
John McCallc76702c2010-05-27 01:45:30 +0000174
175// PR7142
176namespace test3 {
177 struct A { virtual ~A(); };
178 struct B { virtual ~B(); };
179 namespace { // internal linkage => deferred
180 struct C : A, B {}; // ~B() in D requires a this-adjustment thunk
181 struct D : C {}; // D::~D() is an alias to C::~C()
182 }
183
184 void test() {
185 new D; // Force emission of D's vtable
186 }
187
188 // Checked at top of file:
189 // @_ZN5test312_GLOBAL__N_11CD1Ev = alias internal {{.*}} @_ZN5test312_GLOBAL__N_11CD2Ev
190
John McCallf1549f62010-07-06 01:34:17 +0000191 // More checks at end of file.
192
193}
194
195namespace test4 {
196 struct A { ~A(); };
197
198 // CHECK: define void @_ZN5test43fooEv()
199 // CHECK: call void @_ZN5test41AD1Ev
200 // CHECK: ret void
201 void foo() {
202 {
203 A a;
204 goto failure;
205 }
206
207 failure:
208 return;
209 }
210
211 // CHECK: define void @_ZN5test43barEi(
212 // CHECK: [[X:%.*]] = alloca i32
213 // CHECK-NEXT: [[A:%.*]] = alloca
214 // CHECK: br label
215 // CHECK: [[TMP:%.*]] = load i32* [[X]]
216 // CHECK-NEXT: [[CMP:%.*]] = icmp ne i32 [[TMP]], 0
217 // CHECK-NEXT: br i1
218 // CHECK: call void @_ZN5test41AD1Ev(
219 // CHECK: br label
220 // CHECK: [[TMP:%.*]] = load i32* [[X]]
221 // CHECK: [[TMP2:%.*]] = add nsw i32 [[TMP]], -1
222 // CHECK: store i32 [[TMP2]], i32* [[X]]
223 // CHECK: br label
224 // CHECK: ret void
225 void bar(int x) {
226 for (A a; x; ) {
227 x--;
228 }
229 }
230}
231
John McCall66d80a92010-07-06 17:35:03 +0000232// PR7575
233namespace test5 {
234 struct A { ~A(); };
235
John McCall66d80a92010-07-06 17:35:03 +0000236 // CHECK: define void @_ZN5test53fooEv()
237 // CHECK: [[ELEMS:%.*]] = alloca [5 x [[A:%.*]]], align
John McCallbdc4d802011-07-09 01:37:26 +0000238 // CHECK-NEXT: [[BEGIN:%.*]] = getelementptr inbounds [5 x [[A]]]* [[ELEMS]], i32 0, i32 0
239 // CHECK-NEXT: [[END:%.*]] = getelementptr inbounds [[A]]* [[BEGIN]], i64 5
John McCall66d80a92010-07-06 17:35:03 +0000240 // CHECK-NEXT: br label
John McCallbdc4d802011-07-09 01:37:26 +0000241 // CHECK: [[POST:%.*]] = phi [[A]]* [ [[END]], {{%.*}} ], [ [[ELT:%.*]], {{%.*}} ]
242 // CHECK-NEXT: [[ELT]] = getelementptr inbounds [[A]]* [[POST]], i64 -1
243 // CHECK-NEXT: call void @_ZN5test51AD1Ev([[A]]* [[ELT]])
244 // CHECK-NEXT: [[T0:%.*]] = icmp eq [[A]]* [[ELT]], [[BEGIN]]
245 // CHECK-NEXT: br i1 [[T0]],
John McCall66d80a92010-07-06 17:35:03 +0000246 // CHECK: ret void
247 void foo() {
248 A elems[5];
249 }
250}
251
John McCall50da2ca2010-07-21 05:30:47 +0000252namespace test6 {
253 void opaque();
254
255 struct A { ~A(); };
256 template <unsigned> struct B { B(); ~B(); int _; };
257 struct C : B<0>, B<1>, virtual B<2>, virtual B<3> {
258 A x, y, z;
259
260 C();
261 ~C();
262 };
263
264 C::C() { opaque(); }
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000265 // CHECK: define void @_ZN5test61CC1Ev(%"struct.test6::C"* %this) unnamed_addr
John McCall50da2ca2010-07-21 05:30:47 +0000266 // CHECK: call void @_ZN5test61BILj2EEC2Ev
267 // CHECK: invoke void @_ZN5test61BILj3EEC2Ev
268 // CHECK: invoke void @_ZN5test61BILj0EEC2Ev
269 // CHECK: invoke void @_ZN5test61BILj1EEC2Ev
270 // CHECK: invoke void @_ZN5test66opaqueEv
271 // CHECK: ret void
272 // FIXME: way too much EH cleanup code follows
273
274 C::~C() { opaque(); }
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000275 // CHECK: define void @_ZN5test61CD1Ev(%"struct.test6::C"* %this) unnamed_addr
John McCall50da2ca2010-07-21 05:30:47 +0000276 // CHECK: invoke void @_ZN5test61CD2Ev
277 // CHECK: invoke void @_ZN5test61BILj3EED2Ev
278 // CHECK: call void @_ZN5test61BILj2EED2Ev
279 // CHECK: ret void
280 // CHECK: invoke void @_ZN5test61BILj3EED2Ev
281 // CHECK: invoke void @_ZN5test61BILj2EED2Ev
282
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000283 // CHECK: define void @_ZN5test61CD2Ev(%"struct.test6::C"* %this, i8** %vtt) unnamed_addr
John McCall50da2ca2010-07-21 05:30:47 +0000284 // CHECK: invoke void @_ZN5test66opaqueEv
285 // CHECK: invoke void @_ZN5test61AD1Ev
286 // CHECK: invoke void @_ZN5test61AD1Ev
287 // CHECK: invoke void @_ZN5test61AD1Ev
288 // CHECK: invoke void @_ZN5test61BILj1EED2Ev
289 // CHECK: call void @_ZN5test61BILj0EED2Ev
290 // CHECK: ret void
291 // CHECK: invoke void @_ZN5test61AD1Ev
292 // CHECK: invoke void @_ZN5test61AD1Ev
293 // CHECK: invoke void @_ZN5test61AD1Ev
294 // CHECK: invoke void @_ZN5test61BILj1EED2Ev
295 // CHECK: invoke void @_ZN5test61BILj0EED2Ev
296}
297
John McCall0d70d712011-02-13 00:46:43 +0000298// PR 9197
299namespace test7 {
300 struct D { ~D(); };
301
302 struct A { ~A(); };
303 A::~A() { }
304
305 struct B : public A {
306 ~B();
307 D arr[1];
308 };
309
310 // Verify that this doesn't get emitted as an alias
311 // CHECK: define void @_ZN5test71BD2Ev(
312 // CHECK: invoke void @_ZN5test71DD1Ev(
313 // CHECK: call void @_ZN5test71AD2Ev(
314 B::~B() {}
315
316}
317
John McCallf1549f62010-07-06 01:34:17 +0000318// Checks from test3:
319
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000320 // CHECK: define internal void @_ZN5test312_GLOBAL__N_11DD0Ev(%"struct.test3::<anonymous namespace>::D"* %this) unnamed_addr
John McCallf1549f62010-07-06 01:34:17 +0000321 // CHECK: invoke void @_ZN5test312_GLOBAL__N_11DD1Ev(
John McCall9c0c1f32010-07-08 06:48:12 +0000322 // CHECK: call void @_ZdlPv({{.*}}) nounwind
John McCallc76702c2010-05-27 01:45:30 +0000323 // CHECK: ret void
John McCallf1549f62010-07-06 01:34:17 +0000324 // CHECK: call i8* @llvm.eh.exception(
John McCall9c0c1f32010-07-08 06:48:12 +0000325 // CHECK: call void @_ZdlPv({{.*}}) nounwind
John McCall93c332a2011-05-28 21:13:02 +0000326 // CHECK: call void @llvm.eh.resume(
John McCallc76702c2010-05-27 01:45:30 +0000327
328 // Checked at top of file:
329 // @_ZN5test312_GLOBAL__N_11DD1Ev = alias internal {{.*}} @_ZN5test312_GLOBAL__N_11DD2Ev
330 // @_ZN5test312_GLOBAL__N_11DD2Ev = alias internal bitcast {{.*}} @_ZN5test312_GLOBAL__N_11CD2Ev
331
332 // CHECK: define internal void @_ZThn8_N5test312_GLOBAL__N_11DD1Ev(
333 // CHECK: getelementptr inbounds i8* {{.*}}, i64 -8
334 // CHECK: call void @_ZN5test312_GLOBAL__N_11DD1Ev(
335 // CHECK: ret void
336
337 // CHECK: define internal void @_ZThn8_N5test312_GLOBAL__N_11DD0Ev(
338 // CHECK: getelementptr inbounds i8* {{.*}}, i64 -8
339 // CHECK: call void @_ZN5test312_GLOBAL__N_11DD0Ev(
340 // CHECK: ret void
341
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000342 // CHECK: define internal void @_ZN5test312_GLOBAL__N_11CD2Ev(%"struct.test3::<anonymous namespace>::C"* %this) unnamed_addr
John McCall50da2ca2010-07-21 05:30:47 +0000343 // CHECK: invoke void @_ZN5test31BD2Ev(
John McCall182ab512010-07-21 01:23:41 +0000344 // CHECK: call void @_ZN5test31AD2Ev(
345 // CHECK: ret void
346
John McCallc76702c2010-05-27 01:45:30 +0000347 // CHECK: declare void @_ZN5test31BD2Ev(
348 // CHECK: declare void @_ZN5test31AD2Ev(
349
Rafael Espindola0691a5c2011-01-25 19:10:24 +0000350 // CHECK: define internal void @_ZN5test312_GLOBAL__N_11CD0Ev(%"struct.test3::<anonymous namespace>::C"* %this) unnamed_addr
John McCallf1549f62010-07-06 01:34:17 +0000351 // CHECK: invoke void @_ZN5test312_GLOBAL__N_11CD1Ev(
John McCall9c0c1f32010-07-08 06:48:12 +0000352 // CHECK: call void @_ZdlPv({{.*}}) nounwind
John McCallc76702c2010-05-27 01:45:30 +0000353 // CHECK: ret void
John McCallf1549f62010-07-06 01:34:17 +0000354 // CHECK: call i8* @llvm.eh.exception()
John McCall9c0c1f32010-07-08 06:48:12 +0000355 // CHECK: call void @_ZdlPv({{.*}}) nounwind
John McCall93c332a2011-05-28 21:13:02 +0000356 // CHECK: call void @llvm.eh.resume(
John McCallc76702c2010-05-27 01:45:30 +0000357
358 // CHECK: define internal void @_ZThn8_N5test312_GLOBAL__N_11CD1Ev(
359 // CHECK: getelementptr inbounds i8* {{.*}}, i64 -8
360 // CHECK: call void @_ZN5test312_GLOBAL__N_11CD1Ev(
361 // CHECK: ret void
362
363 // CHECK: define internal void @_ZThn8_N5test312_GLOBAL__N_11CD0Ev(
364 // CHECK: getelementptr inbounds i8* {{.*}}, i64 -8
365 // CHECK: call void @_ZN5test312_GLOBAL__N_11CD0Ev(
366 // CHECK: ret void