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