[llvm] e4016bf - [DAG] Use ArrayRef to simplify ShuffleVectorSDNode::isSplatMask
Philip Reames via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 12:47:24 PST 2025
Author: Philip Reames
Date: 2025-02-11T12:47:10-08:00
New Revision: e4016bf5c32558e773264d1ce875d71cf67bd192
URL: https://github.com/llvm/llvm-project/commit/e4016bf5c32558e773264d1ce875d71cf67bd192
DIFF: https://github.com/llvm/llvm-project/commit/e4016bf5c32558e773264d1ce875d71cf67bd192.diff
LOG: [DAG] Use ArrayRef to simplify ShuffleVectorSDNode::isSplatMask
Added:
Modified:
llvm/include/llvm/CodeGen/SelectionDAGNodes.h
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
llvm/lib/Target/ARM/ARMISelLowering.cpp
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
index 8c1e2fa6f57a8..6eff6bfe8d5b1 100644
--- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -1645,7 +1645,7 @@ class ShuffleVectorSDNode : public SDNode {
return Mask[Idx];
}
- bool isSplat() const { return isSplatMask(Mask, getValueType(0)); }
+ bool isSplat() const { return isSplatMask(getMask()); }
int getSplatIndex() const {
assert(isSplat() && "Cannot get splat index for non-splat!");
@@ -1659,7 +1659,7 @@ class ShuffleVectorSDNode : public SDNode {
return 0;
}
- static bool isSplatMask(const int *Mask, EVT VT);
+ static bool isSplatMask(ArrayRef<int> Mask);
/// Change values in a shuffle permute mask assuming
/// the two vector operands have swapped position.
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 16c3b295426c6..164493d6dd860 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -13415,10 +13415,10 @@ BuildVectorSDNode::isConstantSequence() const {
return std::make_pair(Start, Stride);
}
-bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
+bool ShuffleVectorSDNode::isSplatMask(ArrayRef<int> Mask) {
// Find the first non-undef value in the shuffle mask.
unsigned i, e;
- for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
+ for (i = 0, e = Mask.size(); i != e && Mask[i] < 0; ++i)
/* search */;
// If all elements are undefined, this shuffle can be considered a splat
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index 0d1608a97bfd3..4263be1098899 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -15508,7 +15508,7 @@ bool AArch64TargetLowering::isShuffleMaskLegal(ArrayRef<int> M, EVT VT) const {
unsigned EltSize = VT.getScalarSizeInBits();
unsigned NumElts = VT.getVectorNumElements();
- return (ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
+ return (ShuffleVectorSDNode::isSplatMask(M) ||
isREVMask(M, EltSize, NumElts, 64) ||
isREVMask(M, EltSize, NumElts, 32) ||
isREVMask(M, EltSize, NumElts, 16) ||
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index bd8d6079e1ba8..5c4fe9d922f4c 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -8479,7 +8479,7 @@ bool ARMTargetLowering::isShuffleMaskLegal(ArrayRef<int> M, EVT VT) const {
unsigned EltSize = VT.getScalarSizeInBits();
if (EltSize >= 32 ||
- ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
+ ShuffleVectorSDNode::isSplatMask(M) ||
ShuffleVectorInst::isIdentityMask(M, M.size()) ||
isVREVMask(M, VT, 64) ||
isVREVMask(M, VT, 32) ||
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 13ce566f8def6..ff44ff5249973 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -5790,8 +5790,8 @@ static SDValue lowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG,
// as a vselect + a single source vrgather.vv. Don't do this if we think the
// operands may end up being lowered to something cheaper than a vrgather.vv.
if (!DAG.isSplatValue(V2) && !DAG.isSplatValue(V1) &&
- !ShuffleVectorSDNode::isSplatMask(ShuffleMaskLHS.data(), VT) &&
- !ShuffleVectorSDNode::isSplatMask(ShuffleMaskRHS.data(), VT) &&
+ !ShuffleVectorSDNode::isSplatMask(ShuffleMaskLHS) &&
+ !ShuffleVectorSDNode::isSplatMask(ShuffleMaskRHS) &&
!ShuffleVectorInst::isIdentityMask(ShuffleMaskLHS, NumElts) &&
!ShuffleVectorInst::isIdentityMask(ShuffleMaskRHS, NumElts))
if (SDValue V = lowerDisjointIndicesShuffle(SVN, DAG, Subtarget))
@@ -5834,7 +5834,7 @@ bool RISCVTargetLowering::isShuffleMaskLegal(ArrayRef<int> M, EVT VT) const {
return false;
// Support splats for any type. These should type legalize well.
- if (ShuffleVectorSDNode::isSplatMask(M.data(), VT))
+ if (ShuffleVectorSDNode::isSplatMask(M))
return true;
const unsigned NumElts = M.size();
More information about the llvm-commits
mailing list