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_PARALLEL_VMSTRUCTS_PARALLELGC_HPP
26#define SHARE_GC_PARALLEL_VMSTRUCTS_PARALLELGC_HPP
27
28#include "gc/parallel/asPSOldGen.hpp"
29#include "gc/parallel/asPSYoungGen.hpp"
30#include "gc/parallel/immutableSpace.hpp"
31#include "gc/parallel/mutableSpace.hpp"
32#include "gc/parallel/parallelScavengeHeap.hpp"
33#include "gc/parallel/psOldGen.hpp"
34#include "gc/parallel/psVirtualspace.hpp"
35#include "gc/parallel/psYoungGen.hpp"
36#include "gc/parallel/vmStructs_parallelgc.hpp"
37
38#define VM_STRUCTS_PARALLELGC(nonstatic_field, \
39 volatile_nonstatic_field, \
40 static_field) \
41 \
42 /**********************/ \
43 /* Parallel GC fields */ \
44 /**********************/ \
45 nonstatic_field(PSVirtualSpace, _alignment, const size_t) \
46 nonstatic_field(PSVirtualSpace, _reserved_low_addr, char*) \
47 nonstatic_field(PSVirtualSpace, _reserved_high_addr, char*) \
48 nonstatic_field(PSVirtualSpace, _committed_low_addr, char*) \
49 nonstatic_field(PSVirtualSpace, _committed_high_addr, char*) \
50 \
51 nonstatic_field(ImmutableSpace, _bottom, HeapWord*) \
52 nonstatic_field(ImmutableSpace, _end, HeapWord*) \
53 \
54 volatile_nonstatic_field(MutableSpace, _top, HeapWord*) \
55 \
56 nonstatic_field(PSYoungGen, _reserved, MemRegion) \
57 nonstatic_field(PSYoungGen, _virtual_space, PSVirtualSpace*) \
58 nonstatic_field(PSYoungGen, _eden_space, MutableSpace*) \
59 nonstatic_field(PSYoungGen, _from_space, MutableSpace*) \
60 nonstatic_field(PSYoungGen, _to_space, MutableSpace*) \
61 nonstatic_field(PSYoungGen, _init_gen_size, const size_t) \
62 nonstatic_field(PSYoungGen, _min_gen_size, const size_t) \
63 nonstatic_field(PSYoungGen, _max_gen_size, const size_t) \
64 \
65 nonstatic_field(PSOldGen, _reserved, MemRegion) \
66 nonstatic_field(PSOldGen, _virtual_space, PSVirtualSpace*) \
67 nonstatic_field(PSOldGen, _object_space, MutableSpace*) \
68 nonstatic_field(PSOldGen, _init_gen_size, const size_t) \
69 nonstatic_field(PSOldGen, _min_gen_size, const size_t) \
70 nonstatic_field(PSOldGen, _max_gen_size, const size_t) \
71 \
72 \
73 static_field(ParallelScavengeHeap, _young_gen, PSYoungGen*) \
74 static_field(ParallelScavengeHeap, _old_gen, PSOldGen*) \
75 \
76
77#define VM_TYPES_PARALLELGC(declare_type, \
78 declare_toplevel_type, \
79 declare_integer_type) \
80 \
81 \
82 /*****************************************/ \
83 /* Parallel GC - space, gen abstractions */ \
84 /*****************************************/ \
85 declare_type(ParallelScavengeHeap, CollectedHeap) \
86 \
87 declare_toplevel_type(PSVirtualSpace) \
88 declare_toplevel_type(ImmutableSpace) \
89 declare_type(MutableSpace, ImmutableSpace) \
90 declare_toplevel_type(PSYoungGen) \
91 declare_type(ASPSYoungGen, PSYoungGen) \
92 declare_toplevel_type(PSOldGen) \
93 declare_type(ASPSOldGen, PSOldGen) \
94 \
95 /*****************************/ \
96 /* Parallel GC pointer types */ \
97 /*****************************/ \
98 \
99 declare_toplevel_type(PSVirtualSpace*) \
100 declare_toplevel_type(ImmutableSpace*) \
101 declare_toplevel_type(MutableSpace*) \
102 declare_toplevel_type(PSYoungGen*) \
103 declare_toplevel_type(ASPSYoungGen*) \
104 declare_toplevel_type(PSOldGen*) \
105 declare_toplevel_type(ASPSOldGen*) \
106 declare_toplevel_type(ParallelScavengeHeap*)
107
108#define VM_INT_CONSTANTS_PARALLELGC(declare_constant, \
109 declare_constant_with_value)
110
111#endif // SHARE_GC_PARALLEL_VMSTRUCTS_PARALLELGC_HPP
112