Esempio n. 1
0
 public long getVtableIndex() {
   return vtableIndex.getValue(this);
 }
Esempio n. 2
0
 public long getInvocationCounter() {
   if (Assert.ASSERTS_ENABLED) {
     Assert.that(!VM.getVM().isCore(), "must not be used in core build");
   }
   return invocationCounter.getValue(this);
 }
Esempio n. 3
0
 public long getAccessFlags() {
   return accessFlags.getValue(this);
 }
Esempio n. 4
0
 public long getSizeOfParameters() {
   return sizeOfParameters.getValue(this);
 }
Esempio n. 5
0
 public long getMaxLocals() {
   return maxLocals.getValue(this);
 }
Esempio n. 6
0
 public long getMaxStack() {
   return maxStack.getValue(this);
 }
Esempio n. 7
0
 /** WARNING: this is in words, not useful in this system; use getObjectSize() instead */
 public long getMethodSize() {
   return methodSize.getValue(this);
 }