Skip to content

Commit 49d8e63

Browse files
author
Hamlin Li
committedApr 6, 2024
8329083: RISC-V: Update profiles supported on riscv
Reviewed-by: fyang
1 parent 3d50eaa commit 49d8e63

File tree

3 files changed

+65
-36
lines changed

3 files changed

+65
-36
lines changed
 

‎src/hotspot/cpu/riscv/globals_riscv.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,9 @@ define_pd_global(intx, InlineSmallCode, 1000);
9898
product(bool, AvoidUnalignedAccesses, true, \
9999
"Avoid generating unaligned memory accesses") \
100100
product(bool, UseRVA20U64, true, "Use RVA20U64 profile") \
101-
product(bool, UseRVC, false, "Use RVC instructions") \
102101
product(bool, UseRVA22U64, false, EXPERIMENTAL, "Use RVA22U64 profile") \
102+
product(bool, UseRVA23U64, false, EXPERIMENTAL, "Use RVA23U64 profile") \
103+
product(bool, UseRVC, false, "Use RVC instructions") \
103104
product(bool, UseRVV, false, "Use RVV instructions") \
104105
product(bool, UseZba, false, "Use Zba instructions") \
105106
product(bool, UseZbb, false, "Use Zbb instructions") \

‎src/hotspot/cpu/riscv/vm_version_riscv.cpp

+17-35
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,18 @@ VM_Version::RVFeatureValue* VM_Version::_feature_list[] = {
4545
RV_FEATURE_FLAGS(ADD_RV_FEATURE_IN_LIST)
4646
nullptr};
4747

48+
void VM_Version::useRVA20U64Profile() {
49+
RV_USE_RVA20U64;
50+
}
51+
52+
void VM_Version::useRVA22U64Profile() {
53+
RV_USE_RVA22U64;
54+
}
55+
56+
void VM_Version::useRVA23U64Profile() {
57+
RV_USE_RVA23U64;
58+
}
59+
4860
void VM_Version::initialize() {
4961
_supports_atomic_getset4 = true;
5062
_supports_atomic_getadd4 = true;
@@ -61,44 +73,14 @@ void VM_Version::initialize() {
6173
(int)satp_mode.value()));
6274
}
6375

64-
// https://github.com/riscv/riscv-profiles/blob/main/profiles.adoc#rva20-profiles
6576
if (UseRVA20U64) {
66-
if (FLAG_IS_DEFAULT(UseRVC)) {
67-
FLAG_SET_DEFAULT(UseRVC, true);
68-
}
77+
useRVA20U64Profile();
6978
}
70-
// https://github.com/riscv/riscv-profiles/blob/main/profiles.adoc#rva22-profiles
7179
if (UseRVA22U64) {
72-
if (FLAG_IS_DEFAULT(UseRVC)) {
73-
FLAG_SET_DEFAULT(UseRVC, true);
74-
}
75-
if (FLAG_IS_DEFAULT(UseZba)) {
76-
FLAG_SET_DEFAULT(UseZba, true);
77-
}
78-
if (FLAG_IS_DEFAULT(UseZbb)) {
79-
FLAG_SET_DEFAULT(UseZbb, true);
80-
}
81-
if (FLAG_IS_DEFAULT(UseZbs)) {
82-
FLAG_SET_DEFAULT(UseZbs, true);
83-
}
84-
if (FLAG_IS_DEFAULT(UseZfh)) {
85-
FLAG_SET_DEFAULT(UseZfh, true);
86-
}
87-
if (FLAG_IS_DEFAULT(UseZic64b)) {
88-
FLAG_SET_DEFAULT(UseZic64b, true);
89-
}
90-
if (FLAG_IS_DEFAULT(UseZicbom)) {
91-
FLAG_SET_DEFAULT(UseZicbom, true);
92-
}
93-
if (FLAG_IS_DEFAULT(UseZicbop)) {
94-
FLAG_SET_DEFAULT(UseZicbop, true);
95-
}
96-
if (FLAG_IS_DEFAULT(UseZicboz)) {
97-
FLAG_SET_DEFAULT(UseZicboz, true);
98-
}
99-
if (FLAG_IS_DEFAULT(UseZihintpause)) {
100-
FLAG_SET_DEFAULT(UseZihintpause, true);
101-
}
80+
useRVA22U64Profile();
81+
}
82+
if (UseRVA23U64) {
83+
useRVA23U64Profile();
10284
}
10385

10486
// Enable vendor specific features

‎src/hotspot/cpu/riscv/vm_version_riscv.hpp

+46
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,52 @@ class VM_Version : public Abstract_VM_Version {
170170
RV_FEATURE_FLAGS(DECLARE_RV_FEATURE)
171171
#undef DECLARE_RV_FEATURE
172172

173+
// enable extensions based on profile, current supported profiles:
174+
// RVA20U64
175+
// RVA22U64
176+
// RVA23U64
177+
// NOTE: we only enable the mandatory extensions, not optional extension.
178+
#define RV_ENABLE_EXTENSION(UseExtension) \
179+
if (FLAG_IS_DEFAULT(UseExtension)) { \
180+
FLAG_SET_DEFAULT(UseExtension, true); \
181+
} \
182+
183+
// https://github.com/riscv/riscv-profiles/blob/main/profiles.adoc#rva20-profiles
184+
#define RV_USE_RVA20U64 \
185+
RV_ENABLE_EXTENSION(UseRVC) \
186+
187+
static void useRVA20U64Profile();
188+
189+
// https://github.com/riscv/riscv-profiles/blob/main/profiles.adoc#rva22-profiles
190+
#define RV_USE_RVA22U64 \
191+
RV_ENABLE_EXTENSION(UseRVC) \
192+
RV_ENABLE_EXTENSION(UseZba) \
193+
RV_ENABLE_EXTENSION(UseZbb) \
194+
RV_ENABLE_EXTENSION(UseZbs) \
195+
RV_ENABLE_EXTENSION(UseZic64b) \
196+
RV_ENABLE_EXTENSION(UseZicbom) \
197+
RV_ENABLE_EXTENSION(UseZicbop) \
198+
RV_ENABLE_EXTENSION(UseZicboz) \
199+
RV_ENABLE_EXTENSION(UseZihintpause) \
200+
201+
static void useRVA22U64Profile();
202+
203+
// https://github.com/riscv/riscv-profiles/blob/main/rva23-profile.adoc#rva23u64-profile
204+
#define RV_USE_RVA23U64 \
205+
RV_ENABLE_EXTENSION(UseRVC) \
206+
RV_ENABLE_EXTENSION(UseRVV) \
207+
RV_ENABLE_EXTENSION(UseZba) \
208+
RV_ENABLE_EXTENSION(UseZbb) \
209+
RV_ENABLE_EXTENSION(UseZbs) \
210+
RV_ENABLE_EXTENSION(UseZcb) \
211+
RV_ENABLE_EXTENSION(UseZic64b) \
212+
RV_ENABLE_EXTENSION(UseZicbom) \
213+
RV_ENABLE_EXTENSION(UseZicbop) \
214+
RV_ENABLE_EXTENSION(UseZicboz) \
215+
RV_ENABLE_EXTENSION(UseZihintpause) \
216+
217+
static void useRVA23U64Profile();
218+
173219
// VM modes (satp.mode) privileged ISA 1.10
174220
enum VM_MODE : int {
175221
VM_NOTSET = -1,

0 commit comments

Comments
 (0)
Please sign in to comment.