Searched refs:pc (Results 26 - 50 of 299) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/x86/
H A DX86CFrame.java36 private Address pc; field in class:X86CFrame
41 public X86CFrame(CDebugger dbg, Address ebp, Address pc) { argument
44 this.pc = pc;
66 public Address pc() { method in class:X86CFrame
67 return pc;
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder.hpp46 // decode an pc address to corresponding function name and an offset from the beginning of
48 virtual bool decode(address pc, char* buf, int buflen, int* offset,
50 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0;
82 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument
87 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) { argument
103 static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL);
104 static bool decode(address pc, char* buf, int buflen, int* offset, const void* base);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgCDebugger.java55 public LoadObject loadObjectContainingPC(Address pc) throws DebuggerException { argument
58 if (pc == null) {
64 if (AddressOps.lte(obj.getBase(), pc) && (pc.minus(obj.getBase()) < obj.getSize())) {
76 Address pc = context.getRegisterAsAddress(X86ThreadContext.EIP);
77 if (pc == null) return null;
78 return new X86CFrame(this, ebp, pc);
83 Address pc = context.getRegisterAsAddress(AMD64ThreadContext.RIP);
84 if (pc == null) return null;
85 return new AMD64CFrame(this, rbp, pc);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DTryBlockWriter.java48 public boolean match(Exception_data entry, int pc) {
49 return (pc == entry.start_pc);
53 public boolean match(Exception_data entry, int pc) {
54 return (pc == entry.end_pc);
58 public boolean match(Exception_data entry, int pc) {
59 return (pc == entry.handler_pc);
65 public abstract boolean match(Exception_data entry, int pc); argument
102 int pc = instr.getPC();
103 List<Exception_data> entries = pcMap.get(pc);
110 if (kind.match(entry, pc)) {
129 put(int pc, Exception_data entry) argument
[all...]
H A DStackMapWriter.java102 // using -1 as the pc for the initial frame effectively compensates for
104 // pc offset is just offset_delta) compared to subsequent frames (where
105 // the pc offset is always offset_delta+1).
106 int pc = -1;
108 map.put(pc, new StackMap(initialLocals, empty));
111 pc = attr.entries[i].accept(builder, pc);
122 private void writeDetails(int pc) { argument
126 StackMap m = map.get(pc);
205 public Integer visit_same_frame(same_frame frame, Integer pc) { argument
213 visit_same_locals_1_stack_item_frame(same_locals_1_stack_item_frame frame, Integer pc) argument
222 visit_same_locals_1_stack_item_frame_extended(same_locals_1_stack_item_frame_extended frame, Integer pc) argument
231 visit_chop_frame(chop_frame frame, Integer pc) argument
243 visit_same_frame_extended(same_frame_extended frame, Integer pc) argument
251 visit_append_frame(append_frame frame, Integer pc) argument
263 visit_full_frame(full_frame frame, Integer pc) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdCDebugger.java52 public LoadObject loadObjectContainingPC(Address pc) throws DebuggerException { argument
53 if (pc == null) {
66 long cmp = pc.minus(midVal.getBase());
90 Address pc = context.getRegisterAsAddress(X86ThreadContext.EIP);
91 if (pc == null) return null;
92 return new BsdX86CFrame(dbg, ebp, pc);
97 Address pc = context.getRegisterAsAddress(AMD64ThreadContext.RIP);
98 if (pc == null) return null;
99 return new BsdAMD64CFrame(dbg, rbp, pc);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DPCFinder.java61 public static Info findPC(Address pc, LoadObject lo, CDebugger dbg) { argument
67 BlockSym sym = lo.debugInfoForPC(pc);
71 return new Info(sym.toString(), pc.minus(sym.getAddress()), HIGH_CONFIDENCE);
86 ClosestSymbol cs = lo.closestSymbolToPC(pc);
94 "! " + pc + "()", -1, HIGH_CONFIDENCE);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxCDebugger.java54 public LoadObject loadObjectContainingPC(Address pc) throws DebuggerException { argument
55 if (pc == null) {
68 long cmp = pc.minus(midVal.getBase());
92 Address pc = context.getRegisterAsAddress(X86ThreadContext.EIP);
93 if (pc == null) return null;
94 return new LinuxX86CFrame(dbg, ebp, pc);
99 Address pc = context.getRegisterAsAddress(AMD64ThreadContext.RIP);
100 if (pc == null) return null;
101 return new LinuxAMD64CFrame(dbg, rbp, pc);
106 Address pc
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DunhandledOops.hpp60 UnhandledOopEntry(oop* op, address pc) : argument
61 _oop_ptr(op), _ok_for_gc(false), _pc(pc) {}
78 void register_unhandled_oop(oop* op, address pc);
H A Dframe.inline.hpp79 return StubRoutines::returns_to_call_stub(pc());
83 return StubRoutines::is_stub_code(pc()) || (_cb != NULL && _cb->is_adapter_blob());
H A DstubCodeGenerator.hpp66 static StubCodeDesc* desc_for(address pc); // returns the code descriptor for the code containing pc or NULL
68 static const char* name_for(address pc); // returns the name of the code containing pc or NULL
87 bool contains(address pc) const { return _begin <= pc && pc < _end; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicLineNumberInfo.java59 public void setEndPC(Address pc) { endPC = pc; } argument
/openjdk7/hotspot/src/share/vm/oops/
H A DoopsHierarchy.cpp54 assert (fr.pc(), "should point to a vm frame");
55 t->unhandled_oops()->register_unhandled_oop(this, fr.pc());
/openjdk7/hotspot/src/cpu/zero/vm/
H A DjavaFrameAnchor_zero.hpp53 void set(intptr_t* sp, address pc, ZeroFrame* fp) { argument
66 _last_Java_pc = pc;
H A DcppInterpreterGenerator_zero.hpp36 ZeroEntry *entry = (ZeroEntry *) masm->pc();
/openjdk7/jdk/test/java/security/ProtectionDomain/
H A DCheckWhatYouGet.java51 PermissionCollection pc = pd.getPermissions();
52 Enumeration e = pc.elements();
/openjdk7/jdk/test/java/security/UnresolvedPermission/
H A DEquals.java41 PermissionCollection pc = Policy.getPolicy().getPermissions
44 for (Enumeration e = pc.elements(); e.hasMoreElements();) {
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DManagementFactory.java467 for (PlatformComponent pc : PlatformComponent.values()) {
469 pc.getMXBeans(pc.getMXBeanInterface());
474 // (returned by pc.getMXBeans()) might be also
643 PlatformComponent pc = PlatformComponent.getPlatformComponent(mxbeanInterface);
644 if (pc == null)
647 if (!pc.isSingleton())
651 return pc.getSingletonMXBean(mxbeanInterface);
677 PlatformComponent pc = PlatformComponent.getPlatformComponent(mxbeanInterface);
678 if (pc
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DPolicy.java212 final String pc = policy_class;
226 pc, true, extcl).newInstance() : null);
230 pc +
657 PermissionCollection pc = null;
667 pc = pdMapping.get(domain.key);
670 if (pc != null) {
672 synchronized (pc) {
673 for (Enumeration<Permission> e = pc.elements() ; e.hasMoreElements() ;) {
680 pc = getPermissions(domain.getCodeSource());
681 if (pc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DCFrame.java40 public Address pc(); method in interface:CFrame
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.inline.hpp50 char* pc = (char*)p; local
51 assert(pc >= (char*)_reserved.start() &&
52 pc < (char*)_reserved.end(),
54 size_t delta = pointer_delta(pc, _reserved.start(), sizeof(char));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Ddebug_sparc.cpp42 intptr_t *pc = NULL; local
47 pc = next_pc;
49 tty->print("[%d] sp=%#x pc=", count, sp);
50 findpc((intptr_t)pc);
61 CodeBlob *b = CodeCache::find_blob((address) pc);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_share_solaris.hpp35 void handle_unexpected_exception(Thread* thread, int sig, siginfo_t* info, address pc, address adjusted_pc);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaSecurityProtectionDomainAccess.java32 void put(ProtectionDomain pd, PermissionCollection pc); argument
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dthread_solaris_sparc.cpp75 if (addr.pc() == NULL || ret_sp == NULL) {
80 frame ret_frame(ret_sp, frame::unpatchable, addr.pc());
98 // a real frame with a return pc and the succeeding save's are used to
99 // simply get free registers and have no real pc then the pc linkage on these
105 frame unwind_frame(ret_frame.fp(), frame::unpatchable, addr.pc());
124 frame ret_frame2(ret_sp, frame::unpatchable, addr.pc());
144 frame ret_frame(jt->last_Java_sp(), frame::unpatchable, addr.pc());

Completed in 302 milliseconds

1234567891011>>