This is an archive of the discontinued LLVM Phabricator instance.

[SimplifyCFG] Don't create switch from two equality comparisons (WIP)
AbandonedPublic

Authored by nikic on Jan 23 2021, 1:18 PM.

Details

Summary

SimplifyCFG currently forms a switch from an X == C1 || X == C2 style comparison. This negatively interferes with other optimizations, primarily because many important loop optimizations like rotation and vectorizations do not handle switches (https://bugs.llvm.org/show_bug.cgi?id=44461, https://bugs.llvm.org/show_bug.cgi?id=48844). At the same time forming a two-case switch with a common target is unlikely to be beneficial for further optimization or target lowering.

This patch changes the heuristic to require at least three cases in the switch, rather than only two. This is just a prototype patch to get some initial feedback on whether the approach is sound (I would need to adjust tests to preserve intent). An alternative suggested by @xbolva00 is to instead delay this fold until late in the pipeline. Would that be a better approach?

Diff Detail

Event Timeline

nikic created this revision.Jan 23 2021, 1:18 PM
nikic requested review of this revision.Jan 23 2021, 1:18 PM
Herald added a project: Restricted Project. · View Herald TranscriptJan 23 2021, 1:18 PM

There are other folds that do that, e.g. FoldValueComparisonIntoPredecessors().
I think it would be better to teach at least the LoopRotate about switches.

Maybe collect some stats? (And compare with alternative solution)

lebedev.ri resigned from this revision.Jan 12 2023, 5:23 PM

This review seems to be stuck/dead, consider abandoning if no longer relevant.

Herald added a project: Restricted Project. · View Herald TranscriptJan 12 2023, 5:23 PM
nikic abandoned this revision.Jan 20 2023, 7:54 AM

Not pursuing this right now, and not totally sure this is a good idea anyway.