diff options
author | Tim Renouf <tpr.llvm@botech.co.uk> | 2018-02-26 14:46:43 +0000 |
---|---|---|
committer | Tim Renouf <tpr.llvm@botech.co.uk> | 2018-02-26 14:46:43 +0000 |
commit | 832f90fa0c6618aa8c11f2f3fd45094f7c4272e5 (patch) | |
tree | 79be3617802b75041180ba2db24ced32eb4ed829 /llvm/test/CodeGen/AMDGPU | |
parent | f40707a2db3b7abd26ac87191cb792e648f0ccb4 (diff) | |
download | bcm5719-llvm-832f90fa0c6618aa8c11f2f3fd45094f7c4272e5.tar.gz bcm5719-llvm-832f90fa0c6618aa8c11f2f3fd45094f7c4272e5.zip |
[AMDGPU] Scratch setup fix on AMDPAL gfx9+ merge shader
Summary:
With OS type AMDPAL, the scratch descriptor is hardwired to be loaded
from offset 0 of the global information table, whose low pointer is
passed in s0. For a merge shader on gfx9+, it needs to be s8 instead, as
the hardware reserves s0-s7.
Reviewers: kzhuravl
Subscribers: arsenm, nhaehnle, dstuttard, llvm-commits, t-tye, yaxunl, wdng, kzhuravl
Differential Revision: https://reviews.llvm.org/D42203
llvm-svn: 326088
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/amdpal_scratch_mergedshader.ll | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/amdpal_scratch_mergedshader.ll b/llvm/test/CodeGen/AMDGPU/amdpal_scratch_mergedshader.ll new file mode 100644 index 00000000000..b062d9316c2 --- /dev/null +++ b/llvm/test/CodeGen/AMDGPU/amdpal_scratch_mergedshader.ll @@ -0,0 +1,34 @@ +; RUN: llc -mtriple=amdgcn--amdpal -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN -check-prefix=GFX9 -enable-var-scope %s + +; On gfx9 and later, a HS is a merged shader, in which s0-s7 are reserved by the +; hardware, so the PAL puts the GIT (global information table) in s8 rather +; than s0. + +; GCN-LABEL: {{^}}_amdgpu_hs_main: +; GCN: s_getpc_b64 s{{\[}}[[GITPTR:[0-9]+]]: +; PREGFX9: s_mov_b32 s[[GITPTR]], s0 +; GFX9: s_mov_b32 s[[GITPTR]], s8 + +define amdgpu_hs void @_amdgpu_hs_main(i32 inreg %arg, i32 inreg %arg1, i32 inreg %arg2, i32 inreg %arg3, i32 inreg %arg4, i32 inreg %arg5, i32 inreg %arg6, i32 inreg %arg7, <6 x i32> inreg %arg8) { +.entry: + %__llpc_global_proxy_7.i = alloca [3 x <4 x float>], align 16, addrspace(5) + %tmp = icmp ult i32 undef, undef + br i1 %tmp, label %.beginls, label %.endls + +.beginls: ; preds = %.entry + %tmp15 = extractelement <6 x i32> %arg8, i32 3 + %.0.vec.insert.i = insertelement <2 x i32> undef, i32 %tmp15, i32 0 + %.4.vec.insert.i = shufflevector <2 x i32> %.0.vec.insert.i, <2 x i32> undef, <2 x i32> <i32 0, i32 3> + %tmp16 = bitcast <2 x i32> %.4.vec.insert.i to i64 + br label %.endls + +.endls: ; preds = %.beginls, %.entry + %.fca.2.gep120.i = getelementptr inbounds [3 x <4 x float>], [3 x <4 x float>] addrspace(5)* %__llpc_global_proxy_7.i, i64 0, i64 2 + store <4 x float> <float 9.000000e+00, float 1.000000e+01, float 1.100000e+01, float 1.200000e+01>, <4 x float> addrspace(5)* %.fca.2.gep120.i, align 16 + br label %bb + +bb: ; preds = %bb, %.endls + %lsr.iv182 = phi [3 x <4 x float>] addrspace(5)* [ undef, %bb ], [ %__llpc_global_proxy_7.i, %.endls ] + %scevgep183 = getelementptr [3 x <4 x float>], [3 x <4 x float>] addrspace(5)* %lsr.iv182, i32 0, i32 1 + br label %bb +} |