-
Bug
-
Resolution: Fixed
-
P4
-
hs18
-
b03
-
sparc
-
solaris_9
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2191966 | 7 | Tom Rodriguez | P4 | Closed | Fixed | b90 |
JDK-2198003 | 6u23 | Tom Rodriguez | P4 | Closed | Fixed | b01 |
JDK-2199953 | 6u22m | Tom Rodriguez | P4 | Closed | Fixed | b01 |
JDK-2193537 | 6u21p | Tom Rodriguez | P4 | Closed | Fixed | b03 |
JDK-2191449 | OpenJDK6 | Tom Rodriguez | P3 | Closed | Fixed | b19 |
diff -r c047da02984c src/share/vm/interpreter/bytecodeInterpreter.cpp
--- a/src/share/vm/interpreter/bytecodeInterpreter.cpp Wed Mar 17 16:40:25 2010 -0700
+++ b/src/share/vm/interpreter/bytecodeInterpreter.cpp Wed Mar 31 11:01:02 2010 -0700
@@ -2328,6 +2328,17 @@ run:
}
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;
--- a/src/share/vm/interpreter/bytecodeInterpreter.cpp Wed Mar 17 16:40:25 2010 -0700
+++ b/src/share/vm/interpreter/bytecodeInterpreter.cpp Wed Mar 31 11:01:02 2010 -0700
@@ -2328,6 +2328,17 @@ run:
}
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;
- backported by
-
JDK-2191449 zero needs fallback path in C++ interpreter for platform dependent fast bytecodes
-
- Closed
-
-
JDK-2191966 zero needs fallback path in C++ interpreter for platform dependent fast bytecodes
-
- Closed
-
-
JDK-2193537 zero needs fallback path in C++ interpreter for platform dependent fast bytecodes
-
- Closed
-
-
JDK-2198003 zero needs fallback path in C++ interpreter for platform dependent fast bytecodes
-
- Closed
-
-
JDK-2199953 zero needs fallback path in C++ interpreter for platform dependent fast bytecodes
-
- Closed
-