@@ -143,8 +143,7 @@ void NMethodSweeper::init_sweeper_log() {
143
143
CompiledMethodIterator NMethodSweeper::_current (CompiledMethodIterator::all_blobs); // Current compiled method
144
144
long NMethodSweeper::_traversals = 0 ; // Stack scan count, also sweep ID.
145
145
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
148
147
int NMethodSweeper::_seen = 0 ; // Nof. nmethod we have currently processed in current pass of CodeCache
149
148
150
149
volatile bool NMethodSweeper::_should_sweep = false ;// Indicates if we should invoke the sweeper
@@ -176,17 +175,6 @@ class MarkActivationClosure: public CodeBlobClosure {
176
175
};
177
176
static MarkActivationClosure mark_activation_closure;
178
177
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
-
190
178
int NMethodSweeper::hotness_counter_reset_val () {
191
179
if (_hotness_counter_reset_val == 0 ) {
192
180
_hotness_counter_reset_val = (ReservedCodeCacheSize < M) ? 1 : (ReservedCodeCacheSize / M) * 2 ;
@@ -264,9 +252,6 @@ CodeBlobClosure* NMethodSweeper::prepare_mark_active_nmethods() {
264
252
return NULL ;
265
253
}
266
254
267
- // Increase time so that we can estimate when to invoke the sweeper again.
268
- _time_counter++;
269
-
270
255
// Check for restart
271
256
assert (_current.method () == NULL , " should only happen between sweeper cycles" );
272
257
assert (wait_for_stack_scanning (), " should only happen between sweeper cycles" );
@@ -284,32 +269,6 @@ CodeBlobClosure* NMethodSweeper::prepare_mark_active_nmethods() {
284
269
return &mark_activation_closure;
285
270
}
286
271
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
-
313
272
/* *
314
273
* This function triggers a VM operation that does stack scanning of active
315
274
* methods. Stack scanning is mandatory for the sweeper to make progress.
@@ -423,7 +382,7 @@ void NMethodSweeper::possibly_sweep() {
423
382
// Large ReservedCodeCacheSize: (e.g., 256M + code Cache is 90% full). The formula
424
383
// computes: (256 / 16) - 10 = 6.
425
384
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) ;
427
386
// ReservedCodeCacheSize has an 'unsigned' type. We need a 'signed' type for max_wait_time,
428
387
// since 'time_since_last_sweep' can be larger than 'max_wait_time'. If that happens using
429
388
// an unsigned type would cause an underflow (wait_until_next_sweep becomes a large positive
@@ -458,7 +417,7 @@ void NMethodSweeper::possibly_sweep() {
458
417
459
418
// We are done with sweeping the code cache once.
460
419
_total_nof_code_cache_sweeps++;
461
- _last_sweep = _time_counter ;
420
+ _last_sweep = SafepointSynchronize::safepoint_id () ;
462
421
// Reset flag; temporarily disables sweeper
463
422
_should_sweep = false ;
464
423
// If there was enough state change, 'possibly_enable_sweeper()'
0 commit comments