src/hotspot/share/gc/z/vmStructs_z.hpp
changeset 50525 767cdb97f103
child 50875 2217b2fc29ea
equal deleted inserted replaced
50524:04f4e983c2f7 50525:767cdb97f103
       
     1 /*
       
     2  * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.
       
     8  *
       
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    12  * version 2 for more details (a copy is included in the LICENSE file that
       
    13  * accompanied this code).
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License version
       
    16  * 2 along with this work; if not, write to the Free Software Foundation,
       
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    18  *
       
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    20  * or visit www.oracle.com if you need additional information or have any
       
    21  * questions.
       
    22  *
       
    23  */
       
    24 
       
    25 #ifndef SHARE_VM_GC_Z_VMSTRUCTS_Z_HPP
       
    26 #define SHARE_VM_GC_Z_VMSTRUCTS_Z_HPP
       
    27 
       
    28 #include "gc/z/zAddressRangeMap.hpp"
       
    29 #include "gc/z/zCollectedHeap.hpp"
       
    30 #include "gc/z/zHeap.hpp"
       
    31 #include "gc/z/zPageAllocator.hpp"
       
    32 #include "gc/z/zPhysicalMemory.hpp"
       
    33 #include "utilities/macros.hpp"
       
    34 
       
    35 // Expose some ZGC globals to the SA agent.
       
    36 class ZGlobalsForVMStructs {
       
    37   static ZGlobalsForVMStructs _instance;
       
    38 
       
    39 public:
       
    40   static ZGlobalsForVMStructs* _instance_p;
       
    41 
       
    42   ZGlobalsForVMStructs();
       
    43 
       
    44   uint32_t* _ZGlobalPhase;
       
    45 
       
    46   uintptr_t* _ZAddressGoodMask;
       
    47   uintptr_t* _ZAddressBadMask;
       
    48   uintptr_t* _ZAddressWeakBadMask;
       
    49 
       
    50   const int* _ZObjectAlignmentSmallShift;
       
    51   const int* _ZObjectAlignmentSmall;
       
    52 };
       
    53 
       
    54 typedef ZAddressRangeMap<ZPageTableEntry, ZPageSizeMinShift> ZAddressRangeMapForPageTable;
       
    55 
       
    56 #define VM_STRUCTS_ZGC(nonstatic_field, volatile_nonstatic_field, static_field)                      \
       
    57   static_field(ZGlobalsForVMStructs,            _instance_p,          ZGlobalsForVMStructs*)         \
       
    58   nonstatic_field(ZGlobalsForVMStructs,         _ZGlobalPhase,        uint32_t*)                     \
       
    59   nonstatic_field(ZGlobalsForVMStructs,         _ZAddressGoodMask,    uintptr_t*)                    \
       
    60   nonstatic_field(ZGlobalsForVMStructs,         _ZAddressBadMask,     uintptr_t*)                    \
       
    61   nonstatic_field(ZGlobalsForVMStructs,         _ZAddressWeakBadMask, uintptr_t*)                    \
       
    62   nonstatic_field(ZGlobalsForVMStructs,         _ZObjectAlignmentSmallShift, const int*)             \
       
    63   nonstatic_field(ZGlobalsForVMStructs,         _ZObjectAlignmentSmall, const int*)                  \
       
    64                                                                                                      \
       
    65   nonstatic_field(ZCollectedHeap,               _heap,                ZHeap)                         \
       
    66                                                                                                      \
       
    67   nonstatic_field(ZHeap,                        _page_allocator,      ZPageAllocator)                \
       
    68   nonstatic_field(ZHeap,                        _pagetable,           ZPageTable)                    \
       
    69                                                                                                      \
       
    70   nonstatic_field(ZPage,                        _type,                const uint8_t)                 \
       
    71   nonstatic_field(ZPage,                        _virtual,             const ZVirtualMemory)          \
       
    72   nonstatic_field(ZPage,                        _forwarding,          ZForwardingTable)              \
       
    73                                                                                                      \
       
    74   nonstatic_field(ZPageAllocator,               _physical,            ZPhysicalMemoryManager)        \
       
    75   nonstatic_field(ZPageAllocator,               _used,                size_t)                        \
       
    76                                                                                                      \
       
    77   nonstatic_field(ZPageTable,                   _map,                 ZAddressRangeMapForPageTable)  \
       
    78                                                                                                      \
       
    79   nonstatic_field(ZAddressRangeMapForPageTable, _map,                 ZPageTableEntry* const)        \
       
    80                                                                                                      \
       
    81   nonstatic_field(ZVirtualMemory,                _start,              uintptr_t)                     \
       
    82   nonstatic_field(ZVirtualMemory,                _end,                uintptr_t)                     \
       
    83                                                                                                      \
       
    84   nonstatic_field(ZForwardingTable,              _table,              ZForwardingTableEntry*)        \
       
    85   nonstatic_field(ZForwardingTable,              _size,               size_t)                        \
       
    86                                                                                                      \
       
    87   nonstatic_field(ZPhysicalMemoryManager,        _max_capacity,       const size_t)                  \
       
    88   nonstatic_field(ZPhysicalMemoryManager,        _capacity,           size_t)
       
    89 
       
    90 #define VM_INT_CONSTANTS_ZGC(declare_constant, declare_constant_with_value)                          \
       
    91   declare_constant(ZPhaseRelocate)                                                                   \
       
    92   declare_constant(ZPageTypeSmall)                                                                   \
       
    93   declare_constant(ZPageTypeMedium)                                                                  \
       
    94   declare_constant(ZPageTypeLarge)                                                                   \
       
    95   declare_constant(ZObjectAlignmentMediumShift)                                                      \
       
    96   declare_constant(ZObjectAlignmentLargeShift)
       
    97 
       
    98 #define VM_LONG_CONSTANTS_ZGC(declare_constant)                                                      \
       
    99   declare_constant(ZPageSizeSmallShift)                                                              \
       
   100   declare_constant(ZPageSizeMediumShift)                                                             \
       
   101   declare_constant(ZPageSizeMinShift)                                                                \
       
   102   declare_constant(ZAddressOffsetShift)                                                              \
       
   103   declare_constant(ZAddressOffsetBits)                                                               \
       
   104   declare_constant(ZAddressOffsetMask)                                                               \
       
   105   declare_constant(ZAddressSpaceStart)
       
   106 
       
   107 #define VM_TYPES_ZGC(declare_type, declare_toplevel_type, declare_integer_type)                      \
       
   108   declare_toplevel_type(ZGlobalsForVMStructs)                                                        \
       
   109   declare_type(ZCollectedHeap, CollectedHeap)                                                        \
       
   110   declare_toplevel_type(ZHeap)                                                                       \
       
   111   declare_toplevel_type(ZPage)                                                                       \
       
   112   declare_toplevel_type(ZPageAllocator)                                                              \
       
   113   declare_toplevel_type(ZPageTable)                                                                  \
       
   114   declare_toplevel_type(ZPageTableEntry)                                                             \
       
   115   declare_toplevel_type(ZAddressRangeMapForPageTable)                                                \
       
   116   declare_toplevel_type(ZVirtualMemory)                                                              \
       
   117   declare_toplevel_type(ZForwardingTable)                                                            \
       
   118   declare_toplevel_type(ZForwardingTableEntry)                                                       \
       
   119   declare_toplevel_type(ZPhysicalMemoryManager)
       
   120 
       
   121 #endif // SHARE_VM_GC_Z_VMSTRUCTS_Z_HPP