public long minorVersion() {
   return minorVersion.getValue(this);
 }
 public boolean getIsMarkedDependent() {
   return isMarkedDependent.getValue(this) != 0;
 }
 public long getItableLen() {
   return itableLen.getValue(this);
 }
 public long getStaticOopFieldSize() {
   return staticOopFieldSize.getValue(this);
 }
 public long getNonstaticOopMapSize() {
   return nonstaticOopMapSize.getValue(this);
 }
Exemple #6
0
 public long getAllocSize() {
   return allocSize.getValue(this);
 }
 /** WARNING: this is in words, not useful in this system; use getObjectSize() instead */
 public long getMethodSize() {
   return methodSize.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);
 }
 private int getInitStateAsInt() {
   return (int) initState.getValue(this);
 }
Exemple #10
0
 public long getAccessFlags() {
   return accessFlags.getValue(this);
 }
Exemple #11
0
 public long getVtableIndex() {
   return vtableIndex.getValue(this);
 }
Exemple #12
0
 public long getSizeOfParameters() {
   return sizeOfParameters.getValue(this);
 }
Exemple #13
0
 public long getMaxLocals() {
   return maxLocals.getValue(this);
 }
Exemple #14
0
 public long getMaxStack() {
   return maxStack.getValue(this);
 }
Exemple #15
0
 public long getDimension() {
   return dimension.getValue(this);
 }
 public long nofImplementors() {
   return nofImplementors.getValue(this);
 }
Exemple #17
0
 public long getVtableLen() {
   return vtableLen.getValue(this);
 }
 public long getNonstaticFieldSize() {
   return nonstaticFieldSize.getValue(this);
 }
 public int getLength() {
   return (int) length.getValue(this);
 }
 public long getMaxLength() {
   return maxLength.getValue(this);
 }