< prev index next >

src/hotspot/share/gc/serial/vmStructs_serial.hpp

Print this page




  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_GC_SERIAL_VMSTRUCTS_HPP
  26 #define SHARE_GC_SERIAL_VMSTRUCTS_HPP
  27 
  28 #include "gc/serial/serialHeap.hpp"
  29 #include "gc/serial/tenuredGeneration.hpp"
  30 
  31 #define VM_STRUCTS_SERIALGC(nonstatic_field,                                  \
  32                             volatile_nonstatic_field,                         \
  33                             static_field)                                     \
  34   nonstatic_field(TenuredGeneration, _min_heap_delta_bytes, size_t)           \
  35   nonstatic_field(TenuredGeneration, _the_space,            ContiguousSpace*)







  36 
  37 #define VM_TYPES_SERIALGC(declare_type,                                       \
  38                           declare_toplevel_type,                              \
  39                           declare_integer_type)                               \
  40   declare_type(SerialHeap,                   GenCollectedHeap)                \
  41   declare_type(TenuredGeneration,            CardGeneration)                  \
  42   declare_type(TenuredSpace,                 OffsetTableContigSpace)          \


  43                                                                               \
  44   declare_toplevel_type(TenuredGeneration*)
  45 
  46 #define VM_INT_CONSTANTS_SERIALGC(declare_constant,                           \
  47                                   declare_constant_with_value)
  48 
  49 #endif // SHARE_GC_SERIAL_VMSTRUCTS_SERIAL_HPP


  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_GC_SERIAL_VMSTRUCTS_HPP
  26 #define SHARE_GC_SERIAL_VMSTRUCTS_HPP
  27 
  28 #include "gc/serial/serialHeap.hpp"
  29 #include "gc/serial/tenuredGeneration.hpp"
  30 
  31 #define VM_STRUCTS_SERIALGC(nonstatic_field,                                  \
  32                             volatile_nonstatic_field,                         \
  33                             static_field)                                     \
  34   nonstatic_field(TenuredGeneration, _min_heap_delta_bytes, size_t)           \
  35   nonstatic_field(TenuredGeneration, _the_space,            ContiguousSpace*) \
  36                                                                               \
  37   nonstatic_field(DefNewGeneration,  _old_gen,              Generation*)      \
  38   nonstatic_field(DefNewGeneration,  _tenuring_threshold,   uint)             \
  39   nonstatic_field(DefNewGeneration,  _age_table,            AgeTable)         \
  40   nonstatic_field(DefNewGeneration,  _eden_space,           ContiguousSpace*) \
  41   nonstatic_field(DefNewGeneration,  _from_space,           ContiguousSpace*) \
  42   nonstatic_field(DefNewGeneration,  _to_space,             ContiguousSpace*)
  43 
  44 #define VM_TYPES_SERIALGC(declare_type,                                       \
  45                           declare_toplevel_type,                              \
  46                           declare_integer_type)                               \
  47   declare_type(SerialHeap,                   GenCollectedHeap)                \
  48   declare_type(TenuredGeneration,            CardGeneration)                  \
  49   declare_type(TenuredSpace,                 OffsetTableContigSpace)          \
  50                                                                               \
  51   declare_type(DefNewGeneration,             Generation)                      \
  52                                                                               \
  53   declare_toplevel_type(TenuredGeneration*)
  54 
  55 #define VM_INT_CONSTANTS_SERIALGC(declare_constant,                           \
  56                                   declare_constant_with_value)
  57 
  58 #endif // SHARE_GC_SERIAL_VMSTRUCTS_SERIAL_HPP
< prev index next >