1 // RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fexceptions -fcxx-exceptions -fno-rtti | FileCheck -check-prefix WIN32 -check-prefix WIN32-O0 %s
2 // RUN: %clang_cc1 -std=c++11 -emit-llvm -O3 -disable-llvm-passes %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fexceptions -fcxx-exceptions -fno-rtti | FileCheck -check-prefix WIN32 -check-prefix WIN32-O3 -check-prefix WIN32-LIFETIME %s
12 int TakesTwo(A a
, A b
);
14 TakesTwo(getA(), getA());
17 // With exceptions, we need to clean up at least one of these temporaries.
18 // WIN32-LABEL: define dso_local void @"?HasEHCleanup@@YAXXZ"() {{.*}} {
19 // WIN32: %[[base:.*]] = call ptr @llvm.stacksave.p0()
20 // If this call throws, we have to restore the stack.
21 // WIN32: call void @"?getA@@YA?AUA@@XZ"(ptr sret(%struct.A) align 4 %{{.*}})
22 // If this call throws, we have to cleanup the first temporary.
23 // WIN32: invoke void @"?getA@@YA?AUA@@XZ"(ptr sret(%struct.A) align 4 %{{.*}})
24 // If this call throws, we have to cleanup the stacksave.
25 // WIN32: call noundef i32 @"?TakesTwo@@YAHUA@@0@Z"
26 // WIN32: call void @llvm.stackrestore
29 // There should be one dtor call for unwinding from the second getA.
31 // WIN32: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
32 // WIN32-NOT: @"??1A@@QAE@XZ"
36 // This test verifies the fix for a crash that occurred after
38 void HasEHCleanupNoexcept() noexcept
{
39 TakesTwo(getA(), getA());
42 // With exceptions, we need to clean up at least one of these temporaries.
43 // WIN32-LABEL: define dso_local void @"?HasEHCleanupNoexcept@@YAXXZ"() {{.*}} {
44 // WIN32: %[[base:.*]] = call ptr @llvm.stacksave.p0()
45 // WIN32: invoke void @"?getA@@YA?AUA@@XZ"(ptr sret(%struct.A) align 4 %{{.*}})
46 // WIN32: invoke void @"?getA@@YA?AUA@@XZ"(ptr sret(%struct.A) align 4 %{{.*}})
47 // WIN32: invoke noundef i32 @"?TakesTwo@@YAHUA@@0@Z"
48 // WIN32: call void @llvm.stackrestore
51 // Since all the calls terminate, there should be no dtors on the unwind
53 // WIN32-NOT: @"??1A@@QAE@XZ"
57 void TakeRef(const A
&a
);
58 int HasDeactivatedCleanups() {
59 return TakesTwo((TakeRef(A()), A()), (TakeRef(A()), A()));
62 // WIN32-LABEL: define dso_local noundef i32 @"?HasDeactivatedCleanups@@YAHXZ"() {{.*}} {
63 // WIN32: %[[isactive:.*]] = alloca i1
64 // WIN32: call ptr @llvm.stacksave.p0()
65 // WIN32: %[[argmem:.*]] = alloca inalloca [[argmem_ty:<{ %struct.A, %struct.A }>]]
66 // WIN32: %[[arg1:.*]] = getelementptr inbounds [[argmem_ty]], ptr %[[argmem]], i32 0, i32 1
67 // WIN32: call x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
68 // WIN32: invoke void @"?TakeRef@@YAXABUA@@@Z"
70 // WIN32: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"(ptr {{[^,]*}} %[[arg1]])
71 // WIN32: store i1 true, ptr %[[isactive]]
73 // WIN32: %[[arg0:.*]] = getelementptr inbounds [[argmem_ty]], ptr %[[argmem]], i32 0, i32 0
74 // WIN32: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
75 // WIN32: invoke void @"?TakeRef@@YAXABUA@@@Z"
76 // WIN32: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
77 // WIN32: store i1 false, ptr %[[isactive]]
79 // WIN32: invoke noundef i32 @"?TakesTwo@@YAHUA@@0@Z"(ptr inalloca([[argmem_ty]]) %[[argmem]])
80 // Destroy the two const ref temporaries.
81 // WIN32: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
82 // WIN32: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
85 // Conditionally destroy arg1.
86 // WIN32: %[[cond:.*]] = load i1, ptr %[[isactive]]
87 // WIN32: br i1 %[[cond]]
88 // WIN32: call x86_thiscallcc void @"??1A@@QAE@XZ"(ptr {{[^,]*}} %[[arg1]])
91 // Test putting the cleanups inside a conditional.
93 int HasConditionalCleanup(bool cond
) {
94 return (cond
? TakesTwo(A(), A()) : CouldThrow());
97 // WIN32-LABEL: define dso_local noundef i32 @"?HasConditionalCleanup@@YAH_N@Z"(i1 noundef zeroext %{{.*}}) {{.*}} {
98 // WIN32: store i1 false
100 // WIN32: call ptr @llvm.stacksave.p0()
101 // WIN32: call x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"(ptr {{[^,]*}} %{{.*}})
102 // WIN32: store i1 true
103 // WIN32: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"(ptr {{[^,]*}} %{{.*}})
104 // WIN32: call noundef i32 @"?TakesTwo@@YAHUA@@0@Z"
106 // WIN32: call void @llvm.stackrestore
108 // WIN32: call noundef i32 @"?CouldThrow@@YAHXZ"()
110 // Only one dtor in the invoke for arg1
111 // WIN32: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
112 // WIN32-NOT: invoke x86_thiscallcc void @"??1A@@QAE@XZ"
116 int HasConditionalDeactivatedCleanups(bool cond
) {
117 return (cond
? TakesTwo((TakeRef(A()), A()), (TakeRef(A()), A())) : CouldThrow());
120 // WIN32-O0-LABEL: define dso_local noundef i32 @"?HasConditionalDeactivatedCleanups@@YAH_N@Z"{{.*}} {
121 // WIN32-O0: alloca i1
122 // WIN32-O0: %[[arg1_cond:.*]] = alloca i1
123 // Start all four cleanups as deactivated.
124 // WIN32-O0: store i1 false
125 // WIN32-O0: store i1 false
126 // WIN32-O0: store i1 false
127 // WIN32-O0: store i1 false
130 // WIN32-O0: call x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
131 // WIN32-O0: store i1 true
132 // WIN32-O0: invoke void @"?TakeRef@@YAXABUA@@@Z"
133 // WIN32-O0: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
134 // WIN32-O0: store i1 true, ptr %[[arg1_cond]]
135 // WIN32-O0: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
136 // WIN32-O0: store i1 true
137 // WIN32-O0: invoke void @"?TakeRef@@YAXABUA@@@Z"
138 // WIN32-O0: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
139 // WIN32-O0: store i1 true
140 // WIN32-O0: store i1 false, ptr %[[arg1_cond]]
141 // WIN32-O0: invoke noundef i32 @"?TakesTwo@@YAHUA@@0@Z"
143 // WIN32-O0: invoke noundef i32 @"?CouldThrow@@YAHXZ"()
144 // Two normal cleanups for TakeRef args.
145 // WIN32-O0: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
146 // WIN32-O0-NOT: invoke x86_thiscallcc void @"??1A@@QAE@XZ"
149 // Somewhere in the landing pad soup, we conditionally destroy arg1.
150 // WIN32-O0: %[[isactive:.*]] = load i1, ptr %[[arg1_cond]]
151 // WIN32-O0: br i1 %[[isactive]]
152 // WIN32-O0: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
155 // WIN32-O3-LABEL: define dso_local noundef i32 @"?HasConditionalDeactivatedCleanups@@YAH_N@Z"{{.*}} {
156 // WIN32-O3: alloca i1
157 // WIN32-O3: alloca i1
158 // WIN32-O3: %[[arg1_cond:.*]] = alloca i1
159 // Start all four cleanups as deactivated.
160 // WIN32-O3: store i1 false
161 // WIN32-O3: store i1 false
162 // WIN32-O3: store i1 false
163 // WIN32-O3: store i1 false
164 // WIN32-O3: store i1 false
165 // WIN32-O3: store i1 false
168 // WIN32-O3: call x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
169 // WIN32-O3: store i1 true
170 // WIN32-O3: invoke void @"?TakeRef@@YAXABUA@@@Z"
171 // WIN32-O3: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
172 // WIN32-O3: store i1 true, ptr %[[arg1_cond]]
173 // WIN32-O3: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
174 // WIN32-O3: store i1 true
175 // WIN32-O3: invoke void @"?TakeRef@@YAXABUA@@@Z"
176 // WIN32-O3: invoke x86_thiscallcc noundef ptr @"??0A@@QAE@XZ"
177 // WIN32-O3: store i1 true
178 // WIN32-O3: store i1 false, ptr %[[arg1_cond]]
179 // WIN32-O3: invoke noundef i32 @"?TakesTwo@@YAHUA@@0@Z"
181 // WIN32-O3: invoke noundef i32 @"?CouldThrow@@YAHXZ"()
182 // Two normal cleanups for TakeRef args.
183 // WIN32-O3: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
184 // WIN32-O3-NOT: invoke x86_thiscallcc void @"??1A@@QAE@XZ"
187 // Somewhere in the landing pad soup, we conditionally destroy arg1.
188 // WIN32-O3: %[[isactive:.*]] = load i1, ptr %[[arg1_cond]]
189 // WIN32-O3: br i1 %[[isactive]]
190 // WIN32-O3: call x86_thiscallcc void @"??1A@@QAE@XZ"({{.*}})
193 namespace crash_on_partial_destroy
{
198 struct B
: virtual A
{
199 // Has an implicit destructor.
207 // We used to crash when emitting this.
210 // Verify that we don't bother with a vbtable lookup when adjusting the this
211 // pointer to call a base destructor from a constructor while unwinding.
212 // WIN32-LABEL: define dso_local {{.*}} @"??0C@crash_on_partial_destroy@@QAE@XZ"{{.*}} {
215 // We shouldn't do any vbptr loads, just constant GEPs.
217 // WIN32: getelementptr i8, ptr %{{.*}}, i32 4
219 // WIN32: call x86_thiscallcc void @"??1B@crash_on_partial_destroy@@UAE@XZ"
223 // WIN32: getelementptr inbounds i8, ptr %{{.*}}, i32 4
225 // WIN32: call x86_thiscallcc void @"??1A@crash_on_partial_destroy@@UAE@XZ"({{.*}})
229 namespace dont_call_terminate
{
239 // WIN32-LABEL: define dso_local void @"?f@dont_call_terminate@@YAXXZ"()
240 // WIN32: invoke void @"?g@dont_call_terminate@@YAXXZ"()
241 // WIN32-NEXT: to label %[[cont:[^ ]*]] unwind label %[[lpad:[^ ]*]]
244 // WIN32: call x86_thiscallcc void @"??1C@dont_call_terminate@@QAE@XZ"({{.*}})
247 // WIN32-NEXT: cleanuppad
248 // WIN32: call x86_thiscallcc void @"??1C@dont_call_terminate@@QAE@XZ"({{.*}})
251 namespace noexcept_false_dtor
{
253 ~D() noexcept(false);
261 // WIN32-LABEL: define dso_local void @"?f@noexcept_false_dtor@@YAXXZ"()
262 // WIN32: invoke noundef i32 @"?CouldThrow@@YAHXZ"()
263 // WIN32: call x86_thiscallcc void @"??1D@noexcept_false_dtor@@QAE@XZ"(ptr {{[^,]*}} %{{.*}})
265 // WIN32: call x86_thiscallcc void @"??1D@noexcept_false_dtor@@QAE@XZ"(ptr {{[^,]*}} %{{.*}})
268 namespace lifetime_marker
{
278 // WIN32-LIFETIME-LABEL: define dso_local void @"?f@lifetime_marker@@YAXXZ"()
279 // WIN32-LIFETIME: %[[c:.*]] = alloca %"struct.lifetime_marker::C"
280 // WIN32-LIFETIME: call void @llvm.lifetime.start.p0(i64 1, ptr %c)
281 // WIN32-LIFETIME: invoke void @"?g@lifetime_marker@@YAXXZ"()
282 // WIN32-LIFETIME-NEXT: to label %[[cont:[^ ]*]] unwind label %[[lpad0:[^ ]*]]
284 // WIN32-LIFETIME: [[cont]]
285 // WIN32-LIFETIME: call x86_thiscallcc void @"??1C@lifetime_marker@@QAE@XZ"({{.*}})
286 // WIN32-LIFETIME: call void @llvm.lifetime.end.p0(i64 1, ptr %[[c]])
288 // WIN32-LIFETIME: [[lpad0]]
289 // WIN32-LIFETIME-NEXT: cleanuppad
290 // WIN32-LIFETIME: call x86_thiscallcc void @"??1C@lifetime_marker@@QAE@XZ"({{.*}})
291 // WIN32-LIFETIME: cleanupret {{.*}} unwind label %[[lpad1:[^ ]*]]
293 // WIN32-LIFETIME: [[lpad1]]
294 // WIN32-LIFETIME-NEXT: cleanuppad
295 // WIN32-LIFETIME: call void @llvm.lifetime.end.p0(i64 1, ptr %[[c]])
302 struct class_1
: virtual class_2
{
303 class_1(){throw "Unhandled exception";}
304 virtual ~class_1() {}
306 struct class_0
: class_1
{
308 virtual ~class_0() {}
312 // WIN32: define dso_local x86_thiscallcc noundef ptr @"??0class_0@@QAE@XZ"(ptr {{[^,]*}} returned align 4 dereferenceable(4) %this, i32 noundef %is_most_derived)
313 // WIN32: store i32 %is_most_derived, ptr %[[IS_MOST_DERIVED_VAR:.*]], align 4
314 // WIN32: %[[IS_MOST_DERIVED_VAL:.*]] = load i32, ptr %[[IS_MOST_DERIVED_VAR]]
315 // WIN32: %[[SHOULD_CALL_VBASE_CTORS:.*]] = icmp ne i32 %[[IS_MOST_DERIVED_VAL]], 0
316 // WIN32: br i1 %[[SHOULD_CALL_VBASE_CTORS]], label %[[INIT_VBASES:.*]], label %[[SKIP_VBASES:.*]]
317 // WIN32: [[INIT_VBASES]]
318 // WIN32: br label %[[SKIP_VBASES]]
319 // WIN32: [[SKIP_VBASES]]
321 // WIN32: %[[CLEANUPPAD:.*]] = cleanuppad within none []
322 // WIN32-NEXT: getelementptr inbounds i8, ptr %{{.*}}, i{{.*}} {{.}}
323 // WIN32-NEXT: %[[SHOULD_CALL_VBASE_DTOR:.*]] = icmp ne i32 %[[IS_MOST_DERIVED_VAL]], 0
324 // WIN32-NEXT: br i1 %[[SHOULD_CALL_VBASE_DTOR]], label %[[DTOR_VBASE:.*]], label %[[SKIP_VBASE:.*]]
325 // WIN32: [[DTOR_VBASE]]
326 // WIN32-NEXT: call x86_thiscallcc void @"??1class_2@@UAE@XZ"
327 // WIN32: br label %[[SKIP_VBASE]]
328 // WIN32: [[SKIP_VBASE]]
332 // Check that IRGen doesn't emit calls to synthesized destructors for
333 // non-trival C structs.
335 // WIN32: define dso_local void @"?test@PR37146@@YAXXZ"()
336 // WIN32: call void @llvm.memset.p0.i32(
337 // WIN32: call i32 @"?getS@PR37146@@YA?AUS@1@XZ"(
338 // WIN32: call void @"?func@PR37146@@YAXUS@1@0@Z"(
339 // WIN32-NEXT: ret void
340 // WIN32-NEXT: {{^}$}}