@@ -2754,7 +2754,6 @@ void Compile::Code_Gen() {
2754
2754
if (failing ()) {
2755
2755
return ;
2756
2756
}
2757
- print_method (PHASE_AFTER_MATCHING, 3 );
2758
2757
}
2759
2758
// In debug mode can dump m._nodes.dump() for mapping of ideal to machine
2760
2759
// nodes. Mapping is only valid at the root of each matched subtree.
@@ -4686,7 +4685,7 @@ void Compile::sort_macro_nodes() {
4686
4685
}
4687
4686
}
4688
4687
4689
- void Compile::print_method (CompilerPhaseType cpt, const char *name, int level, int idx ) {
4688
+ void Compile::print_method (CompilerPhaseType cpt, const char *name, int level) {
4690
4689
EventCompilerPhase event;
4691
4690
if (event.should_commit ()) {
4692
4691
CompilerEvent::PhaseEvent::post (event, C->_latest_stage_start_counter , cpt, C->_compile_id , level);
@@ -4708,7 +4707,7 @@ void Compile::print_method(CompilerPhaseType cpt, int level, int idx) {
4708
4707
jio_snprintf (output, sizeof (output), " %s" , CompilerPhaseTypeHelper::to_string (cpt));
4709
4708
}
4710
4709
#endif
4711
- print_method (cpt, output, level, idx );
4710
+ print_method (cpt, output, level);
4712
4711
}
4713
4712
4714
4713
void Compile::print_method (CompilerPhaseType cpt, Node* n, int level) {
@@ -4774,7 +4773,7 @@ void igv_print(bool network, const char* phase_name) {
4774
4773
4775
4774
// Called from debugger. Normal write to the default _printer. Only works if Ideal Graph Visualizer printing flags are set.
4776
4775
void igv_print_default () {
4777
- Compile::current ()->print_method (PHASE_DEBUG, 0 , 0 );
4776
+ Compile::current ()->print_method (PHASE_DEBUG, 0 );
4778
4777
}
4779
4778
4780
4779
// Called from debugger, especially when replaying a trace in which the program state cannot be altered like with rr replay.
0 commit comments