[llvm] Calculate KnownBits from Metadata correctly for vector loads (PR #128908)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 07:11:45 PDT 2025


================
@@ -4004,22 +4004,25 @@ KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts,
         }
       }
     } else if (Op.getResNo() == 0) {
-      KnownBits Known0(!LD->getMemoryVT().isScalableVT()
-                           ? LD->getMemoryVT().getFixedSizeInBits()
-                           : BitWidth);
+      unsigned MemorySize = !LD->getMemoryVT().isScalableVT()
+                                ? LD->getMemoryVT().getFixedSizeInBits()
----------------
arsenm wrote:

This is using the full vector bitwidth. The range is in terms of the scalar element size 

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


More information about the llvm-commits mailing list