src/hotspot/cpu/aarch64/vm_version_aarch64.cpp
changeset 48052 8fe17f886663
parent 47571 c19054f06c14
child 48196 5ee29f4ec472
--- a/src/hotspot/cpu/aarch64/vm_version_aarch64.cpp	Mon Dec 04 13:24:00 2017 +0530
+++ b/src/hotspot/cpu/aarch64/vm_version_aarch64.cpp	Mon Dec 04 09:59:33 2017 +0100
@@ -148,6 +148,16 @@
       PrefetchCopyIntervalInBytes = 32760;
   }
 
+  if (AllocatePrefetchDistance !=-1 && (AllocatePrefetchDistance & 7)) {
+    warning("AllocatePrefetchDistance must be multiple of 8");
+    AllocatePrefetchDistance &= ~7;
+  }
+
+  if (AllocatePrefetchStepSize & 7) {
+    warning("AllocatePrefetchStepSize must be multiple of 8");
+    AllocatePrefetchStepSize &= ~7;
+  }
+
   if (SoftwarePrefetchHintDistance != -1 &&
        (SoftwarePrefetchHintDistance & 7)) {
     warning("SoftwarePrefetchHintDistance must be -1, or a multiple of 8");