/hg/icedtea7-forest/hotspot: PR2914: byte_map_base is not page a...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Thu Apr 7 03:34:43 UTC 2016


changeset 3565cecfbf66 in /hg/icedtea7-forest/hotspot
details: http://icedtea.classpath.org/hg/icedtea7-forest/hotspot?cmd=changeset;node=3565cecfbf66
author: aph
date: Wed Apr 06 18:30:45 2016 +0100

	PR2914: byte_map_base is not page aligned on OpenJDK 7


diffstat:

 src/cpu/aarch64/vm/assembler_aarch64.cpp |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 5a5065860c53 -r 3565cecfbf66 src/cpu/aarch64/vm/assembler_aarch64.cpp
--- a/src/cpu/aarch64/vm/assembler_aarch64.cpp	Mon Feb 29 10:42:55 2016 -0500
+++ b/src/cpu/aarch64/vm/assembler_aarch64.cpp	Wed Apr 06 18:30:45 2016 +0100
@@ -4938,7 +4938,8 @@
     // and it might even be negative.
     unsigned long offset;
     adrp(reg, ExternalAddress((address)byte_map_base), offset);
-    assert(offset == 0, "misaligned card table base");
+    if (offset != 0)
+      add(reg, reg, offset);
   } else {
     mov(reg, (uint64_t)byte_map_base);
   }


More information about the distro-pkg-dev mailing list