Skip to content

Commit a8152bd

Browse files
committedNov 14, 2024
8343941: IGV: dump graph at different register allocation steps
Reviewed-by: chagedorn, dfenacci, dlunden
1 parent bd6152f commit a8152bd

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed
 

‎src/hotspot/share/opto/chaitin.cpp

+28
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,9 @@ void PhaseChaitin::Register_Allocate() {
424424
live.compute(_lrg_map.max_lrg_id());
425425
_live = &live;
426426
}
427+
428+
C->print_method(PHASE_INITIAL_LIVENESS, 4);
429+
427430
// Create the interference graph using virtual copies
428431
build_ifg_virtual(); // Include stack slots this time
429432

@@ -464,6 +467,8 @@ void PhaseChaitin::Register_Allocate() {
464467
_live = &live;
465468
}
466469

470+
C->print_method(PHASE_AGGRESSIVE_COALESCING, 4);
471+
467472
// Build physical interference graph
468473
uint must_spill = 0;
469474
must_spill = build_ifg_physical(&live_arena);
@@ -504,6 +509,9 @@ void PhaseChaitin::Register_Allocate() {
504509
live.compute(_lrg_map.max_lrg_id()); // Compute LIVE
505510
_live = &live;
506511
}
512+
513+
C->print_method(PHASE_INITIAL_SPILLING, 4);
514+
507515
build_ifg_physical(&live_arena);
508516
_ifg->SquareUp();
509517
_ifg->Compute_Effective_Degree();
@@ -518,6 +526,10 @@ void PhaseChaitin::Register_Allocate() {
518526
}
519527
_lrg_map.compress_uf_map_for_nodes();
520528

529+
if (OptoCoalesce) {
530+
C->print_method(PHASE_CONSERVATIVE_COALESCING, 4);
531+
}
532+
521533
#ifdef ASSERT
522534
verify(&live_arena, true);
523535
#endif
@@ -580,6 +592,9 @@ void PhaseChaitin::Register_Allocate() {
580592
live.compute(_lrg_map.max_lrg_id());
581593
_live = &live;
582594
}
595+
596+
C->print_method(PHASE_ITERATIVE_SPILLING, 4);
597+
583598
must_spill = build_ifg_physical(&live_arena);
584599
_ifg->SquareUp();
585600
_ifg->Compute_Effective_Degree();
@@ -593,6 +608,11 @@ void PhaseChaitin::Register_Allocate() {
593608
coalesce.coalesce_driver();
594609
}
595610
_lrg_map.compress_uf_map_for_nodes();
611+
612+
if (OptoCoalesce) {
613+
C->print_method(PHASE_CONSERVATIVE_COALESCING, 4);
614+
}
615+
596616
#ifdef ASSERT
597617
verify(&live_arena, true);
598618
#endif
@@ -607,16 +627,22 @@ void PhaseChaitin::Register_Allocate() {
607627
spills = Select();
608628
}
609629

630+
C->print_method(PHASE_AFTER_ITERATIVE_SPILLING, 4);
631+
610632
// Count number of Simplify-Select trips per coloring success.
611633
_allocator_attempts += _trip_cnt + 1;
612634
_allocator_successes += 1;
613635

614636
// Peephole remove copies
615637
post_allocate_copy_removal();
616638

639+
C->print_method(PHASE_POST_ALLOCATION_COPY_REMOVAL, 4);
640+
617641
// Merge multidefs if multiple defs representing the same value are used in a single block.
618642
merge_multidefs();
619643

644+
C->print_method(PHASE_MERGE_MULTI_DEFS, 4);
645+
620646
#ifdef ASSERT
621647
// Verify the graph after RA.
622648
verify(&live_arena);
@@ -645,6 +671,8 @@ void PhaseChaitin::Register_Allocate() {
645671
// Convert CISC spills
646672
fixup_spills();
647673

674+
C->print_method(PHASE_FIX_UP_SPILLS, 4);
675+
648676
// Log regalloc results
649677
CompileLog* log = Compile::current()->log();
650678
if (log != nullptr) {

‎src/hotspot/share/opto/phasetype.hpp

+9
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,15 @@
9393
flags(BEFORE_MATCHING, "Before matching") \
9494
flags(MATCHING, "After matching") \
9595
flags(GLOBAL_CODE_MOTION, "Global code motion") \
96+
flags(INITIAL_LIVENESS, "Initial liveness") \
97+
flags(AGGRESSIVE_COALESCING, "Aggressive coalescing") \
98+
flags(INITIAL_SPILLING, "Initial spilling") \
99+
flags(CONSERVATIVE_COALESCING, "Conservative coalescing") \
100+
flags(ITERATIVE_SPILLING, "Iterative spilling") \
101+
flags(AFTER_ITERATIVE_SPILLING, "After iterative spilling") \
102+
flags(POST_ALLOCATION_COPY_REMOVAL, "Post-allocation copy removal") \
103+
flags(MERGE_MULTI_DEFS, "Merge multiple definitions") \
104+
flags(FIX_UP_SPILLS, "Fix up spills") \
96105
flags(REGISTER_ALLOCATION, "Register Allocation") \
97106
flags(BLOCK_ORDERING, "Block Ordering") \
98107
flags(PEEPHOLE, "Peephole") \

‎test/hotspot/jtreg/compiler/lib/ir_framework/CompilePhase.java

+9
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,15 @@ public enum CompilePhase {
104104
BEFORE_MATCHING("Before matching"),
105105
MATCHING("After matching", RegexType.MACH),
106106
GLOBAL_CODE_MOTION("Global code motion", RegexType.MACH),
107+
INITIAL_LIVENESS("Initial liveness", RegexType.MACH),
108+
AGGRESSIVE_COALESCING("Aggressive coalescing", RegexType.MACH),
109+
INITIAL_SPILLING("Initial spilling", RegexType.MACH),
110+
CONSERVATIVE_COALESCING("Conservative coalescing", RegexType.MACH, ActionOnRepeat.KEEP_FIRST),
111+
ITERATIVE_SPILLING("Iterative spilling", RegexType.MACH, ActionOnRepeat.KEEP_FIRST),
112+
AFTER_ITERATIVE_SPILLING("After iterative spilling", RegexType.MACH),
113+
POST_ALLOCATION_COPY_REMOVAL("Post-allocation copy removal", RegexType.MACH),
114+
MERGE_MULTI_DEFS("Merge multiple definitions", RegexType.MACH),
115+
FIX_UP_SPILLS("Fix up spills", RegexType.MACH),
107116
REGISTER_ALLOCATION("Register Allocation", RegexType.MACH),
108117
BLOCK_ORDERING("Block Ordering", RegexType.MACH),
109118
PEEPHOLE("Peephole", RegexType.MACH),

0 commit comments

Comments
 (0)
Please sign in to comment.