@@ -424,6 +424,9 @@ void PhaseChaitin::Register_Allocate() {
424
424
live.compute (_lrg_map.max_lrg_id ());
425
425
_live = &live;
426
426
}
427
+
428
+ C->print_method (PHASE_INITIAL_LIVENESS, 4 );
429
+
427
430
// Create the interference graph using virtual copies
428
431
build_ifg_virtual (); // Include stack slots this time
429
432
@@ -464,6 +467,8 @@ void PhaseChaitin::Register_Allocate() {
464
467
_live = &live;
465
468
}
466
469
470
+ C->print_method (PHASE_AGGRESSIVE_COALESCING, 4 );
471
+
467
472
// Build physical interference graph
468
473
uint must_spill = 0 ;
469
474
must_spill = build_ifg_physical (&live_arena);
@@ -504,6 +509,9 @@ void PhaseChaitin::Register_Allocate() {
504
509
live.compute (_lrg_map.max_lrg_id ()); // Compute LIVE
505
510
_live = &live;
506
511
}
512
+
513
+ C->print_method (PHASE_INITIAL_SPILLING, 4 );
514
+
507
515
build_ifg_physical (&live_arena);
508
516
_ifg->SquareUp ();
509
517
_ifg->Compute_Effective_Degree ();
@@ -518,6 +526,10 @@ void PhaseChaitin::Register_Allocate() {
518
526
}
519
527
_lrg_map.compress_uf_map_for_nodes ();
520
528
529
+ if (OptoCoalesce) {
530
+ C->print_method (PHASE_CONSERVATIVE_COALESCING, 4 );
531
+ }
532
+
521
533
#ifdef ASSERT
522
534
verify (&live_arena, true );
523
535
#endif
@@ -580,6 +592,9 @@ void PhaseChaitin::Register_Allocate() {
580
592
live.compute (_lrg_map.max_lrg_id ());
581
593
_live = &live;
582
594
}
595
+
596
+ C->print_method (PHASE_ITERATIVE_SPILLING, 4 );
597
+
583
598
must_spill = build_ifg_physical (&live_arena);
584
599
_ifg->SquareUp ();
585
600
_ifg->Compute_Effective_Degree ();
@@ -593,6 +608,11 @@ void PhaseChaitin::Register_Allocate() {
593
608
coalesce.coalesce_driver ();
594
609
}
595
610
_lrg_map.compress_uf_map_for_nodes ();
611
+
612
+ if (OptoCoalesce) {
613
+ C->print_method (PHASE_CONSERVATIVE_COALESCING, 4 );
614
+ }
615
+
596
616
#ifdef ASSERT
597
617
verify (&live_arena, true );
598
618
#endif
@@ -607,16 +627,22 @@ void PhaseChaitin::Register_Allocate() {
607
627
spills = Select ();
608
628
}
609
629
630
+ C->print_method (PHASE_AFTER_ITERATIVE_SPILLING, 4 );
631
+
610
632
// Count number of Simplify-Select trips per coloring success.
611
633
_allocator_attempts += _trip_cnt + 1 ;
612
634
_allocator_successes += 1 ;
613
635
614
636
// Peephole remove copies
615
637
post_allocate_copy_removal ();
616
638
639
+ C->print_method (PHASE_POST_ALLOCATION_COPY_REMOVAL, 4 );
640
+
617
641
// Merge multidefs if multiple defs representing the same value are used in a single block.
618
642
merge_multidefs ();
619
643
644
+ C->print_method (PHASE_MERGE_MULTI_DEFS, 4 );
645
+
620
646
#ifdef ASSERT
621
647
// Verify the graph after RA.
622
648
verify (&live_arena);
@@ -645,6 +671,8 @@ void PhaseChaitin::Register_Allocate() {
645
671
// Convert CISC spills
646
672
fixup_spills ();
647
673
674
+ C->print_method (PHASE_FIX_UP_SPILLS, 4 );
675
+
648
676
// Log regalloc results
649
677
CompileLog* log = Compile::current ()->log ();
650
678
if (log != nullptr ) {
0 commit comments