We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62d72de commit 2215e5aCopy full SHA for 2215e5a
src/hotspot/cpu/aarch64/vm_version_aarch64.cpp
@@ -174,6 +174,13 @@ void VM_Version::initialize() {
174
}
175
176
177
+ // Neoverse N1
178
+ if (_cpu == CPU_ARM && (_model == 0xd0c || _model2 == 0xd0c)) {
179
+ if (FLAG_IS_DEFAULT(UseSIMDForMemoryOps)) {
180
+ FLAG_SET_DEFAULT(UseSIMDForMemoryOps, true);
181
+ }
182
183
+
184
if (_cpu == CPU_ARM) {
185
if (FLAG_IS_DEFAULT(UseSignumIntrinsic)) {
186
FLAG_SET_DEFAULT(UseSignumIntrinsic, true);
0 commit comments