1/*
2 * Copyright (c) 2007, 2019, 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_GC_SERIAL_VMSTRUCTS_SERIAL_HPP
26#define SHARE_GC_SERIAL_VMSTRUCTS_SERIAL_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
59