src/share/vm/interpreter/bytecodeInterpreter.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/interpreter

src/share/vm/interpreter/bytecodeInterpreter.cpp

Print this page
rev 6068 : 8036146: make CPP interpreter build again
Summary: fix build of CPP interpreter on x86 and sparc
Reviewed-by:


3458   }
3459   tty->print_cr("mdx: " INTPTR_FORMAT, (uintptr_t) this->_mdx);
3460   tty->print_cr("stack: " INTPTR_FORMAT, (uintptr_t) this->_stack);
3461   tty->print_cr("msg: %s", C_msg(this->_msg));
3462   tty->print_cr("result_to_call._callee: " INTPTR_FORMAT, (uintptr_t) this->_result._to_call._callee);
3463   tty->print_cr("result_to_call._callee_entry_point: " INTPTR_FORMAT, (uintptr_t) this->_result._to_call._callee_entry_point);
3464   tty->print_cr("result_to_call._bcp_advance: %d ", this->_result._to_call._bcp_advance);
3465   tty->print_cr("osr._osr_buf: " INTPTR_FORMAT, (uintptr_t) this->_result._osr._osr_buf);
3466   tty->print_cr("osr._osr_entry: " INTPTR_FORMAT, (uintptr_t) this->_result._osr._osr_entry);
3467   tty->print_cr("prev_link: " INTPTR_FORMAT, (uintptr_t) this->_prev_link);
3468   tty->print_cr("native_mirror: " INTPTR_FORMAT, (void*) this->_oop_temp);
3469   tty->print_cr("stack_base: " INTPTR_FORMAT, (uintptr_t) this->_stack_base);
3470   tty->print_cr("stack_limit: " INTPTR_FORMAT, (uintptr_t) this->_stack_limit);
3471   tty->print_cr("monitor_base: " INTPTR_FORMAT, (uintptr_t) this->_monitor_base);
3472 #ifdef SPARC
3473   tty->print_cr("last_Java_pc: " INTPTR_FORMAT, (uintptr_t) this->_last_Java_pc);
3474   tty->print_cr("frame_bottom: " INTPTR_FORMAT, (uintptr_t) this->_frame_bottom);
3475   tty->print_cr("&native_fresult: " INTPTR_FORMAT, (uintptr_t) &this->_native_fresult);
3476   tty->print_cr("native_lresult: " INTPTR_FORMAT, (uintptr_t) this->_native_lresult);
3477 #endif
3478 #if !defined(ZERO)
3479   tty->print_cr("last_Java_fp: " INTPTR_FORMAT, (uintptr_t) this->_last_Java_fp);
3480 #endif // !ZERO
3481   tty->print_cr("self_link: " INTPTR_FORMAT, (uintptr_t) this->_self_link);
3482 }
3483 
3484 extern "C" {
3485   void PI(uintptr_t arg) {
3486     ((BytecodeInterpreter*)arg)->print();
3487   }
3488 }
3489 #endif // PRODUCT
3490 
3491 #endif // JVMTI
3492 #endif // CC_INTERP


3458   }
3459   tty->print_cr("mdx: " INTPTR_FORMAT, (uintptr_t) this->_mdx);
3460   tty->print_cr("stack: " INTPTR_FORMAT, (uintptr_t) this->_stack);
3461   tty->print_cr("msg: %s", C_msg(this->_msg));
3462   tty->print_cr("result_to_call._callee: " INTPTR_FORMAT, (uintptr_t) this->_result._to_call._callee);
3463   tty->print_cr("result_to_call._callee_entry_point: " INTPTR_FORMAT, (uintptr_t) this->_result._to_call._callee_entry_point);
3464   tty->print_cr("result_to_call._bcp_advance: %d ", this->_result._to_call._bcp_advance);
3465   tty->print_cr("osr._osr_buf: " INTPTR_FORMAT, (uintptr_t) this->_result._osr._osr_buf);
3466   tty->print_cr("osr._osr_entry: " INTPTR_FORMAT, (uintptr_t) this->_result._osr._osr_entry);
3467   tty->print_cr("prev_link: " INTPTR_FORMAT, (uintptr_t) this->_prev_link);
3468   tty->print_cr("native_mirror: " INTPTR_FORMAT, (void*) this->_oop_temp);
3469   tty->print_cr("stack_base: " INTPTR_FORMAT, (uintptr_t) this->_stack_base);
3470   tty->print_cr("stack_limit: " INTPTR_FORMAT, (uintptr_t) this->_stack_limit);
3471   tty->print_cr("monitor_base: " INTPTR_FORMAT, (uintptr_t) this->_monitor_base);
3472 #ifdef SPARC
3473   tty->print_cr("last_Java_pc: " INTPTR_FORMAT, (uintptr_t) this->_last_Java_pc);
3474   tty->print_cr("frame_bottom: " INTPTR_FORMAT, (uintptr_t) this->_frame_bottom);
3475   tty->print_cr("&native_fresult: " INTPTR_FORMAT, (uintptr_t) &this->_native_fresult);
3476   tty->print_cr("native_lresult: " INTPTR_FORMAT, (uintptr_t) this->_native_lresult);
3477 #endif
3478 #if !defined(ZERO) && defined(PPC)
3479   tty->print_cr("last_Java_fp: " INTPTR_FORMAT, (uintptr_t) this->_last_Java_fp);
3480 #endif // !ZERO
3481   tty->print_cr("self_link: " INTPTR_FORMAT, (uintptr_t) this->_self_link);
3482 }
3483 
3484 extern "C" {
3485   void PI(uintptr_t arg) {
3486     ((BytecodeInterpreter*)arg)->print();
3487   }
3488 }
3489 #endif // PRODUCT
3490 
3491 #endif // JVMTI
3492 #endif // CC_INTERP
src/share/vm/interpreter/bytecodeInterpreter.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File