[llvm] [RISCV] Initial codegen support for the XRivosVizip extension (PR #131933)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 17:02:18 PDT 2025
================
@@ -4611,6 +4613,43 @@ static bool isElementRotate(std::array<std::pair<int, int>, 2> &SrcInfo,
SrcInfo[1].second - SrcInfo[0].second == (int)NumElts;
}
+static bool isAlternating(std::array<std::pair<int, int>, 2> &SrcInfo,
+ ArrayRef<int> Mask, bool &Polarity) {
+ int NumElts = Mask.size();
+ bool NonUndefFound = false;
+ for (unsigned i = 0; i != Mask.size(); ++i) {
+ int M = Mask[i];
+ if (M < 0)
+ continue;
+ int Src = M >= (int)NumElts;
----------------
topperc wrote:
NumElts is an `int` already
https://github.com/llvm/llvm-project/pull/131933
More information about the llvm-commits
mailing list