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 \ 44; RUN: -emit-llvm -o - -x ir %t.o | FileCheck %s --check-prefixes=CHECK-IR 45 46; Check that backend does not fail generating native code. 47; RUN: %clang_cc1 -triple x86_64-grtev4-linux-gnu \ 48; RUN: -emit-obj -fthinlto-index=%t.o.thinlto.bc -O2 \ 49; RUN: -o %t.native.o -x ir %t.o 50 51target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 52target triple = "x86_64-grtev4-linux-gnu" 53 54%struct.A = type { i32 (...)** } 55%struct.B = type { %struct.A } 56%struct.C = type { %struct.A } 57 58@_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 59@_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 60 61; CHECK-IR-LABEL: define i32 @test 62define i32 @test(%struct.A* %obj, i32 %a) { 63entry: 64 %0 = bitcast %struct.A* %obj to i8** 65 %vtable5 = load i8*, i8** %0 66 67 %1 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %vtable5, i32 8, metadata !"_ZTS1A") 68 %2 = extractvalue { i8*, i1 } %1, 1 69 br i1 %2, label %cont, label %trap 70 71trap: 72 tail call void @llvm.trap() 73 unreachable 74 75cont: 76 %3 = extractvalue { i8*, i1 } %1, 0 77 %4 = bitcast i8* %3 to i32 (%struct.A*, i32)* 78 79 ; Check that the call was devirtualized. 80 ; CHECK-IR: %call = tail call i32 @_ZN1A1nEi 81 %call = tail call i32 %4(%struct.A* nonnull %obj, i32 %a) 82 %vtable16 = load i8*, i8** %0 83 %5 = tail call { i8*, i1 } @llvm.type.checked.load(i8* %vtable16, i32 0, metadata !"_ZTS1A") 84 %6 = extractvalue { i8*, i1 } %5, 1 85 br i1 %6, label %cont2, label %trap 86 87cont2: 88 %7 = extractvalue { i8*, i1 } %5, 0 89 %8 = bitcast i8* %7 to i32 (%struct.A*, i32)* 90 91 ; Check that traps are conditional. Invalid TYPE_ID can cause 92 ; unconditional traps. 93 ; CHECK-IR: br i1 {{.*}}, label %trap 94 95 ; We still have to call it as virtual. 96 ; CHECK-IR: %call3 = tail call i32 %7 97 %call3 = tail call i32 %8(%struct.A* nonnull %obj, i32 %call) 98 ret i32 %call3 99} 100; CHECK-IR-LABEL: ret i32 101; CHECK-IR-LABEL: } 102 103declare { i8*, i1 } @llvm.type.checked.load(i8*, i32, metadata) 104declare void @llvm.trap() 105 106declare i32 @_ZN1B1fEi(%struct.B* %this, i32 %a) 107declare i32 @_ZN1A1nEi(%struct.A* %this, i32 %a) 108declare i32 @_ZN1C1fEi(%struct.C* %this, i32 %a) 109 110!0 = !{i64 16, !"_ZTS1A"} 111!1 = !{i64 16, !"_ZTS1B"} 112!2 = !{i64 16, !"_ZTS1C"} 113