[llvm] Calculate KnownBits from Metadata correctly for vector loads (PR #128908)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 01:12:33 PDT 2025
================
@@ -4011,15 +4011,16 @@ KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts,
// Fill in any known bits from range information. There are 3 types being
// used. The results VT (same vector elt size as BitWidth), the loaded
// MemoryVT (which may or may not be vector) and the range VTs original
- // type. The range matadata needs the full range (i.e
+ // type. The range metadata needs the full range (i.e
// MemoryVT().getSizeInBits()), which is truncated to the correct elt size
// if it is know. These are then extended to the original VT sizes below.
if (const MDNode *MD = LD->getRanges()) {
+ ConstantInt *Lower = mdconst::extract<ConstantInt>(MD->getOperand(0));
+
+ Known0 = Known0.trunc(Lower->getBitWidth());
computeKnownBitsFromRangeMetadata(*MD, Known0);
----------------
arsenm wrote:
Do that change first then?
https://github.com/llvm/llvm-project/pull/128908
More information about the llvm-commits
mailing list