/hg/release/icedtea6-1.8: Fix for fast bytecode in cpp interpreter

doko at icedtea.classpath.org doko at icedtea.classpath.org
Tue Mar 30 18:05:35 PDT 2010


changeset 6c90850063a6 in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=6c90850063a6
author: doko at ubuntu.com
date: Wed Mar 31 02:41:55 2010 +0200

	Fix for fast bytecode in cpp interpreter


diffstat:

3 files changed, 20 insertions(+)
ChangeLog                                        |    4 ++++
Makefile.am                                      |    1 +
patches/zero/cppInterpreter-fast-bytecodes.patch |   15 +++++++++++++++

diffs (41 lines):

diff -r e3d17434ea31 -r 6c90850063a6 ChangeLog
--- a/ChangeLog	Wed Mar 31 01:53:39 2010 +0200
+++ b/ChangeLog	Wed Mar 31 02:41:55 2010 +0200
@@ -1,3 +1,7 @@ 2010-03-31  Matthias Klose  <doko at ubuntu
+2010-03-30  Edward Nevill   <ed at camswl.com>
+
+	* bytecodeInterpreter.cpp Fix to support fast bytecodes
+
 2010-03-31  Matthias Klose  <doko at ubuntu.com>
 
 	* acinclude.m4 (ENABLE_ZERO_BUILD): Depend on IT_SET_ARCH_SETTINGS.
diff -r e3d17434ea31 -r 6c90850063a6 Makefile.am
--- a/Makefile.am	Wed Mar 31 01:53:39 2010 +0200
+++ b/Makefile.am	Wed Mar 31 02:41:55 2010 +0200
@@ -220,6 +220,7 @@ ICEDTEA_PATCHES = \
 	patches/zero/6909153.patch \
 	patches/zero/6913869.patch \
 	patches/zero/6914622.patch \
+	patches/zero/cppInterpreter-fast-bytecodes.patch \
 	patches/icedtea-notice-safepoints.patch \
 	patches/icedtea-parisc-opt.patch \
 	patches/icedtea-lucene-crash.patch \
diff -r e3d17434ea31 -r 6c90850063a6 patches/zero/cppInterpreter-fast-bytecodes.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/zero/cppInterpreter-fast-bytecodes.patch	Wed Mar 31 02:41:55 2010 +0200
@@ -0,0 +1,15 @@
+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