[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / win64_call_epi.ll
blob8b5e1f2d0157faddc54965aae00c40e4c293f926
1 ; RUN: llc < %s -mtriple=x86_64-pc-mingw32 | FileCheck %s -check-prefix=WIN64
3 declare void @bar()
4 declare void @baz()
5 declare i32 @personality(...)
7 ; Check for 'nop' between the last call and the epilogue.
8 define void @foo1() personality ptr @personality {
10     invoke void @bar()
11         to label %normal
12         unwind label %catch
14 normal:
15     ret void
17 catch:
18     %1 = landingpad { ptr, i32 } cleanup
19     resume { ptr, i32 } %1
21 ; WIN64-LABEL: foo1:
22 ; WIN64: .seh_proc foo1
23 ; WIN64: callq bar
24 ; WIN64: nop
25 ; WIN64: addq ${{[0-9]+}}, %rsp
26 ; WIN64: retq
27 ; Check for 'int3' after noreturn call.
28 ; WIN64: callq _Unwind_Resume
29 ; WIN64-NEXT: int3
32 ; Check it still works when blocks are reordered.
33 @something = global i32 0
34 define void @foo2(i1 zeroext %cond ) {
35     br i1 %cond, label %a, label %b, !prof !0
37     call void @bar()
38     br label %done
40     call void @baz()
41     store i32 0, ptr @something
42     br label %done
43 done:
44     ret void
46 !0 = !{!"branch_weights", i32 100, i32 0}
47 ; WIN64-LABEL: foo2:
48 ; WIN64: callq bar
49 ; WIN64: nop
50 ; WIN64: addq ${{[0-9]+}}, %rsp
51 ; WIN64: retq
54 ; Check nop is not emitted when call is not adjacent to epilogue.
55 define i32 @foo3() {
56     call void @bar()
57     ret i32 0
59 ; WIN64-LABEL: foo3:
60 ; WIN64: callq bar
61 ; WIN64: xorl
62 ; WIN64-NOT: nop
63 ; WIN64: addq ${{[0-9]+}}, %rsp
64 ; WIN64: retq