Skip to content

Commit 1b90b28

Browse files
committedMar 3, 2020
ZGC: Remove hotness counter sampling from safepoint cleanup
1 parent b74c568 commit 1b90b28

File tree

3 files changed

+3
-53
lines changed

3 files changed

+3
-53
lines changed
 

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

-7
Original file line numberDiff line numberDiff line change
@@ -538,21 +538,14 @@ bool SafepointSynchronize::is_forced_cleanup_needed() {
538538

539539
class ParallelSPCleanupThreadClosure : public ThreadClosure {
540540
private:
541-
CodeBlobClosure* _nmethod_cl;
542541
DeflateMonitorCounters* _counters;
543542

544543
public:
545544
ParallelSPCleanupThreadClosure(DeflateMonitorCounters* counters) :
546-
_nmethod_cl(UseCodeAging ? NMethodSweeper::prepare_reset_hotness_counters() : NULL),
547545
_counters(counters) {}
548546

549547
void do_thread(Thread* thread) {
550548
ObjectSynchronizer::deflate_thread_local_monitors(thread, _counters);
551-
if (_nmethod_cl != NULL && thread->is_Java_thread() &&
552-
! thread->is_Code_cache_sweeper_thread()) {
553-
JavaThread* jt = (JavaThread*) thread;
554-
jt->nmethods_do(_nmethod_cl);
555-
}
556549
}
557550
};
558551

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

+3-44
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,7 @@ void NMethodSweeper::init_sweeper_log() {
143143
CompiledMethodIterator NMethodSweeper::_current(CompiledMethodIterator::all_blobs); // Current compiled method
144144
long NMethodSweeper::_traversals = 0; // Stack scan count, also sweep ID.
145145
long NMethodSweeper::_total_nof_code_cache_sweeps = 0; // Total number of full sweeps of the code cache
146-
long NMethodSweeper::_time_counter = 0; // Virtual time used to periodically invoke sweeper
147-
long NMethodSweeper::_last_sweep = 0; // Value of _time_counter when the last sweep happened
146+
long NMethodSweeper::_last_sweep = 0; // Value of safepoint counter when the last sweep happened
148147
int NMethodSweeper::_seen = 0; // Nof. nmethod we have currently processed in current pass of CodeCache
149148

150149
volatile bool NMethodSweeper::_should_sweep = false;// Indicates if we should invoke the sweeper
@@ -176,17 +175,6 @@ class MarkActivationClosure: public CodeBlobClosure {
176175
};
177176
static MarkActivationClosure mark_activation_closure;
178177

179-
class SetHotnessClosure: public CodeBlobClosure {
180-
public:
181-
virtual void do_code_blob(CodeBlob* cb) {
182-
assert(cb->is_nmethod(), "CodeBlob should be nmethod");
183-
nmethod* nm = (nmethod*)cb;
184-
nm->set_hotness_counter(NMethodSweeper::hotness_counter_reset_val());
185-
}
186-
};
187-
static SetHotnessClosure set_hotness_closure;
188-
189-
190178
int NMethodSweeper::hotness_counter_reset_val() {
191179
if (_hotness_counter_reset_val == 0) {
192180
_hotness_counter_reset_val = (ReservedCodeCacheSize < M) ? 1 : (ReservedCodeCacheSize / M) * 2;
@@ -264,9 +252,6 @@ CodeBlobClosure* NMethodSweeper::prepare_mark_active_nmethods() {
264252
return NULL;
265253
}
266254

267-
// Increase time so that we can estimate when to invoke the sweeper again.
268-
_time_counter++;
269-
270255
// Check for restart
271256
assert(_current.method() == NULL, "should only happen between sweeper cycles");
272257
assert(wait_for_stack_scanning(), "should only happen between sweeper cycles");
@@ -284,32 +269,6 @@ CodeBlobClosure* NMethodSweeper::prepare_mark_active_nmethods() {
284269
return &mark_activation_closure;
285270
}
286271

287-
CodeBlobClosure* NMethodSweeper::prepare_reset_hotness_counters() {
288-
assert(SafepointSynchronize::is_at_safepoint(), "must be executed at a safepoint");
289-
290-
// If we do not want to reclaim not-entrant or zombie methods there is no need
291-
// to scan stacks
292-
if (!MethodFlushing) {
293-
return NULL;
294-
}
295-
296-
// Increase time so that we can estimate when to invoke the sweeper again.
297-
_time_counter++;
298-
299-
// Check for restart
300-
if (_current.method() != NULL) {
301-
if (_current.method()->is_nmethod()) {
302-
assert(CodeCache::find_blob_unsafe(_current.method()) == _current.method(), "Sweeper nmethod cached state invalid");
303-
} else if (_current.method()->is_aot()) {
304-
assert(CodeCache::find_blob_unsafe(_current.method()->code_begin()) == _current.method(), "Sweeper AOT method cached state invalid");
305-
} else {
306-
ShouldNotReachHere();
307-
}
308-
}
309-
310-
return &set_hotness_closure;
311-
}
312-
313272
/**
314273
* This function triggers a VM operation that does stack scanning of active
315274
* methods. Stack scanning is mandatory for the sweeper to make progress.
@@ -423,7 +382,7 @@ void NMethodSweeper::possibly_sweep() {
423382
// Large ReservedCodeCacheSize: (e.g., 256M + code Cache is 90% full). The formula
424383
// computes: (256 / 16) - 10 = 6.
425384
if (!_should_sweep) {
426-
const int time_since_last_sweep = _time_counter - _last_sweep;
385+
const int time_since_last_sweep = int(SafepointSynchronize::safepoint_id() - _last_sweep);
427386
// ReservedCodeCacheSize has an 'unsigned' type. We need a 'signed' type for max_wait_time,
428387
// since 'time_since_last_sweep' can be larger than 'max_wait_time'. If that happens using
429388
// an unsigned type would cause an underflow (wait_until_next_sweep becomes a large positive
@@ -458,7 +417,7 @@ void NMethodSweeper::possibly_sweep() {
458417

459418
// We are done with sweeping the code cache once.
460419
_total_nof_code_cache_sweeps++;
461-
_last_sweep = _time_counter;
420+
_last_sweep = SafepointSynchronize::safepoint_id();
462421
// Reset flag; temporarily disables sweeper
463422
_should_sweep = false;
464423
// If there was enough state change, 'possibly_enable_sweeper()'

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

-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ class NMethodSweeper : public AllStatic {
6666
};
6767
static long _traversals; // Stack scan count, also sweep ID.
6868
static long _total_nof_code_cache_sweeps; // Total number of full sweeps of the code cache
69-
static long _time_counter; // Virtual time used to periodically invoke sweeper
7069
static long _last_sweep; // Value of _time_counter when the last sweep happened
7170
static CompiledMethodIterator _current; // Current compiled method
7271
static int _seen; // Nof. nmethod we have currently processed in current pass of CodeCache
@@ -114,7 +113,6 @@ class NMethodSweeper : public AllStatic {
114113

115114
static void mark_active_nmethods(); // Invoked at the end of each safepoint
116115
static CodeBlobClosure* prepare_mark_active_nmethods();
117-
static CodeBlobClosure* prepare_reset_hotness_counters();
118116
static void sweeper_loop();
119117
static void notify(int code_blob_type); // Possibly start the sweeper thread.
120118
static void force_sweep();

0 commit comments

Comments
 (0)
Please sign in to comment.