[llvm] Calculate KnownBits from Metadata correctly for vector loads (PR #128908)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 19:19:38 PDT 2025
================
@@ -690,6 +690,13 @@ void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) {
assert(NVT.getSizeInBits() == VT.getSizeInBits() &&
"Can only promote loads to same size type");
+ // If the range metadata type does not match the legalized memory
+ // operation type, remove the range metadata.
+ if (const MDNode *MD = LD->getRanges()) {
+ ConstantInt *Lower = mdconst::extract<ConstantInt>(MD->getOperand(0));
+ if (Lower->getBitWidth() != NVT.getScalarSizeInBits())
+ LD->getMemOperand()->clearRanges();
+ }
----------------
arsenm wrote:
In principle we should cast the range. But since this references IR metadata directly, this may imply mutating the IR which we should avoid doing
https://github.com/llvm/llvm-project/pull/128908
More information about the llvm-commits
mailing list