1 ; RUN: llc -mtriple=x86_64-unknown-unknown < %s | FileCheck %s --check-prefix=ALL --check-prefix=X86_64
2 ; RUN: llc -mtriple=i386-unknown-unknown < %s | FileCheck %s --check-prefix=ALL --check-prefix=X86
3 ; FIXME: Fix machine verifier issues and remove -verify-machineinstrs=0. PR39439.
4 ; RUN: llc -mtriple i386-windows-gnu -exception-model sjlj -verify-machineinstrs=0 < %s | FileCheck %s --check-prefix=SJLJ
6 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
9 ;; Checks ENDBR insertion in case of switch case statement.
10 ;; Also since the function is not internal, make sure that endbr32/64 was
11 ;; added at the beginning of the function.
12 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20 ; X86_64-NEXT: endbr64
23 ; X86_64-NEXT: endbr64
26 %0 = select i1 undef, i8* blockaddress(@test1, %bb), i8* blockaddress(@test1, %bb6) ; <i8*> [#uses=1]
27 indirectbr i8* %0, [label %bb, label %bb6]
36 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39 ;; Checks NOTRACK insertion in case of switch case statement.
40 ;; Check that there is no ENDBR insertion in the following case statements.
41 ;; Also since the function is not internal, ENDBR instruction should be
42 ;; added to its first basic block.
43 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
45 define i32 @test2(i32 %a) {
49 ; ALL: notrack jmp{{q|l}} *
53 %retval = alloca i32, align 4
54 %a.addr = alloca i32, align 4
55 store i32 %a, i32* %a.addr, align 4
56 %0 = load i32, i32* %a.addr, align 4
57 switch i32 %0, label %sw.default [
65 sw.bb: ; preds = %entry
66 store i32 5, i32* %retval, align 4
69 sw.bb1: ; preds = %entry
70 store i32 7, i32* %retval, align 4
73 sw.bb2: ; preds = %entry
74 store i32 2, i32* %retval, align 4
77 sw.bb3: ; preds = %entry
78 store i32 32, i32* %retval, align 4
81 sw.bb4: ; preds = %entry
82 store i32 73, i32* %retval, align 4
85 sw.default: ; preds = %entry
86 store i32 0, i32* %retval, align 4
89 return: ; preds = %sw.default, %sw.bb4, %sw.bb3, %sw.bb2, %sw.bb1, %sw.bb
90 %1 = load i32, i32* %retval, align 4
94 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
97 ;; Checks ENDBR insertion in case of indirect call instruction.
98 ;; The new instruction should be added to the called function (test6)
99 ;; although it is internal.
100 ;; Also since the function is not internal, ENDBR instruction should be
101 ;; added to its first basic block.
102 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
104 define void @test3() {
110 %f = alloca i32 (...)*, align 8
111 store i32 (...)* bitcast (i32 (i32)* @test6 to i32 (...)*), i32 (...)** %f, align 8
112 %0 = load i32 (...)*, i32 (...)** %f, align 8
113 %call = call i32 (...) %0()
117 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
120 ;; Checks ENDBR insertion in case of setjmp-like function calls.
121 ;; Also since the function is not internal, ENDBR instruction should be
122 ;; added to its first basic block.
123 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
125 @buf = internal global [5 x i8*] zeroinitializer
126 declare i8* @llvm.frameaddress(i32)
127 declare i8* @llvm.stacksave()
128 declare i32 @llvm.eh.sjlj.setjmp(i8*)
130 define i32 @test4() {
135 ; X86_64-NEXT: endbr64
137 %fp = tail call i8* @llvm.frameaddress(i32 0)
138 store i8* %fp, i8** getelementptr inbounds ([5 x i8*], [5 x i8*]* @buf, i64 0, i64 0), align 16
139 %sp = tail call i8* @llvm.stacksave()
140 store i8* %sp, i8** getelementptr inbounds ([5 x i8*], [5 x i8*]* @buf, i64 0, i64 2), align 16
141 %r = tail call i32 @llvm.eh.sjlj.setjmp(i8* bitcast ([5 x i8*]* @buf to i8*))
145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
148 ;; Checks ENDBR insertion in case of internal function.
149 ;; Since the function is internal and its address was not taken,
150 ;; make sure that endbr32/64 was not added at the beginning of the
152 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
154 define internal i8 @test5(){
156 ; X86_64-NOT: endbr64
161 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
164 ;; Checks ENDBR insertion in case of function that its was address taken.
165 ;; Since the function's address was taken by test3() and despite being
166 ;; internal, check for added endbr32/64 at the beginning of the function.
167 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
169 define internal i32 @test6(i32 %a) {
176 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
179 ;; Checks ENDBR insertion in case of non-intrenal function.
180 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
182 define i32 @test7() {
189 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
192 ;; Checks that NO TRACK prefix is not added for indirect jumps to a jump-
193 ;; table that was created for SJLJ dispatch.
194 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
196 declare void @_Z20function_that_throwsv()
197 declare i32 @__gxx_personality_sj0(...)
198 declare i8* @__cxa_begin_catch(i8*)
199 declare void @__cxa_end_catch()
201 define void @test8() personality i8* bitcast (i32 (...)* @__gxx_personality_sj0 to i8*) {
205 invoke void @_Z20function_that_throwsv()
206 to label %try.cont unwind label %lpad
209 %0 = landingpad { i8*, i32 }
211 %1 = extractvalue { i8*, i32 } %0, 0
212 %2 = tail call i8* @__cxa_begin_catch(i8* %1)
213 tail call void @__cxa_end_catch()
220 !llvm.module.flags = !{!0}
222 !0 = !{i32 4, !"cf-protection-branch", i32 1}