sun.jvm.hotspot.runtime.VMObject Java Examples
The following examples show how to use
sun.jvm.hotspot.runtime.VMObject.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: OopField.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
/** Debugging support */ public OopHandle getValueAsOopHandle(VMObject obj) { return obj.getAddress().getOopHandleAt(getOffset()); }
Example #2
Source File: OopField.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public Oop getValue(VMObject obj) { return VM.getVM().getObjectHeap().newOop(getValueAsOopHandle(obj)); }
Example #3
Source File: OopField.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
/** Debugging support */ public OopHandle getValueAsOopHandle(VMObject obj) { return obj.getAddress().getOopHandleAt(getOffset()); }
Example #4
Source File: OopField.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public Oop getValue(VMObject obj) { return VM.getVM().getObjectHeap().newOop(getValueAsOopHandle(obj)); }
Example #5
Source File: CIntField.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public long getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #6
Source File: IntField.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public int getValue(VMObject obj) { return obj.getAddress().getJIntAt(getOffset()); }
Example #7
Source File: MetadataField.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public Metadata getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #8
Source File: OopField.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public Oop getValue(VMObject obj) { return VM.getVM().getObjectHeap().newOop(getValueAsOopHandle(obj)); }
Example #9
Source File: CIntField.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public long getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #10
Source File: OopField.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
/** Debugging support */ public OopHandle getValueAsOopHandle(VMObject obj) { return obj.getAddress().getOopHandleAt(getOffset()); }
Example #11
Source File: IntField.java From hottub with GNU General Public License v2.0 | 4 votes |
public int getValue(VMObject obj) { return obj.getAddress().getJIntAt(getOffset()); }
Example #12
Source File: IntField.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public int getValue(VMObject obj) { return obj.getAddress().getJIntAt(getOffset()); }
Example #13
Source File: MetadataField.java From hottub with GNU General Public License v2.0 | 4 votes |
public Metadata getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #14
Source File: OopField.java From hottub with GNU General Public License v2.0 | 4 votes |
/** Debugging support */ public OopHandle getValueAsOopHandle(VMObject obj) { return obj.getAddress().getOopHandleAt(getOffset()); }
Example #15
Source File: OopField.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public Oop getValue(VMObject obj) { return VM.getVM().getObjectHeap().newOop(getValueAsOopHandle(obj)); }
Example #16
Source File: CIntField.java From hottub with GNU General Public License v2.0 | 4 votes |
public long getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #17
Source File: CIntField.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public long getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #18
Source File: MetadataField.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public Metadata getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #19
Source File: OopField.java From hottub with GNU General Public License v2.0 | 4 votes |
public Oop getValue(VMObject obj) { return VM.getVM().getObjectHeap().newOop(getValueAsOopHandle(obj)); }
Example #20
Source File: IntField.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public int getValue(VMObject obj) { return obj.getAddress().getJIntAt(getOffset()); }
Example #21
Source File: IntField.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public int getValue(VMObject obj) { return obj.getAddress().getJIntAt(getOffset()); }
Example #22
Source File: OopField.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** Debugging support */ public OopHandle getValueAsOopHandle(VMObject obj) { return obj.getAddress().getOopHandleAt(getOffset()); }
Example #23
Source File: OopField.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public Oop getValue(VMObject obj) { return VM.getVM().getObjectHeap().newOop(getValueAsOopHandle(obj)); }
Example #24
Source File: OopField.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** Debugging support */ public OopHandle getValueAsOopHandle(VMObject obj) { return obj.getAddress().getOopHandleAt(getOffset()); }
Example #25
Source File: CIntField.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public long getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #26
Source File: IntField.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public int getValue(VMObject obj) { return obj.getAddress().getJIntAt(getOffset()); }
Example #27
Source File: CIntField.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public long getValue(VMObject obj) { return getValue(obj.getAddress()); }
Example #28
Source File: IntField.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public int getValue(VMObject obj) { return obj.getAddress().getJIntAt(getOffset()); }
Example #29
Source File: OopField.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** Debugging support */ public OopHandle getValueAsOopHandle(VMObject obj) { return obj.getAddress().getOopHandleAt(getOffset()); }
Example #30
Source File: OopField.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public Oop getValue(VMObject obj) { return VM.getVM().getObjectHeap().newOop(getValueAsOopHandle(obj)); }