AMDGPU/SI: Emit constant arrays in the .text section
[oota-llvm.git] / test / CodeGen / AMDGPU / global-constant.ll
1 ; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2
3 @readonly = private unnamed_addr addrspace(2) constant [4 x float] [float 0.0, float 1.0, float 2.0, float 3.0]
4 @readonly2 = private unnamed_addr addrspace(2) constant [4 x float] [float 4.0, float 5.0, float 6.0, float 7.0]
5
6 ; GCN-LABEL: {{^}}main:
7 ; GCN: s_getpc_b64 s{{\[}}[[PC0_LO:[0-9]+]]:[[PC0_HI:[0-9]+]]{{\]}}
8 ; GCN-NEXT: s_add_u32 s{{[0-9]+}}, s[[PC0_LO]], readonly
9 ; GCN: s_addc_u32 s{{[0-9]+}}, s[[PC0_HI]], 0
10 ; GCN: s_getpc_b64 s{{\[}}[[PC1_LO:[0-9]+]]:[[PC1_HI:[0-9]+]]{{\]}}
11 ; GCN-NEXT: s_add_u32 s{{[0-9]+}}, s[[PC1_LO]], readonly
12 ; GCN: s_addc_u32 s{{[0-9]+}}, s[[PC1_HI]], 0
13 ; GCN: .text
14 ; GCN: readonly:
15 ; GCN: readonly2:
16 define void @main(i32 %index, float addrspace(1)* %out) {
17   %ptr = getelementptr [4 x float], [4 x float] addrspace(2) * @readonly, i32 0, i32 %index
18   %val = load float, float addrspace(2)* %ptr
19   store float %val, float addrspace(1)* %out
20   %ptr2 = getelementptr [4 x float], [4 x float] addrspace(2) * @readonly2, i32 0, i32 %index
21   %val2 = load float, float addrspace(2)* %ptr2
22   store float %val2, float addrspace(1)* %out
23   ret void
24 }
25