From e80aeac0f2f5fce6e986307a8b69d8a44b402b4e Mon Sep 17 00:00:00 2001 From: Farhana Aleen Date: Tue, 3 Apr 2018 23:00:30 +0000 Subject: [AMDGPU] performMinMaxCombine should not optimize patterns of vectors to min3/max3. Summary: There are no packed instructions for min3 or max3. So, performMinMaxCombine should not optimize vectors of f16 to min3/max3. Author: FarhanaAleen Reviewed By: arsenm Subscribers: llvm-commits, AMDGPU Differential Revision: https://reviews.llvm.org/D45219 llvm-svn: 329131 --- llvm/test/CodeGen/AMDGPU/fmax3.ll | 29 +++++++++++++++++++++++++++++ llvm/test/CodeGen/AMDGPU/fmin3.ll | 29 +++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) (limited to 'llvm/test') diff --git a/llvm/test/CodeGen/AMDGPU/fmax3.ll b/llvm/test/CodeGen/AMDGPU/fmax3.ll index 2e6d3f3c1e8..937bd74a0fe 100644 --- a/llvm/test/CodeGen/AMDGPU/fmax3.ll +++ b/llvm/test/CodeGen/AMDGPU/fmax3.ll @@ -84,9 +84,38 @@ define amdgpu_kernel void @test_fmax3_olt_1_f16(half addrspace(1)* %out, half ad ret void } +; Checks whether the test passes; performMinMaxCombine() should not optimize vector patterns of max3 +; since there are no pack instructions for fmax3. +; GCN-LABEL: {{^}}no_fmax3_v2f16: + +; SI: v_cvt_f16_f32_e32 +; SI: v_max_f32_e32 +; SI-NEXT: v_max_f32_e32 +; SI-NEXT: v_max3_f32 +; SI-NEXT: v_max3_f32 + +; VI: v_max_f16_e32 +; VI-NEXT: v_max_f16_e32 +; VI-NEXT: v_max_f16_e32 +; VI-NEXT: v_max_f16_e32 +; VI-NEXT: v_max_f16_e32 +; VI-NEXT: v_max_f16_e32 + +; GFX9: v_pk_max_f16 +; GFX9-NEXT: v_pk_max_f16 +; GFX9-NEXT: v_pk_max_f16 +define <2 x half> @no_fmax3_v2f16(<2 x half> %a, <2 x half> %b, <2 x half> %c, <2 x half> %d) { +entry: + %max = tail call fast <2 x half> @llvm.maxnum.v2f16(<2 x half> %a, <2 x half> %b) + %max1 = tail call fast <2 x half> @llvm.maxnum.v2f16(<2 x half> %c, <2 x half> %max) + %res = tail call fast <2 x half> @llvm.maxnum.v2f16(<2 x half> %max1, <2 x half> %d) + ret <2 x half> %res +} + declare i32 @llvm.amdgcn.workitem.id.x() #1 declare float @llvm.maxnum.f32(float, float) #1 declare half @llvm.maxnum.f16(half, half) #1 +declare <2 x half> @llvm.maxnum.v2f16(<2 x half>, <2 x half>) attributes #0 = { nounwind } attributes #1 = { nounwind readnone speculatable } diff --git a/llvm/test/CodeGen/AMDGPU/fmin3.ll b/llvm/test/CodeGen/AMDGPU/fmin3.ll index 5fc5895c3ec..d22333384dc 100644 --- a/llvm/test/CodeGen/AMDGPU/fmin3.ll +++ b/llvm/test/CodeGen/AMDGPU/fmin3.ll @@ -82,9 +82,38 @@ define amdgpu_kernel void @test_fmin3_olt_1_f16(half addrspace(1)* %out, half ad ret void } +; Checks whether the test passes; performMinMaxCombine() should not optimize vector patterns of min3 +; since there are no pack instructions for fmin3. +; GCN-LABEL: {{^}}no_fmin3_v2f16: + +; SI: v_cvt_f16_f32_e32 +; SI: v_min_f32_e32 +; SI-NEXT: v_min_f32_e32 +; SI-NEXT: v_min3_f32 +; SI-NEXT: v_min3_f32 + +; VI: v_min_f16_e32 +; VI-NEXT: v_min_f16_e32 +; VI-NEXT: v_min_f16_e32 +; VI-NEXT: v_min_f16_e32 +; VI-NEXT: v_min_f16_e32 +; VI-NEXT: v_min_f16_e32 + +; GFX9: v_pk_min_f16 +; GFX9: v_pk_min_f16 +; GFX9: v_pk_min_f16 +define <2 x half> @no_fmin3_v2f16(<2 x half> %a, <2 x half> %b, <2 x half> %c, <2 x half> %d) { +entry: + %min = tail call fast <2 x half> @llvm.minnum.v2f16(<2 x half> %a, <2 x half> %b) + %min1 = tail call fast <2 x half> @llvm.minnum.v2f16(<2 x half> %c, <2 x half> %min) + %res = tail call fast <2 x half> @llvm.minnum.v2f16(<2 x half> %min1, <2 x half> %d) + ret <2 x half> %res +} + declare i32 @llvm.amdgcn.workitem.id.x() #1 declare float @llvm.minnum.f32(float, float) #1 declare half @llvm.minnum.f16(half, half) #1 +declare <2 x half> @llvm.minnum.v2f16(<2 x half>, <2 x half>) attributes #0 = { nounwind } attributes #1 = { nounwind readnone speculatable } -- cgit v1.2.3