We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22e72f4 commit f23abb9Copy full SHA for f23abb9
src/hotspot/cpu/aarch64/vm_version_aarch64.cpp
@@ -455,7 +455,7 @@ void VM_Version::initialize() {
455
}
456
if (!UseBlockZeroing && !FLAG_IS_DEFAULT(BlockZeroingLowLimit)) {
457
warning("BlockZeroingLowLimit has been ignored because UseBlockZeroing is disabled");
458
- FLAG_SET_DEFAULT(BlockZeroingLowLimit, 4 * VM_Version::zva_length());
+ FLAG_SET_DEFAULT(BlockZeroingLowLimit, is_zva_enabled() ? (4 * VM_Version::zva_length()) : 256);
459
460
461
if (VM_Version::supports_sve2()) {
0 commit comments