Searched refs:pc (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/runtime/
H A DextendedPC.hpp36 address pc() const { return _pc; } function in class:VALUE_OBJ_CLASS_SPEC
37 ExtendedPC(address pc) { _pc = pc; } argument
/openjdk7/jdk/test/java/rmi/server/Unmarshal/
H A DPrimitiveClasses.java40 Class pc = primClasses[i];
41 if (new MarshalledObject(pc).get() != pc) {
/openjdk7/jdk/test/java/security/PermissionCollection/
H A DAddToReadOnlyPermissionCollection.java78 PermissionCollection pc = p0.newPermissionCollection();
79 pc.setReadOnly(); // this should lock out future adds
82 pc.add(p1);
94 PermissionCollection pc = p0.newPermissionCollection();
95 pc.setReadOnly(); // this should lock out future adds
98 pc.add(p1);
111 PermissionCollection pc = p0.newPermissionCollection();
112 pc.setReadOnly(); // this should lock out future adds
115 pc.add(p1);
127 PermissionCollection pc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcCFrame.java32 public Address pc() { method in class:ProcCFrame
33 return pc;
46 // symbol lookup for pc for performance reasons.
47 return procDbg.lookup(procDbg.getAddressValue(pc));
52 ProcCFrame(ProcDebugger dbg, Address pc, Address fp) { argument
54 this.pc = pc;
63 private Address pc; field in class:ProcCFrame
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DLoadObject.java51 public BlockSym debugInfoForPC(Address pc) throws DebuggerException; argument
57 public ClosestSymbol closestSymbolToPC(Address pc) throws DebuggerException; argument
64 public LineNumberInfo lineNumberForPC(Address pc) throws DebuggerException; argument
H A DCDebugInfoDataBase.java47 public BlockSym debugInfoForPC(Address pc); argument
59 public LineNumberInfo lineNumberForPC(Address pc) throws DebuggerException; argument
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java39 protected int pc; // location of this instruction field in class:Instruction
41 protected int w; // 0 if normal, 1 if a _wide prefix at pc
46 protected Instruction(byte[] bytes, int pc, int bc, int w, int length) { argument
47 reset(bytes, pc, bc, w, length);
49 private void reset(byte[] bytes, int pc, int bc, int w, int length) { argument
51 this.pc = pc;
67 return pc;
73 return pc + length;
77 int npc = pc
100 at(byte[] bytes, int pc) argument
104 at(byte[] bytes, int pc, Instruction reuse) argument
247 Switch(byte[] bytes, int pc, int bc) argument
291 TableSwitch(byte[] bytes, int pc) argument
312 LookupSwitch(byte[] bytes, int pc) argument
348 labstr(int pc) argument
397 getInt(byte[] bytes, int pc) argument
400 getShort(byte[] bytes, int pc) argument
403 getByte(byte[] bytes, int pc) argument
408 setInt(byte[] bytes, int pc, int x) argument
412 setShort(byte[] bytes, int pc, int x) argument
416 setByte(byte[] bytes, int pc, int x) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjniFastGetField.cpp32 address JNI_FastGetField::find_slowcase_pc(address pc) { argument
34 if (speculative_load_pclist[i] == pc) {
/openjdk7/jdk/test/sun/security/provider/PolicyParser/
H A DAvoidPropertyExpansionExceptions.java39 PermissionCollection pc = p.getPermissions(
41 Enumeration e = pc.elements();
/openjdk7/jdk/test/java/security/BasicPermission/
H A DSerialVersion.java41 PermissionCollection pc = (PermissionCollection)ois.readObject();
42 System.out.println("1.2.1 collection = " + pc);
50 PermissionCollection pc = (PermissionCollection)ois.readObject();
51 System.out.println("1.3.1 collection = " + pc);
58 PermissionCollection pc = (PermissionCollection)ois.readObject();
59 System.out.println("1.4 collection = " + pc);
74 PermissionCollection pc = (PermissionCollection)ois.readObject();
75 System.out.println("current collection = " + pc);
H A DPermClass.java60 PermissionCollection pc = (PermissionCollection) ois.readObject();
61 System.out.println("1.2.1 collection = " + pc);
63 if (pc.implies(mp)) {
74 PermissionCollection pc = (PermissionCollection)ois.readObject();
75 System.out.println("1.3.1 collection = " + pc);
77 if (pc.implies(mp)) {
88 PermissionCollection pc = (PermissionCollection)ois.readObject();
89 System.out.println("1.4 collection = " + pc);
91 if (pc.implies(mp)) {
110 PermissionCollection pc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicDebugEvent.java33 private Address pc; field in class:BasicDebugEvent
45 public Address getPC() { return pc; }
53 public void setPC(Address pc) { this.pc = pc; } argument
67 public static BasicDebugEvent newBreakpointEvent(ThreadProxy thread, Address pc) { argument
68 return newPCEvent(DebugEvent.Type.BREAKPOINT, thread, pc);
71 public static BasicDebugEvent newSingleStepEvent(ThreadProxy thread, Address pc) { argument
72 return newPCEvent(DebugEvent.Type.BREAKPOINT, thread, pc);
76 Address pc,
75 newAccessViolationEvent(ThreadProxy thread, Address pc, boolean wasWrite, Address addr) argument
101 newPCEvent(DebugEvent.Type type, ThreadProxy thread, Address pc) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/x86/
H A DBsdX86CFrame.java35 public BsdX86CFrame(BsdDebugger dbg, Address ebp, Address pc) { argument
38 this.pc = pc;
45 return dbg.lookup(dbg.getAddressValue(pc()));
48 public Address pc() { method in class:BsdX86CFrame
49 return pc;
76 private Address pc; field in class:BsdX86CFrame
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/sparc/
H A DLinuxSPARCCFrame.java36 public LinuxSPARCCFrame(LinuxDebugger dbg, Address sp, Address pc, int address_size) { argument
39 this.pc = pc;
49 return dbg.lookup(dbg.getAddressValue(pc()));
52 public Address pc() { method in class:LinuxSPARCCFrame
53 return pc;
78 private Address pc; field in class:LinuxSPARCCFrame
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/x86/
H A DLinuxX86CFrame.java35 public LinuxX86CFrame(LinuxDebugger dbg, Address ebp, Address pc) { argument
38 this.pc = pc;
45 return dbg.lookup(dbg.getAddressValue(pc()));
48 public Address pc() { method in class:LinuxX86CFrame
49 return pc;
81 private Address pc; field in class:LinuxX86CFrame
/openjdk7/jdk/src/share/classes/java/security/
H A DPermissions.java130 PermissionCollection pc;
133 pc = getPermissionCollection(permission, true);
134 pc.add(permission);
139 allPermission = pc;
180 PermissionCollection pc = getPermissionCollection(permission,
182 if (pc != null) {
183 return pc.implies(permission);
243 PermissionCollection pc = permsMap.get(c);
246 return pc;
247 } else if (pc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DInterpreter.java59 public boolean contains(Address pc) { argument
60 return getCode().contains(pc);
64 public InterpreterCodelet getCodeletContaining(Address pc) { argument
65 return (InterpreterCodelet) getCode().getStubContaining(pc);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_share_bsd.hpp30 void handle_unexpected_exception(Thread* thread, int sig, siginfo_t* info, address pc, address adjusted_pc);
H A Ddecoder_machO.hpp42 virtual bool decode(address pc, char* buf, int buflen, int* offset,
44 virtual bool decode(address pc, char* buf, int buflen, int* offset, argument
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_share_linux.hpp30 void handle_unexpected_exception(Thread* thread, int sig, siginfo_t* info, address pc, address adjusted_pc);
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DLocalVariableTableWriter.java53 public boolean match(LocalVariableTable_attribute.Entry entry, int pc) {
54 return (pc == entry.start_pc);
58 public boolean match(LocalVariableTable_attribute.Entry entry, int pc) {
59 return (pc == entry.start_pc + entry.length);
65 public abstract boolean match(LocalVariableTable_attribute.Entry entry, int pc); argument
98 int pc = instr.getPC();
99 writeLocalVariables(pc, NoteKind.END);
100 writeLocalVariables(pc, NoteKind.START);
105 int pc = codeAttr.code_length;
106 writeLocalVariables(pc, NoteKin
109 writeLocalVariables(int pc, NoteKind kind) argument
145 put(int pc, LocalVariableTable_attribute.Entry entry) argument
[all...]
H A DLocalVariableTypeTableWriter.java54 public boolean match(LocalVariableTypeTable_attribute.Entry entry, int pc) {
55 return (pc == entry.start_pc);
59 public boolean match(LocalVariableTypeTable_attribute.Entry entry, int pc) {
60 return (pc == entry.start_pc + entry.length);
66 public abstract boolean match(LocalVariableTypeTable_attribute.Entry entry, int pc); argument
99 int pc = instr.getPC();
100 writeLocalVariables(pc, NoteKind.END);
101 writeLocalVariables(pc, NoteKind.START);
106 int pc = codeAttr.code_length;
107 writeLocalVariables(pc, NoteKin
110 writeLocalVariables(int pc, NoteKind kind) argument
146 put(int pc, LocalVariableTypeTable_attribute.Entry entry) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/amd64/
H A DAMD64CurrentFrameGuess.java68 Address pc = context.getRegisterAsAddress(AMD64ThreadContext.RIP);
83 if (vm.isJavaPCDbg(pc)) {
95 setValues(sp, fp, pc);
98 if (vm.getInterpreter().contains(pc)) {
101 sp + ", fp = " + fp + ", pc = " + pc);
103 setValues(sp, fp, pc);
127 Frame frame = new X86Frame(curSP, null, pc);
135 System.out.println("CurrentFrameGuess: Choosing sp = " + curSP + ", pc = " + pc);
211 setValues(Address sp, Address fp, Address pc) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86CurrentFrameGuess.java67 Address pc = context.getRegisterAsAddress(X86ThreadContext.PC);
83 if (vm.isJavaPCDbg(pc)) {
95 setValues(sp, fp, pc);
98 if (vm.getInterpreter().contains(pc)) {
101 sp + ", fp = " + fp + ", pc = " + pc);
103 setValues(sp, fp, pc);
127 Frame frame = new X86Frame(curSP, null, pc);
135 System.out.println("CurrentFrameGuess: Choosing sp = " + curSP + ", pc = " + pc);
211 setValues(Address sp, Address fp, Address pc) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/amd64/
H A DAMD64CFrame.java36 private Address pc; field in class:AMD64CFrame
41 public AMD64CFrame(CDebugger dbg, Address rbp, Address pc) { argument
44 this.pc = pc;
66 public Address pc() { method in class:AMD64CFrame
67 return pc;

Completed in 91 milliseconds

1234567891011>>