< prev index next >

src/hotspot/share/gc/z/vmStructs_z.hpp

Print this page

        

*** 66,75 **** --- 66,77 ---- nonstatic_field(ZHeap, _page_allocator, ZPageAllocator) \ nonstatic_field(ZHeap, _pagetable, ZPageTable) \ \ nonstatic_field(ZPage, _type, const uint8_t) \ nonstatic_field(ZPage, _virtual, const ZVirtualMemory) \ + volatile_nonstatic_field(ZPage, _top, uintptr_t) \ + volatile_nonstatic_field(ZPage, _refcount, uint32_t) \ nonstatic_field(ZPage, _forwarding, ZForwardingTable) \ \ nonstatic_field(ZPageAllocator, _physical, ZPhysicalMemoryManager) \ nonstatic_field(ZPageAllocator, _used, size_t) \ \
*** 99,108 **** --- 101,111 ---- declare_constant(ZPageSizeMediumShift) \ declare_constant(ZPageSizeMinShift) \ declare_constant(ZAddressOffsetShift) \ declare_constant(ZAddressOffsetBits) \ declare_constant(ZAddressOffsetMask) \ + declare_constant(ZAddressOffsetMax) \ declare_constant(ZAddressSpaceStart) #define VM_TYPES_ZGC(declare_type, declare_toplevel_type, declare_integer_type) \ declare_toplevel_type(ZGlobalsForVMStructs) \ declare_type(ZCollectedHeap, CollectedHeap) \
< prev index next >