Lines Matching refs:current

215   RegisterMap map(JavaThread::current(), false); // No update
262 if (NeedsDeoptSuspend && Thread::current() != thread) {
289 // come to a halt during the safepoint, changing the current value
339 RegisterMap map(JavaThread::current(), false);
355 // Note: called by profiler - NOT for current thread
486 BasicObjectLock* frame::next_monitor_in_interpreter_frame(BasicObjectLock* current) const {
489 interpreter_frame_verify_monitor(current);
491 BasicObjectLock* next = (BasicObjectLock*) (((intptr_t*) current) + interpreter_frame_monitor_size());
495 BasicObjectLock* frame::previous_monitor_in_interpreter_frame(BasicObjectLock* current) const {
499 // interpreter_frame_verify_monitor(current);
501 BasicObjectLock* previous = (BasicObjectLock*) (((intptr_t*) current) - interpreter_frame_monitor_size());
613 for (BasicObjectLock* current = interpreter_frame_monitor_end();
614 current < interpreter_frame_monitor_begin();
615 current = next_monitor_in_interpreter_frame(current)) {
617 current->obj()->print_value_on(st);
620 current->lock()->print_on(st);
885 Thread *thread = Thread::current();
895 BasicObjectLock* current = interpreter_frame_monitor_end();
896 current < interpreter_frame_monitor_begin();
897 current = next_monitor_in_interpreter_frame(current)
900 interpreter_frame_verify_monitor(current);
902 current->oops_do(f);
1007 int _offset; // the current offset, incremented with each argument
1111 Thread *thread = Thread::current();
1173 warning("value @ " INTPTR_FORMAT " looks oopish (" INTPTR_FORMAT ") (thread = " INTPTR_FORMAT ")", p, (address)*p, Thread::current());
1181 warning("value @ " INTPTR_FORMAT " should be an oop (" INTPTR_FORMAT ") (thread = " INTPTR_FORMAT ")", p, (address)*p, Thread::current());
1200 assert(thread == Thread::current(), "need to synchronize to do this to another thread");
1226 // get current interpreter 'pc'
1306 address current = (address) value;
1309 guarantee((high_mark - current) % monitor_size == 0 , "Misaligned top of BasicObjectLock*");
1310 guarantee( high_mark > current , "Current BasicObjectLock* higher than high_mark");
1312 guarantee((current - low_mark) % monitor_size == 0 , "Misaligned bottom of BasicObjectLock*");
1313 guarantee( current >= low_mark , "Current BasicObjectLock* below than low_mark");
1340 // Label the method and current bci
1471 if (thread == Thread::current()) {