/hg/release/icedtea6-1.8: 2010-04-09 Xerxes R?nby <xerxes at zafe...
xranby at icedtea.classpath.org
xranby at icedtea.classpath.org
Fri Apr 9 04:20:34 PDT 2010
changeset 0ab7c62a1882 in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=0ab7c62a1882
author: Xerxes R?nby <xerxes at zafena.se>
date: Fri Apr 09 12:54:33 2010 +0200
2010-04-09 Xerxes R?nby <xerxes at zafena.se>
* Makefile.am (ICEDTEA_PATCHES): Replaced
cppInterpreter-fast-bytecodes.patch with 6939845.patch from
OpenJDK upstream. The new patch are conditionalized for ZERO
builds.
* patches/zero/6939845.patch: added from upstream.
* patches/zero/cppInterpreter-fast-bytecodes.patch: removed.
diffstat:
4 files changed, 30 insertions(+), 16 deletions(-)
ChangeLog | 9 +++++++++
Makefile.am | 2 +-
patches/zero/6939845.patch | 20 ++++++++++++++++++++
patches/zero/cppInterpreter-fast-bytecodes.patch | 15 ---------------
diffs (71 lines):
diff -r 5a890a745e14 -r 0ab7c62a1882 ChangeLog
--- a/ChangeLog Thu Apr 08 17:00:19 2010 +0200
+++ b/ChangeLog Fri Apr 09 12:54:33 2010 +0200
@@ -1,3 +1,12 @@ 2010-04-07 Xerxes RÃ¥nby <xerxes at zafen
+2010-04-09 Xerxes RÃ¥nby <xerxes at zafena.se>
+
+ * Makefile.am (ICEDTEA_PATCHES):
+ Replaced cppInterpreter-fast-bytecodes.patch with
+ 6939845.patch from OpenJDK upstream.
+ The new patch are conditionalized for ZERO builds.
+ * patches/zero/6939845.patch: added from upstream.
+ * patches/zero/cppInterpreter-fast-bytecodes.patch: removed.
+
2010-04-07 Xerxes RÃ¥nby <xerxes at zafena.se>
* configure.ac: Updated check for shared LLVM library to include svn.
diff -r 5a890a745e14 -r 0ab7c62a1882 Makefile.am
--- a/Makefile.am Thu Apr 08 17:00:19 2010 +0200
+++ b/Makefile.am Fri Apr 09 12:54:33 2010 +0200
@@ -220,7 +220,7 @@ ICEDTEA_PATCHES = \
patches/zero/6909153.patch \
patches/zero/6913869.patch \
patches/zero/6914622.patch \
- patches/zero/cppInterpreter-fast-bytecodes.patch \
+ patches/zero/6939845.patch \
patches/icedtea-notice-safepoints.patch \
patches/icedtea-parisc-opt.patch \
patches/icedtea-lucene-crash.patch \
diff -r 5a890a745e14 -r 0ab7c62a1882 patches/zero/6939845.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/zero/6939845.patch Fri Apr 09 12:54:33 2010 +0200
@@ -0,0 +1,20 @@
+--- openjdk.old/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp Wed Mar 31 11:55:22 2010
++++ openjdk/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp Wed Mar 31 11:55:22 2010
+@@ -2328,6 +2328,17 @@
+ }
+
+ DEFAULT:
++#ifdef ZERO
++ // Some zero configurations use the C++ interpreter as a
++ // fallback interpreter and have support for platform
++ // specific fast bytecodes which aren't supported here, so
++ // redispatch to the equivalent non-fast bytecode when they
++ // are encountered.
++ if (Bytecodes::is_defined((Bytecodes::Code)opcode)) {
++ opcode = (jubyte)Bytecodes::java_code((Bytecodes::Code)opcode);
++ goto opcode_switch;
++ }
++#endif
+ fatal2("\t*** Unimplemented opcode: %d = %s\n",
+ opcode, Bytecodes::name((Bytecodes::Code)opcode));
+ goto finish;
diff -r 5a890a745e14 -r 0ab7c62a1882 patches/zero/cppInterpreter-fast-bytecodes.patch
--- a/patches/zero/cppInterpreter-fast-bytecodes.patch Thu Apr 08 17:00:19 2010 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-Index: openjdk/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp
-===================================================================
---- openjdk.orig/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp 2010-03-19 10:35:14.000000000 +0100
-+++ openjdk/hotspot/src/share/vm/interpreter/bytecodeInterpreter.cpp 2010-03-19 10:39:01.000000000 +0100
-@@ -2328,6 +2328,10 @@
- }
-
- DEFAULT:
-+ if (Bytecodes::is_defined((Bytecodes::Code)opcode)) {
-+ opcode = (jubyte)Bytecodes::java_code((Bytecodes::Code)opcode);
-+ goto opcode_switch;
-+ }
- fatal2("\t*** Unimplemented opcode: %d = %s\n",
- opcode, Bytecodes::name((Bytecodes::Code)opcode));
- goto finish;
More information about the distro-pkg-dev
mailing list