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 1945 : 8150646: Add support for blocking compiles through whitebox API

*** 453,458 **** --- 453,462 ---- // Sharing public native boolean isSharedClass(Class<?> c); public native boolean isShared(Object o); public native boolean areSharedStringsIgnored(); + + // Compiler Directive + public native int addCompilerDirective(String compDirect); + public native void removeCompilerDirective(int count); }
test/lib/sun/hotspot/WhiteBox.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File