8153514: Whitebox API should allow compilation of <clinit>
Summary: Added Whitebox API method to trigger compilation of static initializer.
Reviewed-by: zmajo, kvn, iignatyev
--- a/test/lib/sun/hotspot/WhiteBox.java Tue Apr 05 15:39:34 2016 -0400
+++ b/test/lib/sun/hotspot/WhiteBox.java Thu Apr 07 16:51:21 2016 +0200
@@ -307,6 +307,11 @@
Objects.requireNonNull(method);
return enqueueMethodForCompilation0(method, compLevel, entry_bci);
}
+ private native boolean enqueueInitializerForCompilation0(Class<?> aClass, int compLevel);
+ public boolean enqueueInitializerForCompilation(Class<?> aClass, int compLevel) {
+ Objects.requireNonNull(aClass);
+ return enqueueInitializerForCompilation0(aClass, compLevel);
+ }
private native void clearMethodState0(Executable method);
public void clearMethodState(Executable method) {
Objects.requireNonNull(method);