Searched refs:machDesc (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DBytes.java34 public Bytes(MachineDescription machDesc) { argument
35 swap = !machDesc.isBigEndian();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotAgent.java56 private MachineDescription machDesc; field in class:HotSpotAgent
304 machDesc = null;
385 db = new HotSpotTypeDataBase(machDesc,
389 db = new HotSpotTypeDataBase(machDesc,
393 db = new HotSpotTypeDataBase(machDesc,
397 db = new HotSpotTypeDataBase(machDesc,
450 machDesc = new MachineDescriptionIntelX86();
459 machDesc = new MachineDescriptionSPARC32Bit();
461 machDesc = new MachineDescriptionSPARC64Bit();
466 machDesc
[all...]
H A DHotSpotTypeDataBase.java77 public HotSpotTypeDataBase(MachineDescription machDesc, argument
81 super(machDesc, vtblAccess);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpotAgent.java71 private MachineDescription machDesc; field in class:BugSpotAgent
483 machDesc = null;
563 db = new HotSpotTypeDataBase(machDesc, new HotSpotSolarisVtblAccess(debugger, jvmLibNames),
566 db = new HotSpotTypeDataBase(machDesc, new Win32VtblAccess(debugger, jvmLibNames),
569 db = new HotSpotTypeDataBase(machDesc, new LinuxVtblAccess(debugger, jvmLibNames),
572 db = new HotSpotTypeDataBase(machDesc, new BsdVtblAccess(debugger, jvmLibNames),
640 machDesc = new MachineDescriptionIntelX86();
648 machDesc = new MachineDescriptionSPARC32Bit();
650 machDesc = new MachineDescriptionSPARC64Bit();
655 machDesc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyDebugger.java35 private MachineDescription machDesc; field in class:DummyDebugger
37 public DummyDebugger(MachineDescription machDesc) { argument
38 this.machDesc = machDesc;
88 return machDesc;
147 for (int i = 0; i < ((2 * machDesc.getAddressSize()) - val.length()); i++) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java63 /** <P> machDesc may be null if it couldn't be determined yet; i.e.,
70 public ProcDebuggerLocal(MachineDescription machDesc, boolean useCache) { argument
71 this.machDesc = machDesc;
259 return machDesc;
267 public void setMachineDescription(MachineDescription machDesc) { argument
268 this.machDesc = machDesc;
269 setBigEndian(machDesc.isBigEndian());
270 utils = new DebuggerUtilities(machDesc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicTypeDataBase.java44 private MachineDescription machDesc; field in class:BasicTypeDataBase
68 public BasicTypeDataBase(MachineDescription machDesc, VtblAccess vtblAccess) { argument
69 this.machDesc = machDesc;
146 return machDesc.getAddressSize();
350 return machDesc.cIntegerTypeMaxValue(sizeInBytes, isUnsigned);
354 return machDesc.cIntegerTypeMinValue(sizeInBytes, isUnsigned);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java168 /** <P> machDesc may not be null. </P>
173 public BsdDebuggerLocal(MachineDescription machDesc, argument
175 this.machDesc = machDesc;
176 utils = new DebuggerUtilities(machDesc.getAddressSize(),
177 machDesc.isBigEndian()) {
349 return addr + (2 * machDesc.getAddressSize());
395 return machDesc;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebuggerLocal.java166 /** <P> machDesc may not be null. </P>
171 public LinuxDebuggerLocal(MachineDescription machDesc, argument
173 this.machDesc = machDesc;
174 utils = new DebuggerUtilities(machDesc.getAddressSize(),
175 machDesc.isBigEndian()) {
347 return addr + (2 * machDesc.getAddressSize());
393 return machDesc;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebuggerLocal.java90 /** <P> machDesc may not be null. </P>
95 public WindbgDebuggerLocal(MachineDescription machDesc, argument
97 this.machDesc = machDesc;
98 utils = new DebuggerUtilities(machDesc.getAddressSize(), machDesc.isBigEndian()) {
264 return machDesc;
338 return (int) machDesc.getAddressSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerClient.java53 machDesc = remoteDebugger.getMachineDescription();
54 utils = new DebuggerUtilities(machDesc.getAddressSize(), machDesc.isBigEndian());
288 public void setMachineDescription(MachineDescription machDesc) { argument
392 return machDesc;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebuggerBase.java43 protected MachineDescription machDesc; field in class:DebuggerBase
172 if (machDesc != null) {
173 bigEndian = machDesc.isBigEndian();
454 return readCInteger(address, machDesc.getAddressSize(), true);
469 writeCInteger(address, machDesc.getAddressSize(), value);
474 if (machDesc == null) {

Completed in 57 milliseconds