[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / 2013-10-14-FastISel-incorrect-vreg.ll
blob70228bb47f4d8f59b8380a6c8b82c11da12d9e61
1 ; RUN: llc -mtriple x86_64-apple-darwin -O0 < %s -o - | FileCheck %s
3 ; During X86 fastisel, the address of indirect call was resolved
4 ; through bitcast, ptrtoint, and inttoptr instructions. This is valid
5 ; only if the related instructions are in that same basic block, otherwise
6 ; we may reference variables that were not live across basic blocks
7 ; resulting in undefined virtual registers.
9 ; In this example, this is illustrated by a spill/reload of the
10 ; LOADED_PTR_SLOT.
12 ; Before this patch, the compiler was accessing two different spill
13 ; slots.
14 ; <rdar://problem/15192473>
16 ; CHECK-LABEL: @test_bitcast
17 ; Load the value of the function pointer: %loaded_ptr
18 ; Spill %arg2.
19 ; CHECK: movq %rdx, [[ARG2_SLOT:[0-9]*\(%[a-z]+\)]]
20 ; CHECK: movq (%rdi), [[LOADED_PTR:%[a-z]+]]
21 ; Spill %loaded_ptr.
22 ; CHECK: movq [[LOADED_PTR]], [[LOADED_PTR_SLOT:[0-9]*\(%[a-z]+\)]]
23 ; Perform the indirect call.
24 ; Load the function pointer.
25 ; CHECK: movq [[LOADED_PTR_SLOT]], [[FCT_PTR:%[a-z]+]]
26 ; Load the third argument
27 ; CHECK: movq [[ARG2_SLOT]], %rdx
28 ; Load the first argument
29 ; CHECK: movq %rdx, %rdi
30 ; Load the second argument
31 ; CHECK: movq %rdx, %rsi
32 ; Call.
33 ; CHECK: callq *[[FCT_PTR]]
34 ; CHECK: ret
35 define i64 @test_bitcast(i64 (i64, i64, i64)** %arg, i1 %bool, i64 %arg2) {
36 entry:
37   %loaded_ptr = load i64 (i64, i64, i64)*, i64 (i64, i64, i64)** %arg, align 8
38   %raw = bitcast i64 (i64, i64, i64)* %loaded_ptr to i8*
39   switch i1 %bool, label %default [
40     i1 true, label %label_true
41     i1 false, label %label_end
42   ]
43 default:
44   br label %label_end
46 label_true:
47   br label %label_end
49 label_end:
50   %fct_ptr = bitcast i8* %raw to i64 (i64, i64, i64)*
51   %res = call i64 %fct_ptr(i64 %arg2, i64 %arg2, i64 %arg2)
52   ret i64 %res
55 ; CHECK-LABEL: @test_inttoptr
56 ; Load the value of the function pointer: %loaded_ptr
57 ; CHECK: movq %rdx, [[ARG2_SLOT:[0-9]*\(%[a-z]+\)]]
58 ; Spill %loaded_ptr.
59 ; CHECK: movq (%rdi), [[LOADED_PTR:%[a-z]+]]
60 ; Spill %arg2.
61 ; CHECK: movq [[LOADED_PTR]], [[LOADED_PTR_SLOT:[0-9]*\(%[a-z]+\)]]
62 ; Perform the indirect call.
63 ; Load the function pointer.
64 ; CHECK: movq [[LOADED_PTR_SLOT]], [[FCT_PTR:%[a-z]+]]
65 ; Load the third argument
66 ; CHECK: movq [[ARG2_SLOT]], %rdx
67 ; Load the first argument
68 ; CHECK: movq %rdx, %rdi
69 ; Load the second argument
70 ; CHECK: movq %rdx, %rsi
71 ; Call.
72 ; CHECK: callq *[[FCT_PTR]]
73 ; CHECK: ret
74 define i64 @test_inttoptr(i64 (i64, i64, i64)** %arg, i1 %bool, i64 %arg2) {
75 entry:
76   %loaded_ptr = load i64 (i64, i64, i64)*, i64 (i64, i64, i64)** %arg, align 8
77   %raw = ptrtoint i64 (i64, i64, i64)* %loaded_ptr to i64
78   switch i1 %bool, label %default [
79     i1 true, label %label_true
80     i1 false, label %label_end
81   ]
82 default:
83   br label %label_end
85 label_true:
86   br label %label_end
88 label_end:
89   %fct_ptr = inttoptr i64 %raw to i64 (i64, i64, i64)*
90   %res = call i64 %fct_ptr(i64 %arg2, i64 %arg2, i64 %arg2)
91   ret i64 %res
94 ; CHECK-LABEL: @test_ptrtoint
95 ; Spill %arg2.
96 ; CHECK: movq %rdx, [[ARG2_SLOT:[0-9]*\(%[a-z]+\)]]
97 ; Load the value of the function pointer: %loaded_ptr
98 ; CHECK: movq (%rdi), [[LOADED_PTR:%[a-z]+]]
99 ; Spill %loaded_ptr.
100 ; CHECK: movq [[LOADED_PTR]], [[LOADED_PTR_SLOT:[0-9]*\(%[a-z]+\)]]
101 ; Perform the indirect call.
102 ; Load the function pointer.
103 ; CHECK: movq [[LOADED_PTR_SLOT]], [[FCT_PTR:%[a-z]+]]
104 ; Load the third argument
105 ; CHECK: movq [[ARG2_SLOT]], %rdx
106 ; Load the first argument
107 ; CHECK: movq %rdx, %rdi
108 ; Load the second argument
109 ; CHECK: movq %rdx, %rsi
110 ; Call.
111 ; CHECK: callq *[[FCT_PTR]]
112 ; CHECK: ret
113 define i64 @test_ptrtoint(i64 (i64, i64, i64)** %arg, i1 %bool, i64 %arg2) {
114 entry:
115   %loaded_ptr = load i64 (i64, i64, i64)*, i64 (i64, i64, i64)** %arg, align 8
116   %raw = bitcast i64 (i64, i64, i64)* %loaded_ptr to i8*
117   switch i1 %bool, label %default [
118     i1 true, label %label_true
119     i1 false, label %label_end
120   ]
121 default:
122   br label %label_end
124 label_true:
125   br label %label_end
127 label_end:
128   %fct_int = ptrtoint i8* %raw to i64
129   %fct_ptr = inttoptr i64 %fct_int to i64 (i64, i64, i64)*
130   %res = call i64 %fct_ptr(i64 %arg2, i64 %arg2, i64 %arg2)
131   ret i64 %res