8321025: Enable Neoverse N1 optimizations for Neoverse V2

Reviewed-by: ngasson, shade
This commit is contained in:
Evgeny Astigeevich 2023-11-30 11:33:02 +00:00
parent 61653a1ff1
commit c9d15f7d5e

View File

@ -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);
}