[PATCH] D50202: [AArch64] Fix assertion failure on widened f16 BUILD_VECTOR
Bryan Chan via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 6 07:15:15 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL339013: [AArch64] Fix assertion failure on widened f16 BUILD_VECTOR (authored by bryanpkc, committed by ).
Repository:
rL LLVM
https://reviews.llvm.org/D50202
Files:
llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
llvm/trunk/test/CodeGen/AArch64/arm64-build-vector.ll
Index: llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
===================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -6889,10 +6889,19 @@
SmallVector<SDValue, 16> Ops;
for (SDValue Lane : Op->ops()) {
+ // For integer vectors, type legalization would have promoted the
+ // operands already. Otherwise, if Op is a floating-point splat
+ // (with operands cast to integers), then the only possibilities
+ // are constants and UNDEFs.
if (auto *CstLane = dyn_cast<ConstantSDNode>(Lane)) {
APInt LowBits(EltTy.getSizeInBits(),
CstLane->getZExtValue());
Lane = DAG.getConstant(LowBits.getZExtValue(), dl, MVT::i32);
+ } else if (Lane.getNode()->isUndef()) {
+ Lane = DAG.getUNDEF(MVT::i32);
+ } else {
+ assert(Lane.getValueType() == MVT::i32 &&
+ "Unexpected BUILD_VECTOR operand type");
}
Ops.push_back(Lane);
}
Index: llvm/trunk/test/CodeGen/AArch64/arm64-build-vector.ll
===================================================================
--- llvm/trunk/test/CodeGen/AArch64/arm64-build-vector.ll
+++ llvm/trunk/test/CodeGen/AArch64/arm64-build-vector.ll
@@ -39,3 +39,17 @@
%shuffle.i = shufflevector <4 x i16> %vshl_n2, <4 x i16> zeroinitializer, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7>
ret <8 x i16> %shuffle.i
}
+
+; The lowering of a widened f16 BUILD_VECTOR tries to optimize it by building
+; an equivalent integer vector and BITCAST-ing that. This case checks that
+; normalizing the vector generates a valid result. The choice of the
+; constant prevents earlier passes from replacing the BUILD_VECTOR.
+define void @widen_f16_build_vector(half* %addr) {
+; CHECK-LABEL: widen_f16_build_vector:
+; CHECK: mov w[[GREG:[0-9]+]], #13294
+; CHECK: dup.4h v0, w[[GREG]]
+; CHECK: str s0, [x0]
+ %1 = bitcast half* %addr to <2 x half>*
+ store <2 x half> <half 0xH33EE, half 0xH33EE>, <2 x half>* %1, align 2
+ ret void
+}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50202.159296.patch
Type: text/x-patch
Size: 2100 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180806/203a3a3d/attachment.bin>
More information about the llvm-commits
mailing list