[llvm] Reland "DAG: Preserve range metadata when load is narrowed" (#128144) (PR #130609)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 20:48:10 PDT 2025
================
@@ -14957,12 +14957,36 @@ SDValue DAGCombiner::reduceLoadWidth(SDNode *N) {
AddToWorklist(NewPtr.getNode());
SDValue Load;
- if (ExtType == ISD::NON_EXTLOAD)
- Load = DAG.getLoad(VT, DL, LN0->getChain(), NewPtr,
- LN0->getPointerInfo().getWithOffset(PtrOff),
- LN0->getOriginalAlign(),
- LN0->getMemOperand()->getFlags(), LN0->getAAInfo());
- else
+ if (ExtType == ISD::NON_EXTLOAD) {
+ const MDNode *OldRanges = LN0->getRanges();
+ const MDNode *NewRanges = nullptr;
+ // If LSBs are loaded and the truncated ConstantRange for the OldRanges
+ // metadata is not the full-set for the new width then create a NewRanges
+ // metadata for the truncated load
+ if (ShAmt == 0 && OldRanges) {
+ ConstantRange CR = getConstantRangeFromMetadata(*OldRanges);
+
+ // It is possible for an 8-bit extending load with 8-bit range
+ // metadata to be narrowed to an 8-bit load. This guard is necessary to
+ // ensure that truncation is strictly smaller.
+ if (CR.getBitWidth() > VT.getScalarSizeInBits()) {
+ ConstantRange TruncatedCR = CR.truncate(VT.getScalarSizeInBits());
+ if (!TruncatedCR.isFullSet()) {
+ Metadata *Bounds[2] = {
+ ConstantAsMetadata::get(
+ ConstantInt::get(*DAG.getContext(), TruncatedCR.getLower())),
+ ConstantAsMetadata::get(
+ ConstantInt::get(*DAG.getContext(), TruncatedCR.getUpper()))};
+ NewRanges = MDNode::get(*DAG.getContext(), Bounds);
+ }
+ } else if (CR.getBitWidth() == VT.getScalarSizeInBits())
----------------
arsenm wrote:
Common variable for VT.getScalarSizeInBits()
https://github.com/llvm/llvm-project/pull/130609
More information about the llvm-commits
mailing list