Skip to content

Commit

Permalink
8321025: Enable Neoverse N1 optimizations for Neoverse V2
Browse files Browse the repository at this point in the history
  • Loading branch information
eastig committed Nov 29, 2023
1 parent a2c5f1f commit 3e7e745
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/hotspot/cpu/aarch64/vm_version_aarch64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,9 @@ void VM_Version::initialize() {
}
}

// Neoverse N1, N2 and V1
if (_cpu == CPU_ARM && (model_is(0xd0c) || model_is(0xd49) || model_is(0xd40))) {
// Neoverse N1, N2, V1, V2
if (_cpu == CPU_ARM && (model_is(0xd0c) || model_is(0xd49) ||
model_is(0xd40) || model_is(0xd4f))) {
if (FLAG_IS_DEFAULT(UseSIMDForMemoryOps)) {
FLAG_SET_DEFAULT(UseSIMDForMemoryOps, true);
}
Expand Down

0 comments on commit 3e7e745

Please sign in to comment.