R600/SI: Use scratch memory for large private arrays
[oota-llvm.git] / test / CodeGen / R600 / gv-const-addrspace.ll
1 ; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck -check-prefix=EG -check-prefix=FUNC %s
2 ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
3
4
5 @b = internal addrspace(2) constant [1 x i16] [ i16 7 ], align 2
6
7 @float_gv = internal unnamed_addr addrspace(2) constant [5 x float] [float 0.0, float 1.0, float 2.0, float 3.0, float 4.0], align 4
8
9 ; FUNC-LABEL: @float
10 ; FIXME: We should be using S_LOAD_DWORD here.
11 ; SI: BUFFER_LOAD_DWORD
12
13 ; EG-DAG: MOV {{\** *}}T2.X
14 ; EG-DAG: MOV {{\** *}}T3.X
15 ; EG-DAG: MOV {{\** *}}T4.X
16 ; EG-DAG: MOV {{\** *}}T5.X
17 ; EG-DAG: MOV {{\** *}}T6.X
18 ; EG: MOVA_INT
19
20 define void @float(float addrspace(1)* %out, i32 %index) {
21 entry:
22   %0 = getelementptr inbounds [5 x float] addrspace(2)* @float_gv, i32 0, i32 %index
23   %1 = load float addrspace(2)* %0
24   store float %1, float addrspace(1)* %out
25   ret void
26 }
27
28 @i32_gv = internal unnamed_addr addrspace(2) constant [5 x i32] [i32 0, i32 1, i32 2, i32 3, i32 4], align 4
29
30 ; FUNC-LABEL: @i32
31
32 ; FIXME: We should be using S_LOAD_DWORD here.
33 ; SI: BUFFER_LOAD_DWORD
34
35 ; EG-DAG: MOV {{\** *}}T2.X
36 ; EG-DAG: MOV {{\** *}}T3.X
37 ; EG-DAG: MOV {{\** *}}T4.X
38 ; EG-DAG: MOV {{\** *}}T5.X
39 ; EG-DAG: MOV {{\** *}}T6.X
40 ; EG: MOVA_INT
41
42 define void @i32(i32 addrspace(1)* %out, i32 %index) {
43 entry:
44   %0 = getelementptr inbounds [5 x i32] addrspace(2)* @i32_gv, i32 0, i32 %index
45   %1 = load i32 addrspace(2)* %0
46   store i32 %1, i32 addrspace(1)* %out
47   ret void
48 }
49
50
51 %struct.foo = type { float, [5 x i32] }
52
53 @struct_foo_gv = internal unnamed_addr addrspace(2) constant [1 x %struct.foo] [ %struct.foo { float 16.0, [5 x i32] [i32 0, i32 1, i32 2, i32 3, i32 4] } ]
54
55 ; FUNC-LABEL: @struct_foo_gv_load
56 ; SI: S_LOAD_DWORD
57
58 define void @struct_foo_gv_load(i32 addrspace(1)* %out, i32 %index) {
59   %gep = getelementptr inbounds [1 x %struct.foo] addrspace(2)* @struct_foo_gv, i32 0, i32 0, i32 1, i32 %index
60   %load = load i32 addrspace(2)* %gep, align 4
61   store i32 %load, i32 addrspace(1)* %out, align 4
62   ret void
63 }
64
65 @array_v1_gv = internal addrspace(2) constant [4 x <1 x i32>] [ <1 x i32> <i32 1>,
66                                                                 <1 x i32> <i32 2>,
67                                                                 <1 x i32> <i32 3>,
68                                                                 <1 x i32> <i32 4> ]
69
70 ; FUNC-LABEL: @array_v1_gv_load
71 ; FIXME: We should be using S_LOAD_DWORD here.
72 ; SI: BUFFER_LOAD_DWORD
73 define void @array_v1_gv_load(<1 x i32> addrspace(1)* %out, i32 %index) {
74   %gep = getelementptr inbounds [4 x <1 x i32>] addrspace(2)* @array_v1_gv, i32 0, i32 %index
75   %load = load <1 x i32> addrspace(2)* %gep, align 4
76   store <1 x i32> %load, <1 x i32> addrspace(1)* %out, align 4
77   ret void
78 }
79
80 define void @gv_addressing_in_branch(float addrspace(1)* %out, i32 %index, i32 %a) {
81 entry:
82   %0 = icmp eq i32 0, %a
83   br i1 %0, label %if, label %else
84
85 if:
86   %1 = getelementptr inbounds [5 x float] addrspace(2)* @float_gv, i32 0, i32 %index
87   %2 = load float addrspace(2)* %1
88   store float %2, float addrspace(1)* %out
89   br label %endif
90
91 else:
92   store float 1.0, float addrspace(1)* %out
93   br label %endif
94
95 endif:
96   ret void
97 }