agent/src/share/classes/sun/jvm/hotspot/opto/Compile.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/agent/src/share/classes/sun/jvm/hotspot/opto/Compile.java	Fri Dec 27 17:10:14 2013
--- new/agent/src/share/classes/sun/jvm/hotspot/opto/Compile.java	Fri Dec 27 17:10:14 2013

*** 23,32 **** --- 23,33 ---- */ package sun.jvm.hotspot.opto; import java.util.*; + import java.io.PrintStream; import sun.jvm.hotspot.ci.*; import sun.jvm.hotspot.debugger.*; import sun.jvm.hotspot.runtime.*; import sun.jvm.hotspot.oops.*; import sun.jvm.hotspot.types.*;
*** 90,95 **** --- 91,105 ---- if (a != null) { return new InlineTree(a); } return null; } + + public void dumpInlineData(PrintStream out) { + InlineTree inlTree = ilt(); + if (inlTree != null) { + out.print(" inline " + inlTree.count()); + inlTree.dumpReplayData(out); + } + } + }

agent/src/share/classes/sun/jvm/hotspot/opto/Compile.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File