Skip to content

Commit 8cb9b47

Browse files
committedFeb 15, 2024
8321282: RISC-V: SpinPause() not implemented
Reviewed-by: luhenry, fbredberg, fyang
1 parent 1aae980 commit 8cb9b47

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

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

+9
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include "prims/jvm_misc.hpp"
3939
#include "runtime/arguments.hpp"
4040
#include "runtime/frame.inline.hpp"
41+
#include "runtime/globals.hpp"
4142
#include "runtime/interfaceSupport.inline.hpp"
4243
#include "runtime/java.hpp"
4344
#include "runtime/javaCalls.hpp"
@@ -405,6 +406,14 @@ static inline void atomic_copy64(const volatile void *src, volatile void *dst) {
405406

406407
extern "C" {
407408
int SpinPause() {
409+
if (UseZihintpause) {
410+
// PAUSE is encoded as a FENCE instruction with pred=W, succ=0, fm=0, rd=x0, and rs1=x0.
411+
// To do: __asm__ volatile("pause " : : : );
412+
// Since we're currently not passing '-march=..._zihintpause' to the compiler,
413+
// it will not recognize the "pause" instruction, hence the hard-coded instruction.
414+
__asm__ volatile(".word 0x0100000f " : : : );
415+
return 1;
416+
}
408417
return 0;
409418
}
410419

0 commit comments

Comments
 (0)
Please sign in to comment.