Skip to content

Commit 7b39172

Browse files
committedOct 17, 2023
8318086: [jvmci] RISC-V: Reuse target config from TargetDescription
Reviewed-by: fyang, mli
1 parent aed1e81 commit 7b39172

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed
 

‎src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/riscv64/RISCV64HotSpotJVMCIBackendFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected HotSpotConstantReflectionProvider createConstantReflection(HotSpotJVMC
9999
}
100100

101101
private static RegisterConfig createRegisterConfig(RISCV64HotSpotVMConfig config, TargetDescription target) {
102-
return new RISCV64HotSpotRegisterConfig(target, config.useCompressedOops, config.linuxOs);
102+
return new RISCV64HotSpotRegisterConfig(target, config.useCompressedOops, target.linuxOs);
103103
}
104104

105105
protected HotSpotCodeCacheProvider createCodeCache(HotSpotJVMCIRuntime runtime, TargetDescription target, RegisterConfig regConfig) {

‎src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/hotspot/riscv64/RISCV64HotSpotVMConfig.java

-4
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424

2525
import jdk.vm.ci.hotspot.HotSpotVMConfigAccess;
2626
import jdk.vm.ci.hotspot.HotSpotVMConfigStore;
27-
import jdk.vm.ci.services.Services;
28-
import jdk.internal.util.OperatingSystem;
2927

3028
/**
3129
* Used to access native configuration details.
@@ -38,8 +36,6 @@ class RISCV64HotSpotVMConfig extends HotSpotVMConfigAccess {
3836
super(config);
3937
}
4038

41-
final boolean linuxOs = OperatingSystem.isLinux();
42-
4339
final boolean useCompressedOops = getFlag("UseCompressedOops", Boolean.class);
4440

4541
// CPU Capabilities

0 commit comments

Comments
 (0)
Please sign in to comment.