annotate src/share/vm/gc_implementation/concurrentMarkSweep/vmCMSOperations.cpp @ 23515:ecbeafff096f

Merge
author asaha
date Fri, 18 Sep 2015 08:41:04 -0700
parents 4e4ebe50c8e3
children 7848fc12602b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13400
diff changeset
2 * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
0
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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1520
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1520
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1520
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
26 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
27 #include "gc_implementation/concurrentMarkSweep/concurrentMarkSweepThread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
28 #include "gc_implementation/concurrentMarkSweep/vmCMSOperations.hpp"
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
29 #include "gc_implementation/shared/gcTimer.hpp"
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
30 #include "gc_implementation/shared/gcTraceTime.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
31 #include "gc_implementation/shared/isGCActiveMark.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
32 #include "memory/gcLocker.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
33 #include "runtime/interfaceSupport.hpp"
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
34 #include "runtime/os.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
35 #include "utilities/dtrace.hpp"
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
36
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13400
diff changeset
37 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
38
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
39 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
40 HS_DTRACE_PROBE_DECL(hs_private, cms__initmark__begin);
a61af66fc99e Initial load
duke
parents:
diff changeset
41 HS_DTRACE_PROBE_DECL(hs_private, cms__initmark__end);
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 HS_DTRACE_PROBE_DECL(hs_private, cms__remark__begin);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 HS_DTRACE_PROBE_DECL(hs_private, cms__remark__end);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
45 #endif /* !USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 //////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // Methods in abstract class VM_CMS_Operation
a61af66fc99e Initial load
duke
parents:
diff changeset
49 //////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
50 void VM_CMS_Operation::acquire_pending_list_lock() {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // The caller may block while communicating
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // with the SLT thread in order to acquire/release the PLL.
20646
4e4ebe50c8e3 8062036: ConcurrentMarkThread::slt may be invoked before ConcurrentMarkThread::makeSurrogateLockerThread causing intermittent crashes
kbarrett
parents: 20190
diff changeset
53 SurrogateLockerThread* slt = ConcurrentMarkSweepThread::slt();
4e4ebe50c8e3 8062036: ConcurrentMarkThread::slt may be invoked before ConcurrentMarkThread::makeSurrogateLockerThread causing intermittent crashes
kbarrett
parents: 20190
diff changeset
54 if (slt != NULL) {
4e4ebe50c8e3 8062036: ConcurrentMarkThread::slt may be invoked before ConcurrentMarkThread::makeSurrogateLockerThread causing intermittent crashes
kbarrett
parents: 20190
diff changeset
55 slt->manipulatePLL(SurrogateLockerThread::acquirePLL);
4e4ebe50c8e3 8062036: ConcurrentMarkThread::slt may be invoked before ConcurrentMarkThread::makeSurrogateLockerThread causing intermittent crashes
kbarrett
parents: 20190
diff changeset
56 } else {
4e4ebe50c8e3 8062036: ConcurrentMarkThread::slt may be invoked before ConcurrentMarkThread::makeSurrogateLockerThread causing intermittent crashes
kbarrett
parents: 20190
diff changeset
57 SurrogateLockerThread::report_missing_slt();
4e4ebe50c8e3 8062036: ConcurrentMarkThread::slt may be invoked before ConcurrentMarkThread::makeSurrogateLockerThread causing intermittent crashes
kbarrett
parents: 20190
diff changeset
58 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void VM_CMS_Operation::release_and_notify_pending_list_lock() {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // The caller may block while communicating
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // with the SLT thread in order to acquire/release the PLL.
a61af66fc99e Initial load
duke
parents:
diff changeset
64 ConcurrentMarkSweepThread::slt()->
a61af66fc99e Initial load
duke
parents:
diff changeset
65 manipulatePLL(SurrogateLockerThread::releaseAndNotifyPLL);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void VM_CMS_Operation::verify_before_gc() {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (VerifyBeforeGC &&
a61af66fc99e Initial load
duke
parents:
diff changeset
70 GenCollectedHeap::heap()->total_collections() >= VerifyGCStartAt) {
20190
0982ec23da03 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 17937
diff changeset
71 GCTraceTime tm("Verify Before", false, false, _collector->_gc_timer_cm, _collector->_gc_tracer_cm->gc_id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
72 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 FreelistLocker x(_collector);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 MutexLockerEx y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 Universe::heap()->prepare_for_verify();
6865
4202510ee0fe 8000831: Heap verification output incorrect/incomplete
johnc
parents: 6064
diff changeset
76 Universe::verify();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void VM_CMS_Operation::verify_after_gc() {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if (VerifyAfterGC &&
a61af66fc99e Initial load
duke
parents:
diff changeset
82 GenCollectedHeap::heap()->total_collections() >= VerifyGCStartAt) {
20190
0982ec23da03 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 17937
diff changeset
83 GCTraceTime tm("Verify After", false, false, _collector->_gc_timer_cm, _collector->_gc_tracer_cm->gc_id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 FreelistLocker x(_collector);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 MutexLockerEx y(_collector->bitMapLock(), Mutex::_no_safepoint_check_flag);
6865
4202510ee0fe 8000831: Heap verification output incorrect/incomplete
johnc
parents: 6064
diff changeset
87 Universe::verify();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 bool VM_CMS_Operation::lost_race() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 if (CMSCollector::abstract_state() == CMSCollector::Idling) {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // We lost a race to a foreground collection
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // -- there's nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
95 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 assert(CMSCollector::abstract_state() == legal_state(),
a61af66fc99e Initial load
duke
parents:
diff changeset
98 "Inconsistent collector state?");
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 bool VM_CMS_Operation::doit_prologue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
104 assert(!CMSCollector::foregroundGCShouldWait(), "Possible deadlock");
a61af66fc99e Initial load
duke
parents:
diff changeset
105 assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
a61af66fc99e Initial load
duke
parents:
diff changeset
106 "Possible deadlock");
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 if (needs_pll()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 acquire_pending_list_lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // Get the Heap_lock after the pending_list_lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
112 Heap_lock->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 if (lost_race()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 assert(_prologue_succeeded == false, "Initialized in c'tor");
a61af66fc99e Initial load
duke
parents:
diff changeset
115 Heap_lock->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 if (needs_pll()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 release_and_notify_pending_list_lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _prologue_succeeded = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 return _prologue_succeeded;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 void VM_CMS_Operation::doit_epilogue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 assert(Thread::current()->is_ConcurrentGC_thread(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
127 assert(!CMSCollector::foregroundGCShouldWait(), "Possible deadlock");
a61af66fc99e Initial load
duke
parents:
diff changeset
128 assert(!ConcurrentMarkSweepThread::cms_thread_has_cms_token(),
a61af66fc99e Initial load
duke
parents:
diff changeset
129 "Possible deadlock");
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Release the Heap_lock first.
a61af66fc99e Initial load
duke
parents:
diff changeset
132 Heap_lock->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
133 if (needs_pll()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 release_and_notify_pending_list_lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 //////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Methods in class VM_CMS_Initial_Mark
a61af66fc99e Initial load
duke
parents:
diff changeset
140 //////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
141 void VM_CMS_Initial_Mark::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 if (lost_race()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // Nothing to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
144 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
146 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
147 HS_DTRACE_PROBE(hs_private, cms__initmark__begin);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
148 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
149 HS_PRIVATE_CMS_INITMARK_BEGIN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
150 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
151 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
152
13400
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 10405
diff changeset
153 _collector->_gc_timer_cm->register_gc_pause_start("Initial Mark");
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
154
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
156 GCCauseSetter gccs(gch, GCCause::_cms_initial_mark);
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 VM_CMS_Operation::verify_before_gc();
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 IsGCActiveMark x; // stop-world GC active
6064
9d679effd28c 7166894: Add gc cause to GC logging for all collectors
brutisso
parents: 4006
diff changeset
161 _collector->do_CMS_operation(CMSCollector::CMS_op_checkpointRootsInitial, gch->gc_cause());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 VM_CMS_Operation::verify_after_gc();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
164
13400
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 10405
diff changeset
165 _collector->_gc_timer_cm->register_gc_pause_end();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
166
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
167 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
168 HS_DTRACE_PROBE(hs_private, cms__initmark__end);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
169 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
170 HS_PRIVATE_CMS_INITMARK_END(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
171 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
172 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 //////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Methods in class VM_CMS_Final_Remark_Operation
a61af66fc99e Initial load
duke
parents:
diff changeset
177 //////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
178 void VM_CMS_Final_Remark::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 if (lost_race()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // Nothing to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
181 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
183 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
184 HS_DTRACE_PROBE(hs_private, cms__remark__begin);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
185 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
186 HS_PRIVATE_CMS_REMARK_BEGIN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
187 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
188 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
189
13400
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 10405
diff changeset
190 _collector->_gc_timer_cm->register_gc_pause_start("Final Mark");
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
191
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
193 GCCauseSetter gccs(gch, GCCause::_cms_final_remark);
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 VM_CMS_Operation::verify_before_gc();
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 IsGCActiveMark x; // stop-world GC active
6064
9d679effd28c 7166894: Add gc cause to GC logging for all collectors
brutisso
parents: 4006
diff changeset
198 _collector->do_CMS_operation(CMSCollector::CMS_op_checkpointRootsFinal, gch->gc_cause());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 VM_CMS_Operation::verify_after_gc();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
201
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
202 _collector->save_heap_summary();
13400
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents: 10405
diff changeset
203 _collector->_gc_timer_cm->register_gc_pause_end();
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
204
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
205 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
206 HS_DTRACE_PROBE(hs_private, cms__remark__end);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
207 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
208 HS_PRIVATE_CMS_REMARK_END(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
209 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 2365
diff changeset
210 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // VM operation to invoke a concurrent collection of a
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // GenCollectedHeap heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
215 void VM_GenCollectFullConcurrent::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 assert(Thread::current()->is_VM_thread(), "Should be VM thread");
1520
bb843ebc7c55 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 0
diff changeset
217 assert(GCLockerInvokesConcurrent || ExplicitGCInvokesConcurrent, "Unexpected");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
220 if (_gc_count_before == gch->total_collections()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // The "full" of do_full_collection call below "forces"
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // a collection; the second arg, 0, below ensures that
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // only the young gen is collected. XXX In the future,
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // we'll probably need to have something in this interface
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // to say do this only if we are sure we will not bail
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // out to a full collection in this attempt, but that's
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // for the future.
a61af66fc99e Initial load
duke
parents:
diff changeset
228 assert(SafepointSynchronize::is_at_safepoint(),
a61af66fc99e Initial load
duke
parents:
diff changeset
229 "We can only be executing this arm of if at a safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
230 GCCauseSetter gccs(gch, _gc_cause);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 gch->do_full_collection(gch->must_clear_all_soft_refs(),
a61af66fc99e Initial load
duke
parents:
diff changeset
232 0 /* collect only youngest gen */);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 } // Else no need for a foreground young gc
a61af66fc99e Initial load
duke
parents:
diff changeset
234 assert((_gc_count_before < gch->total_collections()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
235 (GC_locker::is_active() /* gc may have been skipped */
a61af66fc99e Initial load
duke
parents:
diff changeset
236 && (_gc_count_before == gch->total_collections())),
a61af66fc99e Initial load
duke
parents:
diff changeset
237 "total_collections() should be monotonically increasing");
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 MutexLockerEx x(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
2365
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
240 assert(_full_gc_count_before <= gch->total_full_collections(), "Error");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241 if (gch->total_full_collections() == _full_gc_count_before) {
2365
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
242 // Disable iCMS until the full collection is done, and
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
243 // remember that we did so.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 CMSCollector::disable_icms();
2365
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
245 _disabled_icms = true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // In case CMS thread was in icms_wait(), wake it up.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 CMSCollector::start_icms();
1520
bb843ebc7c55 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 0
diff changeset
248 // Nudge the CMS thread to start a concurrent collection.
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6866
diff changeset
249 CMSCollector::request_full_gc(_full_gc_count_before, _gc_cause);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
250 } else {
2365
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
251 assert(_full_gc_count_before < gch->total_full_collections(), "Error");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
252 FullGCCount_lock->notify_all(); // Inform the Java thread its work is done
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 bool VM_GenCollectFullConcurrent::evaluate_at_safepoint() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 Thread* thr = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
258 assert(thr != NULL, "Unexpected tid");
a61af66fc99e Initial load
duke
parents:
diff changeset
259 if (!thr->is_Java_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
260 assert(thr->is_VM_thread(), "Expected to be evaluated by VM thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
261 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
262 if (_gc_count_before != gch->total_collections()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 // No need to do a young gc, we'll just nudge the CMS thread
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // in the doit() method above, to be executed soon.
a61af66fc99e Initial load
duke
parents:
diff changeset
265 assert(_gc_count_before < gch->total_collections(),
a61af66fc99e Initial load
duke
parents:
diff changeset
266 "total_collections() should be monotnically increasing");
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return false; // no need for foreground young gc
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270 return true; // may still need foreground young gc
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 void VM_GenCollectFullConcurrent::doit_epilogue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 Thread* thr = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
276 assert(thr->is_Java_thread(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
277 JavaThread* jt = (JavaThread*)thr;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Release the Heap_lock first.
a61af66fc99e Initial load
duke
parents:
diff changeset
279 Heap_lock->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
280 release_and_notify_pending_list_lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // It is fine to test whether completed collections has
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // exceeded our request count without locking because
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // the completion count is monotonically increasing;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // this will break for very long-running apps when the
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // count overflows and wraps around. XXX fix me !!!
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // e.g. at the rate of 1 full gc per ms, this could
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // overflow in about 1000 years.
a61af66fc99e Initial load
duke
parents:
diff changeset
289 GenCollectedHeap* gch = GenCollectedHeap::heap();
1520
bb843ebc7c55 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 0
diff changeset
290 if (_gc_cause != GCCause::_gc_locker &&
bb843ebc7c55 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 0
diff changeset
291 gch->total_full_collections_completed() <= _full_gc_count_before) {
1656
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
292 // maybe we should change the condition to test _gc_cause ==
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
293 // GCCause::_java_lang_system_gc, instead of
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
294 // _gc_cause != GCCause::_gc_locker
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
295 assert(_gc_cause == GCCause::_java_lang_system_gc,
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
296 "the only way to get here if this was a System.gc()-induced GC");
1520
bb843ebc7c55 6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents: 0
diff changeset
297 assert(ExplicitGCInvokesConcurrent, "Error");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // Now, wait for witnessing concurrent gc cycle to complete,
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // but do so in native mode, because we want to lock the
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // FullGCEvent_lock, which may be needed by the VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // or by the CMS thread, so we do not want to be suspended
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // while holding that lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
303 ThreadToNativeFromVM native(jt);
a61af66fc99e Initial load
duke
parents:
diff changeset
304 MutexLockerEx ml(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // Either a concurrent or a stop-world full gc is sufficient
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // witness to our request.
a61af66fc99e Initial load
duke
parents:
diff changeset
307 while (gch->total_full_collections_completed() <= _full_gc_count_before) {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 FullGCCount_lock->wait(Mutex::_no_safepoint_check_flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
2365
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
311 // Enable iCMS back if we disabled it earlier.
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
312 if (_disabled_icms) {
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
313 CMSCollector::enable_icms();
a181f3a124dd 6987703: iCMS: Intermittent hang with gc/gctests/CallGC/CallGC01 and +ExplicitGCInvokesConcurrent
ysr
parents: 1972
diff changeset
314 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }