[ARM] Fixup the creation of VPT blocks
[llvm-core.git] / test / CodeGen / AMDGPU / promote-alloca-to-lds-select.ll
blob28e4925f95061b4453e7b943acedbcae9a59b9bf
1 ; RUN: opt -S -mtriple=amdgcn-unknown-amdhsa -mcpu=kaveri -amdgpu-promote-alloca < %s | FileCheck %s
3 target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
5 ; CHECK-LABEL: @lds_promoted_alloca_select_invalid_pointer_operand(
6 ; CHECK: %alloca = alloca i32
7 ; CHECK: select i1 undef, i32 addrspace(5)* undef, i32 addrspace(5)* %alloca
8 define amdgpu_kernel void @lds_promoted_alloca_select_invalid_pointer_operand() #0 {
9   %alloca = alloca i32, align 4, addrspace(5)
10   %select = select i1 undef, i32 addrspace(5)* undef, i32 addrspace(5)* %alloca
11   store i32 0, i32 addrspace(5)* %select, align 4
12   ret void
15 ; CHECK-LABEL: @lds_promote_alloca_select_two_derived_pointers(
16 ; CHECK: [[ARRAYGEP:%[0-9]+]] = getelementptr inbounds [256 x [16 x i32]], [256 x [16 x i32]] addrspace(3)* @lds_promote_alloca_select_two_derived_pointers.alloca, i32 0, i32 %{{[0-9]+}}
17 ; CHECK: %ptr0 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(3)* [[ARRAYGEP]], i32 0, i32 %a
18 ; CHECK: %ptr1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(3)* [[ARRAYGEP]], i32 0, i32 %b
19 ; CHECK: %select = select i1 undef, i32 addrspace(3)* %ptr0, i32 addrspace(3)* %ptr1
20 ; CHECK: store i32 0, i32 addrspace(3)* %select, align 4
21 define amdgpu_kernel void @lds_promote_alloca_select_two_derived_pointers(i32 %a, i32 %b) #0 {
22   %alloca = alloca [16 x i32], align 4, addrspace(5)
23   %ptr0 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %a
24   %ptr1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %b
25   %select = select i1 undef, i32 addrspace(5)* %ptr0, i32 addrspace(5)* %ptr1
26   store i32 0, i32 addrspace(5)* %select, align 4
27   ret void
30 ; FIXME: This should be promotable but requires knowing that both will be promoted first.
32 ; CHECK-LABEL: @lds_promote_alloca_select_two_allocas(
33 ; CHECK: %alloca0 = alloca i32, i32 16, align 4
34 ; CHECK: %alloca1 = alloca i32, i32 16, align 4
35 ; CHECK: %ptr0 = getelementptr inbounds i32, i32 addrspace(5)* %alloca0, i32 %a
36 ; CHECK: %ptr1 = getelementptr inbounds i32, i32 addrspace(5)* %alloca1, i32 %b
37 ; CHECK: %select = select i1 undef, i32 addrspace(5)* %ptr0, i32 addrspace(5)* %ptr1
38 define amdgpu_kernel void @lds_promote_alloca_select_two_allocas(i32 %a, i32 %b) #0 {
39   %alloca0 = alloca i32, i32 16, align 4, addrspace(5)
40   %alloca1 = alloca i32, i32 16, align 4, addrspace(5)
41   %ptr0 = getelementptr inbounds i32, i32 addrspace(5)* %alloca0, i32 %a
42   %ptr1 = getelementptr inbounds i32, i32 addrspace(5)* %alloca1, i32 %b
43   %select = select i1 undef, i32 addrspace(5)* %ptr0, i32 addrspace(5)* %ptr1
44   store i32 0, i32 addrspace(5)* %select, align 4
45   ret void
48 ; TODO: Maybe this should be canonicalized to select on the constant and GEP after.
49 ; CHECK-LABEL: @lds_promote_alloca_select_two_derived_constant_pointers(
50 ; CHECK: [[ARRAYGEP:%[0-9]+]] = getelementptr inbounds [256 x [16 x i32]], [256 x [16 x i32]] addrspace(3)* @lds_promote_alloca_select_two_derived_constant_pointers.alloca, i32 0, i32 %{{[0-9]+}}
51 ; CHECK: %ptr0 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(3)* [[ARRAYGEP]], i32 0, i32 1
52 ; CHECK: %ptr1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(3)* [[ARRAYGEP]], i32 0, i32 3
53 ; CHECK: %select = select i1 undef, i32 addrspace(3)* %ptr0, i32 addrspace(3)* %ptr1
54 ; CHECK: store i32 0, i32 addrspace(3)* %select, align 4
55 define amdgpu_kernel void @lds_promote_alloca_select_two_derived_constant_pointers() #0 {
56   %alloca = alloca [16 x i32], align 4, addrspace(5)
57   %ptr0 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 1
58   %ptr1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 3
59   %select = select i1 undef, i32 addrspace(5)* %ptr0, i32 addrspace(5)* %ptr1
60   store i32 0, i32 addrspace(5)* %select, align 4
61   ret void
64 ; CHECK-LABEL: @lds_promoted_alloca_select_input_select(
65 ; CHECK: getelementptr inbounds [256 x [16 x i32]], [256 x [16 x i32]] addrspace(3)* @lds_promoted_alloca_select_input_select.alloca, i32 0, i32 %{{[0-9]+}}
66 ; CHECK: %ptr0 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(3)* %{{[0-9]+}}, i32 0, i32 %a
67 ; CHECK: %ptr1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(3)* %{{[0-9]+}}, i32 0, i32 %b
68 ; CHECK: %ptr2 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(3)* %{{[0-9]+}}, i32 0, i32 %c
69 ; CHECK: %select0 = select i1 undef, i32 addrspace(3)* %ptr0, i32 addrspace(3)* %ptr1
70 ; CHECK: %select1 = select i1 undef, i32 addrspace(3)* %select0, i32 addrspace(3)* %ptr2
71 ; CHECK: store i32 0, i32 addrspace(3)* %select1, align 4
72 define amdgpu_kernel void @lds_promoted_alloca_select_input_select(i32 %a, i32 %b, i32 %c) #0 {
73   %alloca = alloca [16 x i32], align 4, addrspace(5)
74   %ptr0 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %a
75   %ptr1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %b
76   %ptr2 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %c
77   %select0 = select i1 undef, i32 addrspace(5)* %ptr0, i32 addrspace(5)* %ptr1
78   %select1 = select i1 undef, i32 addrspace(5)* %select0, i32 addrspace(5)* %ptr2
79   store i32 0, i32 addrspace(5)* %select1, align 4
80   ret void
83 define amdgpu_kernel void @lds_promoted_alloca_select_input_phi(i32 %a, i32 %b, i32 %c) #0 {
84 entry:
85   %alloca = alloca [16 x i32], align 4, addrspace(5)
86   %ptr0 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %a
87   %ptr1 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %b
88   store i32 0, i32 addrspace(5)* %ptr0
89   br i1 undef, label %bb1, label %bb2
91 bb1:
92   %ptr2 = getelementptr inbounds [16 x i32], [16 x i32] addrspace(5)* %alloca, i32 0, i32 %c
93   %select0 = select i1 undef, i32 addrspace(5)* undef, i32 addrspace(5)* %ptr2
94   store i32 0, i32 addrspace(5)* %ptr1
95   br label %bb2
97 bb2:
98   %phi.ptr = phi i32 addrspace(5)* [ %ptr0, %entry ], [ %select0, %bb1 ]
99   %select1 = select i1 undef, i32 addrspace(5)* %phi.ptr, i32 addrspace(5)* %ptr1
100   store i32 0, i32 addrspace(5)* %select1, align 4
101   ret void
104 ; CHECK-LABEL: @select_null_rhs(
105 ; CHECK-NOT: alloca
106 ; CHECK: select i1 %tmp2, double addrspace(3)* %{{[0-9]+}}, double addrspace(3)* null
107 define amdgpu_kernel void @select_null_rhs(double addrspace(1)* nocapture %arg, i32 %arg1) #1 {
109   %tmp = alloca double, align 8, addrspace(5)
110   store double 0.000000e+00, double addrspace(5)* %tmp, align 8
111   %tmp2 = icmp eq i32 %arg1, 0
112   %tmp3 = select i1 %tmp2, double addrspace(5)* %tmp, double addrspace(5)* null
113   store double 1.000000e+00, double addrspace(5)* %tmp3, align 8
114   %tmp4 = load double, double addrspace(5)* %tmp, align 8
115   store double %tmp4, double addrspace(1)* %arg
116   ret void
119 ; CHECK-LABEL: @select_null_lhs(
120 ; CHECK-NOT: alloca
121 ; CHECK: select i1 %tmp2, double addrspace(3)* null, double addrspace(3)* %{{[0-9]+}}
122 define amdgpu_kernel void @select_null_lhs(double addrspace(1)* nocapture %arg, i32 %arg1) #1 {
124   %tmp = alloca double, align 8, addrspace(5)
125   store double 0.000000e+00, double addrspace(5)* %tmp, align 8
126   %tmp2 = icmp eq i32 %arg1, 0
127   %tmp3 = select i1 %tmp2, double addrspace(5)* null, double addrspace(5)* %tmp
128   store double 1.000000e+00, double addrspace(5)* %tmp3, align 8
129   %tmp4 = load double, double addrspace(5)* %tmp, align 8
130   store double %tmp4, double addrspace(1)* %arg
131   ret void
134 attributes #0 = { norecurse nounwind "amdgpu-waves-per-eu"="1,1" }
135 attributes #1 = { norecurse nounwind }