[PATCH] D87422: [ConstantFold] Fold binary arithmetic on scalable vector splats.
Eli Friedman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 9 15:39:59 PDT 2020
efriedma created this revision.
efriedma added reviewers: ctetreau, spatel, sdesmalen, david-arm.
Herald added a subscriber: hiraditya.
Herald added a project: LLVM.
efriedma requested review of this revision.
It's a nice simplification, and it confuses instcombine if we don't do it.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D87422
Files:
llvm/lib/IR/ConstantFold.cpp
llvm/test/Transforms/InstSimplify/ConstProp/vscale.ll
Index: llvm/test/Transforms/InstSimplify/ConstProp/vscale.ll
===================================================================
--- llvm/test/Transforms/InstSimplify/ConstProp/vscale.ll
+++ llvm/test/Transforms/InstSimplify/ConstProp/vscale.ll
@@ -41,6 +41,14 @@
ret <vscale x 4 x i32> %r
}
+define <vscale x 4 x i32> @sub_splat() {
+; CHECK-LABEL: @sub_splat(
+; CHECK-NEXT: ret <vscale x 4 x i32> shufflevector (<vscale x 4 x i32> insertelement (<vscale x 4 x i32> undef, i32 -16, i32 0), <vscale x 4 x i32> undef, <vscale x 4 x i32> zeroinitializer)
+;
+ %r = sub <vscale x 4 x i32> zeroinitializer, shufflevector (<vscale x 4 x i32> insertelement (<vscale x 4 x i32> undef, i32 16, i32 0), <vscale x 4 x i32> undef, <vscale x 4 x i32> zeroinitializer)
+ ret <vscale x 4 x i32> %r
+}
+
define <vscale x 4 x float> @fsub() {
; CHECK-LABEL: @fsub(
; CHECK-NEXT: ret <vscale x 4 x float> undef
Index: llvm/lib/IR/ConstantFold.cpp
===================================================================
--- llvm/lib/IR/ConstantFold.cpp
+++ llvm/lib/IR/ConstantFold.cpp
@@ -1408,12 +1408,7 @@
return ConstantFP::get(C1->getContext(), C3V);
}
}
- } else if (IsScalableVector) {
- // Do not iterate on scalable vector. The number of elements is unknown at
- // compile-time.
- // FIXME: this branch can potentially be removed
- return nullptr;
- } else if (auto *VTy = dyn_cast<FixedVectorType>(C1->getType())) {
+ } else if (auto *VTy = dyn_cast<VectorType>(C1->getType())) {
// Fast path for splatted constants.
if (Constant *C2Splat = C2->getSplatValue()) {
if (Instruction::isIntDivRem(Opcode) && C2Splat->isNullValue())
@@ -1425,22 +1420,24 @@
}
}
- // Fold each element and create a vector constant from those constants.
- SmallVector<Constant*, 16> Result;
- Type *Ty = IntegerType::get(VTy->getContext(), 32);
- for (unsigned i = 0, e = VTy->getNumElements(); i != e; ++i) {
- Constant *ExtractIdx = ConstantInt::get(Ty, i);
- Constant *LHS = ConstantExpr::getExtractElement(C1, ExtractIdx);
- Constant *RHS = ConstantExpr::getExtractElement(C2, ExtractIdx);
+ if (auto *FVTy = dyn_cast<FixedVectorType>(VTy)) {
+ // Fold each element and create a vector constant from those constants.
+ SmallVector<Constant*, 16> Result;
+ Type *Ty = IntegerType::get(FVTy->getContext(), 32);
+ for (unsigned i = 0, e = FVTy->getNumElements(); i != e; ++i) {
+ Constant *ExtractIdx = ConstantInt::get(Ty, i);
+ Constant *LHS = ConstantExpr::getExtractElement(C1, ExtractIdx);
+ Constant *RHS = ConstantExpr::getExtractElement(C2, ExtractIdx);
- // If any element of a divisor vector is zero, the whole op is undef.
- if (Instruction::isIntDivRem(Opcode) && RHS->isNullValue())
- return UndefValue::get(VTy);
+ // If any element of a divisor vector is zero, the whole op is undef.
+ if (Instruction::isIntDivRem(Opcode) && RHS->isNullValue())
+ return UndefValue::get(VTy);
- Result.push_back(ConstantExpr::get(Opcode, LHS, RHS));
- }
+ Result.push_back(ConstantExpr::get(Opcode, LHS, RHS));
+ }
- return ConstantVector::get(Result);
+ return ConstantVector::get(Result);
+ }
}
if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D87422.290836.patch
Type: text/x-patch
Size: 3357 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200909/a5add90b/attachment.bin>
More information about the llvm-commits
mailing list