changeset 18420:b7089e3d8457

Print LIR after FrameMap building.
author Josef Eisl <josef.eisl@jku.at>
date Tue, 11 Nov 2014 14:16:39 +0100
parents 0e794bf2decb
children d90c0904ff56
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java	Tue Nov 11 18:34:42 2014 +0100
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java	Tue Nov 11 14:16:39 2014 +0100
@@ -1848,11 +1848,13 @@
             }
 
             try (Scope s = Debug.scope("DebugInfo")) {
+                printIntervals("After register allocation");
+                printLir("After register allocation", true);
+
                 // build frame map
                 res.buildFrameMap();
 
-                printIntervals("After register allocation");
-                printLir("After register allocation", true);
+                printLir("After FrameMap building", true);
 
                 sortIntervalsAfterAllocation();