[PATCH] D46116: [NVPTX] Make the legalizer expand shufflevector of <2 x half>
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 26 08:30:07 PDT 2018
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rL330948: [NVPTX] Make the legalizer expand shufflevector of <2 x half> (authored by d0k, committed by ).
Repository:
rL LLVM
https://reviews.llvm.org/D46116
Files:
llvm/trunk/lib/Target/NVPTX/NVPTXISelLowering.cpp
llvm/trunk/test/CodeGen/NVPTX/f16x2-instructions.ll
Index: llvm/trunk/test/CodeGen/NVPTX/f16x2-instructions.ll
===================================================================
--- llvm/trunk/test/CodeGen/NVPTX/f16x2-instructions.ll
+++ llvm/trunk/test/CodeGen/NVPTX/f16x2-instructions.ll
@@ -1423,5 +1423,13 @@
ret <2 x half> %r
}
+; CHECK-LABEL: test_shufflevector(
+; CHECK: mov.b32 {%h1, %h2}, %hh1;
+; CHECK: mov.b32 %hh2, {%h2, %h1};
+define <2 x half> @test_shufflevector(<2 x half> %a) #0 {
+ %s = shufflevector <2 x half> %a, <2 x half> undef, <2 x i32> <i32 1, i32 0>
+ ret <2 x half> %s
+}
+
attributes #0 = { nounwind }
attributes #1 = { "unsafe-fp-math" = "true" }
Index: llvm/trunk/lib/Target/NVPTX/NVPTXISelLowering.cpp
===================================================================
--- llvm/trunk/lib/Target/NVPTX/NVPTXISelLowering.cpp
+++ llvm/trunk/lib/Target/NVPTX/NVPTXISelLowering.cpp
@@ -375,6 +375,7 @@
setOperationAction(ISD::FP_TO_SINT, MVT::f16, Legal);
setOperationAction(ISD::BUILD_VECTOR, MVT::v2f16, Custom);
setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f16, Custom);
+ setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f16, Expand);
setFP16OperationAction(ISD::SETCC, MVT::f16, Legal, Promote);
setFP16OperationAction(ISD::SETCC, MVT::v2f16, Legal, Expand);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46116.144127.patch
Type: text/x-patch
Size: 1288 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180426/5cc43260/attachment.bin>
More information about the llvm-commits
mailing list