8340974: Ambiguous name of jtreg property vm.libgraal.enabled
Reviewed-by: dnsimon, phh
This commit is contained in:
parent
5d062e248e
commit
2349bb7ace
@ -81,7 +81,7 @@ requires.properties= \
|
||||
vm.jvmti \
|
||||
vm.graal.enabled \
|
||||
jdk.hasLibgraal \
|
||||
vm.libgraal.enabled \
|
||||
vm.libgraal.jit \
|
||||
vm.compiler1.enabled \
|
||||
vm.compiler2.enabled \
|
||||
vm.musl \
|
||||
|
@ -128,8 +128,7 @@ public class VMProps implements Callable<Map<String, String>> {
|
||||
map.put("vm.graal.enabled", this::isGraalEnabled);
|
||||
// jdk.hasLibgraal is true if the libgraal shared library file is present
|
||||
map.put("jdk.hasLibgraal", this::hasLibgraal);
|
||||
// vm.libgraal.enabled is true if libgraal is used as JIT
|
||||
map.put("vm.libgraal.enabled", this::isLibgraalEnabled);
|
||||
map.put("vm.libgraal.jit", this::isLibgraalJIT);
|
||||
map.put("vm.compiler1.enabled", this::isCompiler1Enabled);
|
||||
map.put("vm.compiler2.enabled", this::isCompiler2Enabled);
|
||||
map.put("docker.support", this::dockerSupport);
|
||||
@ -560,8 +559,8 @@ public class VMProps implements Callable<Map<String, String>> {
|
||||
*
|
||||
* @return true if libgraal is used as JIT compiler.
|
||||
*/
|
||||
protected String isLibgraalEnabled() {
|
||||
return "" + Compiler.isLibgraalEnabled();
|
||||
protected String isLibgraalJIT() {
|
||||
return "" + Compiler.isLibgraalJIT();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -91,12 +91,12 @@ public class Compiler {
|
||||
/**
|
||||
* Check if libgraal is used as JIT compiler.
|
||||
*
|
||||
* libraal is enabled if isGraalEnabled is true and:
|
||||
* libraal JIT is enabled if isGraalEnabled is true and:
|
||||
* - UseJVMCINativeLibrary flag is true
|
||||
*
|
||||
* @return true if libgraal is used as JIT compiler.
|
||||
*/
|
||||
public static boolean isLibgraalEnabled() {
|
||||
public static boolean isLibgraalJIT() {
|
||||
if (!isGraalEnabled()) {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user