[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / global-constant.ll
blob9c1560a01af69c5d8836c8d54fe9d50456a99631
1 ; RUN: llc -mtriple=amdgcn--amdpal -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=PAL %s
2 ; RUN: llc -mtriple=amdgcn-- -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=NOPAL %s
3 ; RUN: llc -mtriple=amdgcn-mesa-mesa3d -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=NOPAL %s
4 ; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=NOPAL %s
6 @private1 = private unnamed_addr addrspace(4) constant [4 x float] [float 0.0, float 1.0, float 2.0, float 3.0]
7 @private2 = private unnamed_addr addrspace(4) constant [4 x float] [float 4.0, float 5.0, float 6.0, float 7.0]
8 @available_externally = available_externally addrspace(4) global [256 x i32] zeroinitializer
10 ; GCN-LABEL: {{^}}private_test:
11 ; GCN: s_getpc_b64 s{{\[}}[[PC0_LO:[0-9]+]]:[[PC0_HI:[0-9]+]]{{\]}}
13 ; PAL OSes use fixup into .text section.
14 ; PAL: s_add_u32 s{{[0-9]+}}, s[[PC0_LO]], private1
15 ; PAL: s_addc_u32 s{{[0-9]+}}, s[[PC0_HI]], 0
17 ; Non-PAL OSes use relocations.
18 ; NOPAL: s_add_u32 s{{[0-9]+}}, s[[PC0_LO]], private1@rel32@lo+4
19 ; NOPAL: s_addc_u32 s{{[0-9]+}}, s[[PC0_HI]], private1@rel32@hi+4
21 ; GCN: s_getpc_b64 s{{\[}}[[PC1_LO:[0-9]+]]:[[PC1_HI:[0-9]+]]{{\]}}
23 ; PAL OSes use fixup into .text section.
24 ; PAL: s_add_u32 s{{[0-9]+}}, s[[PC1_LO]], private2
25 ; PAL: s_addc_u32 s{{[0-9]+}}, s[[PC1_HI]], 0
27 ; Non-PAL OSes use relocations.
28 ; NOPAL: s_add_u32 s{{[0-9]+}}, s[[PC1_LO]], private2@rel32@lo+4
29 ; NOPAL: s_addc_u32 s{{[0-9]+}}, s[[PC1_HI]], private2@rel32@hi+4
31 define amdgpu_kernel void @private_test(i32 %index, float addrspace(1)* %out) {
32   %ptr = getelementptr [4 x float], [4 x float] addrspace(4) * @private1, i32 0, i32 %index
33   %val = load float, float addrspace(4)* %ptr
34   store volatile float %val, float addrspace(1)* %out
35   %ptr2 = getelementptr [4 x float], [4 x float] addrspace(4) * @private2, i32 0, i32 %index
36   %val2 = load float, float addrspace(4)* %ptr2
37   store volatile float %val2, float addrspace(1)* %out
38   ret void
41 ; NOPAL-LABEL: {{^}}available_externally_test:
42 ; NOPAL: s_getpc_b64 s{{\[}}[[PC0_LO:[0-9]+]]:[[PC0_HI:[0-9]+]]{{\]}}
43 ; NOPAL: s_add_u32 s{{[0-9]+}}, s[[PC0_LO]], available_externally@gotpcrel32@lo+4
44 ; NOPAL: s_addc_u32 s{{[0-9]+}}, s[[PC0_HI]], available_externally@gotpcrel32@hi+4
45 define amdgpu_kernel void @available_externally_test(i32 addrspace(1)* %out) {
46   %ptr = getelementptr [256 x i32], [256 x i32] addrspace(4)* @available_externally, i32 0, i32 1
47   %val = load i32, i32 addrspace(4)* %ptr
48   store i32 %val, i32 addrspace(1)* %out
49   ret void
52 ; PAL: .text
53 ; NOPAL: .section .rodata
55 ; GCN: private1:
56 ; GCN: private2: