1 ; RUN: opt < %s -globaldce -S | FileCheck %s
3 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
7 ; virtual int foo(int);
8 ; virtual int bar(float);
13 ; virtual int foo(int);
14 ; virtual int bar(float);
19 ; int A::foo(int) { return 1; }
20 ; int A::bar(float) { return 2; }
21 ; int B::foo(int) { return 3; }
22 ; int B::bar(float) { return 4; }
24 ; extern "C" int test(A *p, int (A::*q)(int)) { return (p->*q)(42); }
26 ; Member function pointers are tracked by the combination of their object type
27 ; and function type, which must both be compatible. Here, the call is through a
28 ; pointer of type "int (A::*q)(int)", so the call could be dispatched to A::foo
29 ; or B::foo. It can't be dispatched to A::bar or B::bar as the function pointer
30 ; does not match, so those can be removed.
32 %struct.A = type { i32 (...)** }
33 %struct.B = type { %struct.A }
35 ; CHECK: @_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* null] }
36 @_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
37 ; 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] }
38 @_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
41 ; CHECK: define internal i32 @_ZN1A3fooEi(
42 define internal i32 @_ZN1A3fooEi(%struct.A* nocapture readnone %this, i32) unnamed_addr #1 align 2 {
47 ; CHECK-NOT: define internal i32 @_ZN1A3barEf(
48 define internal i32 @_ZN1A3barEf(%struct.A* nocapture readnone %this, float) unnamed_addr #1 align 2 {
53 ; CHECK: define internal i32 @_ZN1B3fooEi(
54 define internal i32 @_ZN1B3fooEi(%struct.B* nocapture readnone %this, i32) unnamed_addr #1 align 2 {
59 ; CHECK-NOT: define internal i32 @_ZN1B3barEf(
60 define internal i32 @_ZN1B3barEf(%struct.B* nocapture readnone %this, float) unnamed_addr #1 align 2 {
66 define hidden void @_ZN1AC2Ev(%struct.A* nocapture %this) {
68 %0 = getelementptr inbounds %struct.A, %struct.A* %this, i64 0, i32 0
69 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
73 define hidden void @_ZN1BC2Ev(%struct.B* nocapture %this) {
75 %0 = getelementptr inbounds %struct.B, %struct.B* %this, i64 0, i32 0, i32 0
76 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
80 define hidden i32 @test(%struct.A* %p, i64 %q.coerce0, i64 %q.coerce1) {
82 %0 = bitcast %struct.A* %p to i8*
83 %1 = getelementptr inbounds i8, i8* %0, i64 %q.coerce1
84 %this.adjusted = bitcast i8* %1 to %struct.A*
85 %2 = and i64 %q.coerce0, 1
86 %memptr.isvirtual = icmp eq i64 %2, 0
87 br i1 %memptr.isvirtual, label %memptr.nonvirtual, label %memptr.virtual
89 memptr.virtual: ; preds = %entry
90 %3 = bitcast i8* %1 to i8**
91 %vtable = load i8*, i8** %3, align 8
92 %4 = add i64 %q.coerce0, -1
93 %5 = getelementptr i8, i8* %vtable, i64 %4, !nosanitize !12
94 %6 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %5, i32 0, metadata !"_ZTSM1AFiiE.virtual"), !nosanitize !12
95 %7 = extractvalue { i8*, i1 } %6, 0, !nosanitize !12
96 %memptr.virtualfn = bitcast i8* %7 to i32 (%struct.A*, i32)*, !nosanitize !12
99 memptr.nonvirtual: ; preds = %entry
100 %memptr.nonvirtualfn = inttoptr i64 %q.coerce0 to i32 (%struct.A*, i32)*
103 memptr.end: ; preds = %memptr.nonvirtual, %memptr.virtual
104 %8 = phi i32 (%struct.A*, i32)* [ %memptr.virtualfn, %memptr.virtual ], [ %memptr.nonvirtualfn, %memptr.nonvirtual ]
105 %call = tail call i32 %8(%struct.A* %this.adjusted, i32 42)
109 declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata)
111 !0 = !{i64 16, !"_ZTS1A"}
112 !1 = !{i64 16, !"_ZTSM1AFiiE.virtual"}
113 !2 = !{i64 24, !"_ZTSM1AFifE.virtual"}
115 !4 = !{i64 16, !"_ZTS1B"}
116 !5 = !{i64 16, !"_ZTSM1BFiiE.virtual"}
117 !6 = !{i64 24, !"_ZTSM1BFifE.virtual"}