Lines Matching refs:pc

529 address SharedRuntime::get_poll_stub(address pc) {
532 CodeBlob *cb = CodeCache::find_blob(pc);
535 assert( cb && cb->is_nmethod(), "safepoint polling: pc must refer to an nmethod" );
538 assert( ((nmethod*)cb)->is_at_poll_or_poll_return(pc),
541 assert( ((NativeInstruction*)pc)->is_safepoint_poll(),
544 bool at_poll_return = ((nmethod*)cb)->is_at_poll_return(pc);
563 "... found polling page %s exception at pc = "
566 (intptr_t)pc, (intptr_t)stub);
699 tty->print_cr("MISSING EXCEPTION HANDLER for pc " INTPTR_FORMAT " and handler bci %d", ret_pc, handler_bci);
750 address pc,
755 if (Interpreter::contains(pc)) {
778 Events::log_exception(thread, "StackOverflowError at " INTPTR_FORMAT, pc);
783 if (VtableStubs::contains(pc)) {
788 VtableStub* vt_stub = VtableStubs::stub_containing(pc);
793 if (vt_stub->is_abstract_method_error(pc)) {
795 Events::log_exception(thread, "AbstractMethodError at " INTPTR_FORMAT, pc);
798 Events::log_exception(thread, "NullPointerException at vtable entry " INTPTR_FORMAT, pc);
802 CodeBlob* cb = CodeCache::find_blob(pc);
815 Events::log_exception(thread, "NullPointerException in code blob at " INTPTR_FORMAT, pc);
822 if (nm->inlinecache_check_contains(pc)) {
827 Events::log_exception(thread, "NullPointerException in IC check " INTPTR_FORMAT, pc);
833 Events::log_exception(thread, "NullPointerException in MH adapter " INTPTR_FORMAT, pc);
840 target_pc = nm->continuation_for_implicit_exception(pc);
851 nmethod* nm = CodeCache::find_nmethod(pc);
856 target_pc = nm->continuation_for_implicit_exception(pc);
871 Events::log_exception(thread, "Implicit null exception at " INTPTR_FORMAT " to " INTPTR_FORMAT, pc, target_pc);
873 Events::log_exception(thread, "Implicit division by zero exception at " INTPTR_FORMAT " to " INTPTR_FORMAT, pc, target_pc);
1205 tty->print_cr(" at pc: " INTPTR_FORMAT " to code: " INTPTR_FORMAT, caller_frame.pc(), callee_method->code());
1215 // caller_nm->is_method_handle_return(caller_frame.pc()), "must be MH call site");
1264 CompiledIC* inline_cache = CompiledIC_before(caller_frame.pc());
1269 CompiledStaticCall* ssc = compiledStaticCall_before(caller_frame.pc());
1320 address sender_pc = caller_frame.pc();
1416 tty->print_cr(" from pc: " INTPTR_FORMAT, caller_frame.pc());
1442 trace_ic_miss(f.pc());
1461 CompiledIC* inline_cache = CompiledIC_before(caller_frame.pc());
1536 address pc = caller.pc();
1562 if (NativeCall::is_call_before(pc)) {
1563 NativeCall *ncall = nativeCall_before(pc);
1570 nmethod* caller_nm = CodeCache::find_nmethod(pc);