[riscv-port-jdk11u:riscv-port] RFR: 8309258: RISC-V: Add riscv_hwprobe syscall [v2]
Gui Cao
gcao at openjdk.org
Fri Apr 12 01:44:13 UTC 2024
> Hi,
> Please help review this backport to riscv-port-jdk11u.
> Backport of [8309258](https://bugs.openjdk.org/browse/JDK-8309258), [8315206](https://bugs.openjdk.org/browse/JDK-8315206), [8316859](https://bugs.openjdk.org/browse/JDK-8316859), [8324280](https://bugs.openjdk.org/browse/JDK-8324280), [8315652](https://bugs.openjdk.org/browse/JDK-8315652)
>
> Since [8315195](https://bugs.openjdk.org/browse/JDK-8315195) hasn't been backported yet, the RVV,Zba,Zbb extension hasn't been turned on automatically yet.
>
> This backport adds the syscall, uses the syscall in combination with the aux and cpuinfo to enable features by default.
>
> The following changes were added to the original patch to avoid build errors:
> 1. Use `enum VM_MODE ` instead of `enum UNALIGNED_ACCESS : int ` to avoid c++ build warnings, this is c++11 feature. build log like this :
>
> /home/zifeihan/riscv-port-jdk11u/src/hotspot/cpu/riscv/vm_version_riscv.hpp:168:27: warning: scoped enums only available with '-std=c++11' or '-std=gnu++11'
> 168 | enum UNALIGNED_ACCESS : int {
> | ^~~
> In file included from /home/zifeihan/riscv-port-jdk11u/src/hotspot/share/runtime/vm_version.hpp:29
>
> 2. Use `NULL` instead of `nullptr `
>
> /home/zifeihan/riscv-port-jdk11u/src/hotspot/os_cpu/linux_riscv/riscv_hwprobe.cpp:86:79: error: 'nullptr' was not declared in this scope
> 86 | int ret = sys_riscv_hwprobe(&query[0], sizeof(query) / sizeof(query[0]), 0, nullptr, 0);
> |
>
> 3. Use `#include "memory/allocation.hpp"` instead of `#include "memory/allStatic.hpp" `
>
> ### Testing on SOPHON SG2042
>
> $ ./java -XX:+UnlockExperimentalVMOptions -XX:+PrintFlagsFinal -version | grep Use
> bool UseRVC = true {ARCH experimental} {default}
> bool UseRVV = false {ARCH experimental} {default}
> bool UseZba = false {ARCH experimental} {default}
> bool UseZbb = false {ARCH experimental} {default}
>
> test/lib/sun/hotspot/cpuinfo/CPUInfo.java log like this:
>
> ----------System.out:(13/2767)----------
> WB.getCPUFeatures(): "qemu rv64 i m a f d c"
> CPUInfo.getFeatures(): [qemu, rv64, i, m, a, f, d, c]
>
>
> ### Testing on qemu-system
>
> $ ./java -XX:+UnlockExperimentalVMOptions -XX:+PrintFlagsFinal -version | grep Use
> bool UseRVC = true ...
Gui Cao has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains four additional commits since the last revision:
- Use UPDATE_DEFAULT update UseZbs flag
- Merge remote-tracking branch 'upstream/riscv-port' into backport-JDK-8309258
- Backport 8315652: RISC-V: Features string uses wrong separator for jtreg
- Backport 8309258: RISC-V: Add riscv_hwprobe syscall
-------------
Changes:
- all: https://git.openjdk.org/riscv-port-jdk11u/pull/20/files
- new: https://git.openjdk.org/riscv-port-jdk11u/pull/20/files/7e150ea6..f80be14f
Webrevs:
- full: https://webrevs.openjdk.org/?repo=riscv-port-jdk11u&pr=20&range=01
- incr: https://webrevs.openjdk.org/?repo=riscv-port-jdk11u&pr=20&range=00-01
Stats: 27 lines in 5 files changed: 25 ins; 0 del; 2 mod
Patch: https://git.openjdk.org/riscv-port-jdk11u/pull/20.diff
Fetch: git fetch https://git.openjdk.org/riscv-port-jdk11u.git pull/20/head:pull/20
PR: https://git.openjdk.org/riscv-port-jdk11u/pull/20
More information about the riscv-port-dev
mailing list