comparison src/cpu/x86/vm/assembler_x86.cpp @ 3442:f7d55ea6ee56

7045514: SPARC assembly code for JSR 292 ricochet frames Reviewed-by: kvn, jrose
author never
date Fri, 03 Jun 2011 22:31:43 -0700
parents 2e038ad0c1d0
children 07c2e7ffd1fc
comparison
equal deleted inserted replaced
3441:f56542cb325a 3442:f7d55ea6ee56
5088 assert(false, "start up GDB"); 5088 assert(false, "start up GDB");
5089 } 5089 }
5090 } else { 5090 } else {
5091 ttyLocker ttyl; 5091 ttyLocker ttyl;
5092 ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg); 5092 ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg);
5093 assert(false, "DEBUG MESSAGE"); 5093 assert(false, err_msg("DEBUG MESSAGE: %s", msg));
5094 } 5094 }
5095 ThreadStateTransition::transition(thread, _thread_in_vm, saved_state); 5095 ThreadStateTransition::transition(thread, _thread_in_vm, saved_state);
5096 } 5096 }
5097 5097
5098 void MacroAssembler::stop(const char* msg) { 5098 void MacroAssembler::stop(const char* msg) {
5651 ThreadStateTransition::transition(thread, _thread_in_vm, saved_state); 5651 ThreadStateTransition::transition(thread, _thread_in_vm, saved_state);
5652 } else { 5652 } else {
5653 ttyLocker ttyl; 5653 ttyLocker ttyl;
5654 ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", 5654 ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n",
5655 msg); 5655 msg);
5656 assert(false, err_msg("DEBUG MESSAGE: %s", msg));
5656 } 5657 }
5657 } 5658 }
5658 5659
5659 #endif // _LP64 5660 #endif // _LP64
5660 5661