< prev index next >

src/cpu/x86/vm/macroAssembler_x86.cpp

Print this page
rev 8978 : imported patch remove_err_msg

*** 415,425 **** } else { ttyLocker ttyl; ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg); } // Don't assert holding the ttyLock ! assert(false, err_msg("DEBUG MESSAGE: %s", msg)); ThreadStateTransition::transition(thread, _thread_in_vm, saved_state); } void MacroAssembler::print_state32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip) { ttyLocker ttyl; --- 415,425 ---- } else { ttyLocker ttyl; ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg); } // Don't assert holding the ttyLock ! assert(false, "DEBUG MESSAGE: %s", msg); ThreadStateTransition::transition(thread, _thread_in_vm, saved_state); } void MacroAssembler::print_state32(int rdi, int rsi, int rbp, int rsp, int rbx, int rdx, int rcx, int rax, int eip) { ttyLocker ttyl;
*** 881,891 **** ThreadStateTransition::transition(thread, _thread_in_vm, saved_state); } else { ttyLocker ttyl; ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg); ! assert(false, err_msg("DEBUG MESSAGE: %s", msg)); } } void MacroAssembler::print_state64(int64_t pc, int64_t regs[]) { ttyLocker ttyl; --- 881,891 ---- ThreadStateTransition::transition(thread, _thread_in_vm, saved_state); } else { ttyLocker ttyl; ::tty->print_cr("=============== DEBUG MESSAGE: %s ================\n", msg); ! assert(false, "DEBUG MESSAGE: %s", msg); } } void MacroAssembler::print_state64(int64_t pc, int64_t regs[]) { ttyLocker ttyl;
< prev index next >