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

/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DBytes.java35 public Bytes(MachineDescription machDesc) { argument
36 swap = !machDesc.isBigEndian();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/
H A DHotSpotAgent.java65 private MachineDescription machDesc; field in class:HotSpotAgent
297 machDesc = null;
389 db = new HotSpotTypeDataBase(machDesc,
393 db = new HotSpotTypeDataBase(machDesc,
397 db = new HotSpotTypeDataBase(machDesc,
401 db = new HotSpotTypeDataBase(machDesc,
405 db = new HotSpotTypeDataBase(machDesc,
453 machDesc = debugger.getMachineDescription();
493 machDesc = new MachineDescriptionIntelX86();
502 machDesc
[all...]
H A DHotSpotTypeDataBase.java81 public HotSpotTypeDataBase(MachineDescription machDesc, argument
85 super(machDesc, vtblAccess);
/openjdk9/hotspot/src/jdk.hotspot.agent/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++) {
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java67 /** <P> machDesc may be null if it couldn't be determined yet; i.e.,
74 public ProcDebuggerLocal(MachineDescription machDesc, boolean useCache) { argument
75 this.machDesc = machDesc;
271 return machDesc;
279 public void setMachineDescription(MachineDescription machDesc) { argument
280 this.machDesc = machDesc;
281 setBigEndian(machDesc.isBigEndian());
282 utils = new DebuggerUtilities(machDesc
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicTypeDataBase.java49 private MachineDescription machDesc; field in class:BasicTypeDataBase
73 public BasicTypeDataBase(MachineDescription machDesc, VtblAccess vtblAccess) { argument
74 this.machDesc = machDesc;
151 return machDesc.getAddressSize();
355 return machDesc.cIntegerTypeMaxValue(sizeInBytes, isUnsigned);
359 return machDesc.cIntegerTypeMinValue(sizeInBytes, isUnsigned);
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebuggerLocal.java177 /** <P> machDesc may not be null. </P>
182 public LinuxDebuggerLocal(MachineDescription machDesc, argument
184 this.machDesc = machDesc;
185 utils = new DebuggerUtilities(machDesc.getAddressSize(),
186 machDesc.isBigEndian()) {
357 return addr + (2 * machDesc.getAddressSize());
403 return machDesc;
/openjdk9/hotspot/src/jdk.hotspot.agent/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;
343 return (int) machDesc.getAddressSize();
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java183 /** <P> machDesc may not be null. </P>
188 public BsdDebuggerLocal(MachineDescription machDesc, argument
190 this.machDesc = machDesc;
191 utils = new DebuggerUtilities(machDesc.getAddressSize(),
192 machDesc.isBigEndian()) {
366 return addr + (2 * machDesc.getAddressSize());
413 return machDesc;
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerClient.java54 machDesc = remoteDebugger.getMachineDescription();
55 utils = new DebuggerUtilities(machDesc.getAddressSize(), machDesc.isBigEndian());
297 public void setMachineDescription(MachineDescription machDesc) { argument
407 return machDesc;
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/
H A DDebuggerBase.java43 protected MachineDescription machDesc; field in class:DebuggerBase
180 if (machDesc != null) {
181 bigEndian = machDesc.isBigEndian();
462 return readCInteger(address, machDesc.getAddressSize(), true);
486 writeCInteger(address, machDesc.getAddressSize(), value);
491 if (machDesc == null) {

Completed in 175 milliseconds