author | stefank |
Thu, 22 Feb 2018 18:36:07 +0100 | |
changeset 49047 | 8f004146e407 |
parent 47885 | 5caa1d5f74c1 |
child 49735 | b3c09ab95c1a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46415
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
35492
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1374
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP |
26 |
#define SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP |
|
7397 | 27 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
28 |
#include "utilities/macros.hpp" |
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
29 |
#if INCLUDE_ALL_GCS |
30764 | 30 |
#include "gc/g1/g1_specialized_oop_closures.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
31 |
#endif // INCLUDE_ALL_GCS |
7397 | 32 |
|
1 | 33 |
// The following OopClosure types get specialized versions of |
34 |
// "oop_oop_iterate" that invoke the closures' do_oop methods |
|
35 |
// non-virtually, using a mechanism defined in this file. Extend these |
|
36 |
// macros in the obvious way to add specializations for new closures. |
|
37 |
||
38 |
// Forward declarations. |
|
39 |
class OopClosure; |
|
40 |
class OopsInGenClosure; |
|
41 |
// DefNew |
|
42 |
class ScanClosure; |
|
43 |
class FastScanClosure; |
|
44 |
class FilteringClosure; |
|
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
45 |
// MarkSweep |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
46 |
class MarkAndPushClosure; |
46415
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
35492
diff
changeset
|
47 |
class AdjustPointerClosure; |
1 | 48 |
// ParNew |
49 |
class ParScanWithBarrierClosure; |
|
50 |
class ParScanWithoutBarrierClosure; |
|
51 |
// CMS |
|
52 |
class MarkRefsIntoAndScanClosure; |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
53 |
class ParMarkRefsIntoAndScanClosure; |
1 | 54 |
class PushAndMarkClosure; |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
55 |
class ParPushAndMarkClosure; |
1 | 56 |
class PushOrMarkClosure; |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
57 |
class ParPushOrMarkClosure; |
1 | 58 |
class CMSKeepAliveClosure; |
59 |
class CMSInnerParMarkAndPushClosure; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
60 |
// Misc |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
61 |
class NoHeaderExtendedOopClosure; |
1 | 62 |
|
63 |
// This macro applies an argument macro to all OopClosures for which we |
|
64 |
// want specialized bodies of "oop_oop_iterate". The arguments to "f" are: |
|
65 |
// "f(closureType, non_virtual)" |
|
29687 | 66 |
// where "closureType" is the name of the particular subclass of ExtendedOopClosure, |
1 | 67 |
// and "non_virtual" will be the string "_nv" if the closure type should |
68 |
// have its "do_oop" method invoked non-virtually, or else the |
|
29687 | 69 |
// string "_v". ("ExtendedOopClosure" itself will be the only class in the latter |
1 | 70 |
// category.) |
71 |
||
72 |
// This is split into several because of a Visual C++ 6.0 compiler bug |
|
73 |
// where very long macros cause the compiler to crash |
|
74 |
||
75 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \ |
|
76 |
f(ScanClosure,_nv) \ |
|
77 |
f(FastScanClosure,_nv) \ |
|
78 |
f(FilteringClosure,_nv) |
|
79 |
||
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
80 |
#if INCLUDE_ALL_GCS |
1 | 81 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f) \ |
82 |
f(ParScanWithBarrierClosure,_nv) \ |
|
83 |
f(ParScanWithoutBarrierClosure,_nv) |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
84 |
#else // INCLUDE_ALL_GCS |
1 | 85 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
86 |
#endif // INCLUDE_ALL_GCS |
1 | 87 |
|
88 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f) \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
89 |
f(NoHeaderExtendedOopClosure,_nv) \ |
1 | 90 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \ |
91 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f) |
|
92 |
||
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
93 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f) \ |
46415
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
35492
diff
changeset
|
94 |
f(MarkAndPushClosure,_nv) \ |
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
35492
diff
changeset
|
95 |
f(AdjustPointerClosure,_nv) |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
96 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
97 |
#if INCLUDE_ALL_GCS |
29688 | 98 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f) \ |
1 | 99 |
f(MarkRefsIntoAndScanClosure,_nv) \ |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
100 |
f(ParMarkRefsIntoAndScanClosure,_nv) \ |
1 | 101 |
f(PushAndMarkClosure,_nv) \ |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
102 |
f(ParPushAndMarkClosure,_nv) \ |
1 | 103 |
f(PushOrMarkClosure,_nv) \ |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
104 |
f(ParPushOrMarkClosure,_nv) \ |
1 | 105 |
f(CMSKeepAliveClosure,_nv) \ |
29688 | 106 |
f(CMSInnerParMarkAndPushClosure,_nv) |
107 |
#endif |
|
108 |
||
109 |
#if INCLUDE_ALL_GCS |
|
110 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f) \ |
|
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
111 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f) \ |
29688 | 112 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f) \ |
47885
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
113 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(f) \ |
5caa1d5f74c1
8186571: Implementation: JEP 307: Parallel Full GC for G1
sjohanss
parents:
47216
diff
changeset
|
114 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1FULL(f) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
115 |
#else // INCLUDE_ALL_GCS |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
116 |
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f) \ |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
30764
diff
changeset
|
117 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
118 |
#endif // INCLUDE_ALL_GCS |
1 | 119 |
|
1374 | 120 |
|
1 | 121 |
// We separate these out, because sometime the general one has |
122 |
// a different definition from the specialized ones, and sometimes it |
|
123 |
// doesn't. |
|
124 |
||
125 |
#define ALL_OOP_OOP_ITERATE_CLOSURES_1(f) \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
126 |
f(ExtendedOopClosure,_v) \ |
1 | 127 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f) |
128 |
||
1374 | 129 |
#define ALL_OOP_OOP_ITERATE_CLOSURES_2(f) \ |
130 |
SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f) |
|
1 | 131 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
132 |
#if INCLUDE_ALL_GCS |
1 | 133 |
// This macro applies an argument macro to all OopClosures for which we |
134 |
// want specialized bodies of a family of methods related to |
|
135 |
// "par_oop_iterate". The arguments to f are the same as above. |
|
136 |
// The "root_class" is the most general class to define; this may be |
|
137 |
// "OopClosure" in some applications and "OopsInGenClosure" in others. |
|
138 |
||
139 |
#define SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f) \ |
|
140 |
f(MarkRefsIntoAndScanClosure,_nv) \ |
|
141 |
f(PushAndMarkClosure,_nv) \ |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
142 |
f(ParMarkRefsIntoAndScanClosure,_nv) \ |
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
32606
diff
changeset
|
143 |
f(ParPushAndMarkClosure,_nv) |
1 | 144 |
|
145 |
#define ALL_PAR_OOP_ITERATE_CLOSURES(f) \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
146 |
f(ExtendedOopClosure,_v) \ |
1 | 147 |
SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
148 |
#endif // INCLUDE_ALL_GCS |
1 | 149 |
|
150 |
// This macro applies an argument macro to all OopClosures for which we |
|
151 |
// want specialized bodies of a family of methods related to |
|
152 |
// "oops_since_save_marks_do". The arguments to f are the same as above. |
|
153 |
// The "root_class" is the most general class to define; this may be |
|
154 |
// "OopClosure" in some applications and "OopsInGenClosure" in others. |
|
155 |
||
156 |
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \ |
|
157 |
f(ScanClosure,_nv) \ |
|
158 |
f(FastScanClosure,_nv) |
|
159 |
||
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
160 |
#if INCLUDE_ALL_GCS |
1 | 161 |
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f) \ |
162 |
f(ParScanWithBarrierClosure,_nv) \ |
|
29688 | 163 |
f(ParScanWithoutBarrierClosure,_nv) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
164 |
#else // INCLUDE_ALL_GCS |
1 | 165 |
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f) |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13952
diff
changeset
|
166 |
#endif // INCLUDE_ALL_GCS |
1 | 167 |
|
168 |
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f) \ |
|
169 |
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \ |
|
170 |
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f) |
|
171 |
||
172 |
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f) \ |
|
173 |
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f) |
|
174 |
||
175 |
// We separate these out, because sometime the general one has |
|
176 |
// a different definition from the specialized ones, and sometimes it |
|
177 |
// doesn't. |
|
178 |
||
179 |
#define ALL_SINCE_SAVE_MARKS_CLOSURES(f) \ |
|
180 |
f(OopsInGenClosure,_v) \ |
|
181 |
SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f) |
|
182 |
||
30764 | 183 |
#endif // SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP |