[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / GlobalDCE / virtual-functions-derived-pointer-call.ll
blob62b5b8d37302d6ababe333efb16c7cce051e1cc2
2 ; RUN: opt < %s -globaldce -S | FileCheck %s
4 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
6 ; struct A {
7 ;   A();
8 ;   virtual int foo(int);
9 ;   virtual int bar(float);
10 ; };
11
12 ; struct B : A {
13 ;   B();
14 ;   virtual int foo(int);
15 ;   virtual int bar(float);
16 ; };
17
18 ; A::A() {}
19 ; B::B() {}
20 ; int A::foo(int)   { return 1; }
21 ; int A::bar(float) { return 2; }
22 ; int B::foo(int)   { return 3; }
23 ; int B::bar(float) { return 4; }
24
25 ; extern "C" int test(B *p, int (B::*q)(int)) { return (p->*q)(42); }
27 ; Member function pointers are tracked by the combination of their object type
28 ; and function type, which must both be compatible. Here, the call is through a
29 ; pointer of type "int (B::*q)(int)", so the call could only be dispatched to
30 ; B::foo. It can't be dispatched to A::bar or B::bar as the function pointer
31 ; does not match, and it can't be dispatched to A::foo as the object type
32 ; doesn't match, so those can be removed.
34 %struct.A = type { i32 (...)** }
35 %struct.B = type { %struct.A }
37 ; CHECK: @_ZTV1A = internal unnamed_addr constant { [4 x i8*] } zeroinitializer
38 @_ZTV1A = internal unnamed_addr constant { [4 x i8*] } { [4 x i8*] [i8* null, i8* null, i8* bitcast (i32 (%struct.A*, i32)* @_ZN1A3fooEi to i8*), i8* bitcast (i32 (%struct.A*, float)* @_ZN1A3barEf to i8*)] }, align 8, !type !0, !type !1, !type !2, !vcall_visibility !3
39 ; CHECK: @_ZTV1B = internal unnamed_addr constant { [4 x i8*] } { [4 x i8*] [i8* null, i8* null, i8* bitcast (i32 (%struct.B*, i32)* @_ZN1B3fooEi to i8*), i8* null] }
40 @_ZTV1B = internal unnamed_addr constant { [4 x i8*] } { [4 x i8*] [i8* null, i8* null, i8* bitcast (i32 (%struct.B*, i32)* @_ZN1B3fooEi to i8*), i8* bitcast (i32 (%struct.B*, float)* @_ZN1B3barEf to i8*)] }, align 8, !type !0, !type !1, !type !2, !type !4, !type !5, !type !6, !vcall_visibility !3
43 ; CHECK-NOT: define internal i32 @_ZN1A3fooEi(
44 define internal i32 @_ZN1A3fooEi(%struct.A* nocapture readnone %this, i32) unnamed_addr #1 align 2 {
45 entry:
46   ret i32 1
49 ; CHECK-NOT: define internal i32 @_ZN1A3barEf(
50 define internal i32 @_ZN1A3barEf(%struct.A* nocapture readnone %this, float) unnamed_addr #1 align 2 {
51 entry:
52   ret i32 2
55 ; CHECK: define internal i32 @_ZN1B3fooEi(
56 define internal i32 @_ZN1B3fooEi(%struct.B* nocapture readnone %this, i32) unnamed_addr #1 align 2 {
57 entry:
58   ret i32 3
61 ; CHECK-NOT: define internal i32 @_ZN1B3barEf(
62 define internal i32 @_ZN1B3barEf(%struct.B* nocapture readnone %this, float) unnamed_addr #1 align 2 {
63 entry:
64   ret i32 4
68 define hidden void @_ZN1AC2Ev(%struct.A* nocapture %this) {
69 entry:
70   %0 = getelementptr inbounds %struct.A, %struct.A* %this, i64 0, i32 0
71   store i32 (...)** bitcast (i8** getelementptr inbounds ({ [4 x i8*] }, { [4 x i8*] }* @_ZTV1A, i64 0, inrange i32 0, i64 2) to i32 (...)**), i32 (...)*** %0, align 8
72   ret void
75 define hidden void @_ZN1BC2Ev(%struct.B* nocapture %this) {
76 entry:
77   %0 = getelementptr inbounds %struct.B, %struct.B* %this, i64 0, i32 0, i32 0
78   store i32 (...)** bitcast (i8** getelementptr inbounds ({ [4 x i8*] }, { [4 x i8*] }* @_ZTV1B, i64 0, inrange i32 0, i64 2) to i32 (...)**), i32 (...)*** %0, align 8
79   ret void
82 define hidden i32 @test(%struct.B* %p, i64 %q.coerce0, i64 %q.coerce1) {
83 entry:
84   %0 = bitcast %struct.B* %p to i8*
85   %1 = getelementptr inbounds i8, i8* %0, i64 %q.coerce1
86   %this.adjusted = bitcast i8* %1 to %struct.B*
87   %2 = and i64 %q.coerce0, 1
88   %memptr.isvirtual = icmp eq i64 %2, 0
89   br i1 %memptr.isvirtual, label %memptr.nonvirtual, label %memptr.virtual
91 memptr.virtual:                                   ; preds = %entry
92   %3 = bitcast i8* %1 to i8**
93   %vtable = load i8*, i8** %3, align 8
94   %4 = add i64 %q.coerce0, -1
95   %5 = getelementptr i8, i8* %vtable, i64 %4, !nosanitize !12
96   %6 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %5, i32 0, metadata !"_ZTSM1BFiiE.virtual"), !nosanitize !12
97   %7 = extractvalue { i8*, i1 } %6, 0, !nosanitize !12
98   %memptr.virtualfn = bitcast i8* %7 to i32 (%struct.B*, i32)*, !nosanitize !12
99   br label %memptr.end
101 memptr.nonvirtual:                                ; preds = %entry
102   %memptr.nonvirtualfn = inttoptr i64 %q.coerce0 to i32 (%struct.B*, i32)*
103   br label %memptr.end
105 memptr.end:                                       ; preds = %memptr.nonvirtual, %memptr.virtual
106   %8 = phi i32 (%struct.B*, i32)* [ %memptr.virtualfn, %memptr.virtual ], [ %memptr.nonvirtualfn, %memptr.nonvirtual ]
107   %call = tail call i32 %8(%struct.B* %this.adjusted, i32 42)
108   ret i32 %call
111 declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata)
113 !0 = !{i64 16, !"_ZTS1A"}
114 !1 = !{i64 16, !"_ZTSM1AFiiE.virtual"}
115 !2 = !{i64 24, !"_ZTSM1AFifE.virtual"}
116 !3 = !{i64 2}
117 !4 = !{i64 16, !"_ZTS1B"}
118 !5 = !{i64 16, !"_ZTSM1BFiiE.virtual"}
119 !6 = !{i64 24, !"_ZTSM1BFifE.virtual"}
120 !12 = !{}