Skip to content

Commit

Permalink
[redo] Dump CFG in RPO order before Parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Xin Liu committed Jan 18, 2024
1 parent 524ed19 commit 0beea2b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/hotspot/share/opto/parse1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,11 @@ Parse::Parse(JVMState* caller, ciMethod* parse_method, float expected_uses, PEAS
#endif

#ifndef PRODUCT
// Dump CFG in RPO order before Parsing.
if (Verbose && !CITraceTypeFlow) {
_flow->rpo_print_on(tty);
}

if (_flow->has_irreducible_entry()) {
C->set_parsed_irreducible_loop(true);
}
Expand Down

0 comments on commit 0beea2b

Please sign in to comment.