This is an archive of the discontinued LLVM Phabricator instance.

[ConstantFolding] Make sure constants are fully folded
AbandonedPublic

Authored by nikic on Feb 29 2020, 10:13 AM.

Details

Reviewers
spatel
efriedma
Summary

ConstantFolding can currently return partially folded constants if certain folds create new GEP expressions. These GEPs may be created with incorrect index types by the DL-independent layer, in which case ConstantFolding will change them to be DL-conforming.

I'm fixing this by explicitly re-running ConstantFolding in the two places I have found where this can occur (they create zero-index GEPs from bitcasts). I have to say that this is fairly ugly (especially as some care has to be taken to avoid infinite recursion), but I'm not sure how else to handle this.

Diff Detail

Event Timeline

nikic created this revision.Feb 29 2020, 10:13 AM
Herald added a project: Restricted Project. · View Herald TranscriptFeb 29 2020, 10:13 AM
nikic added a comment.Mar 1 2020, 2:15 AM

I encountered some more cases where we can end up with not fully folded constants, in particular folding of load instructions will apparently not fold values loaded from aggregates. Looking through the code, the same probably happens when phis are folded. As such, it may not make sense to try and address this in individual places, and we should instead automatically perform another constant fold if constant folding succeeded. Alternatively we could say that constant folding doesn't have to be complete in the first place (which was my assumption) and the consumer should rerun it multiple times instead (which seems pretty odd to me).

Making constant folding recurse after it transforms something probably makes sense.

Practically, I'm not sure how much it matters, though. "constprop" is not part of the normal pass pipeline; instcombine will iterate until it reaches a steady state.

nikic planned changes to this revision.Mar 2 2020, 1:13 PM

Making constant folding recurse after it transforms something probably makes sense.

Practically, I'm not sure how much it matters, though. "constprop" is not part of the normal pass pipeline; instcombine will iterate until it reaches a steady state.

Avoiding those extra fix-point iterations is really the goal here :) Constant folding in particular can fall into a small crack though, where we don't actually end up at a fixpoint after InstCombine finishes. An example: https://llvm.godbolt.org/z/V2bJYP. The reason is that constant operand folding is only performed during initial worklist population, presumably on the assumption that it does not require fixpoint iteration.

nikic updated this revision to Diff 248570.Mar 5 2020, 12:33 PM
nikic retitled this revision from [ConstantFolding] Make sure GEPs are fully folded to [ConstantFolding] Make sure constants are fully folded.

Rerun constant folding in ConstantFoldInstruction and ConstantFoldConstant to make sure the result is fully folded.

I'm wondering whether I should push this further back into APIs like ConstantFoldInstOperands, which are also public. Might be a bit ugly implementation-wise, and we'll lose FoldedOps along the way.

nikic abandoned this revision.Jul 28 2023, 2:55 AM

I think the motivation for doing this has largely gone away by now.

Herald added a project: Restricted Project. · View Herald TranscriptJul 28 2023, 2:55 AM
Herald added a subscriber: StephenFan. · View Herald Transcript