Skip to content

Commit 468c847

Browse files
committedApr 27, 2021
8234020: Remove FullGCCount_lock
Reviewed-by: kbarrett
1 parent 4785e11 commit 468c847

File tree

4 files changed

+0
-24
lines changed

4 files changed

+0
-24
lines changed
 

‎src/hotspot/share/gc/shared/genCollectedHeap.cpp

-19
Original file line numberDiff line numberDiff line change
@@ -254,28 +254,9 @@ size_t GenCollectedHeap::max_capacity() const {
254254
// Update the _full_collections_completed counter
255255
// at the end of a stop-world full GC.
256256
unsigned int GenCollectedHeap::update_full_collections_completed() {
257-
MonitorLocker ml(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
258257
assert(_full_collections_completed <= _total_full_collections,
259258
"Can't complete more collections than were started");
260259
_full_collections_completed = _total_full_collections;
261-
ml.notify_all();
262-
return _full_collections_completed;
263-
}
264-
265-
// Update the _full_collections_completed counter, as appropriate,
266-
// at the end of a concurrent GC cycle. Note the conditional update
267-
// below to allow this method to be called by a concurrent collector
268-
// without synchronizing in any manner with the VM thread (which
269-
// may already have initiated a STW full collection "concurrently").
270-
unsigned int GenCollectedHeap::update_full_collections_completed(unsigned int count) {
271-
MonitorLocker ml(FullGCCount_lock, Mutex::_no_safepoint_check_flag);
272-
assert((_full_collections_completed <= _total_full_collections) &&
273-
(count <= _total_full_collections),
274-
"Can't complete more collections than were started");
275-
if (count > _full_collections_completed) {
276-
_full_collections_completed = count;
277-
ml.notify_all();
278-
}
279260
return _full_collections_completed;
280261
}
281262

‎src/hotspot/share/gc/shared/genCollectedHeap.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,6 @@ class GenCollectedHeap : public CollectedHeap {
281281

282282
// Update above counter, as appropriate, at the end of a stop-world GC cycle
283283
unsigned int update_full_collections_completed();
284-
// Update above counter, as appropriate, at the end of a concurrent GC cycle
285-
unsigned int update_full_collections_completed(unsigned int count);
286284

287285
// Update the gc statistics for each generation.
288286
void update_gc_stats(Generation* current_generation, bool full) {

‎src/hotspot/share/runtime/mutexLocker.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ Mutex* NonJavaThreadsList_lock = NULL;
7272
Mutex* NonJavaThreadsListSync_lock = NULL;
7373
Monitor* CGC_lock = NULL;
7474
Monitor* STS_lock = NULL;
75-
Monitor* FullGCCount_lock = NULL;
7675
Monitor* G1OldGCCount_lock = NULL;
7776
Mutex* Shared_DirtyCardQ_lock = NULL;
7877
Mutex* G1DetachedRefinementStats_lock = NULL;
@@ -212,7 +211,6 @@ void mutex_init() {
212211
def(CGC_lock , PaddedMonitor, special, true, _safepoint_check_never); // coordinate between fore- and background GC
213212
def(STS_lock , PaddedMonitor, leaf, true, _safepoint_check_never);
214213

215-
def(FullGCCount_lock , PaddedMonitor, leaf, true, _safepoint_check_never); // in support of ExplicitGCInvokesConcurrent
216214
if (UseG1GC) {
217215
def(G1OldGCCount_lock , PaddedMonitor, leaf, true, _safepoint_check_always);
218216

‎src/hotspot/share/runtime/mutexLocker.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ extern Mutex* NonJavaThreadsListSync_lock; // a lock for NonJavaThreads li
6666
extern Monitor* CGC_lock; // used for coordination between
6767
// fore- & background GC threads.
6868
extern Monitor* STS_lock; // used for joining/leaving SuspendibleThreadSet.
69-
extern Monitor* FullGCCount_lock; // in support of "concurrent" full gc
7069
extern Monitor* G1OldGCCount_lock; // in support of "concurrent" full gc
7170
extern Mutex* Shared_DirtyCardQ_lock; // Lock protecting dirty card
7271
// queue shared by

0 commit comments

Comments
 (0)
Please sign in to comment.