2019-03-18 04:36:12 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
2019-04-03 08:00:58 +08:00
|
|
|
; RUN: llc < %s -mtriple=amdgcn-- -mcpu=tahiti -mattr=-fp64-fp16-denormals -verify-machineinstrs | FileCheck %s -check-prefixes=GCN,SI
|
2019-03-18 04:36:12 +08:00
|
|
|
; RUN: llc < %s -mtriple=amdgcn-- -mcpu=fiji -mattr=-fp64-fp16-denormals,-flat-for-global -verify-machineinstrs | FileCheck %s -check-prefixes=GCN,VI
|
2016-11-13 15:01:11 +08:00
|
|
|
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @madak_f16(
|
2019-03-18 04:36:12 +08:00
|
|
|
; SI-LABEL: madak_f16:
|
|
|
|
; SI: ; %bb.0: ; %entry
|
|
|
|
; SI-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x9
|
|
|
|
; SI-NEXT: s_load_dwordx2 s[0:1], s[0:1], 0xd
|
|
|
|
; SI-NEXT: s_mov_b32 s11, 0xf000
|
|
|
|
; SI-NEXT: s_mov_b32 s10, -1
|
|
|
|
; SI-NEXT: s_mov_b32 s2, s10
|
|
|
|
; SI-NEXT: s_mov_b32 s3, s11
|
|
|
|
; SI-NEXT: s_waitcnt lgkmcnt(0)
|
|
|
|
; SI-NEXT: s_mov_b32 s12, s6
|
|
|
|
; SI-NEXT: s_mov_b32 s13, s7
|
2019-04-03 08:00:58 +08:00
|
|
|
; SI-NEXT: s_mov_b32 s14, s10
|
|
|
|
; SI-NEXT: s_mov_b32 s15, s11
|
|
|
|
; SI-NEXT: buffer_load_ushort v0, off, s[0:3], 0
|
|
|
|
; SI-NEXT: buffer_load_ushort v1, off, s[12:15], 0
|
2019-03-18 04:36:12 +08:00
|
|
|
; SI-NEXT: s_mov_b32 s8, s4
|
|
|
|
; SI-NEXT: s_mov_b32 s9, s5
|
|
|
|
; SI-NEXT: s_waitcnt vmcnt(1)
|
|
|
|
; SI-NEXT: v_cvt_f32_f16_e32 v0, v0
|
|
|
|
; SI-NEXT: s_waitcnt vmcnt(0)
|
|
|
|
; SI-NEXT: v_cvt_f32_f16_e32 v1, v1
|
2019-04-03 08:00:58 +08:00
|
|
|
; SI-NEXT: v_madak_f32 v0, v1, v0, 0x41200000
|
2019-03-18 04:36:12 +08:00
|
|
|
; SI-NEXT: v_cvt_f16_f32_e32 v0, v0
|
|
|
|
; SI-NEXT: buffer_store_short v0, off, s[8:11], 0
|
|
|
|
; SI-NEXT: s_endpgm
|
|
|
|
;
|
|
|
|
; VI-LABEL: madak_f16:
|
|
|
|
; VI: ; %bb.0: ; %entry
|
|
|
|
; VI-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x24
|
|
|
|
; VI-NEXT: s_load_dwordx2 s[8:9], s[0:1], 0x34
|
|
|
|
; VI-NEXT: s_mov_b32 s3, 0xf000
|
|
|
|
; VI-NEXT: s_mov_b32 s2, -1
|
|
|
|
; VI-NEXT: s_mov_b32 s10, s2
|
|
|
|
; VI-NEXT: s_waitcnt lgkmcnt(0)
|
|
|
|
; VI-NEXT: s_mov_b32 s0, s4
|
|
|
|
; VI-NEXT: s_mov_b32 s1, s5
|
|
|
|
; VI-NEXT: s_mov_b32 s4, s6
|
|
|
|
; VI-NEXT: s_mov_b32 s5, s7
|
|
|
|
; VI-NEXT: s_mov_b32 s11, s3
|
|
|
|
; VI-NEXT: s_mov_b32 s6, s2
|
|
|
|
; VI-NEXT: s_mov_b32 s7, s3
|
|
|
|
; VI-NEXT: buffer_load_ushort v0, off, s[4:7], 0
|
|
|
|
; VI-NEXT: buffer_load_ushort v1, off, s[8:11], 0
|
|
|
|
; VI-NEXT: s_waitcnt vmcnt(0)
|
|
|
|
; VI-NEXT: v_madak_f16 v0, v0, v1, 0x4900
|
|
|
|
; VI-NEXT: buffer_store_short v0, off, s[0:3], 0
|
|
|
|
; VI-NEXT: s_endpgm
|
2016-11-13 15:01:11 +08:00
|
|
|
half addrspace(1)* %r,
|
|
|
|
half addrspace(1)* %a,
|
|
|
|
half addrspace(1)* %b) {
|
|
|
|
entry:
|
|
|
|
%a.val = load half, half addrspace(1)* %a
|
|
|
|
%b.val = load half, half addrspace(1)* %b
|
|
|
|
|
|
|
|
%t.val = fmul half %a.val, %b.val
|
|
|
|
%r.val = fadd half %t.val, 10.0
|
|
|
|
|
|
|
|
store half %r.val, half addrspace(1)* %r
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @madak_f16_use_2(
|
2019-03-18 04:36:12 +08:00
|
|
|
; SI-LABEL: madak_f16_use_2:
|
|
|
|
; SI: ; %bb.0: ; %entry
|
|
|
|
; SI-NEXT: s_load_dwordx8 s[4:11], s[0:1], 0x9
|
|
|
|
; SI-NEXT: s_load_dwordx2 s[0:1], s[0:1], 0x11
|
|
|
|
; SI-NEXT: s_mov_b32 s15, 0xf000
|
|
|
|
; SI-NEXT: s_mov_b32 s14, -1
|
|
|
|
; SI-NEXT: s_mov_b32 s2, s14
|
|
|
|
; SI-NEXT: s_waitcnt lgkmcnt(0)
|
|
|
|
; SI-NEXT: s_mov_b32 s16, s10
|
|
|
|
; SI-NEXT: s_mov_b32 s17, s11
|
2019-04-03 08:00:58 +08:00
|
|
|
; SI-NEXT: s_mov_b32 s3, s15
|
|
|
|
; SI-NEXT: s_mov_b32 s18, s14
|
|
|
|
; SI-NEXT: s_mov_b32 s19, s15
|
2019-03-18 04:36:12 +08:00
|
|
|
; SI-NEXT: s_mov_b32 s10, s14
|
|
|
|
; SI-NEXT: s_mov_b32 s11, s15
|
|
|
|
; SI-NEXT: buffer_load_ushort v0, off, s[8:11], 0
|
|
|
|
; SI-NEXT: buffer_load_ushort v1, off, s[16:19], 0
|
|
|
|
; SI-NEXT: buffer_load_ushort v2, off, s[0:3], 0
|
|
|
|
; SI-NEXT: v_mov_b32_e32 v3, 0x41200000
|
|
|
|
; SI-NEXT: s_mov_b32 s12, s6
|
|
|
|
; SI-NEXT: s_mov_b32 s13, s7
|
|
|
|
; SI-NEXT: s_mov_b32 s6, s14
|
|
|
|
; SI-NEXT: s_mov_b32 s7, s15
|
|
|
|
; SI-NEXT: s_waitcnt vmcnt(2)
|
|
|
|
; SI-NEXT: v_cvt_f32_f16_e32 v0, v0
|
|
|
|
; SI-NEXT: s_waitcnt vmcnt(1)
|
|
|
|
; SI-NEXT: v_cvt_f32_f16_e32 v1, v1
|
|
|
|
; SI-NEXT: s_waitcnt vmcnt(0)
|
|
|
|
; SI-NEXT: v_cvt_f32_f16_e32 v2, v2
|
|
|
|
; SI-NEXT: v_madak_f32 v1, v0, v1, 0x41200000
|
|
|
|
; SI-NEXT: v_mac_f32_e32 v3, v0, v2
|
|
|
|
; SI-NEXT: v_cvt_f16_f32_e32 v0, v1
|
|
|
|
; SI-NEXT: v_cvt_f16_f32_e32 v1, v3
|
|
|
|
; SI-NEXT: buffer_store_short v0, off, s[4:7], 0
|
|
|
|
; SI-NEXT: buffer_store_short v1, off, s[12:15], 0
|
|
|
|
; SI-NEXT: s_endpgm
|
|
|
|
;
|
|
|
|
; VI-LABEL: madak_f16_use_2:
|
|
|
|
; VI: ; %bb.0: ; %entry
|
|
|
|
; VI-NEXT: s_load_dwordx8 s[4:11], s[0:1], 0x24
|
|
|
|
; VI-NEXT: s_load_dwordx2 s[12:13], s[0:1], 0x44
|
|
|
|
; VI-NEXT: s_mov_b32 s3, 0xf000
|
|
|
|
; VI-NEXT: s_mov_b32 s2, -1
|
|
|
|
; VI-NEXT: s_mov_b32 s14, s2
|
|
|
|
; VI-NEXT: s_waitcnt lgkmcnt(0)
|
|
|
|
; VI-NEXT: s_mov_b32 s16, s10
|
|
|
|
; VI-NEXT: s_mov_b32 s17, s11
|
|
|
|
; VI-NEXT: s_mov_b32 s15, s3
|
|
|
|
; VI-NEXT: s_mov_b32 s18, s2
|
|
|
|
; VI-NEXT: s_mov_b32 s19, s3
|
|
|
|
; VI-NEXT: s_mov_b32 s10, s2
|
|
|
|
; VI-NEXT: s_mov_b32 s11, s3
|
|
|
|
; VI-NEXT: buffer_load_ushort v0, off, s[8:11], 0
|
|
|
|
; VI-NEXT: buffer_load_ushort v1, off, s[16:19], 0
|
|
|
|
; VI-NEXT: buffer_load_ushort v3, off, s[12:15], 0
|
|
|
|
; VI-NEXT: v_mov_b32_e32 v2, 0x4900
|
|
|
|
; VI-NEXT: s_mov_b32 s0, s6
|
|
|
|
; VI-NEXT: s_mov_b32 s1, s7
|
|
|
|
; VI-NEXT: s_mov_b32 s6, s2
|
|
|
|
; VI-NEXT: s_mov_b32 s7, s3
|
|
|
|
; VI-NEXT: s_waitcnt vmcnt(1)
|
|
|
|
; VI-NEXT: v_madak_f16 v1, v0, v1, 0x4900
|
|
|
|
; VI-NEXT: s_waitcnt vmcnt(0)
|
|
|
|
; VI-NEXT: v_mac_f16_e32 v2, v0, v3
|
|
|
|
; VI-NEXT: buffer_store_short v1, off, s[4:7], 0
|
|
|
|
; VI-NEXT: buffer_store_short v2, off, s[0:3], 0
|
|
|
|
; VI-NEXT: s_endpgm
|
2016-11-13 15:01:11 +08:00
|
|
|
half addrspace(1)* %r0,
|
|
|
|
half addrspace(1)* %r1,
|
|
|
|
half addrspace(1)* %a,
|
|
|
|
half addrspace(1)* %b,
|
|
|
|
half addrspace(1)* %c) {
|
|
|
|
entry:
|
AMDGPU: Add pass to lower kernel arguments to loads
This replaces most argument uses with loads, but for
now not all.
The code in SelectionDAG for calling convention lowering
is actively harmful for amdgpu_kernel. It attempts to
split the argument types into register legal types, which
results in low quality code for arbitary types. Since
all kernel arguments are passed in memory, we just want the
raw types.
I've tried a couple of methods of mitigating this in SelectionDAG,
but it's easier to just bypass this problem alltogether. It's
possible to hack around the problem in the initial lowering,
but the real problem is the DAG then expects to be able to use
CopyToReg/CopyFromReg for uses of the arguments outside the block.
Exposing the argument loads in the IR also has the advantage
that the LoadStoreVectorizer can merge them.
I'm not sure the best approach to dealing with the IR
argument list is. The patch as-is just leaves the IR arguments
in place, so all the existing code will still compute the same
kernarg size and pointlessly lowers the arguments.
Arguably the frontend should emit kernels with an empty argument
list in the first place. Alternatively a dummy array could be
inserted as a single argument just to reserve space.
This does have some disadvantages. Local pointer kernel arguments can
no longer have AssertZext placed on them as the equivalent !range
metadata is not valid on pointer typed loads. This is mostly bad
for SI which needs to know about the known bits in order to use the
DS instruction offset, so in this case this is not done.
More importantly, this skips noalias arguments since this pass
does not yet convert this to the equivalent !alias.scope and !noalias
metadata. Producing this metadata correctly seems to be tricky,
although this logically is the same as inlining into a function which
doesn't exist. Additionally, exposing these loads to the vectorizer
may result in degraded aliasing information if a pointer load is
merged with another argument load.
I'm also not entirely sure this is preserving the current clover
ABI, although I would greatly prefer if it would stop widening
arguments and match the HSA ABI. As-is I think it is extending
< 4-byte arguments to 4-bytes but doesn't align them to 4-bytes.
llvm-svn: 335650
2018-06-27 03:10:00 +08:00
|
|
|
%a.val = load volatile half, half addrspace(1)* %a
|
|
|
|
%b.val = load volatile half, half addrspace(1)* %b
|
|
|
|
%c.val = load volatile half, half addrspace(1)* %c
|
2016-11-13 15:01:11 +08:00
|
|
|
|
|
|
|
%t0.val = fmul half %a.val, %b.val
|
|
|
|
%t1.val = fmul half %a.val, %c.val
|
|
|
|
%r0.val = fadd half %t0.val, 10.0
|
|
|
|
%r1.val = fadd half %t1.val, 10.0
|
|
|
|
|
|
|
|
store half %r0.val, half addrspace(1)* %r0
|
|
|
|
store half %r1.val, half addrspace(1)* %r1
|
|
|
|
ret void
|
|
|
|
}
|