[llvm] [RISCV] Make single source reverse legal in isShuffleMaskLegal (PR #125949)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 14:55:15 PST 2025
================
@@ -5811,6 +5811,11 @@ bool RISCVTargetLowering::isShuffleMaskLegal(ArrayRef<int> M, EVT VT) const {
if (SVT.getScalarType() == MVT::i1)
return false;
+ unsigned NumElts = M.size();
+ if (ShuffleVectorInst::isReverseMask(M, NumElts) &&
+ ShuffleVectorInst::isSingleSourceMask(M, NumElts))
----------------
topperc wrote:
I think isReverseMask checks isSingleSourceMask.
https://github.com/llvm/llvm-project/pull/125949
More information about the llvm-commits
mailing list