RTC Thumb2 JIT enhancements (diffs part 1)
ed at camswl.com
ed at camswl.com
Thu Mar 11 03:25:29 PST 2010
diff -ruNE old/icedtea6/ports/hotspot/src/cpu/zero/vm/asm_helper.cpp new2/icedtea6/ports/hotspot/src/cpu/zero/vm/asm_helper.cpp
--- old/icedtea6/ports/hotspot/src/cpu/zero/vm/asm_helper.cpp 2010-03-10 17:38:48.000000000 +0000
+++ new2/icedtea6/ports/hotspot/src/cpu/zero/vm/asm_helper.cpp 2010-03-11 09:42:05.000000000 +0000
@@ -16,7 +16,7 @@
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#define ARCH_THUMBEE (1<<16)
+#define ARCH_THUMB2 (1<<16)
#define ARCH_VFP (1<<17)
#define ARCH_CLZ (1<<18)
@@ -49,7 +49,7 @@
unsigned value = *p++;
if (tag == 0) goto fini;
if (tag == AT_HWCAP) {
- if (value & HWCAP_THUMBEE) rc |= ARCH_THUMBEE;
+ if (value & HWCAP_THUMBEE) rc |= ARCH_THUMB2;
if (value & HWCAP_VFP) rc |= ARCH_VFP;
} else if (tag == AT_PLATFORM) {
const char *s = (const char *)value;
@@ -66,7 +66,7 @@
close(fd);
// printf("arch = %d, rc = 0x%08x\n", arch, rc);
if (arch >= 5) rc |= ARCH_CLZ;
- if (arch >= 7) rc |= ARCH_THUMBEE;
+ if (arch >= 7) rc |= ARCH_THUMB2;
return rc | (1<<arch);
}
@@ -208,6 +208,89 @@
return istate->thread()->pending_exception();
}
+extern "C" oop Helper_monitorenter(interpreterState istate, oop lockee)
+{
+ BasicObjectLock* limit = istate->monitor_base();
+ BasicObjectLock* most_recent = (BasicObjectLock*) istate->stack_base();
+ BasicObjectLock* entry = NULL;
+ markOop displaced;
+ JavaThread *thread = istate->thread();
+
+ if (lockee == NULL) {
+ HELPER_THROW(istate->thread(), vmSymbols::java_lang_NullPointerException(), "");
+ goto handle_exception;
+ }
+ while (most_recent != limit ) {
+ if (most_recent->obj() == NULL) entry = most_recent;
+ else if (most_recent->obj() == lockee) break;
+ most_recent++;
+ }
+ if (entry == NULL) {
+ int monitor_words = frame::interpreter_frame_monitor_size();
+ ZeroStack *stack = thread->zero_stack();
+
+ if (monitor_words > stack->available_words()) {
+ InterpreterRuntime::throw_StackOverflowError(thread);
+ goto handle_exception;
+ } else {
+ stack->alloc(monitor_words * wordSize);
+
+ for (intptr_t *p = istate->stack() + 1; p < istate->stack_base(); p++)
+ *(p - monitor_words) = *p;
+
+ istate->set_stack_limit(istate->stack_limit() - monitor_words);
+ istate->set_stack(istate->stack() - monitor_words);
+ istate->set_stack_base(istate->stack_base() - monitor_words);
+
+ entry = (BasicObjectLock *) istate->stack_base();
+ }
+ }
+ entry->set_obj(lockee);
+ displaced = lockee->mark()->set_unlocked();
+ entry->lock()->set_displaced_header(displaced);
+ if (Atomic::cmpxchg_ptr(entry, lockee->mark_addr(), displaced) != displaced) {
+ // Is it simple recursive case?
+ if (thread->is_lock_owned((address) displaced->clear_lock_bits())) {
+ entry->lock()->set_displaced_header(NULL);
+ } else {
+ InterpreterRuntime::monitorenter(thread, entry);
+ }
+ }
+handle_exception:
+ return thread->pending_exception();
+}
+
+extern "C" oop Helper_monitorexit(interpreterState istate, oop lockee)
+{
+ BasicObjectLock* limit = istate->monitor_base();
+ BasicObjectLock* most_recent = (BasicObjectLock*) istate->stack_base();
+ JavaThread *thread = istate->thread();
+
+ if (lockee == NULL) {
+ HELPER_THROW(istate->thread(), vmSymbols::java_lang_NullPointerException(), "");
+ goto handle_exception;
+ }
+ while (most_recent != limit ) {
+ if ((most_recent)->obj() == lockee) {
+ BasicLock* lock = most_recent->lock();
+ markOop header = lock->displaced_header();
+ most_recent->set_obj(NULL);
+ if (header != NULL) {
+ if (Atomic::cmpxchg_ptr(header, lockee->mark_addr(), lock) != lock) {
+ // restore object for the slow case
+ most_recent->set_obj(lockee);
+ InterpreterRuntime::monitorexit(thread, most_recent);
+ }
+ }
+ return thread->pending_exception();
+ }
+ most_recent++;
+ }
+ InterpreterRuntime::throw_illegal_monitor_state_exception(thread);
+handle_exception:
+ return thread->pending_exception();
+}
+
extern "C" oop Helper_aastore(interpreterState istate, oop value, int index, arrayOop arrayref)
{
if (arrayref == NULL) {
@@ -475,7 +558,7 @@
int main(void)
{
print_def("ARCH_VFP", ARCH_VFP);
- print_def("ARCH_THUMBEE", ARCH_THUMBEE);
+ print_def("ARCH_THUMB2", ARCH_THUMB2);
print_def("ARCH_CLZ", ARCH_CLZ);
nl();
print_def("JVM_CONSTANT_Utf8", JVM_CONSTANT_Utf8);
More information about the distro-pkg-dev
mailing list