Skip to content

Commit

Permalink
Update (2023.12.08)
Browse files Browse the repository at this point in the history
32653: start of release updates for Loongson OpenJDK 8.1.17
32163: The size of is_wide_vector should be greater than 8 bytes
  • Loading branch information
loongson-jvm authored Dec 8, 2023
1 parent d572f97 commit 27819d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/autoconf/spec.gmk.in
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ BUILDER_NAME:=@BUILDER_NAME@
HOST_NAME:=@HOST_NAME@

# Loongson OpenJDK Version info
VER=8.1.16
VER=8.1.17
ifeq ($(HOST_NAME), )
HOST_NAME=unknown
endif
Expand Down
4 changes: 2 additions & 2 deletions hotspot/src/cpu/loongarch/vm/sharedRuntime_loongarch_64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ void RegisterSaver::restore_result_registers(MacroAssembler* masm) {
}

// Is vector's size (in bytes) bigger than a size saved by default?
// 16 bytes XMM registers are saved by default using fxsave/fxrstor instructions.
// 8 bytes registers are saved by default using fld/fst instructions.
bool SharedRuntime::is_wide_vector(int size) {
return size > 16;
return size > 8;
}

// The java_calling_convention describes stack locations as ideal slots on
Expand Down

0 comments on commit 27819d4

Please sign in to comment.