Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / ThinLTO / X86 / cfi.ll
blob1384b1ccbecc8e5f2953fe1ce41e6475b9ad2221
1 ; REQUIRES: x86-registered-target
3 ; Test CFI through the thin link and backend.
5 ; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t.o %s
7 ; RUN: llvm-lto2 run -save-temps %t.o \
8 ; RUN:   -o %t3 \
9 ; RUN:   -r=%t.o,test,px \
10 ; RUN:   -r=%t.o,_ZTV1B, \
11 ; RUN:   -r=%t.o,_ZN1B1fEi, \
12 ; RUN:   -r=%t.o,_ZTV1B,px
13 ; RUN: llvm-dis %t3.1.4.opt.bc -o - | FileCheck %s --check-prefix=CHECK-IR
15 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
16 target triple = "x86_64-grtev4-linux-gnu"
18 %struct.B = type { %struct.A }
19 %struct.A = type { ptr }
21 @_ZTV1B = constant { [3 x ptr] } { [3 x ptr] [ptr undef, ptr undef, ptr undef] }, !type !0
23 ; CHECK-IR-LABEL: define void @test
24 define void @test(ptr %b) {
25 entry:
26   ; Ensure that traps are conditional. Invalid TYPE_ID can cause
27   ; unconditional traps.
28   ; CHECK-IR: br i1 {{.*}}, label %trap
29   %vtable2 = load ptr, ptr %b
30   %0 = tail call i1 @llvm.type.test(ptr %vtable2, metadata !"_ZTS1A")
31   br i1 %0, label %cont, label %trap
33 trap:
34   tail call void @llvm.trap()
35   unreachable
37 cont:
38   ; CHECK-IR-LABEL: ret void
39   ret void
41 ; CHECK-IR-LABEL: }
43 declare i1 @llvm.type.test(ptr, metadata)
44 declare void @llvm.trap()
46 declare i32 @_ZN1B1fEi(ptr %this, i32 %a)
48 !0 = !{i64 16, !"_ZTS1A"}
49 !1 = !{i64 16, !"_ZTS1B"}