Skip to content

Commit 35bccac

Browse files
committedSep 11, 2023
8315841: RISC-V: Check for hardware TSO support
Reviewed-by: vkempik, rehn, fyang
1 parent a04c6c1 commit 35bccac

File tree

5 files changed

+28
-1
lines changed

5 files changed

+28
-1
lines changed
 

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

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ define_pd_global(intx, InlineSmallCode, 1000);
109109
product(bool, UseZicbom, false, EXPERIMENTAL, "Use Zicbom instructions") \
110110
product(bool, UseZicbop, false, EXPERIMENTAL, "Use Zicbop instructions") \
111111
product(bool, UseZicboz, false, EXPERIMENTAL, "Use Zicboz instructions") \
112+
product(bool, UseZtso, false, EXPERIMENTAL, "Assume Ztso memory model") \
112113
product(bool, UseZihintpause, false, EXPERIMENTAL, \
113114
"Use Zihintpause instructions") \
114115
product(bool, UseRVVForBigIntegerShiftIntrinsics, true, \

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

+17-1
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,24 @@ class MacroAssembler: public Assembler {
376376
return ((predecessor & 0x3) << 2) | (successor & 0x3);
377377
}
378378

379+
void fence(uint32_t predecessor, uint32_t successor) {
380+
if (UseZtso) {
381+
if ((pred_succ_to_membar_mask(predecessor, successor) & StoreLoad) == StoreLoad) {
382+
// TSO allows for stores to be reordered after loads. When the compiler
383+
// generates a fence to disallow that, we are required to generate the
384+
// fence for correctness.
385+
Assembler::fence(predecessor, successor);
386+
} else {
387+
// TSO guarantees other fences already.
388+
}
389+
} else {
390+
// always generate fence for RVWMO
391+
Assembler::fence(predecessor, successor);
392+
}
393+
}
394+
379395
void pause() {
380-
fence(w, 0);
396+
Assembler::fence(w, 0);
381397
}
382398

383399
// prints msg, dumps registers and stops execution

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

+8
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,14 @@ void VM_Version::initialize() {
210210
unaligned_access.value() == MISALIGNED_FAST);
211211
}
212212

213+
#ifdef __riscv_ztso
214+
// Hotspot is compiled with TSO support, it will only run on hardware which
215+
// supports Ztso
216+
if (FLAG_IS_DEFAULT(UseZtso)) {
217+
FLAG_SET_DEFAULT(UseZtso, true);
218+
}
219+
#endif
220+
213221
if (UseZbb) {
214222
if (FLAG_IS_DEFAULT(UsePopCountInstruction)) {
215223
FLAG_SET_DEFAULT(UsePopCountInstruction, true);

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

+1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ class VM_Version : public Abstract_VM_Version {
134134
decl(ext_Zicsr , "Zicsr" , RV_NO_FLAG_BIT, true , NO_UPDATE_DEFAULT) \
135135
decl(ext_Zifencei , "Zifencei" , RV_NO_FLAG_BIT, true , NO_UPDATE_DEFAULT) \
136136
decl(ext_Zic64b , "Zic64b" , RV_NO_FLAG_BIT, true , UPDATE_DEFAULT(UseZic64b)) \
137+
decl(ext_Ztso , "Ztso" , RV_NO_FLAG_BIT, true , UPDATE_DEFAULT(UseZtso)) \
137138
decl(ext_Zihintpause , "Zihintpause" , RV_NO_FLAG_BIT, true , UPDATE_DEFAULT(UseZihintpause)) \
138139
decl(mvendorid , "VendorId" , RV_NO_FLAG_BIT, false, NO_UPDATE_DEFAULT) \
139140
decl(marchid , "ArchId" , RV_NO_FLAG_BIT, false, NO_UPDATE_DEFAULT) \

‎src/hotspot/os_cpu/linux_riscv/vm_version_linux_riscv.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ void VM_Version::rivos_features() {
236236
ext_Zicsr.enable_feature();
237237
ext_Zifencei.enable_feature();
238238
ext_Zic64b.enable_feature();
239+
ext_Ztso.enable_feature();
239240
ext_Zihintpause.enable_feature();
240241

241242
unaligned_access.enable_feature(MISALIGNED_FAST);

0 commit comments

Comments
 (0)
Please sign in to comment.