mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
Merge
This commit is contained in:
commit
30dee51476
1 changed files with 5 additions and 0 deletions
|
@ -307,6 +307,11 @@ public class WhiteBox {
|
||||||
Objects.requireNonNull(method);
|
Objects.requireNonNull(method);
|
||||||
return enqueueMethodForCompilation0(method, compLevel, entry_bci);
|
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);
|
private native void clearMethodState0(Executable method);
|
||||||
public void clearMethodState(Executable method) {
|
public void clearMethodState(Executable method) {
|
||||||
Objects.requireNonNull(method);
|
Objects.requireNonNull(method);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue