/hg/icedtea6: Fix for fast bytecode in cpp interpreter
enevill at icedtea.classpath.org
enevill at icedtea.classpath.org
Tue Mar 30 06:36:12 PDT 2010
changeset 906953e7c9af in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=906953e7c9af
author: Edward Nevill <ed at camswl.com>
date: Tue Mar 30 14:36:22 2010 +0100
Fix for fast bytecode in cpp interpreter
diffstat:
3 files changed, 21 insertions(+)
ChangeLog | 5 +++++
Makefile.am | 1 +
patches/zero/cppInterpreter-fast-bytecodes.patch | 15 +++++++++++++++
diffs (42 lines):
diff -r 433756a5db2c -r 906953e7c9af ChangeLog
--- a/ChangeLog Tue Mar 30 02:47:58 2010 +0100
+++ b/ChangeLog Tue Mar 30 14:36:22 2010 +0100
@@ -1,3 +1,8 @@ 2010-03-29 Andrew John Hughes <ahughes
+2010-03-30 Edward Nevill <ed at camswl.com>
+
+ * bytecodeInterpreter.cpp
+ Fix to support fast bytecodes
+
2010-03-29 Andrew John Hughes <ahughes at redhat.com>
* .hgignore:
diff -r 433756a5db2c -r 906953e7c9af Makefile.am
--- a/Makefile.am Tue Mar 30 02:47:58 2010 +0100
+++ b/Makefile.am Tue Mar 30 14:36:22 2010 +0100
@@ -231,6 +231,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 433756a5db2c -r 906953e7c9af patches/zero/cppInterpreter-fast-bytecodes.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/zero/cppInterpreter-fast-bytecodes.patch Tue Mar 30 14:36:22 2010 +0100
@@ -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