Searched refs:pc (Results 276 - 300 of 433) sorted by relevance

<<1112131415161718

/openjdk10/hotspot/src/os/bsd/vm/
H A Dos_bsd.hpp84 static void ucontext_set_pc(ucontext_t* uc, address pc);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DJavaThread.java159 Address pc = lastJavaPCField.getValue(addr.addOffsetTo(anchorField.getOffset()));
160 return pc;
171 /** Abstract accessor to last Java pc, implemented by
466 Address pc = fr.getPC();
469 if (pc == null) {
H A DFrame.java58 protected Address pc; field in class:Frame
109 /** pc: Returns the pc at which this frame will continue normally.
112 public Address getPC() { return pc; }
113 public void setPC(Address newpc) { pc = newpc; }
/openjdk10/hotspot/src/cpu/arm/vm/
H A Dvm_version_arm_64.cpp59 address start = __ pc();
H A DabstractInterpreter_arm.cpp171 tty->print_cr("caller: sp=%p, unextended_sp=%p, fp=%p, pc=%p", caller->sp(), caller->unextended_sp(), caller->fp(), caller->pc());
172 tty->print_cr("interpreter_frame: sp=%p, unextended_sp=%p, fp=%p, pc=%p", interpreter_frame->sp(), interpreter_frame->unextended_sp(), interpreter_frame->fp(), interpreter_frame->pc());
/openjdk10/hotspot/src/cpu/sparc/vm/
H A DcompiledIC_sparc.cpp68 assert(__ pc() - base <= to_interp_stub_size(), "wrong stub size");
H A Dframe_sparc.inline.hpp50 && pc() == other.pc();
H A DstubGenerator_sparc.cpp83 address start = __ pc();
235 return_pc = __ pc();
289 address start = __ pc();
323 // O1 = throwing pc
327 address start = __ pc();
331 // becomes the throwing pc.
393 // Entry point, pc or function descriptor.
395 *entry = __ pc();
400 *fault_pc = __ pc();
415 *continuation_pc = __ pc();
[all...]
/openjdk10/hotspot/src/share/vm/runtime/
H A DvframeArray.hpp193 address original_pc() const { return _original.pc(); }
/openjdk10/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DFixups.java238 void addU1(int pc, Entry ref) { argument
239 add(pc, U1_FORMAT, ref);
242 void addU2(int pc, Entry ref) { argument
243 add(pc, U2_FORMAT, ref);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java807 public String genHTML(sun.jvm.hotspot.debugger.Address pc) { argument
811 blob = (CodeBlob)VM.getVM().getCodeCache().findBlobUnsafe(pc);
822 if (interp.contains(pc)) {
823 InterpreterCodelet codelet = interp.getCodeletContaining(pc);
825 return "Unknown location in the Interpreter: " + pc;
831 } else if (VM.getVM().getCodeCache().contains(pc)) {
832 return "Unknown location in the CodeCache: " + pc;
838 Metadata obj = Metadata.instantiateWrapperFor(pc);
854 return genHTMLForRawDisassembly(pc, null);
875 return genBaseHref() + "pc
893 private long pc; field in class:HTMLGenerator.HTMLDisassembler
[all...]
/openjdk10/hotspot/src/cpu/s390/vm/
H A DmacroAssembler_s390.hpp365 static long get_pcrel_offset(address pc);
366 static address get_target_addr_pcrel(address pc);
392 static void patch_target_addr_pcrel(address pc, address con);
393 static void patch_addr_pcrel(address pc, address con) { argument
394 patch_target_addr_pcrel(pc, con); // Just delegate. This is only for nativeInst_s390.cpp.
432 // Specify the register that should be stored as the return pc in the
434 inline void save_return_pc(Register pc = Z_R14);
557 // TOC or pc-relative call + emits a runtime_call relocation.
563 // Get the pc where the last call will return to. Returns _last_calls_return_pc.
575 static bool is_call_far_pcrelative(address instruction_addr); // Pure far pc
590 call_far_patchable_requires_alignment_nop(address pc) argument
[all...]
H A DmacroAssembler_s390.cpp903 return (long)((cs != NULL) ? cs->start()-pc() : 0);
913 // with the pc-relatice variant.
922 RelocationHolder rspec = internal_word_Relocation::spec(pc() + disp);
930 address pc = this->pc();
931 ptrdiff_t total_distance = dataLocation - pc;
951 address pc = this->pc();
952 ptrdiff_t total_distance = addrLocation - pc;
1093 while ((uintptr_t)pc()
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DCodeBlob.java195 Address pc = returnAddress;
199 return getOopMaps().findMapAtOffset(pc.minus(codeBegin()), debugging);
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Dvm_version_aarch64.cpp93 address start = __ pc();
101 address entry = __ pc();
H A DstubGenerator_aarch64.cpp192 address start = __ pc();
221 address aarch64_entry = __ pc();
283 address loop = __ pc();
306 // pc against the address saved below. so we may need to allow for
314 return_address = __ pc();
417 // restart pc to enter the generated code at the start position
422 address start = __ pc();
468 // r3: throwing pc
470 // NOTE: At entry of this stub, exception-pc must be in LR !!
477 address start = __ pc();
[all...]
H A DsharedRuntime_aarch64.cpp737 address i2c_entry = __ pc();
754 address c2i_unverified_entry = __ pc();
791 address c2i_entry = __ pc();
1338 AArch64Simulator::get_current(UseSimulatorCache, DisableBCCheck)->notifyCompile(name, __ pc());
1345 intptr_t start = (intptr_t)__ pc();
1346 int vep_offset = ((intptr_t)__ pc()) - start;
1354 int frame_complete = ((intptr_t)__ pc()) - start; // not complete, period
1377 intptr_t start = (intptr_t)__ pc();
1576 int vep_offset = ((intptr_t)__ pc()) - start;
1597 int frame_complete = ((intptr_t)__ pc())
[all...]
/openjdk10/jdk/test/sun/security/krb5/auto/
H A DSSLwithPerms.java89 Proc pc = Proc.create("SSLwithPerms")
127 if (pc.waitFor() != 0) {
/openjdk10/hotspot/src/share/vm/opto/
H A Druntime.cpp1282 address pc = thread->exception_pc(); variable
1284 // Clear out the exception oop and pc since looking up an
1294 trace_exception(&ls, exception(), pc, "");
1311 nm = CodeCache::find_nmethod(pc);
1333 if (nm->is_deopt_pc(pc)) {
1338 // Adjust the pc back to the original throwing pc
1339 pc = deoptee.pc();
1350 force_unwind ? NULL : nm->handler_for_exception_and_pc(exception, pc);
[all...]
/openjdk10/jdk/test/java/lang/invoke/indify/
H A DIndify.java412 System.err.println(m+": failed to create invokedynamic at "+i.pc);
423 int start = i.pc + 3, end = i2.pc;
424 System.arraycopy(i.codeBase, start, i.codeBase, i.pc, end-start);
430 //System.out.println(new Instruction(i.codeBase, i2.pc-3));
1782 int pc; field in class:Indify.Instruction
1787 Instruction(byte[] codeBase, int pc) { argument
1789 init(pc);
1798 private Instruction init(int pc) { argument
1799 this.pc
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/reflect/
H A DProxyGenerator.java909 short pc, tryBegin = 0, tryEnd;
969 tryEnd = pc = (short) minfo.code.size();
976 tryBegin, tryEnd, pc,
982 pc = (short) minfo.code.size();
985 tryBegin, tryEnd, pc, cp.getClass("java/lang/Throwable")));
1197 short pc, tryBegin = 0, tryEnd;
1209 tryEnd = pc = (short) minfo.code.size();
1212 tryBegin, tryEnd, pc,
1234 pc = (short) minfo.code.size();
1237 tryBegin, tryEnd, pc,
[all...]
/openjdk10/hotspot/src/share/vm/code/
H A DcodeBlob.hpp82 // not finished setting up their frame. Beware of pc's in
149 // It is needed to fix relocations of pc-relative loads when resizing the
546 bool exception_address_is_unpack_entry(address pc) const {
548 return (pc == unpack_pc || (pc + frame::pc_return_offset) == unpack_pc);
561 // Alternate entry point for C1 where the exception and issuing pc
/openjdk10/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_64.cpp927 address i2c_entry = __ pc();
940 address c2i_unverified_entry = __ pc();
964 address c2i_entry = __ pc();
1457 address the_pc = __ pc();
1838 intptr_t start = (intptr_t)__ pc();
1839 int vep_offset = ((intptr_t)__ pc()) - start;
1844 int frame_complete = ((intptr_t)__ pc()) - start; // not complete, period
1867 intptr_t start = (intptr_t)__ pc();
2073 int vep_offset = ((intptr_t)__ pc()) - start;
2101 int frame_complete = ((intptr_t)__ pc())
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/pipe/
H A DBufferedPaints.java164 PixelConverter pc = PixelConverter.ArgbPre.instance;
165 int pixel1 = pc.rgbToPixel(c1.getRGB(), null);
166 int pixel2 = pc.rgbToPixel(c2.getRGB(), null);
/openjdk10/jdk/src/java.desktop/share/native/libsplashscreen/libpng/
H A Dpngrutil.c3897 int b, pa, pb, pc, p; local
3903 pc = a - c;
3907 pb = abs(pc);
3908 pc = abs(p + pc);
3911 pb = pc < 0 ? -pc : pc;
3912 pc = (p + pc) <
3951 int a, b, c, pa, pb, pc, p; local
[all...]

Completed in 439 milliseconds

<<1112131415161718