author | johnc |
Thu, 20 Oct 2011 12:06:20 -0700 | |
changeset 10769 | 983d377770fd |
parent 10745 | 6b33ec421509 |
child 11175 | 7fde26aecbe5 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
7923 | 2 |
* Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved. |
1374 | 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:
4022
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4022
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:
4022
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "gc_implementation/g1/concurrentMarkThread.inline.hpp" |
|
27 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
|
28 |
#include "gc_implementation/g1/g1CollectorPolicy.hpp" |
|
29 |
#include "gc_implementation/g1/g1MMUTracker.hpp" |
|
30 |
#include "gc_implementation/g1/vm_operations_g1.hpp" |
|
31 |
#include "memory/resourceArea.hpp" |
|
32 |
#include "runtime/vmThread.hpp" |
|
1374 | 33 |
|
34 |
// ======= Concurrent Mark Thread ======== |
|
35 |
||
36 |
// The CM thread is created when the G1 garbage collector is used |
|
37 |
||
38 |
SurrogateLockerThread* |
|
39 |
ConcurrentMarkThread::_slt = NULL; |
|
40 |
||
41 |
ConcurrentMarkThread::ConcurrentMarkThread(ConcurrentMark* cm) : |
|
42 |
ConcurrentGCThread(), |
|
43 |
_cm(cm), |
|
44 |
_started(false), |
|
45 |
_in_progress(false), |
|
46 |
_vtime_accum(0.0), |
|
47 |
_vtime_mark_accum(0.0), |
|
48 |
_vtime_count_accum(0.0) |
|
49 |
{ |
|
50 |
create_and_start(); |
|
51 |
} |
|
52 |
||
53 |
class CMCheckpointRootsFinalClosure: public VoidClosure { |
|
54 |
||
55 |
ConcurrentMark* _cm; |
|
56 |
public: |
|
57 |
||
58 |
CMCheckpointRootsFinalClosure(ConcurrentMark* cm) : |
|
59 |
_cm(cm) {} |
|
60 |
||
61 |
void do_void(){ |
|
62 |
_cm->checkpointRootsFinal(false); // !clear_all_soft_refs |
|
63 |
} |
|
64 |
}; |
|
65 |
||
66 |
class CMCleanUp: public VoidClosure { |
|
67 |
ConcurrentMark* _cm; |
|
68 |
public: |
|
69 |
||
70 |
CMCleanUp(ConcurrentMark* cm) : |
|
71 |
_cm(cm) {} |
|
72 |
||
73 |
void do_void(){ |
|
74 |
_cm->cleanup(); |
|
75 |
} |
|
76 |
}; |
|
77 |
||
78 |
||
79 |
||
80 |
void ConcurrentMarkThread::run() { |
|
81 |
initialize_in_thread(); |
|
82 |
_vtime_start = os::elapsedVTime(); |
|
83 |
wait_for_universe_init(); |
|
84 |
||
7923 | 85 |
G1CollectedHeap* g1h = G1CollectedHeap::heap(); |
86 |
G1CollectorPolicy* g1_policy = g1h->g1_policy(); |
|
1374 | 87 |
G1MMUTracker *mmu_tracker = g1_policy->mmu_tracker(); |
88 |
Thread *current_thread = Thread::current(); |
|
89 |
||
90 |
while (!_should_terminate) { |
|
91 |
// wait until started is set. |
|
92 |
sleepBeforeNextCycle(); |
|
93 |
{ |
|
94 |
ResourceMark rm; |
|
95 |
HandleMark hm; |
|
96 |
double cycle_start = os::elapsedVTime(); |
|
97 |
double mark_start_sec = os::elapsedTime(); |
|
98 |
char verbose_str[128]; |
|
99 |
||
100 |
if (PrintGC) { |
|
101 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
102 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
2145
da1dfec15623
6814467: G1: small fixes related to concurrent marking verboseness
tonyp
parents:
1374
diff
changeset
|
103 |
gclog_or_tty->print_cr("[GC concurrent-mark-start]"); |
1374 | 104 |
} |
105 |
||
106 |
int iter = 0; |
|
107 |
do { |
|
108 |
iter++; |
|
109 |
if (!cm()->has_aborted()) { |
|
110 |
_cm->markFromRoots(); |
|
111 |
} |
|
112 |
||
113 |
double mark_end_time = os::elapsedVTime(); |
|
114 |
double mark_end_sec = os::elapsedTime(); |
|
115 |
_vtime_mark_accum += (mark_end_time - cycle_start); |
|
116 |
if (!cm()->has_aborted()) { |
|
117 |
if (g1_policy->adaptive_young_list_length()) { |
|
118 |
double now = os::elapsedTime(); |
|
119 |
double remark_prediction_ms = g1_policy->predict_remark_time_ms(); |
|
120 |
jlong sleep_time_ms = mmu_tracker->when_ms(now, remark_prediction_ms); |
|
121 |
os::sleep(current_thread, sleep_time_ms, false); |
|
122 |
} |
|
123 |
||
124 |
if (PrintGC) { |
|
125 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
126 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
127 |
gclog_or_tty->print_cr("[GC concurrent-mark-end, %1.7lf sec]", |
|
128 |
mark_end_sec - mark_start_sec); |
|
129 |
} |
|
130 |
||
131 |
CMCheckpointRootsFinalClosure final_cl(_cm); |
|
132 |
sprintf(verbose_str, "GC remark"); |
|
133 |
VM_CGC_Operation op(&final_cl, verbose_str); |
|
134 |
VMThread::execute(&op); |
|
135 |
} |
|
136 |
if (cm()->restart_for_overflow() && |
|
137 |
G1TraceMarkStackOverflow) { |
|
138 |
gclog_or_tty->print_cr("Restarting conc marking because of MS overflow " |
|
139 |
"in remark (restart #%d).", iter); |
|
140 |
} |
|
141 |
||
142 |
if (cm()->restart_for_overflow()) { |
|
143 |
if (PrintGC) { |
|
144 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
145 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
146 |
gclog_or_tty->print_cr("[GC concurrent-mark-restart-for-overflow]"); |
|
147 |
} |
|
148 |
} |
|
149 |
} while (cm()->restart_for_overflow()); |
|
10769
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
150 |
|
1374 | 151 |
double counting_start_time = os::elapsedVTime(); |
152 |
if (!cm()->has_aborted()) { |
|
153 |
double count_start_sec = os::elapsedTime(); |
|
154 |
if (PrintGC) { |
|
155 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
156 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
157 |
gclog_or_tty->print_cr("[GC concurrent-count-start]"); |
|
158 |
} |
|
159 |
||
160 |
_sts.join(); |
|
161 |
_cm->calcDesiredRegions(); |
|
162 |
_sts.leave(); |
|
163 |
||
164 |
if (!cm()->has_aborted()) { |
|
165 |
double count_end_sec = os::elapsedTime(); |
|
166 |
if (PrintGC) { |
|
167 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
168 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
169 |
gclog_or_tty->print_cr("[GC concurrent-count-end, %1.7lf]", |
|
170 |
count_end_sec - count_start_sec); |
|
171 |
} |
|
172 |
} |
|
173 |
} |
|
10769
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
174 |
|
1374 | 175 |
double end_time = os::elapsedVTime(); |
176 |
_vtime_count_accum += (end_time - counting_start_time); |
|
177 |
// Update the total virtual time before doing this, since it will try |
|
178 |
// to measure it to get the vtime for this marking. We purposely |
|
179 |
// neglect the presumably-short "completeCleanup" phase here. |
|
180 |
_vtime_accum = (end_time - _vtime_start); |
|
181 |
if (!cm()->has_aborted()) { |
|
182 |
if (g1_policy->adaptive_young_list_length()) { |
|
183 |
double now = os::elapsedTime(); |
|
184 |
double cleanup_prediction_ms = g1_policy->predict_cleanup_time_ms(); |
|
185 |
jlong sleep_time_ms = mmu_tracker->when_ms(now, cleanup_prediction_ms); |
|
186 |
os::sleep(current_thread, sleep_time_ms, false); |
|
187 |
} |
|
188 |
||
189 |
CMCleanUp cl_cl(_cm); |
|
190 |
sprintf(verbose_str, "GC cleanup"); |
|
191 |
VM_CGC_Operation op(&cl_cl, verbose_str); |
|
192 |
VMThread::execute(&op); |
|
193 |
} else { |
|
7923 | 194 |
g1h->set_marking_complete(); |
1374 | 195 |
} |
196 |
||
7923 | 197 |
// Check if cleanup set the free_regions_coming flag. If it |
198 |
// hasn't, we can just skip the next step. |
|
199 |
if (g1h->free_regions_coming()) { |
|
200 |
// The following will finish freeing up any regions that we |
|
201 |
// found to be empty during cleanup. We'll do this part |
|
202 |
// without joining the suspendible set. If an evacuation pause |
|
8680 | 203 |
// takes place, then we would carry on freeing regions in |
7923 | 204 |
// case they are needed by the pause. If a Full GC takes |
8680 | 205 |
// place, it would wait for us to process the regions |
7923 | 206 |
// reclaimed by cleanup. |
207 |
||
1374 | 208 |
double cleanup_start_sec = os::elapsedTime(); |
209 |
if (PrintGC) { |
|
210 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
211 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
212 |
gclog_or_tty->print_cr("[GC concurrent-cleanup-start]"); |
|
213 |
} |
|
214 |
||
10745
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
215 |
// Now do the concurrent cleanup operation. |
1374 | 216 |
_cm->completeCleanup(); |
10745
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
217 |
|
8100 | 218 |
// Notify anyone who's waiting that there are no more free |
10745
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
219 |
// regions coming. We have to do this before we join the STS |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
220 |
// (in fact, we should not attempt to join the STS in the |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
221 |
// interval between finishing the cleanup pause and clearing |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
222 |
// the free_regions_coming flag) otherwise we might deadlock: |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
223 |
// a GC worker could be blocked waiting for the notification |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
224 |
// whereas this thread will be blocked for the pause to finish |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
225 |
// while it's trying to join the STS, which is conditional on |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
226 |
// the GC workers finishing. |
8100 | 227 |
g1h->reset_free_regions_coming(); |
228 |
||
7923 | 229 |
double cleanup_end_sec = os::elapsedTime(); |
230 |
if (PrintGC) { |
|
231 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
232 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
233 |
gclog_or_tty->print_cr("[GC concurrent-cleanup-end, %1.7lf]", |
|
234 |
cleanup_end_sec - cleanup_start_sec); |
|
1374 | 235 |
} |
236 |
} |
|
7923 | 237 |
guarantee(cm()->cleanup_list_is_empty(), |
238 |
"at this point there should be no regions on the cleanup list"); |
|
1374 | 239 |
|
10745
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
240 |
// There is a tricky race before recording that the concurrent |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
241 |
// cleanup has completed and a potential Full GC starting around |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
242 |
// the same time. We want to make sure that the Full GC calls |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
243 |
// abort() on concurrent mark after |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
244 |
// record_concurrent_mark_cleanup_completed(), since abort() is |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
245 |
// the method that will reset the concurrent mark state. If we |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
246 |
// end up calling record_concurrent_mark_cleanup_completed() |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
247 |
// after abort() then we might incorrectly undo some of the work |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
248 |
// abort() did. Checking the has_aborted() flag after joining |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
249 |
// the STS allows the correct ordering of the two methods. There |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
250 |
// are two scenarios: |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
251 |
// |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
252 |
// a) If we reach here before the Full GC, the fact that we have |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
253 |
// joined the STS means that the Full GC cannot start until we |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
254 |
// leave the STS, so record_concurrent_mark_cleanup_completed() |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
255 |
// will complete before abort() is called. |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
256 |
// |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
257 |
// b) If we reach here during the Full GC, we'll be held up from |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
258 |
// joining the STS until the Full GC is done, which means that |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
259 |
// abort() will have completed and has_aborted() will return |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
260 |
// true to prevent us from calling |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
261 |
// record_concurrent_mark_cleanup_completed() (and, in fact, it's |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
262 |
// not needed any more as the concurrent mark state has been |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
263 |
// already reset). |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
264 |
_sts.join(); |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
265 |
if (!cm()->has_aborted()) { |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
266 |
g1_policy->record_concurrent_mark_cleanup_completed(); |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
267 |
} |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
268 |
_sts.leave(); |
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
269 |
|
1374 | 270 |
if (cm()->has_aborted()) { |
271 |
if (PrintGC) { |
|
272 |
gclog_or_tty->date_stamp(PrintGCDateStamps); |
|
273 |
gclog_or_tty->stamp(PrintGCTimeStamps); |
|
274 |
gclog_or_tty->print_cr("[GC concurrent-mark-abort]"); |
|
275 |
} |
|
276 |
} |
|
277 |
||
10745
6b33ec421509
7098085: G1: partially-young GCs not initiated under certain circumstances
tonyp
parents:
10280
diff
changeset
|
278 |
// We now want to allow clearing of the marking bitmap to be |
1374 | 279 |
// suspended by a collection pause. |
280 |
_sts.join(); |
|
281 |
_cm->clearNextBitmap(); |
|
282 |
_sts.leave(); |
|
283 |
} |
|
6058
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5547
diff
changeset
|
284 |
|
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5547
diff
changeset
|
285 |
// Update the number of full collections that have been |
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5547
diff
changeset
|
286 |
// completed. This will also notify the FullGCCount_lock in case a |
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5547
diff
changeset
|
287 |
// Java thread is waiting for a full GC to happen (e.g., it |
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5547
diff
changeset
|
288 |
// called System.gc() with +ExplicitGCInvokesConcurrent). |
7455
22e19e8c0beb
7000559: G1: assertion failure !outer || (full_collections_started == _full_collections_completed + 1)
tonyp
parents:
7397
diff
changeset
|
289 |
_sts.join(); |
7923 | 290 |
g1h->increment_full_collections_completed(true /* concurrent */); |
7455
22e19e8c0beb
7000559: G1: assertion failure !outer || (full_collections_started == _full_collections_completed + 1)
tonyp
parents:
7397
diff
changeset
|
291 |
_sts.leave(); |
1374 | 292 |
} |
293 |
assert(_should_terminate, "just checking"); |
|
294 |
||
295 |
terminate(); |
|
296 |
} |
|
297 |
||
298 |
||
299 |
void ConcurrentMarkThread::yield() { |
|
300 |
_sts.yield("Concurrent Mark"); |
|
301 |
} |
|
302 |
||
303 |
void ConcurrentMarkThread::stop() { |
|
304 |
// it is ok to take late safepoints here, if needed |
|
305 |
MutexLockerEx mu(Terminator_lock); |
|
306 |
_should_terminate = true; |
|
307 |
while (!_has_terminated) { |
|
308 |
Terminator_lock->wait(); |
|
309 |
} |
|
310 |
} |
|
311 |
||
4022 | 312 |
void ConcurrentMarkThread::print() const { |
313 |
print_on(tty); |
|
314 |
} |
|
315 |
||
316 |
void ConcurrentMarkThread::print_on(outputStream* st) const { |
|
317 |
st->print("\"G1 Main Concurrent Mark GC Thread\" "); |
|
318 |
Thread::print_on(st); |
|
319 |
st->cr(); |
|
1374 | 320 |
} |
321 |
||
322 |
void ConcurrentMarkThread::sleepBeforeNextCycle() { |
|
323 |
// We join here because we don't want to do the "shouldConcurrentMark()" |
|
324 |
// below while the world is otherwise stopped. |
|
6766
839211600ad0
6983311: G1: LoopTest hangs when run with -XX:+ExplicitInvokesConcurrent
johnc
parents:
6058
diff
changeset
|
325 |
assert(!in_progress(), "should have been cleared"); |
839211600ad0
6983311: G1: LoopTest hangs when run with -XX:+ExplicitInvokesConcurrent
johnc
parents:
6058
diff
changeset
|
326 |
|
1374 | 327 |
MutexLockerEx x(CGC_lock, Mutex::_no_safepoint_check_flag); |
328 |
while (!started()) { |
|
329 |
CGC_lock->wait(Mutex::_no_safepoint_check_flag); |
|
330 |
} |
|
331 |
set_in_progress(); |
|
332 |
clear_started(); |
|
333 |
} |
|
334 |
||
10769
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
335 |
// Note: As is the case with CMS - this method, although exported |
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
336 |
// by the ConcurrentMarkThread, which is a non-JavaThread, can only |
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
337 |
// be called by a JavaThread. Currently this is done at vm creation |
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
338 |
// time (post-vm-init) by the main/Primordial (Java)Thread. |
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
339 |
// XXX Consider changing this in the future to allow the CM thread |
1374 | 340 |
// itself to create this thread? |
341 |
void ConcurrentMarkThread::makeSurrogateLockerThread(TRAPS) { |
|
10769
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
342 |
assert(UseG1GC, "SLT thread needed only for concurrent GC"); |
983d377770fd
7099824: G1: we should take the pending list lock before doing the remark pause
johnc
parents:
10745
diff
changeset
|
343 |
assert(THREAD->is_Java_thread(), "must be a Java thread"); |
1374 | 344 |
assert(_slt == NULL, "SLT already created"); |
345 |
_slt = SurrogateLockerThread::make(THREAD); |
|
346 |
} |