cranelift: Remove redundant dominator-tree structure#7948
Merged
jameysharp merged 4 commits intobytecodealliance:mainfrom Feb 16, 2024
Merged
cranelift: Remove redundant dominator-tree structure#7948jameysharp merged 4 commits intobytecodealliance:mainfrom
jameysharp merged 4 commits intobytecodealliance:mainfrom
Conversation
We already know the entry block everywhere we use this.
These two types had nearly identical interfaces except that the latter also supports constant-time dominance checks.
cfallin
approved these changes
Feb 15, 2024
Member
There was a problem hiding this comment.
Woah, nice find! I had no idea we already had this (which I guess is why we wrote it again).
While I hesitate to violate the law that "any sufficiently advanced compiler contains three domtree implementations" (regalloc2 has one too!), I think we can do some spring cleaning here :-)
It turns out this was the only thing the egraph pass used the original dominator tree for, so we can stop passing that around. We could also require that the caller of EgraphPass::new construct the DominatorTreePreorder and avoid passing the original tree into the egraph pass at all, but I've chosen to stop refactoring here. We should review all uses of DominatorTree::dominates to see if it makes sense to pass a DominatorTreePreorder around more places.
Contributor
|
LGTM! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The egraph work introduced a helper for walking over the dominator tree in pre-order, but it turns out that helper already existed in the
dominator_treemodule itself, and the older version also supports constant-time dominance checks using the same trick that @cfallin suggested in #7891. So let's just use that version.cc: @elliottt @lpereira