blob: 2f99efd81092d8880dbc4dbeae7bbc4c6952bb0c [file] [log] [blame]
Matt Arsenault2510a312016-09-03 06:57:55 +00001; RUN: llc -O0 -amdgpu-spill-sgpr-to-vgpr=1 -march=amdgcn -mattr=+vgpr-spilling -verify-machineinstrs < %s | FileCheck -check-prefix=TOVGPR -check-prefix=GCN %s
2; RUN: llc -O0 -amdgpu-spill-sgpr-to-vgpr=1 -march=amdgcn -mcpu=tonga -mattr=+vgpr-spilling -verify-machineinstrs < %s | FileCheck -check-prefix=TOVGPR -check-prefix=GCN %s
3; RUN: llc -O0 -amdgpu-spill-sgpr-to-vgpr=0 -march=amdgcn -mattr=+vgpr-spilling -verify-machineinstrs < %s | FileCheck -check-prefix=TOVMEM -check-prefix=GCN %s
4; RUN: llc -O0 -amdgpu-spill-sgpr-to-vgpr=0 -march=amdgcn -mattr=+vgpr-spilling -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=TOVMEM -check-prefix=GCN %s
5
6; XXX - Why does it like to use vcc?
7
8; GCN-LABEL: {{^}}spill_m0:
Matt Arsenault5d8eb252016-09-30 01:50:20 +00009; GCN: s_cmp_lg_u32
Matt Arsenault2510a312016-09-03 06:57:55 +000010
11; TOVGPR: s_mov_b32 vcc_hi, m0
12; TOVGPR: v_writelane_b32 [[SPILL_VREG:v[0-9]+]], vcc_hi, 0
13
14; TOVMEM: v_mov_b32_e32 [[SPILL_VREG:v[0-9]+]], m0
15; TOVMEM: buffer_store_dword [[SPILL_VREG]], off, s{{\[[0-9]+:[0-9]+\]}}, s{{[0-9]+}} ; 4-byte Folded Spill
16; TOVMEM: s_waitcnt vmcnt(0)
17; GCN: s_cbranch_scc1 [[ENDIF:BB[0-9]+_[0-9]+]]
18
19; GCN: [[ENDIF]]:
20; TOVGPR: v_readlane_b32 vcc_hi, [[SPILL_VREG]], 0
21; TOVGPR: s_mov_b32 m0, vcc_hi
22
23; TOVMEM: buffer_load_dword [[RELOAD_VREG:v[0-9]+]], off, s{{\[[0-9]+:[0-9]+\]}}, s{{[0-9]+}} ; 4-byte Folded Reload
24; TOVMEM: s_waitcnt vmcnt(0)
25; TOVMEM: v_readfirstlane_b32 vcc_hi, [[RELOAD_VREG]]
26; TOVMEM: s_mov_b32 m0, vcc_hi
27
28; GCN: s_add_i32 m0, m0, 1
29define void @spill_m0(i32 %cond, i32 addrspace(1)* %out) #0 {
30entry:
31 %m0 = call i32 asm sideeffect "s_mov_b32 m0, 0", "={M0}"() #0
32 %cmp0 = icmp eq i32 %cond, 0
33 br i1 %cmp0, label %if, label %endif
34
35if:
36 call void asm sideeffect "v_nop", ""() #0
37 br label %endif
38
39endif:
40 %foo = call i32 asm sideeffect "s_add_i32 $0, $1, 1", "=s,{M0}"(i32 %m0) #0
41 store i32 %foo, i32 addrspace(1)* %out
42 ret void
43}
44
45@lds = internal addrspace(3) global [64 x float] undef
46
47; GCN-LABEL: {{^}}spill_m0_lds:
48; GCN-NOT: v_readlane_b32 m0
49define amdgpu_ps void @spill_m0_lds(<16 x i8> addrspace(2)* inreg, <16 x i8> addrspace(2)* inreg, <32 x i8> addrspace(2)* inreg, i32 inreg) #0 {
50main_body:
51 %4 = call float @llvm.SI.fs.constant(i32 0, i32 0, i32 %3)
52 %cmp = fcmp ueq float 0.0, %4
53 br i1 %cmp, label %if, label %else
54
55if:
56 %lds_ptr = getelementptr [64 x float], [64 x float] addrspace(3)* @lds, i32 0, i32 0
57 %lds_data = load float, float addrspace(3)* %lds_ptr
58 br label %endif
59
60else:
61 %interp = call float @llvm.SI.fs.constant(i32 0, i32 0, i32 %3)
62 br label %endif
63
64endif:
65 %export = phi float [%lds_data, %if], [%interp, %else]
66 %5 = call i32 @llvm.SI.packf16(float %export, float %export)
67 %6 = bitcast i32 %5 to float
68 call void @llvm.SI.export(i32 15, i32 1, i32 1, i32 0, i32 1, float %6, float %6, float %6, float %6)
69 ret void
70}
71
72declare float @llvm.SI.fs.constant(i32, i32, i32) readnone
73
74declare i32 @llvm.SI.packf16(float, float) readnone
75
76declare void @llvm.SI.export(i32, i32, i32, i32, i32, float, float, float, float)
77
78attributes #0 = { nounwind }