final int offset = addr.toWord().sub(start.toWord()).toInt();
int bit = offset / ObjectLayout.OBJECT_ALIGN;
final Offset idx = Offset.fromIntZeroExtend(bit / 8);
final int mask = 1 << (bit & 7);
final Address bitmapPtr = this.allocationBitmapPtr;
final int value = bitmapPtr.loadByte(idx);
return ((value & mask) == mask);
}
/**
* Is the given address an address within this heap.