Searched refs:pc (Results 201 - 225 of 433) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreterGenerator.cpp258 address entry = __ pc();
331 wep = __ pc(); generate_and_dispatch(t);
344 case atos: vep = __ pc(); __ pop(atos); aep = __ pc(); generate_and_dispatch(t); break;
345 case itos: vep = __ pc(); __ pop(itos); iep = __ pc(); generate_and_dispatch(t); break;
346 case ltos: vep = __ pc(); __ pop(ltos); lep = __ pc(); generate_and_dispatch(t); break;
347 case ftos: vep = __ pc(); __ pop(ftos); fep = __ pc(); generate_and_dispatc
[all...]
H A DtemplateInterpreter.hpp137 // this only returns whether a pc is within generated code for the interpreter.
138 static bool contains(address pc) { return _code != NULL && _code->contains(pc); } argument
140 static InterpreterCodelet* codelet_containing(address pc);
/openjdk10/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp176 // Look at bci and decide on bcp and continuation pc
178 // C++ interpreter doesn't need a pc since it will figure out what to do when it
180 address pc; local
186 pc = Interpreter::deopt_entry(vtos, 0); // step = 0 since we don't skip current bytecode
190 pc = Interpreter::deopt_reexecute_entry(method(), bcp);
193 pc = Interpreter::deopt_continue_after_entry(method(), bcp, callee_parameters, is_top_frame);
228 pc = Interpreter::remove_activation_preserving_args_entry();
232 pc = Interpreter::deopt_entry(vtos, 0);
237 pc = Interpreter::deopt_entry(vtos, 0);
247 pc
[all...]
H A DunhandledOops.cpp62 void UnhandledOops::register_unhandled_oop(oop* op, address pc) { argument
71 UnhandledOopEntry entry(op, pc);
124 tty->print_cr("thread is " INTPTR_FORMAT " from pc " INTPTR_FORMAT,
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPKIXCertPathValidator.java184 PolicyChecker pc = new PolicyChecker(params.initialPolicies(),
191 certPathCheckers.add(pc);
227 return new PKIXCertPathValidatorResult(anchor, pc.getPolicyTree(),
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/png/
H A DRowFilter.java75 int pc = abs(p - c);
77 if ((pa <= pb) && (pa <= pc)) {
79 } else if (pb <= pc) {
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBindPurple.java66 BIProperty pc = BIProperty.getCustomization(use);
69 boolean toConstant = pc.isConstantProperty() && hasFixedValue;
72 CPropertyInfo prop = pc.createAttributeProperty( use, attType );
/openjdk10/jdk/test/javax/security/auth/login/LoginContext/
H A DStandardCallbacks.java177 PasswordCallback pc = (PasswordCallback) callback;
178 System.out.println(pc.getPrompt());
179 pc.setPassword(password);
H A DDynamicConfigurationTest.java157 PasswordCallback pc = (PasswordCallback) callback;
158 pc.setPassword(password);
/openjdk10/jdk/test/javax/management/remote/mandatory/notif/
H A DNoPermToRemoveTest.java124 PermissionCollection pc = new Permissions();
125 pc.add(new AllPermission());
126 return pc;
/openjdk10/hotspot/src/os/solaris/dtrace/
H A Djhelper.d146 this->pc = arg0;
263 * ----- BEGIN: Get address of the code heap pc points to -----
266 /!this->done && this->number_of_heaps >= 1 && this->code_heap1_low <= this->pc && this->pc < this->code_heap1_high/
274 /!this->done && this->number_of_heaps >= 2 && this->code_heap2_low <= this->pc && this->pc < this->code_heap2_high/
282 /!this->done && this->number_of_heaps >= 3 && this->code_heap3_low <= this->pc && this->pc < this->code_heap3_high/
290 /!this->done && this->number_of_heaps >= 4 && this->code_heap4_low <= this->pc && this->pc < thi
[all...]
/openjdk10/hotspot/src/os/bsd/dtrace/
H A Djhelper.d146 this->pc = arg0;
263 * ----- BEGIN: Get address of the code heap pc points to -----
266 /!this->done && this->number_of_heaps >= 1 && this->code_heap1_low <= this->pc && this->pc < this->code_heap1_high/
274 /!this->done && this->number_of_heaps >= 2 && this->code_heap2_low <= this->pc && this->pc < this->code_heap2_high/
282 /!this->done && this->number_of_heaps >= 3 && this->code_heap3_low <= this->pc && this->pc < this->code_heap3_high/
290 /!this->done && this->number_of_heaps >= 4 && this->code_heap4_low <= this->pc && this->pc < thi
[all...]
/openjdk10/hotspot/src/cpu/arm/vm/
H A DnativeInst_arm_32.cpp134 void NativeMovConstReg::set_data(intptr_t x, address pc) { argument
177 if(pc == 0) {
180 offset = addr - pc - 8;
231 void NativeMovConstReg::set_pc_relative_offset(address addr, address pc) {
233 if (pc == 0) {
236 offset = addr - pc - 8;
H A DcompiledIC_arm.cpp68 address branch_site = __ pc();
80 assert(__ pc() - base <= to_interp_stub_size(), "wrong stub size");
H A DtemplateInterpreterGenerator_arm.cpp64 address entry = __ pc();
129 address entry_point = __ pc();
150 address entry_point = __ pc();
156 address entry = __ pc();
189 address entry = __ pc();
213 address entry = __ pc();
234 address entry = __ pc();
275 address entry = __ pc();
318 address entry = __ pc();
353 address entry = __ pc();
[all...]
/openjdk10/jdk/test/com/sun/security/sasl/ntlm/
H A DNTLMTest.java116 Map<String,Object> pc = new HashMap<>();
117 pc.put("com.sun.security.sasl.ntlm.version", vc);
121 new String[]{MECH}, USER1, PROTOCOL, REALM, pc,
158 Map<String,Object> pc = new HashMap<>();
159 pc.put("com.sun.security.sasl.ntlm.hostname", "this.is.com");
161 new String[]{MECH}, USER1, PROTOCOL, REALM, pc,
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DCodeWriter.java175 int pc = instr.getPC();
179 print(String.format("%n%12d: %d", matches[i], (pc + offsets[i])));
181 print("\n default: " + (pc + default_) + "\n}");
188 int pc = instr.getPC();
192 print(String.format("%n%12d: %d", (low + i), (pc + offsets[i])));
194 print("\n default: " + (pc + default_) + "\n}");
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/
H A DConditional01.java38 private int pc; field in class:Conditional01.TestClass
49 nextPC = pc + 2;
/openjdk10/hotspot/src/cpu/zero/vm/
H A Dframe_zero.inline.hpp60 _pc = zero_sharkframe()->pc();
61 _cb = CodeCache::find_blob_unsafe(pc());
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java100 public BlockSym debugInfoForPC(Address pc) throws DebuggerException { argument
112 public LineNumberInfo lineNumberForPC(Address pc) throws DebuggerException { argument
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicLineNumberMapping.java78 public BasicLineNumberInfo lineNumberForPC(Address pc) throws DebuggerException { argument
80 return searchLineNumbers(pc, 0, infoList.size() - 1);
/openjdk10/jdk/test/com/sun/security/auth/module/LdapLoginModule/
H A DCheckOptions.java163 PasswordCallback pc = (PasswordCallback) callbacks[i];
166 pc.setPassword("foo".toCharArray());
/openjdk10/hotspot/src/os_cpu/windows_x86/vm/
H A Dos_windows_x86.cpp183 pDCD = (pDynamicCodeData) masm->pc();
389 address pc = (address)stk.AddrPC.Offset; local
391 if (pc != NULL) {
392 if (count == 2 && lastpc == pc) {
396 // Don't try to create a frame(sp, fp, pc) -- on WinX64, stk.AddrFrame
399 frame::print_C_frame(st, buf, buf_size, pc);
402 lastpc = pc;
455 return frame(sp, fp, epc.pc());
582 // Note: it may be unsafe to inspect memory near pc. For example, pc ma
585 address pc = (address)uc->REG_PC; local
[all...]
/openjdk10/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreterGenerator_x86.cpp75 address entry = __ pc();
106 address entry = __ pc();
123 address entry = __ pc();
144 address entry = __ pc();
175 address entry = __ pc();
241 address entry = __ pc();
300 address entry = __ pc();
359 address entry = __ pc();
723 address entry = __ pc();
819 address entry_point = __ pc();
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp420 address pc = method()->code_base() + branch_bci; local
421 Bytecodes::Code branch = Bytecodes::code_at(method(), pc);
431 offset = (int16_t)Bytes::get_Java_u2(pc + 1);
434 offset = Bytes::get_Java_u4(pc + 1);
477 JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* thread, oopDesc* ex, address pc, nmethod*& nm))
482 nm = CodeCache::find_nmethod(pc);
484 // Adjust the pc as needed/
485 if (nm->is_deopt_pc(pc)) {
488 // if the frame isn't deopted then pc must not correspond to the caller of last_frame
490 pc
604 address pc = thread->exception_pc(); local
[all...]

Completed in 386 milliseconds

1234567891011>>