[FastISel][AArch64 and X86] Don't emit stores for UNDEF arguments during function...
[oota-llvm.git] / test / CodeGen / X86 / patchpoint.ll
1 ; RUN: llc -mtriple=x86_64-apple-darwin -mcpu=corei7 -disable-fp-elim                             < %s | FileCheck %s
2 ; RUN: llc -mtriple=x86_64-apple-darwin -mcpu=corei7 -disable-fp-elim -fast-isel -fast-isel-abort < %s | FileCheck %s
3
4 ; Trivial patchpoint codegen
5 ;
6 define i64 @trivial_patchpoint_codegen(i64 %p1, i64 %p2, i64 %p3, i64 %p4) {
7 entry:
8 ; CHECK-LABEL: trivial_patchpoint_codegen:
9 ; CHECK:      movabsq $-559038736, %r11
10 ; CHECK-NEXT: callq *%r11
11 ; CHECK-NEXT: xchgw %ax, %ax
12 ; CHECK:      movq %rax, %[[REG:r.+]]
13 ; CHECK:      callq *%r11
14 ; CHECK-NEXT: xchgw %ax, %ax
15 ; CHECK:      movq %[[REG]], %rax
16 ; CHECK:      ret
17   %resolveCall2 = inttoptr i64 -559038736 to i8*
18   %result = tail call i64 (i64, i32, i8*, i32, ...)* @llvm.experimental.patchpoint.i64(i64 2, i32 15, i8* %resolveCall2, i32 4, i64 %p1, i64 %p2, i64 %p3, i64 %p4)
19   %resolveCall3 = inttoptr i64 -559038737 to i8*
20   tail call void (i64, i32, i8*, i32, ...)* @llvm.experimental.patchpoint.void(i64 3, i32 15, i8* %resolveCall3, i32 2, i64 %p1, i64 %result)
21   ret i64 %result
22 }
23
24 ; Caller frame metadata with stackmaps. This should not be optimized
25 ; as a leaf function.
26 ;
27 ; CHECK-LABEL: caller_meta_leaf
28 ; CHECK: subq $32, %rsp
29 ; CHECK: Ltmp
30 ; CHECK: addq $32, %rsp
31 ; CHECK: ret
32 define void @caller_meta_leaf() {
33 entry:
34   %metadata = alloca i64, i32 3, align 8
35   store i64 11, i64* %metadata
36   store i64 12, i64* %metadata
37   store i64 13, i64* %metadata
38   call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 4, i32 0, i64* %metadata)
39   ret void
40 }
41
42
43 ; Test patchpoints reusing the same TargetConstant.
44 ; <rdar:15390785> Assertion failed: (CI.getNumArgOperands() >= NumArgs + 4)
45 ; There is no way to verify this, since it depends on memory allocation.
46 ; But I think it's useful to include as a working example.
47 define i64 @testLowerConstant(i64 %arg, i64 %tmp2, i64 %tmp10, i64* %tmp33, i64 %tmp79) {
48 entry:
49   %tmp80 = add i64 %tmp79, -16
50   %tmp81 = inttoptr i64 %tmp80 to i64*
51   %tmp82 = load i64* %tmp81, align 8
52   tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 14, i32 5, i64 %arg, i64 %tmp2, i64 %tmp10, i64 %tmp82)
53   tail call void (i64, i32, i8*, i32, ...)* @llvm.experimental.patchpoint.void(i64 15, i32 30, i8* null, i32 3, i64 %arg, i64 %tmp10, i64 %tmp82)
54   %tmp83 = load i64* %tmp33, align 8
55   %tmp84 = add i64 %tmp83, -24
56   %tmp85 = inttoptr i64 %tmp84 to i64*
57   %tmp86 = load i64* %tmp85, align 8
58   tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 17, i32 5, i64 %arg, i64 %tmp10, i64 %tmp86)
59   tail call void (i64, i32, i8*, i32, ...)* @llvm.experimental.patchpoint.void(i64 18, i32 30, i8* null, i32 3, i64 %arg, i64 %tmp10, i64 %tmp86)
60   ret i64 10
61 }
62
63 ; Test small patchpoints that don't emit calls.
64 define void @small_patchpoint_codegen(i64 %p1, i64 %p2, i64 %p3, i64 %p4) {
65 entry:
66 ; CHECK-LABEL: small_patchpoint_codegen:
67 ; CHECK:      Ltmp
68 ; CHECK:      nopl 8(%rax,%rax)
69 ; CHECK-NEXT: popq
70 ; CHECK-NEXT: ret
71   %result = tail call i64 (i64, i32, i8*, i32, ...)* @llvm.experimental.patchpoint.i64(i64 5, i32 5, i8* null, i32 2, i64 %p1, i64 %p2)
72   ret void
73 }
74
75 declare void @llvm.experimental.stackmap(i64, i32, ...)
76 declare void @llvm.experimental.patchpoint.void(i64, i32, i8*, i32, ...)
77 declare i64 @llvm.experimental.patchpoint.i64(i64, i32, i8*, i32, ...)