[llvm] [VectorCombine] Allow shuffling between vectors the same type but different element sizes (PR #121216)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 2 05:35:22 PST 2025


================
@@ -3059,6 +3087,13 @@ bool VectorCombine::foldInsExtVectorToShuffle(Instruction &I) {
   if (OldCost < NewCost)
     return false;
 
+  if (NeedExpOrNarrow) {
+    if (!NeedDstSrcSwap)
+      SrcVec = Builder.CreateShuffleVector(SrcVec, ExtToVecMask);
+    else
+      DstVec = Builder.CreateShuffleVector(DstVec, ExtToVecMask);
----------------
RKSimon wrote:

Haven't you already swapped the SrcVec/DstVec?

https://github.com/llvm/llvm-project/pull/121216


More information about the llvm-commits mailing list