• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; REQUIRES: x86-registered-target
2
3; Backend test for distribute ThinLTO with CFI.
4; It additionally enables -fwhole-program-vtables to get more information in
5; TYPE_IDs of GLOBALVAL_SUMMARY_BLOCK.
6
7; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t.o %s
8
9; FIXME: Fix machine verifier issues and remove -verify-machineinstrs=0. PR39436.
10; RUN: llvm-lto2 run -thinlto-distributed-indexes %t.o \
11; RUN:   -whole-program-visibility \
12; RUN:   -verify-machineinstrs=0 \
13; RUN:   -o %t2.index \
14; RUN:   -r=%t.o,test,px \
15; RUN:   -r=%t.o,_ZN1A1nEi,p \
16; RUN:   -r=%t.o,_ZN1B1fEi,p \
17; RUN:   -r=%t.o,_ZN1C1fEi,p \
18; RUN:   -r=%t.o,_ZTV1B, \
19; RUN:   -r=%t.o,_ZTV1C, \
20; RUN:   -r=%t.o,_ZN1A1nEi, \
21; RUN:   -r=%t.o,_ZN1B1fEi, \
22; RUN:   -r=%t.o,_ZN1C1fEi, \
23; RUN:   -r=%t.o,_ZTV1B,px \
24; RUN:   -r=%t.o,_ZTV1C,px
25
26; Ensure that typeids are in the index.
27; RUN: llvm-bcanalyzer -dump %t.o.thinlto.bc | FileCheck %s
28; CHECK-LABEL: <GLOBALVAL_SUMMARY_BLOCK
29; CHECK: <TYPE_ID op0=0 op1=6 op2=4 op3=7 op4=0 op5=0 op6=0 op7=0 op8=0 op9=2 op10=6 op11=0 op12=0 op13=8 op14=1 op15=6 op16=9 op17=0/>
30; CHECK-LABEL: </GLOBALVAL_SUMMARY_BLOCK
31; CHECK-LABEL: <STRTAB_BLOCK
32; CHECK: blob data = '_ZTS1A_ZN1A1nEi'
33; CHECK-LABEL: </STRTAB_BLOCK
34
35; RUN: llvm-dis %t.o.thinlto.bc -o - | FileCheck %s --check-prefix=CHECK-DIS
36; Round trip it through llvm-as
37; RUN: llvm-dis %t.o.thinlto.bc -o - | llvm-as -o - | llvm-dis -o - | FileCheck %s --check-prefix=CHECK-DIS
38; CHECK-DIS: ^0 = module: (path: "{{.*}}thinlto-distributed-cfi-devirt.ll.tmp.o", hash: ({{.*}}, {{.*}}, {{.*}}, {{.*}}, {{.*}}))
39; CHECK-DIS: ^1 = gv: (guid: 8346051122425466633, summaries: (function: (module: ^0, flags: (linkage: external, notEligibleToImport: 0, live: 1, dsoLocal: 0, canAutoHide: 0), insts: 18, typeIdInfo: (typeTests: (^2), typeCheckedLoadVCalls: (vFuncId: (^2, offset: 8), vFuncId: (^2, offset: 0))))))
40; CHECK-DIS: ^2 = typeid: (name: "_ZTS1A", summary: (typeTestRes: (kind: allOnes, sizeM1BitWidth: 7), wpdResolutions: ((offset: 0, wpdRes: (kind: branchFunnel)), (offset: 8, wpdRes: (kind: singleImpl, singleImplName: "_ZN1A1nEi"))))) ; guid = 7004155349499253778
41
42; RUN: %clang_cc1 -triple x86_64-grtev4-linux-gnu \
43; RUN:   -emit-obj -fthinlto-index=%t.o.thinlto.bc -O2 -Rpass=wholeprogramdevirt \
44; RUN:   -emit-llvm -o - -x ir %t.o 2>&1 | FileCheck %s --check-prefixes=CHECK-IR --check-prefixes=REMARKS
45
46; Check that the devirtualization is suppressed via -wholeprogramdevirt-skip
47; RUN: %clang_cc1 -triple x86_64-grtev4-linux-gnu -mllvm -wholeprogramdevirt-skip=_ZN1A1nEi \
48; RUN:   -emit-obj -fthinlto-index=%t.o.thinlto.bc -O2 -Rpass=wholeprogramdevirt \
49; RUN:   -emit-llvm -o - -x ir %t.o 2>&1 | FileCheck %s --check-prefixes=SKIP-IR --check-prefixes=SKIP-REMARKS
50
51; REMARKS: single-impl: devirtualized a call to _ZN1A1nEi
52; SKIP-REMARKS-NOT: single-impl
53
54; Check that backend does not fail generating native code.
55; RUN: %clang_cc1 -triple x86_64-grtev4-linux-gnu \
56; RUN:   -emit-obj -fthinlto-index=%t.o.thinlto.bc -O2 \
57; RUN:   -o %t.native.o -x ir %t.o
58
59target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
60target triple = "x86_64-grtev4-linux-gnu"
61
62%struct.A = type { i32 (...)** }
63%struct.B = type { %struct.A }
64%struct.C = type { %struct.A }
65
66@_ZTV1B = constant { [4 x i8*] } { [4 x i8*] [i8* null, i8* undef, i8* bitcast (i32 (%struct.B*, i32)* @_ZN1B1fEi to i8*), i8* bitcast (i32 (%struct.A*, i32)* @_ZN1A1nEi to i8*)] }, !type !0, !type !1
67@_ZTV1C = constant { [4 x i8*] } { [4 x i8*] [i8* null, i8* undef, i8* bitcast (i32 (%struct.C*, i32)* @_ZN1C1fEi to i8*), i8* bitcast (i32 (%struct.A*, i32)* @_ZN1A1nEi to i8*)] }, !type !0, !type !2
68
69; CHECK-IR-LABEL: define i32 @test
70define i32 @test(%struct.A* %obj, i32 %a) {
71entry:
72  %0 = bitcast %struct.A* %obj to i8**
73  %vtable5 = load i8*, i8** %0
74
75  %1 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %vtable5, i32 8, metadata !"_ZTS1A")
76  %2 = extractvalue { i8*, i1 } %1, 1
77  br i1 %2, label %cont, label %trap
78
79trap:
80  tail call void @llvm.trap()
81  unreachable
82
83cont:
84  %3 = extractvalue { i8*, i1 } %1, 0
85  %4 = bitcast i8* %3 to i32 (%struct.A*, i32)*
86
87  ; Check that the call was devirtualized.
88  ; CHECK-IR: %call = tail call i32 @_ZN1A1nEi
89  ; SKIP-IR-NOT: %call = tail call i32 @_ZN1A1nEi
90  %call = tail call i32 %4(%struct.A* nonnull %obj, i32 %a)
91  %vtable16 = load i8*, i8** %0
92  %5 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %vtable16, i32 0, metadata !"_ZTS1A")
93  %6 = extractvalue { i8*, i1 } %5, 1
94  br i1 %6, label %cont2, label %trap
95
96cont2:
97  %7 = extractvalue { i8*, i1 } %5, 0
98  %8 = bitcast i8* %7 to i32 (%struct.A*, i32)*
99
100  ; Check that traps are conditional. Invalid TYPE_ID can cause
101  ; unconditional traps.
102  ; CHECK-IR: br i1 {{.*}}, label %trap
103
104  ; We still have to call it as virtual.
105  ; CHECK-IR: %call3 = tail call i32 %7
106  %call3 = tail call i32 %8(%struct.A* nonnull %obj, i32 %call)
107  ret i32 %call3
108}
109; CHECK-IR-LABEL: ret i32
110; CHECK-IR-LABEL: }
111
112declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata)
113declare void @llvm.trap()
114
115declare i32 @_ZN1B1fEi(%struct.B* %this, i32 %a)
116declare i32 @_ZN1A1nEi(%struct.A* %this, i32 %a)
117declare i32 @_ZN1C1fEi(%struct.C* %this, i32 %a)
118
119!0 = !{i64 16, !"_ZTS1A"}
120!1 = !{i64 16, !"_ZTS1B"}
121!2 = !{i64 16, !"_ZTS1C"}
122