コード例 #1
0
 public long minorVersion() {
   return minorVersion.getValue(this);
 }
コード例 #2
0
 public boolean getIsMarkedDependent() {
   return isMarkedDependent.getValue(this) != 0;
 }
コード例 #3
0
 public long getItableLen() {
   return itableLen.getValue(this);
 }
コード例 #4
0
 public long getStaticOopFieldSize() {
   return staticOopFieldSize.getValue(this);
 }
コード例 #5
0
 public long getNonstaticOopMapSize() {
   return nonstaticOopMapSize.getValue(this);
 }
コード例 #6
0
 public long getAllocSize() {
   return allocSize.getValue(this);
 }
コード例 #7
0
ファイル: Method.java プロジェクト: OS2World/LIB-JAVA-OpenJDK
 /** WARNING: this is in words, not useful in this system; use getObjectSize() instead */
 public long getMethodSize() {
   return methodSize.getValue(this);
 }
コード例 #8
0
ファイル: Method.java プロジェクト: OS2World/LIB-JAVA-OpenJDK
 public long getInvocationCounter() {
   if (Assert.ASSERTS_ENABLED) {
     Assert.that(!VM.getVM().isCore(), "must not be used in core build");
   }
   return invocationCounter.getValue(this);
 }
コード例 #9
0
 private int getInitStateAsInt() {
   return (int) initState.getValue(this);
 }
コード例 #10
0
ファイル: Method.java プロジェクト: OS2World/LIB-JAVA-OpenJDK
 public long getAccessFlags() {
   return accessFlags.getValue(this);
 }
コード例 #11
0
ファイル: Method.java プロジェクト: OS2World/LIB-JAVA-OpenJDK
 public long getVtableIndex() {
   return vtableIndex.getValue(this);
 }
コード例 #12
0
ファイル: Method.java プロジェクト: OS2World/LIB-JAVA-OpenJDK
 public long getSizeOfParameters() {
   return sizeOfParameters.getValue(this);
 }
コード例 #13
0
ファイル: Method.java プロジェクト: OS2World/LIB-JAVA-OpenJDK
 public long getMaxLocals() {
   return maxLocals.getValue(this);
 }
コード例 #14
0
ファイル: Method.java プロジェクト: OS2World/LIB-JAVA-OpenJDK
 public long getMaxStack() {
   return maxStack.getValue(this);
 }
コード例 #15
0
 public long getDimension() {
   return dimension.getValue(this);
 }
コード例 #16
0
 public long nofImplementors() {
   return nofImplementors.getValue(this);
 }
コード例 #17
0
 public long getVtableLen() {
   return vtableLen.getValue(this);
 }
コード例 #18
0
 public long getNonstaticFieldSize() {
   return nonstaticFieldSize.getValue(this);
 }
コード例 #19
0
 public int getLength() {
   return (int) length.getValue(this);
 }
コード例 #20
0
 public long getMaxLength() {
   return maxLength.getValue(this);
 }