[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / v1024.ll
bloba5e0454a36344edb10ce05066b4b82133e6d5cfd
1 ; RUN: llc -march=amdgcn -mcpu=gfx908 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
3 ; Check that we do not use AGPRs for v32i32 type
5 ; GCN-LABEL: {{^}}test_v1024:
6 ; GCN-NOT: v_accvgpr
7 ; GCN-COUNT-32: v_mov_b32_e32
8 ; GCN-NOT: v_accvgpr
9 define amdgpu_kernel void @test_v1024() {
10 entry:
11   %alloca = alloca <32 x i32>, align 16, addrspace(5)
12   %cast = bitcast <32 x i32> addrspace(5)* %alloca to i8 addrspace(5)*
13   br i1 undef, label %if.then.i.i, label %if.else.i
15 if.then.i.i:                                      ; preds = %entry
16   call void @llvm.memcpy.p5i8.p5i8.i64(i8 addrspace(5)* align 16 %cast, i8 addrspace(5)* align 4 undef, i64 128, i1 false)
17   br label %if.then.i62.i
19 if.else.i:                                        ; preds = %entry
20   br label %if.then.i62.i
22 if.then.i62.i:                                    ; preds = %if.else.i, %if.then.i.i
23   call void @llvm.memcpy.p1i8.p5i8.i64(i8 addrspace(1)* align 4 undef, i8 addrspace(5)* align 16 %cast, i64 128, i1 false)
24   ret void
27 declare void @llvm.memcpy.p5i8.p5i8.i64(i8 addrspace(5)* nocapture writeonly, i8 addrspace(5)* nocapture readonly, i64, i1 immarg)
29 declare void @llvm.memcpy.p1i8.p5i8.i64(i8 addrspace(1)* nocapture writeonly, i8 addrspace(5)* nocapture readonly, i64, i1 immarg)