[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / lds-size.ll
bloba7f3d7787557613ba4c4cb345e7c1f0e1d851343
1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa < %s | FileCheck -check-prefix=ALL -check-prefix=HSA %s
2 ; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck -check-prefix=ALL -check-prefix=EG %s
4 ; This test makes sure we do not double count global values when they are
5 ; used in different basic blocks.
7 ; GCN: .long 47180
8 ; GCN-NEXT: .long 32900
10 ; EG: .long 166120
11 ; EG-NEXT: .long 1
12 ; ALL: {{^}}test:
14 ; HSA: granulated_lds_size = 0
15 ; HSA: workgroup_group_segment_byte_size = 4
17 ; GCN: ; LDSByteSize: 4 bytes/workgroup (compile time only)
18 @lds = internal unnamed_addr addrspace(3) global i32 undef, align 4
20 define amdgpu_kernel void @test(i32 addrspace(1)* %out, i32 %cond) {
21 entry:
22   %0 = icmp eq i32 %cond, 0
23   br i1 %0, label %if, label %else
25 if:
26   store i32 1, i32 addrspace(3)* @lds
27   br label %endif
29 else:
30   store i32 2, i32 addrspace(3)* @lds
31   br label %endif
33 endif:
34   ret void