[PATCH] D28876: [NVPTX] Fix lowering of fp16 ISD::FNEG.
Artem Belevich via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 18 15:47:27 PST 2017
tra updated this revision to Diff 84899.
tra added a comment.
use CHECK-DAG for the instructions that could be generated in different order.
https://reviews.llvm.org/D28876
Files:
lib/Target/NVPTX/NVPTXISelLowering.cpp
test/CodeGen/NVPTX/f16-instructions.ll
Index: test/CodeGen/NVPTX/f16-instructions.ll
===================================================================
--- test/CodeGen/NVPTX/f16-instructions.ll
+++ test/CodeGen/NVPTX/f16-instructions.ll
@@ -80,6 +80,21 @@
ret half %r
}
+; CHECK-LABEL: test_fneg(
+; CHECK-DAG: ld.param.b16 [[A:%h[0-9]+]], [test_fneg_param_0];
+; CHECK-F16-NEXT: mov.b16 [[Z:%h[0-9]+]], 0x0000
+; CHECK-F16-NEXT: sub.rn.f16 [[R:%h[0-9]+]], [[Z]], [[A]];
+; CHECK-NOF16-DAG: cvt.f32.f16 [[A32:%f[0-9]+]], [[A]]
+; CHECK-NOF16-DAG: mov.f32 [[Z:%f[0-9]+]], 0f00000000;
+; CHECK-NOF16-NEXT: sub.rn.f32 [[R32:%f[0-9]+]], [[Z]], [[A32]];
+; CHECK-NOF16-NEXT: cvt.rn.f16.f32 [[R:%h[0-9]+]], [[R32]]
+; CHECK-NEXT: st.param.b16 [func_retval0+0], [[R]];
+; CHECK-NEXT: ret;
+define half @test_fneg(half %a) #0 {
+ %r = fsub half 0.0, %a
+ ret half %r
+}
+
; CHECK-LABEL: test_fmul(
; CHECK-DAG: ld.param.b16 [[A:%h[0-9]+]], [test_fmul_param_0];
; CHECK-DAG: ld.param.b16 [[B:%h[0-9]+]], [test_fmul_param_1];
Index: lib/Target/NVPTX/NVPTXISelLowering.cpp
===================================================================
--- lib/Target/NVPTX/NVPTXISelLowering.cpp
+++ lib/Target/NVPTX/NVPTXISelLowering.cpp
@@ -332,6 +332,8 @@
setOperationAction(ISD::FSUB, MVT::f16, Promote);
setOperationAction(ISD::FMA, MVT::f16, Promote);
}
+ // There's no neg.f16 instruction.
+ setOperationAction(ISD::FNEG, MVT::f16, Expand);
// Library functions. These default to Expand, but we have instructions
// for them.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D28876.84899.patch
Type: text/x-patch
Size: 1554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170118/97e06070/attachment.bin>
More information about the llvm-commits
mailing list