[llvm] [RISCV][TTI] Adjust VLS shuffle costing to account for sub-mask reuse (PR #129793)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 13:32:36 PDT 2025
================
@@ -430,11 +430,14 @@ costShuffleViaVRegSplitting(RISCVTTIImpl &TTI, MVT LegalVT,
copy(Mask, NormalizedMask.begin());
InstructionCost Cost = 0;
int NumShuffles = 0;
+ DenseSet<std::pair<ArrayRef<int>, unsigned>> ReusedSingleSrcShuffles;
----------------
alexey-bataev wrote:
SmallDenseSet
https://github.com/llvm/llvm-project/pull/129793
More information about the llvm-commits
mailing list