< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/z/ZGlobals.java

Print this page

        

*** 52,61 **** --- 52,62 ---- public static long ZAddressOffsetShift; // Pointer part of address public static long ZAddressOffsetBits; public static long ZAddressOffsetMask; + public static long ZAddressOffsetMax; // Address space start/end/size public static long ZAddressSpaceStart; static {
*** 82,91 **** --- 83,93 ---- ZAddressOffsetShift = db.lookupLongConstant("ZAddressOffsetShift").longValue(); ZAddressOffsetBits = db.lookupLongConstant("ZAddressOffsetBits").longValue(); ZAddressOffsetMask = db.lookupLongConstant("ZAddressOffsetMask").longValue(); + ZAddressOffsetMax = db.lookupLongConstant("ZAddressOffsetMax").longValue(); ZAddressSpaceStart = db.lookupLongConstant("ZAddressSpaceStart").longValue(); } private static ZGlobalsForVMStructs instance() {
*** 94,103 **** --- 96,109 ---- public static int ZGlobalPhase() { return instance().ZGlobalPhase(); } + public static int ZGlobalSeqNum() { + return instance().ZGlobalSeqNum(); + } + public static long ZAddressGoodMask() { return instance().ZAddressGoodMask(); } public static long ZAddressBadMask() {
< prev index next >