# HG changeset patch # User Josef Eisl # Date 1415711799 -3600 # Node ID b7089e3d8457a6b2fe01578a656abd3b78771d91 # Parent 0e794bf2decb97f76a73dd3dad9008775d5b338e Print LIR after FrameMap building. diff -r 0e794bf2decb -r b7089e3d8457 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/alloc/LinearScan.java --- 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();