2017-11-13 07:53:44 +08:00
|
|
|
; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=kaveri -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefix=GCN -check-prefix=CI %s
|
|
|
|
; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=tonga -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefix=GCN -check-prefix=VI %s
|
2017-12-09 04:52:28 +08:00
|
|
|
; RUN: llc -mtriple=amdgcn--amdhsa -mcpu=gfx900 -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefix=GCN -check-prefix=GFX9 %s
|
2016-11-15 10:25:28 +08:00
|
|
|
|
|
|
|
; DAGCombiner will transform:
|
|
|
|
; (fabs (f16 bitcast (i16 a))) => (f16 bitcast (and (i16 a), 0x7FFFFFFF))
|
|
|
|
; unless isFabsFree returns true
|
|
|
|
|
2017-02-28 06:15:25 +08:00
|
|
|
; GCN-LABEL: {{^}}s_fabs_free_f16:
|
2017-09-20 13:01:53 +08:00
|
|
|
; GCN: {{flat|global}}_load_ushort [[VAL:v[0-9]+]],
|
2016-11-15 10:25:28 +08:00
|
|
|
; GCN: v_and_b32_e32 [[RESULT:v[0-9]+]], 0x7fff, [[VAL]]
|
2017-07-29 09:03:53 +08:00
|
|
|
; GCN: {{flat|global}}_store_short v{{\[[0-9]+:[0-9]+\]}}, [[RESULT]]
|
2016-11-15 10:25:28 +08:00
|
|
|
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @s_fabs_free_f16(half addrspace(1)* %out, i16 %in) {
|
2016-11-15 10:25:28 +08:00
|
|
|
%bc= bitcast i16 %in to half
|
|
|
|
%fabs = call half @llvm.fabs.f16(half %bc)
|
|
|
|
store half %fabs, half addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2017-02-28 06:15:25 +08:00
|
|
|
; GCN-LABEL: {{^}}s_fabs_f16:
|
2016-11-15 10:25:28 +08:00
|
|
|
; CI: flat_load_ushort [[VAL:v[0-9]+]],
|
2017-11-13 07:53:44 +08:00
|
|
|
; CI: v_and_b32_e32 [[RESULT:v[0-9]+]], 0x7fff, [[VAL]]
|
2016-11-15 10:25:28 +08:00
|
|
|
; CI: flat_store_short v{{\[[0-9]+:[0-9]+\]}}, [[RESULT]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @s_fabs_f16(half addrspace(1)* %out, half %in) {
|
2016-11-15 10:25:28 +08:00
|
|
|
%fabs = call half @llvm.fabs.f16(half %in)
|
|
|
|
store half %fabs, half addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FIXME: Should be able to use single and
|
2017-02-28 06:15:25 +08:00
|
|
|
; GCN-LABEL: {{^}}s_fabs_v2f16:
|
2017-02-02 10:27:04 +08:00
|
|
|
; CI: s_movk_i32 [[MASK:s[0-9]+]], 0x7fff
|
2017-02-28 06:15:25 +08:00
|
|
|
; CI: v_and_b32_e32 v{{[0-9]+}}, [[MASK]]
|
|
|
|
; CI: v_lshlrev_b32_e32 v{{[0-9]+}}, 16,
|
|
|
|
; CI: v_and_b32_e32 v{{[0-9]+}}, [[MASK]]
|
|
|
|
; CI: v_or_b32_e32
|
2016-11-15 10:25:28 +08:00
|
|
|
|
2017-04-06 03:58:12 +08:00
|
|
|
; VI: flat_load_ushort [[HI:v[0-9]+]]
|
2017-04-06 23:03:28 +08:00
|
|
|
; VI: flat_load_ushort [[LO:v[0-9]+]]
|
2016-11-15 10:25:28 +08:00
|
|
|
; VI: v_mov_b32_e32 [[MASK:v[0-9]+]], 0x7fff{{$}}
|
2017-07-11 03:53:57 +08:00
|
|
|
; VI-DAG: v_and_b32_e32 [[FABS_LO:v[0-9]+]], [[HI]], [[MASK]]
|
2017-06-04 01:39:47 +08:00
|
|
|
; VI-DAG: v_and_b32_sdwa [[FABS_HI:v[0-9]+]], [[LO]], [[MASK]] dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
|
2017-07-11 03:53:57 +08:00
|
|
|
; VI-DAG: v_or_b32_e32 v{{[0-9]+}}, [[FABS_LO]], [[FABS_HI]]
|
2016-11-15 10:25:28 +08:00
|
|
|
; VI: flat_store_dword
|
2017-02-28 06:15:25 +08:00
|
|
|
|
|
|
|
; GFX9: s_load_dword [[VAL:s[0-9]+]]
|
|
|
|
; GFX9: s_and_b32 s{{[0-9]+}}, [[VAL]], 0x7fff7fff
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @s_fabs_v2f16(<2 x half> addrspace(1)* %out, <2 x half> %in) {
|
2016-11-15 10:25:28 +08:00
|
|
|
%fabs = call <2 x half> @llvm.fabs.v2f16(<2 x half> %in)
|
|
|
|
store <2 x half> %fabs, <2 x half> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2017-02-28 06:15:25 +08:00
|
|
|
; GCN-LABEL: {{^}}s_fabs_v4f16:
|
2017-02-02 10:27:04 +08:00
|
|
|
; CI: s_movk_i32 [[MASK:s[0-9]+]], 0x7fff
|
2017-02-28 06:15:25 +08:00
|
|
|
; CI: v_and_b32_e32 v{{[0-9]+}}, [[MASK]]
|
|
|
|
; CI: v_and_b32_e32 v{{[0-9]+}}, [[MASK]]
|
|
|
|
; CI: v_and_b32_e32 v{{[0-9]+}}, [[MASK]]
|
|
|
|
; CI: v_and_b32_e32 v{{[0-9]+}}, [[MASK]]
|
2016-11-15 10:25:28 +08:00
|
|
|
|
|
|
|
; VI: v_mov_b32_e32 [[MASK:v[0-9]+]], 0x7fff{{$}}
|
2017-06-04 01:39:47 +08:00
|
|
|
; VI-DAG: v_and_b32_sdwa v{{[0-9]+}}, v{{[0-9]+}}, [[MASK]] dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
|
|
|
|
; VI-DAG: v_and_b32_sdwa v{{[0-9]+}}, v{{[0-9]+}}, [[MASK]] dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:DWORD
|
2017-07-11 03:53:57 +08:00
|
|
|
; VI-DAG: v_and_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, [[MASK]]
|
|
|
|
; VI-DAG: v_and_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, [[MASK]]
|
2017-04-06 23:03:28 +08:00
|
|
|
; VI-DAG: v_or_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}}
|
|
|
|
; VI: v_or_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}}
|
2016-11-15 10:25:28 +08:00
|
|
|
|
2017-07-29 09:03:53 +08:00
|
|
|
; GCN: {{flat|global}}_store_dwordx2
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @s_fabs_v4f16(<4 x half> addrspace(1)* %out, <4 x half> %in) {
|
2016-11-15 10:25:28 +08:00
|
|
|
%fabs = call <4 x half> @llvm.fabs.v4f16(<4 x half> %in)
|
|
|
|
store <4 x half> %fabs, <4 x half> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fabs_fold_f16:
|
2017-09-20 13:01:53 +08:00
|
|
|
; GCN: {{flat|global}}_load_ushort [[IN0:v[0-9]+]]
|
|
|
|
; GCN: {{flat|global}}_load_ushort [[IN1:v[0-9]+]]
|
2017-02-02 10:27:04 +08:00
|
|
|
|
2016-11-15 10:25:28 +08:00
|
|
|
; CI-DAG: v_cvt_f32_f16_e32 [[CVT0:v[0-9]+]], [[IN0]]
|
2017-02-02 10:27:04 +08:00
|
|
|
; CI-DAG: v_cvt_f32_f16_e64 [[ABS_CVT1:v[0-9]+]], |[[IN1]]|
|
2017-07-11 03:53:57 +08:00
|
|
|
; CI: v_mul_f32_e32 [[RESULT:v[0-9]+]], [[ABS_CVT1]], [[CVT0]]
|
2016-11-15 10:25:28 +08:00
|
|
|
; CI: v_cvt_f16_f32_e32 [[CVTRESULT:v[0-9]+]], [[RESULT]]
|
|
|
|
; CI: flat_store_short v{{\[[0-9]+:[0-9]+\]}}, [[CVTRESULT]]
|
|
|
|
|
|
|
|
; VI-NOT: and
|
|
|
|
; VI: v_mul_f16_e64 [[RESULT:v[0-9]+]], |[[IN1]]|, [[IN0]]
|
|
|
|
; VI: flat_store_short v{{\[[0-9]+:[0-9]+\]}}, [[RESULT]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @fabs_fold_f16(half addrspace(1)* %out, half %in0, half %in1) {
|
2016-11-15 10:25:28 +08:00
|
|
|
%fabs = call half @llvm.fabs.f16(half %in0)
|
|
|
|
%fmul = fmul half %fabs, %in1
|
|
|
|
store half %fmul, half addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2017-02-28 06:15:25 +08:00
|
|
|
; GCN-LABEL: {{^}}v_fabs_v2f16:
|
2017-07-29 09:03:53 +08:00
|
|
|
; GCN: {{flat|global}}_load_dword [[VAL:v[0-9]+]]
|
2017-02-28 06:15:25 +08:00
|
|
|
; GCN: v_and_b32_e32 v{{[0-9]+}}, 0x7fff7fff, [[VAL]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @v_fabs_v2f16(<2 x half> addrspace(1)* %out, <2 x half> addrspace(1)* %in) #0 {
|
2017-02-28 06:15:25 +08:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
|
|
%gep.in = getelementptr inbounds <2 x half>, <2 x half> addrspace(1)* %in, i32 %tid
|
|
|
|
%gep.out = getelementptr inbounds <2 x half>, <2 x half> addrspace(1)* %in, i32 %tid
|
|
|
|
%val = load <2 x half>, <2 x half> addrspace(1)* %gep.in, align 2
|
|
|
|
%fabs = call <2 x half> @llvm.fabs.v2f16(<2 x half> %val)
|
|
|
|
store <2 x half> %fabs, <2 x half> addrspace(1)* %gep.out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fabs_free_v2f16:
|
|
|
|
; GCN: s_load_dword [[VAL:s[0-9]+]]
|
|
|
|
; GCN: s_and_b32 s{{[0-9]+}}, [[VAL]], 0x7fff7fff
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @fabs_free_v2f16(<2 x half> addrspace(1)* %out, i32 %in) #0 {
|
2017-02-28 06:15:25 +08:00
|
|
|
%bc = bitcast i32 %in to <2 x half>
|
|
|
|
%fabs = call <2 x half> @llvm.fabs.v2f16(<2 x half> %bc)
|
|
|
|
store <2 x half> %fabs, <2 x half> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}v_fabs_fold_v2f16:
|
2017-07-29 09:03:53 +08:00
|
|
|
; GCN: {{flat|global}}_load_dword [[VAL:v[0-9]+]]
|
2017-02-28 06:15:25 +08:00
|
|
|
|
|
|
|
; CI: v_cvt_f32_f16_e32
|
|
|
|
; CI: v_cvt_f32_f16_e32
|
|
|
|
; CI: v_mul_f32_e64 v{{[0-9]+}}, |v{{[0-9]+}}|, v{{[0-9]+}}
|
|
|
|
; CI: v_cvt_f16_f32
|
2017-03-16 03:04:26 +08:00
|
|
|
; CI: v_mul_f32_e64 v{{[0-9]+}}, |v{{[0-9]+}}|, v{{[0-9]+}}
|
2017-02-28 06:15:25 +08:00
|
|
|
; CI: v_cvt_f16_f32
|
|
|
|
|
2017-12-05 00:22:32 +08:00
|
|
|
; VI: v_mul_f16_sdwa v{{[0-9]+}}, |v{{[0-9]+}}|, v{{[0-9]+}} dst_sel:WORD_1 dst_unused:UNUSED_PAD src0_sel:WORD_1 src1_sel:WORD_1
|
2017-02-28 06:15:25 +08:00
|
|
|
; VI: v_mul_f16_e64 v{{[0-9]+}}, |v{{[0-9]+}}|, v{{[0-9]+}}
|
|
|
|
|
|
|
|
; GFX9: v_and_b32_e32 [[FABS:v[0-9]+]], 0x7fff7fff, [[VAL]]
|
|
|
|
; GFX9: v_pk_mul_f16 v{{[0-9]+}}, [[FABS]], v{{[0-9]+$}}
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @v_fabs_fold_v2f16(<2 x half> addrspace(1)* %out, <2 x half> addrspace(1)* %in) #0 {
|
2017-07-05 01:32:00 +08:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
2017-07-11 03:53:57 +08:00
|
|
|
%gep = getelementptr <2 x half>, <2 x half> addrspace(1)* %in, i32 %tid
|
2017-07-05 01:32:00 +08:00
|
|
|
%val = load <2 x half>, <2 x half> addrspace(1)* %gep
|
2017-02-28 06:15:25 +08:00
|
|
|
%fabs = call <2 x half> @llvm.fabs.v2f16(<2 x half> %val)
|
|
|
|
%fmul = fmul <2 x half> %fabs, %val
|
|
|
|
store <2 x half> %fmul, <2 x half> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-04-27 03:21:32 +08:00
|
|
|
; GCN-LABEL: {{^}}v_extract_fabs_fold_v2f16:
|
|
|
|
; GCN-DAG: {{flat|global}}_load_dword [[VAL:v[0-9]+]]
|
|
|
|
; CI-DAG: v_mul_f32_e32 v{{[0-9]+}}, 4.0, v{{[0-9]+}}
|
|
|
|
; CI-DAG: v_add_f32_e32 v{{[0-9]+}}, 2.0, v{{[0-9]+}}
|
|
|
|
|
|
|
|
; GFX89-DAG: v_mul_f16_e32 v{{[0-9]+}}, -4.0, [[VAL]]
|
|
|
|
; GFX89-DAG: v_mov_b32_e32 [[CONST2:v[0-9]+]], 0x4000
|
|
|
|
; GFX89-DAG: v_sub_f16_sdwa v{{[0-9]+}}, [[CONST2]], [[VAL]] dst_sel:DWORD dst_unused:UNUSED_PAD src0_sel:DWORD src1_sel:WORD_1
|
|
|
|
define amdgpu_kernel void @v_extract_fabs_fold_v2f16(<2 x half> addrspace(1)* %in) #0 {
|
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
|
|
%gep.in = getelementptr inbounds <2 x half>, <2 x half> addrspace(1)* %in, i32 %tid
|
|
|
|
%val = load <2 x half>, <2 x half> addrspace(1)* %gep.in
|
|
|
|
%fabs = call <2 x half> @llvm.fabs.v2f16(<2 x half> %val)
|
|
|
|
%elt0 = extractelement <2 x half> %fabs, i32 0
|
|
|
|
%elt1 = extractelement <2 x half> %fabs, i32 1
|
|
|
|
|
|
|
|
%fmul0 = fmul half %elt0, 4.0
|
|
|
|
%fadd1 = fadd half %elt1, 2.0
|
|
|
|
store volatile half %fmul0, half addrspace(1)* undef
|
|
|
|
store volatile half %fadd1, half addrspace(1)* undef
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}v_extract_fabs_no_fold_v2f16:
|
|
|
|
; GCN: {{flat|global}}_load_dword [[VAL:v[0-9]+]]
|
|
|
|
|
|
|
|
; FIXME: Extra bfe on VI
|
|
|
|
; GFX9-NOT: v_bfe_u32
|
|
|
|
; VI: v_bfe_u32
|
|
|
|
; GCN: v_and_b32_e32 [[AND:v[0-9]+]], 0x7fff7fff, [[VAL]]
|
|
|
|
; GFX9: global_store_short_d16_hi v{{\[[0-9]+:[0-9]+\]}}, [[AND]], off
|
|
|
|
define amdgpu_kernel void @v_extract_fabs_no_fold_v2f16(<2 x half> addrspace(1)* %in) #0 {
|
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x()
|
|
|
|
%gep.in = getelementptr inbounds <2 x half>, <2 x half> addrspace(1)* %in, i32 %tid
|
|
|
|
%val = load <2 x half>, <2 x half> addrspace(1)* %gep.in
|
|
|
|
%fabs = call <2 x half> @llvm.fabs.v2f16(<2 x half> %val)
|
|
|
|
%elt0 = extractelement <2 x half> %fabs, i32 0
|
|
|
|
%elt1 = extractelement <2 x half> %fabs, i32 1
|
|
|
|
store volatile half %elt0, half addrspace(1)* undef
|
|
|
|
store volatile half %elt1, half addrspace(1)* undef
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2017-02-28 06:15:25 +08:00
|
|
|
declare half @llvm.fabs.f16(half) #1
|
|
|
|
declare <2 x half> @llvm.fabs.v2f16(<2 x half>) #1
|
|
|
|
declare <4 x half> @llvm.fabs.v4f16(<4 x half>) #1
|
|
|
|
declare i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
|
|
|
|
attributes #0 = { nounwind }
|
|
|
|
attributes #1 = { nounwind readnone }
|