< prev index next >

src/jdk.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotProfilingInfo.java

Print this page

        

*** 55,64 **** --- 55,76 ---- @Override public int getCodeSize() { return method.getCodeSize(); } + public int getDecompileCount() { + return methodData.getDecompileCount(); + } + + public int getOverflowRecompileCount() { + return methodData.getOverflowRecompileCount(); + } + + public int getOverflowTrapCount() { + return methodData.getOverflowTrapCount(); + } + @Override public JavaTypeProfile getTypeProfile(int bci) { if (!isMature) { return null; }
< prev index next >