hotspot/src/cpu/x86/vm/assembler_x86.cpp
changeset 9976 6fef34e63df1
parent 9437 9981851b4b8c
child 9978 80c391c46474
equal deleted inserted replaced
9975:82190b49ce14 9976:6fef34e63df1
  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