[llvm] [CG][RISCV]Fix shuffling of odd number of input vectors (PR #125693)
Philip Reames via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 08:13:38 PST 2025
================
@@ -5213,13 +5213,27 @@ static SDValue lowerShuffleViaVRegSplitting(ShuffleVectorSDNode *SVN,
for (unsigned I : seq<unsigned>(Data.size())) {
const auto &[Idx1, Idx2, _] = Data[I];
if (Values.contains(Idx1)) {
- assert(Idx2 != UINT_MAX && Values.contains(Idx2) &&
- "Expected both indices to be extracted already.");
- break;
+ // If the shuffle contains permutation of odd number of elements,
+ // Idx1 might be used already in the first iteration.
+ //
+ // Idx1 = shuffle Idx1, Idx2
+ // Idx1 = shuffle Idx1, Idx3
+ if (const auto It = Values.find(Idx1);
+ I > 0 && std::get<0>(Data[I - 1]) == Idx1) {
+ assert(Idx2 != UINT_MAX && It != Values.end() &&
+ !Values.contains(Idx2) &&
+ "Expected only first index to be extracted already.");
+ ;
----------------
preames wrote:
Stray semi?
https://github.com/llvm/llvm-project/pull/125693
More information about the llvm-commits
mailing list