[PATCH] D42737: [LegalizeDAG] Truncate condition operand of ISD::SELECT
Eugene Leviant via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 6 21:42:25 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL324447: [LegalizeDAG] Truncate condition operand of ISD::SELECT (authored by evgeny777, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D42737?vs=133037&id=133147#toc
Repository:
rL LLVM
https://reviews.llvm.org/D42737
Files:
llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
llvm/trunk/test/CodeGen/AArch64/expand-select.ll
Index: llvm/trunk/test/CodeGen/AArch64/expand-select.ll
===================================================================
--- llvm/trunk/test/CodeGen/AArch64/expand-select.ll
+++ llvm/trunk/test/CodeGen/AArch64/expand-select.ll
@@ -0,0 +1,61 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc -mtriple=aarch64-unknown-linux-gnu -O3 %s -o - | FileCheck %s
+
+define void @foo(i32 %In1, <2 x i128> %In2, <2 x i128> %In3, <2 x i128> *%Out) {
+; CHECK-LABEL: foo:
+; CHECK: // %bb.0:
+; CHECK-NEXT: and w9, w0, #0x1
+; CHECK-NEXT: fmov s0, wzr
+; CHECK-NEXT: ldp x10, x8, [sp, #8]
+; CHECK-NEXT: fmov s1, w9
+; CHECK-NEXT: ldr x9, [sp]
+; CHECK-NEXT: cmeq v0.4s, v1.4s, v0.4s
+; CHECK-NEXT: fmov w11, s0
+; CHECK-NEXT: tst w11, #0x1
+; CHECK-NEXT: csel x11, x2, x6, ne
+; CHECK-NEXT: csel x12, x3, x7, ne
+; CHECK-NEXT: csel x9, x4, x9, ne
+; CHECK-NEXT: csel x10, x5, x10, ne
+; CHECK-NEXT: stp x9, x10, [x8, #16]
+; CHECK-NEXT: stp x11, x12, [x8]
+; CHECK-NEXT: ret
+ %cond = and i32 %In1, 1
+ %cbool = icmp eq i32 %cond, 0
+ %res = select i1 %cbool, <2 x i128> %In2, <2 x i128> %In3
+ store <2 x i128> %res, <2 x i128> *%Out
+
+ ret void
+}
+
+; Check case when scalar size is not power of 2.
+define void @bar(i32 %In1, <2 x i96> %In2, <2 x i96> %In3, <2 x i96> *%Out) {
+; CHECK-LABEL: bar:
+; CHECK: // %bb.0:
+; CHECK-NEXT: and w10, w0, #0x1
+; CHECK-NEXT: fmov s0, wzr
+; CHECK-NEXT: fmov s1, w10
+; CHECK-NEXT: cmeq v0.4s, v1.4s, v0.4s
+; CHECK-NEXT: ldp x11, x8, [sp, #8]
+; CHECK-NEXT: ldr x9, [sp]
+; CHECK-NEXT: dup v1.4s, v0.s[0]
+; CHECK-NEXT: mov x10, v1.d[1]
+; CHECK-NEXT: lsr x10, x10, #32
+; CHECK-NEXT: tst w10, #0x1
+; CHECK-NEXT: fmov w10, s0
+; CHECK-NEXT: csel x11, x5, x11, ne
+; CHECK-NEXT: csel x9, x4, x9, ne
+; CHECK-NEXT: tst w10, #0x1
+; CHECK-NEXT: csel x10, x3, x7, ne
+; CHECK-NEXT: csel x12, x2, x6, ne
+; CHECK-NEXT: stur x9, [x8, #12]
+; CHECK-NEXT: str x12, [x8]
+; CHECK-NEXT: str w10, [x8, #8]
+; CHECK-NEXT: str w11, [x8, #20]
+; CHECK-NEXT: ret
+ %cond = and i32 %In1, 1
+ %cbool = icmp eq i32 %cond, 0
+ %res = select i1 %cbool, <2 x i96> %In2, <2 x i96> %In3
+ store <2 x i96> %res, <2 x i96> *%Out
+
+ ret void
+}
Index: llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
===================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+++ llvm/trunk/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
@@ -343,8 +343,8 @@
ScalarBool = TargetLowering::UndefinedBooleanContent;
}
+ EVT CondVT = Cond.getValueType();
if (ScalarBool != VecBool) {
- EVT CondVT = Cond.getValueType();
switch (ScalarBool) {
case TargetLowering::UndefinedBooleanContent:
break;
@@ -365,6 +365,11 @@
}
}
+ // Truncate the condition if needed
+ auto BoolVT = getSetCCResultType(CondVT);
+ if (BoolVT.bitsLT(CondVT))
+ Cond = DAG.getNode(ISD::TRUNCATE, SDLoc(N), BoolVT, Cond);
+
return DAG.getSelect(SDLoc(N),
LHS.getValueType(), Cond, LHS,
GetScalarizedVector(N->getOperand(2)));
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42737.133147.patch
Type: text/x-patch
Size: 3254 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180207/a06f5f63/attachment.bin>
More information about the llvm-commits
mailing list