Searched refs:pc (Results 126 - 150 of 299) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.hpp34 // a given pc,nmethod pair is a methodOop and a bci. This is
44 SimpleScopeDesc(nmethod* code,address pc) { argument
45 PcDesc* pc_desc = code->pc_desc_at(pc);
H A DvtableStubs.cpp162 bool VtableStubs::is_entry_point(address pc) { argument
164 VtableStub* stub = (VtableStub*)(pc - VtableStub::entry_offset());
172 bool VtableStubs::contains(address pc) { argument
175 return stub_containing(pc) != NULL;
179 VtableStub* VtableStubs::stub_containing(address pc) { argument
185 if (s->contains(pc)) return s;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.hpp147 static InterpreterCodelet* codelet_containing(address pc) { return (InterpreterCodelet*)_code->stub_containing(pc); } argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Ddump_sparc.cpp81 dummy_vtable[num_virtuals * i + j] = (void*)masm->pc();
122 *mc_top = (char*)__ pc();
H A Dc1_CodeStubs_sparc.cpp269 address start = __ pc();
290 address end_of_patch = __ pc();
332 address patch_info_pc = __ pc();
335 address entry = __ pc();
350 assert(_patch_info_offset == (patch_info_pc - __ pc()), "must not change");
356 address pc = (address)_pc_start; local
357 RelocIterator iter(cs, pc, pc + 1);
358 relocInfo::change_reloc_info_for_address(&iter, (address) pc, relocInfo::oop_type, relocInfo::none);
360 pc
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Ddump_x86_32.cpp79 dummy_vtable[num_virtuals * i + j] = (void*)masm->pc();
126 *mc_top = (char*)__ pc();
H A Ddump_x86_64.cpp79 dummy_vtable[num_virtuals * i + j] = (void*)masm->pc();
116 *mc_top = (char*)__ pc();
H A DjniFastGetField_x86_64.cpp68 address fast_entry = __ pc();
88 speculative_load_pclist[count] = __ pc();
112 slowcase_entry_pclist[count++] = __ pc();
166 address fast_entry = __ pc();
186 speculative_load_pclist[count] = __ pc();
207 slowcase_entry_pclist[count++] = __ pc();
H A Dinterpreter_x86_64.cpp57 address entry = __ pc();
136 address entry = __ pc();
211 address entry_point = __ pc();
309 address entry_point = __ pc();
338 address entry_point = __ pc();
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.inline.hpp56 _pc = zero_sharkframe()->pc();
57 _cb = CodeCache::find_blob_unsafe(pc());
/openjdk7/jdk/test/sun/security/pkcs11/Provider/
H A DLogin.java116 PasswordCallback pc = (PasswordCallback)callbacks[0];
117 pc.setPassword(Login.password);
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.hpp55 MallocCallsitePointer(address pc) : MemPointer(pc) { argument
95 VMCallsitePointer(address pc) : MemPointer(pc) { argument
430 void print_malloc_callsite(outputStream* st, address pc, size_t size,
433 void print_vm_callsite(outputStream* st, address pc, size_t rsz,
H A DmemBaseline.cpp211 // sort into callsite pc order. Details are aggregated by callsites
220 if (malloc_callsite.addr() != malloc_ptr->pc()) {
227 malloc_callsite = MallocCallsitePointer(malloc_ptr->pc());
295 reserved_rec->pc() != vm_ptr->pc()) {
309 vm_callsite = VMCallsitePointer(vm_ptr->pc());
319 committed_rec->pc() != vm_ptr->pc()) {
336 // sort it into callsite pc order. Details are aggregated by callsites
339 // walk the array to consolidate record by pc
[all...]
H A DmemSnapshot.cpp63 address pc = ((MemPointerRecordEx*)rec)->pc(); local
64 if (pc != NULL && os::dll_address_to_function_name(pc, buf, sizeof(buf), NULL)) {
67 tty->print_cr("\tcould not decode pc = " PTR_FORMAT "", pc);
85 address pc = ((VMMemRegionEx*)rec)->pc(); local
86 if (pc != NULL && os::dll_address_to_function_name(pc, bu
325 address pc = (MemTracker::track_callsite() ? ((VMMemRegionEx*)rgn)->pc() : NULL); local
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DUnresolvedPermission.java250 Class pc = p.getClass();
254 Constructor c = pc.getConstructor(PARAMS0);
258 Constructor c = pc.getConstructor(PARAMS1);
262 Constructor c = pc.getConstructor(PARAMS2);
270 Constructor c = pc.getConstructor(PARAMS1);
274 Constructor c = pc.getConstructor(PARAMS2);
279 Constructor c = pc.getConstructor(PARAMS2);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DThreadListPanel.java64 private Address pc; field in class:ThreadListPanel.ThreadInfo
75 pc = fr.pc();
76 PCFinder.Info info = PCFinder.findPC(pc, fr.loadObjectForPC(), dbg);
95 public Address getPC() { return pc; }
/openjdk7/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/
H A DOptionTest.java253 PasswordCallback pc = (PasswordCallback) callbacks[i];
256 if (pc.getPrompt().startsWith("Keystore password: ")) {
257 pc.setPassword(OptionTest.STORE_PASS);
258 } else if (pc.getPrompt().startsWith("Private key")) {
259 pc.setPassword(OptionTest.KEY_PASS);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp400 address pc = method()->code_base() + branch_bci; local
401 Bytecodes::Code branch = Bytecodes::code_at(method(), pc);
411 offset = (int16_t)Bytes::get_Java_u2(pc + 1);
414 offset = Bytes::get_Java_u4(pc + 1);
457 JRT_ENTRY_NO_ASYNC(static address, exception_handler_for_pc_helper(JavaThread* thread, oopDesc* ex, address pc, nmethod*& nm))
462 nm = CodeCache::find_nmethod(pc);
464 // Adjust the pc as needed/
465 if (nm->is_deopt_pc(pc)) {
468 // if the frame isn't deopted then pc must not correspond to the caller of last_frame
470 pc
579 address pc = thread->exception_pc(); local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp137 // This returns the pc that if you were in the debugger you'd see. Not
146 if (nm->is_method_handle_return(pc()))
151 return (pc() - pc_return_offset);
155 // Change the pc in a frame object. This does not change the actual pc in
165 // Unsafe to use the is_deoptimzed tester after changing pc
243 return !nm->is_at_poll_return(pc());
253 return !nm->is_at_poll_return(pc());
279 // native - register window pc patching race
318 address deopt = nm->is_method_handle_return(pc())
643 print_C_frame(outputStream* st, char* buf, int buflen, address pc) argument
[all...]
H A Dfprofiler.cpp137 static int index_for(address pc) { return (pc - base)/bucket_size; } argument
143 static address bucket_start_for(address pc) { argument
145 return pc_for(index_for(pc));
147 static int bucket_count_for(address pc) { return counters[index_for(pc)]; } argument
149 static void record(address pc);
167 void PCRecorder::record(address pc) { argument
169 assert(CodeCache::contains(pc), "must be in CodeCache");
170 counters[index_for(pc)]
174 bucket_start_for(address pc) argument
178 bucket_count_for(address pc) argument
202 address pc = pc_for(index); local
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/linux_sparc/
H A DLinuxSPARCJavaThreadPDAccess.java102 // its windows and give us the pc (or the younger_sp so we can find it ourselves)
129 Address pc = context.getRegisterAsAddress(SPARCThreadContext.R_PC);
131 if ((sp == null) || (pc == null)) {
136 return new SPARCFrame(sp, pc);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_amd64/
H A DSolarisAMD64JavaThreadPDAccess.java86 Address pc = thread.getLastJavaPC();
87 if ( pc != null ) {
88 return new X86Frame(thread.getLastJavaSP(), fp, pc);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_sparc/
H A DSolarisSPARCJavaThreadPDAccess.java103 // its windows and give us the pc (or the younger_sp so we can find it ourselves)
137 Address pc = context.getRegisterAsAddress(SPARCThreadContext.R_PC);
139 if ((sp == null) || (pc == null)) {
144 return new SPARCFrame(sp, pc);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_x86/
H A DSolarisX86JavaThreadPDAccess.java88 Address pc = thread.getLastJavaPC();
89 if ( pc != null ) {
90 return new X86Frame(thread.getLastJavaSP(), fp, pc);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_amd64/
H A DWin32AMD64JavaThreadPDAccess.java87 Address pc = thread.getLastJavaPC();
88 if ( pc != null ) {
89 return new X86Frame(thread.getLastJavaSP(), fp, pc);

Completed in 112 milliseconds

1234567891011>>