test/lib/sun/hotspot/WhiteBox.java
changeset 54736 1dc9bf9d016b
parent 54511 fbfcebad8e66
child 54927 1512d88b24c6
equal deleted inserted replaced
54735:a9f729b641a3 54736:1dc9bf9d016b
   328   public  boolean enqueueInitializerForCompilation(Class<?> aClass, int compLevel) {
   328   public  boolean enqueueInitializerForCompilation(Class<?> aClass, int compLevel) {
   329     Objects.requireNonNull(aClass);
   329     Objects.requireNonNull(aClass);
   330     return enqueueInitializerForCompilation0(aClass, compLevel);
   330     return enqueueInitializerForCompilation0(aClass, compLevel);
   331   }
   331   }
   332   private native void    clearMethodState0(Executable method);
   332   private native void    clearMethodState0(Executable method);
       
   333   public  native void    markMethodProfiled(Executable method);
   333   public         void    clearMethodState(Executable method) {
   334   public         void    clearMethodState(Executable method) {
   334     Objects.requireNonNull(method);
   335     Objects.requireNonNull(method);
   335     clearMethodState0(method);
   336     clearMethodState0(method);
   336   }
   337   }
   337   public native void    lockCompilation();
   338   public native void    lockCompilation();