Searched defs:pc (Results 126 - 131 of 131) sorted by relevance

123456

/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp78 address pc = thread->saved_exception_pc(); local
79 // pc is the instruction which we must emulate
82 address npc = Assembler::locate_next_instruction(pc);
233 address start = __ pc();
342 return_address = __ pc();
438 address start = __ pc();
482 // rdx: throwing pc
484 // NOTE: At entry of this stub, exception-pc must be on stack !!
488 address start = __ pc();
492 // becomes the throwing pc
[all...]
H A Dassembler_x86.cpp387 // disp was created by converting the target address minus the pc
391 address next_ip = pc() + sizeof(int32_t) + rip_relative_correction;
839 assert(inst != NULL && inst < pc(), "must point to beginning of instruction");
856 assert(opnd == pc(), "must put operand where relocs can find it");
1133 int offs = (int)( target(L) - pc() );
6069 // Print some instructions around pc:
6114 // amd64 always does this as a pc-rel
6119 return Address((int32_t)(intptr_t)(adr.target() - pc()), adr.target(), adr.reloc());
6339 // returns the (pc) offset of the idivl instruction - may be needed
6563 address rip = pc();
6607 debug64(char* msg, int64_t pc, int64_t regs[]) argument
6636 print_state64(int64_t pc, int64_t regs[]) argument
9834 const char* pc; local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp529 address SharedRuntime::get_poll_stub(address pc) { argument
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,
749 continuation_for_implicit_exception(JavaThread* thread, address pc, SharedRuntime::ImplicitExceptionKind exception_kind) argument
1536 address pc = caller.pc(); local
[all...]
H A Dthread.hpp837 address _saved_exception_pc; // Saved pc of instruction where last implicit exception happened
997 void set_saved_exception_pc(address pc) { _saved_exception_pc = pc; } argument
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp1478 address pc = fr.pc(); local
1497 PcDesc* pd = nm->pc_desc_at(pc);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp330 address pc; local
331 if (os::Kernel32Dll::RtlCaptureStackBackTrace(n + 1, 1, (PVOID*)&pc, NULL) == 1) {
332 return pc;
2022 // Save pc in thread
2025 // Set pc to handler
2029 // Set pc to handler
2033 // Set pc to handler
2123 address pc = (address)ctx->Rip;
2124 assert(pc[0] == 0xF7, "not an idiv opcode");
2125 assert((pc[
2225 address pc = (address) exceptionInfo->ContextRecord->StIIP; local
2227 address pc = (address) exceptionInfo->ContextRecord->Rip; local
2229 address pc = (address) exceptionInfo->ContextRecord->Eip; local
2583 address pc = (address) exceptionInfo->ContextRecord->Eip; local
2897 address pc = CALLER_PC; local
3095 address pc = CALLER_PC; local
[all...]

Completed in 152 milliseconds

123456