-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve flow graph DOT dumps (#52787)
1. Introduce `COMPlus_JitFgDumpPrePhase`. This is analogous to the existing `COMPlus_JitFgDumpPhase`, but to dump before a phase, not after. It takes a set of short phase names, and dumps the flow graph before each of those phases. E.g., to dump both before and after just loop cloning, you don't need to figure out which phase comes before loop cloning, you can specify: ``` set COMPlus_JitDumpFgPhase=LP-CLONE set COMPlus_JitDumpFgPrePhase=LP-CLONE ``` 2. Interpret array length node type in BBJ_COND blocks, e.g., `V01.Length <= V03`.
- Loading branch information
1 parent
7225d59
commit 268d951
Showing
4 changed files
with
155 additions
and
88 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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