annotate src/share/vm/memory/specialized_oop_closures.hpp @ 342:37f87013dfd8

6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
author ysr
date Thu, 05 Jun 2008 15:57:56 -0700
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2001-2006 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // The following OopClosure types get specialized versions of
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // "oop_oop_iterate" that invoke the closures' do_oop methods
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // non-virtually, using a mechanism defined in this file. Extend these
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // macros in the obvious way to add specializations for new closures.
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Forward declarations.
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class OopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class OopsInGenClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // DefNew
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class ScanClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class FastScanClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class FilteringClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // ParNew
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class ParScanWithBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class ParScanWithoutBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // CMS
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class MarkRefsIntoAndScanClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class Par_MarkRefsIntoAndScanClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class PushAndMarkClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 class Par_PushAndMarkClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 class PushOrMarkClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 class Par_PushOrMarkClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 class CMSKeepAliveClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 class CMSInnerParMarkAndPushClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // This macro applies an argument macro to all OopClosures for which we
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // want specialized bodies of "oop_oop_iterate". The arguments to "f" are:
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // "f(closureType, non_virtual)"
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // where "closureType" is the name of the particular subclass of OopClosure,
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // and "non_virtual" will be the string "_nv" if the closure type should
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // have its "do_oop" method invoked non-virtually, or else the
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // string "_v". ("OopClosure" itself will be the only class in the latter
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // category.)
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // This is split into several because of a Visual C++ 6.0 compiler bug
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // where very long macros cause the compiler to crash
a61af66fc99e Initial load
duke
parents:
diff changeset
61
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
62 // Some other heap might define further specialized closures.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
63 #ifndef FURTHER_SPECIALIZED_OOP_OOP_ITERATE_CLOSURES
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
64 #define FURTHER_SPECIALIZED_OOP_OOP_ITERATE_CLOSURES(f) \
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
65 /* None */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
66 #endif
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
67
0
a61af66fc99e Initial load
duke
parents:
diff changeset
68 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
69 f(ScanClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
70 f(FastScanClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
71 f(FilteringClosure,_nv)
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
74 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
75 f(ParScanWithBarrierClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
76 f(ParScanWithoutBarrierClosure,_nv)
a61af66fc99e Initial load
duke
parents:
diff changeset
77 #else // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
78 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
79 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
82 SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
83 SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 #ifndef SERIALGC
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
86 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f) \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 f(MarkRefsIntoAndScanClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
88 f(Par_MarkRefsIntoAndScanClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
89 f(PushAndMarkClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
90 f(Par_PushAndMarkClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
91 f(PushOrMarkClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
92 f(Par_PushOrMarkClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
93 f(CMSKeepAliveClosure,_nv) \
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
94 f(CMSInnerParMarkAndPushClosure,_nv) \
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
95 FURTHER_SPECIALIZED_OOP_OOP_ITERATE_CLOSURES(f)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #else // SERIALGC
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
97 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
99
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
100
0
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // We separate these out, because sometime the general one has
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // a different definition from the specialized ones, and sometimes it
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // doesn't.
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 #define ALL_OOP_OOP_ITERATE_CLOSURES_1(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
106 f(OopClosure,_v) \
a61af66fc99e Initial load
duke
parents:
diff changeset
107 SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
108
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
109 #define ALL_OOP_OOP_ITERATE_CLOSURES_2(f) \
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
110 SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // This macro applies an argument macro to all OopClosures for which we
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // want specialized bodies of a family of methods related to
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // "par_oop_iterate". The arguments to f are the same as above.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // The "root_class" is the most general class to define; this may be
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // "OopClosure" in some applications and "OopsInGenClosure" in others.
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 #define SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
120 f(MarkRefsIntoAndScanClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
121 f(PushAndMarkClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
122 f(Par_MarkRefsIntoAndScanClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
123 f(Par_PushAndMarkClosure,_nv)
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 #define ALL_PAR_OOP_ITERATE_CLOSURES(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
126 f(OopClosure,_v) \
a61af66fc99e Initial load
duke
parents:
diff changeset
127 SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
128 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // This macro applies an argument macro to all OopClosures for which we
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // want specialized bodies of a family of methods related to
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // "oops_since_save_marks_do". The arguments to f are the same as above.
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // The "root_class" is the most general class to define; this may be
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // "OopClosure" in some applications and "OopsInGenClosure" in others.
a61af66fc99e Initial load
duke
parents:
diff changeset
135
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
136
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
137 // Some other heap might define further specialized closures.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
138 #ifndef FURTHER_SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
139 #define FURTHER_SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f) \
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
140 /* None */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
141 #endif
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
142
0
a61af66fc99e Initial load
duke
parents:
diff changeset
143 #define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
144 f(ScanClosure,_nv) \
a61af66fc99e Initial load
duke
parents:
diff changeset
145 f(FastScanClosure,_nv)
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
149 f(ParScanWithBarrierClosure,_nv) \
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
150 f(ParScanWithoutBarrierClosure,_nv) \
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
151 FURTHER_SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152 #else // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
153 #define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
154 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 #define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
157 SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
158 SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 #define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
161 SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // We separate these out, because sometime the general one has
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // a different definition from the specialized ones, and sometimes it
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // doesn't.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // NOTE: One of the valid criticisms of this
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // specialize-oop_oop_iterate-for-specific-closures idiom is that it is
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // easy to have a silent performance bug: if you fail to de-virtualize,
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // things still work, just slower. The "SpecializationStats" mode is
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // intended to at least make such a failure easy to detect.
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // *Not* using the ALL_SINCE_SAVE_MARKS_CLOSURES(f) macro defined
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // below means that *only* closures for which oop_oop_iterate specializations
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // exist above may be applied to "oops_since_save_marks". That is,
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // this form of the performance bug is caught statically. When you add
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // a definition for the general type, this property goes away.
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Make sure you test with SpecializationStats to find such bugs
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // when introducing a new closure where you don't want virtual dispatch.
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 #define ALL_SINCE_SAVE_MARKS_CLOSURES(f) \
a61af66fc99e Initial load
duke
parents:
diff changeset
180 f(OopsInGenClosure,_v) \
a61af66fc99e Initial load
duke
parents:
diff changeset
181 SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f)
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // For keeping stats on effectiveness.
a61af66fc99e Initial load
duke
parents:
diff changeset
184 #define ENABLE_SPECIALIZATION_STATS 0
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 class SpecializationStats {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
189 enum Kind {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ik, // instanceKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
191 irk, // instanceRefKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
192 oa, // objArrayKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
193 NUM_Kinds
a61af66fc99e Initial load
duke
parents:
diff changeset
194 };
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 #if ENABLE_SPECIALIZATION_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
197 private:
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
198 static bool _init;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
199 static bool _wrapped;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
200 static jint _numCallsAll;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
202 static jint _numCallsTotal[NUM_Kinds];
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
203 static jint _numCalls_nv[NUM_Kinds];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
205 static jint _numDoOopCallsTotal[NUM_Kinds];
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
206 static jint _numDoOopCalls_nv[NUM_Kinds];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
207 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
208 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
209 static void clear() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 static inline void record_call() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 static inline void record_iterate_call_v(Kind k) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
213 static inline void record_iterate_call_nv(Kind k) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 static inline void record_do_oop_call_v(Kind k) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 static inline void record_do_oop_call_nv(Kind k) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 static void print() PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 };
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
221 #if ENABLE_SPECIALIZATION_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 inline void SpecializationStats::record_call() {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
224 Atomic::inc(&_numCallsAll);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 inline void SpecializationStats::record_iterate_call_v(Kind k) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
227 Atomic::inc(&_numCallsTotal[k]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 inline void SpecializationStats::record_iterate_call_nv(Kind k) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
230 Atomic::inc(&_numCallsTotal[k]);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
231 Atomic::inc(&_numCalls_nv[k]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 inline void SpecializationStats::record_do_oop_call_v(Kind k) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
235 Atomic::inc(&_numDoOopCallsTotal[k]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237 inline void SpecializationStats::record_do_oop_call_nv(Kind k) {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
238 Atomic::inc(&_numDoOopCallsTotal[k]);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
239 Atomic::inc(&_numDoOopCalls_nv[k]);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 #else // !ENABLE_SPECIALIZATION_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 inline void SpecializationStats::record_call() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
245 inline void SpecializationStats::record_iterate_call_v(Kind k) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
246 inline void SpecializationStats::record_iterate_call_nv(Kind k) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
247 inline void SpecializationStats::record_do_oop_call_v(Kind k) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
248 inline void SpecializationStats::record_do_oop_call_nv(Kind k) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
249 inline void SpecializationStats::clear() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
250 inline void SpecializationStats::print() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 #endif // ENABLE_SPECIALIZATION_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
253 #endif // !PRODUCT