test/lib/sun/hotspot/WhiteBox.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File compiler_control Cdiff test/lib/sun/hotspot/WhiteBox.java

test/lib/sun/hotspot/WhiteBox.java

Print this page
rev 1643 : 8046155: JEP165: Compiler Control
Summary:
Reviewed-by:

*** 158,167 **** --- 158,168 ---- public native boolean NMTChangeTrackingLevel(); public native int NMTGetHashSize(); // Compiler public native int matchesMethod(Executable method, String pattern); + public native int matchesInline(Executable method, String pattern); public native int deoptimizeFrames(boolean makeNotEntrant); public native void deoptimizeAll(); public boolean isMethodCompiled(Executable method) { return isMethodCompiled(method, false /*not osr*/); }
test/lib/sun/hotspot/WhiteBox.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File