Example #1
0
 public long getVtableIndex() {
   return vtableIndex.getValue(this);
 }
Example #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);
 }
Example #3
0
 public long getAccessFlags() {
   return accessFlags.getValue(this);
 }
Example #4
0
 public long getSizeOfParameters() {
   return sizeOfParameters.getValue(this);
 }
Example #5
0
 public long getMaxLocals() {
   return maxLocals.getValue(this);
 }
Example #6
0
 public long getMaxStack() {
   return maxStack.getValue(this);
 }
Example #7
0
 /** WARNING: this is in words, not useful in this system; use getObjectSize() instead */
 public long getMethodSize() {
   return methodSize.getValue(this);
 }