/hg/release/icedtea7-forest-2.4/hotspot: D729448: 32-bit alignme...
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Wed Dec 4 11:22:31 PST 2013
changeset 3ba10e4780e0 in /hg/release/icedtea7-forest-2.4/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.4/hotspot?cmd=changeset;node=3ba10e4780e0
author: andrew
date: Wed Nov 20 17:13:35 2013 +0000
D729448: 32-bit alignment on mips and mipsel
Contributed-by: Aurelien Jarno
diffstat:
src/share/vm/interpreter/bytecodeInterpreter.hpp | 22 ++++++++++++++++++++--
1 files changed, 20 insertions(+), 2 deletions(-)
diffs (39 lines):
diff -r 02f0bce4ac32 -r 3ba10e4780e0 src/share/vm/interpreter/bytecodeInterpreter.hpp
--- a/src/share/vm/interpreter/bytecodeInterpreter.hpp Tue Nov 12 17:58:35 2013 +0000
+++ b/src/share/vm/interpreter/bytecodeInterpreter.hpp Wed Nov 20 17:13:35 2013 +0000
@@ -60,7 +60,16 @@
jlong l;
jdouble d;
uint32_t v[2];
-};
+}
+#ifndef _LP64
+ /* Hotspot only aligns the union to the uintptr_t type, that is 32 bit
+ on a 32-bit CPU. Accesses to double values should be 64-bit aligned
+ on at least MIPS and SPARC. Declare it to GCC for all 32-bit CPUs,
+ as it might also help GCC to select the best instruction on other
+ CPUs. */
+ __attribute__ ((packed, aligned (4)))
+#endif
+;
typedef class BytecodeInterpreter* interpreterState;
@@ -172,7 +181,16 @@
jlong l;
jdouble d;
uint32_t v[2];
-};
+}
+#ifndef _LP64
+ /* Hotspot only aligns the union to the uintptr_t type, that is 32 bit
+ on a 32-bit CPU. Accesses to double values should be 64-bit aligned
+ on at least MIPS and SPARC. Declare it to GCC for all 32-bit CPUs,
+ as it might also help GCC to select the best instruction on other
+ CPUs. */
+ __attribute__ ((packed, aligned (4)))
+#endif
+;
/*
* Generic 32-bit wide "Java slot" definition. This type occurs
More information about the distro-pkg-dev
mailing list