1 // RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o %t.ll -O1 -disable-llvm-passes -fms-extensions -fstrict-vtable-pointers
2 // RUN: %clang_cc1 %s -triple i686-pc-win32 -emit-llvm -o %t.ms.ll -O1 -disable-llvm-passes -fms-extensions -fstrict-vtable-pointers
3 // FIXME: Assume load should not require -fstrict-vtable-pointers
5 // RUN: FileCheck --check-prefix=CHECK1 --input-file=%t.ll %s
6 // RUN: FileCheck --check-prefix=CHECK2 --input-file=%t.ll %s
7 // RUN: FileCheck --check-prefix=CHECK3 --input-file=%t.ll %s
8 // RUN: FileCheck --check-prefix=CHECK4 --input-file=%t.ll %s
9 // RUN: FileCheck --check-prefix=CHECK-MS --input-file=%t.ms.ll %s
10 // RUN: FileCheck --check-prefix=CHECK6 --input-file=%t.ll %s
11 // RUN: FileCheck --check-prefix=CHECK7 --input-file=%t.ll %s
12 // RUN: FileCheck --check-prefix=CHECK8 --input-file=%t.ll %s
13 // RUN: FileCheck --check-prefix=CHECK9 --input-file=%t.ll %s
25 void g(A
*a
) { a
->foo(); }
27 // CHECK1-LABEL: define{{.*}} void @_ZN5test14fooAEv()
28 // CHECK1: call void @_ZN5test11AC1Ev(ptr
29 // CHECK1: %[[VTABLE:.*]] = load ptr, ptr %{{.*}}
30 // CHECK1: %[[CMP:.*]] = icmp eq ptr %[[VTABLE]], getelementptr inbounds ({ [3 x ptr] }, ptr @_ZTVN5test11AE, i32 0, inrange i32 0, i32 2)
31 // CHECK1: call void @llvm.assume(i1 %[[CMP]])
32 // CHECK1-LABEL: {{^}}}
39 // CHECK1-LABEL: define{{.*}} void @_ZN5test14fooBEv()
40 // CHECK1: call void @_ZN5test11BC1Ev(ptr {{[^,]*}} %{{.*}})
41 // CHECK1: %[[VTABLE:.*]] = load ptr, ptr %{{.*}}
42 // CHECK1: %[[CMP:.*]] = icmp eq ptr %[[VTABLE]], getelementptr inbounds ({ [3 x ptr] }, ptr @_ZTVN5test11BE, i32 0, inrange i32 0, i32 2)
43 // CHECK1: call void @llvm.assume(i1 %[[CMP]])
44 // CHECK1-LABEL: {{^}}}
50 // there should not be any assumes in the ctor that calls base ctor
51 // CHECK1-LABEL: define linkonce_odr void @_ZN5test11BC2Ev(ptr
52 // CHECK1-NOT: @llvm.assume(
53 // CHECK1-LABEL: {{^}}}
70 void g(A
*a
) { a
->foo(); }
71 void h(B
*b
) { b
->bar(); }
73 // CHECK2-LABEL: define{{.*}} void @_ZN5test24testEv()
74 // CHECK2: call void @_ZN5test21CC1Ev(ptr
75 // CHECK2: %[[VTABLE:.*]] = load ptr, ptr {{.*}}
76 // CHECK2: %[[CMP:.*]] = icmp eq ptr %[[VTABLE]], getelementptr inbounds ({ [3 x ptr], [3 x ptr] }, ptr @_ZTVN5test21CE, i32 0, inrange i32 0, i32 2)
77 // CHECK2: call void @llvm.assume(i1 %[[CMP]])
79 // CHECK2: %[[ADD_PTR:.*]] = getelementptr inbounds i8, ptr %{{.*}}, i64 8
80 // CHECK2: %[[VTABLE2:.*]] = load ptr, ptr %[[ADD_PTR]]
81 // CHECK2: %[[CMP2:.*]] = icmp eq ptr %[[VTABLE2]], getelementptr inbounds ({ [3 x ptr], [3 x ptr] }, ptr @_ZTVN5test21CE, i32 0, inrange i32 1, i32 2)
82 // CHECK2: call void @llvm.assume(i1 %[[CMP2]])
84 // CHECK2: call void @_ZN5test21gEPNS_1AE(
85 // CHECK2-LABEL: {{^}}}
104 struct C
: virtual A
, B
{
108 void g(B
*a
) { a
->foo(); }
110 // CHECK3-LABEL: define{{.*}} void @_ZN5test34testEv()
111 // CHECK3: call void @_ZN5test31CC1Ev(ptr
112 // CHECK3: %[[CMP:.*]] = icmp eq ptr %{{.*}}, getelementptr inbounds ({ [4 x ptr] }, ptr @_ZTVN5test31CE, i32 0, inrange i32 0, i32 3)
113 // CHECK3: call void @llvm.assume(i1 %[[CMP]])
127 struct B
: virtual A
{
136 void g(C
*c
) { c
->foo(); }
138 // CHECK4-LABEL: define{{.*}} void @_ZN5test44testEv()
139 // CHECK4: call void @_ZN5test41CC1Ev(ptr
140 // CHECK4: %[[VTABLE:.*]] = load ptr, ptr %{{.*}}
141 // CHECK4: %[[CMP:.*]] = icmp eq ptr %[[VTABLE]], getelementptr inbounds ({ [5 x ptr] }, ptr @_ZTVN5test41CE, i32 0, inrange i32 0, i32 4)
142 // CHECK4: call void @llvm.assume(i1 %[[CMP]]
144 // CHECK4: %[[VTABLE2:.*]] = load ptr, ptr %{{.*}}
145 // CHECK4: %[[CMP2:.*]] = icmp eq ptr %[[VTABLE2]], getelementptr inbounds ({ [5 x ptr] }, ptr @_ZTVN5test41CE, i32 0, inrange i32 0, i32 4)
146 // CHECK4: call void @llvm.assume(i1 %[[CMP2]])
147 // CHECK4-LABEL: {{^}}}
157 struct __declspec(novtable
) S
{
161 void g(S
&s
) { s
.foo(); }
163 // if struct has novtable specifier, then we can't generate assumes
164 // CHECK-MS-LABEL: define dso_local void @"?test@testMS@@YAXXZ"()
165 // CHECK-MS: call x86_thiscallcc noundef ptr @"??0S@testMS@@QAE@XZ"(
166 // CHECK-MS-NOT: @llvm.assume
167 // CHECK-MS-LABEL: {{^}}}
185 // FIXME: Because A's vtable is external, and no virtual functions are hidden,
186 // it's safe to generate assumption loads.
187 // CHECK6-LABEL: define{{.*}} void @_ZN5test61gEv()
188 // CHECK6: call void @_ZN5test61AC1Ev(
189 // CHECK6-NOT: call void @llvm.assume(
191 // We can't emit assumption loads for B, because if we would refer to vtable
192 // it would refer to functions that will not be able to find (like implicit
193 // inline destructor).
195 // CHECK6-LABEL: call void @_ZN5test61BC1Ev(
196 // CHECK6-NOT: call void @llvm.assume(
197 // CHECK6-LABEL: {{^}}}
205 // Because A's key function is defined here, vtable is generated in this TU
206 // CHECK7: @_ZTVN5test71AE ={{.*}} unnamed_addr constant
214 // CHECK7-LABEL: define{{.*}} void @_ZN5test71gEv()
215 // CHECK7: call void @_ZN5test71AC1Ev(
216 // CHECK7: call void @llvm.assume(
217 // CHECK7-LABEL: {{^}}}
231 // CHECK8-DAG: @_ZTVN5test81BE = available_externally unnamed_addr constant
238 // CHECK8-DAG: @_ZTVN5test81CE = linkonce_odr unnamed_addr constant
244 inline void C::bar() {}
253 // CHECK8-DAG: @_ZTVN5test81EE = linkonce_odr unnamed_addr constant
258 // CHECK8-LABEL: define{{.*}} void @_ZN5test81bEv()
259 // CHECK8: call void @llvm.assume(
260 // CHECK8-LABEL: {{^}}}
266 // FIXME: C has inline virtual functions which prohibits as from generating
267 // assumption loads, but because vtable is generated in this TU (key function
268 // defined here) it would be correct to refer to it.
269 // CHECK8-LABEL: define{{.*}} void @_ZN5test81cEv()
270 // CHECK8-NOT: call void @llvm.assume(
271 // CHECK8-LABEL: {{^}}}
277 // FIXME: We could generate assumption loads here.
278 // CHECK8-LABEL: define{{.*}} void @_ZN5test81dEv()
279 // CHECK8-NOT: call void @llvm.assume(
280 // CHECK8-LABEL: {{^}}}
286 // CHECK8-LABEL: define{{.*}} void @_ZN5test81eEv()
287 // CHECK8: call void @llvm.assume(
288 // CHECK8-LABEL: {{^}}}
299 __attribute__((visibility("hidden"))) virtual void doStuff();
302 // CHECK9-LABEL: define{{.*}} void @_ZN5test94testEv()
303 // CHECK9-NOT: @llvm.assume(