diff --git a/src/hotspot/share/opto/parse1.cpp b/src/hotspot/share/opto/parse1.cpp index ebe81d9b3e802..b24cebe3dda24 100644 --- a/src/hotspot/share/opto/parse1.cpp +++ b/src/hotspot/share/opto/parse1.cpp @@ -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); }