@@ -631,7 +631,7 @@ nmethod::nmethod(
631
631
// values something that will never match a pc like the nmethod vtable entry
632
632
_exception_offset = 0 ;
633
633
_orig_pc_offset = 0 ;
634
- _marking_cycle = 0 ;
634
+ _gc_epoch = Continuations::gc_epoch () ;
635
635
636
636
_consts_offset = data_offset ();
637
637
_stub_offset = content_offset () + code_buffer->total_offset_of (code_buffer->stubs ());
@@ -768,7 +768,7 @@ nmethod::nmethod(
768
768
_comp_level = comp_level;
769
769
_orig_pc_offset = orig_pc_offset;
770
770
_hotness_counter = NMethodSweeper::hotness_counter_reset_val ();
771
- _marking_cycle = CodeCache::marking_cycle ();
771
+ _gc_epoch = Continuations::gc_epoch ();
772
772
773
773
// Section offsets
774
774
_consts_offset = content_offset () + code_buffer->total_offset_of (code_buffer->consts ());
@@ -1232,22 +1232,17 @@ void nmethod::mark_as_seen_on_stack() {
1232
1232
1233
1233
void nmethod::mark_as_maybe_on_continuation () {
1234
1234
assert (is_alive (), " Must be an alive method" );
1235
- _marking_cycle = CodeCache::marking_cycle ();
1235
+ _gc_epoch = Continuations::gc_epoch ();
1236
1236
}
1237
1237
1238
- bool nmethod::is_not_on_continuation_stack () {
1238
+ bool nmethod::is_maybe_on_continuation_stack () {
1239
1239
if (!Continuations::enabled ()) {
1240
- return true ;
1240
+ return false ;
1241
1241
}
1242
1242
1243
- // Odd marking cycles are found during concurrent marking. Even numbers are found
1244
- // in nmethods that are marked when GC is inactive (e.g. nmethod entry barriers during
1245
- // normal execution). Therefore we align up by 2 so that nmethods encountered during
1246
- // concurrent marking are treated as if they were encountered in the inactive phase
1247
- // after that concurrent GC. Each GC increments the marking cycle twice - once when
1248
- // it starts and once when it ends. So we can only be sure there are no new continuations
1249
- // when they have not been encountered from before a GC to after a GC.
1250
- return CodeCache::marking_cycle () >= align_up (_marking_cycle, 2 ) + 2 ;
1243
+ // If the condition below is true, it means that the nmethod was found to
1244
+ // be alive the previous completed marking cycle.
1245
+ return _gc_epoch >= Continuations::previous_completed_gc_marking_cycle ();
1251
1246
}
1252
1247
1253
1248
// Tell if a non-entrant method can be converted to a zombie (i.e.,
@@ -1268,7 +1263,7 @@ bool nmethod::can_convert_to_zombie() {
1268
1263
// If an is_unloading() nmethod is still not_entrant, then it is not safe to
1269
1264
// convert it to zombie due to GC unloading interactions. However, if it
1270
1265
// has become unloaded, then it is okay to convert such nmethods to zombie.
1271
- return stack_traversal_mark ()+1 < NMethodSweeper::traversal_count () && is_not_on_continuation_stack () &&
1266
+ return stack_traversal_mark ()+1 < NMethodSweeper::traversal_count () && ! is_maybe_on_continuation_stack () &&
1272
1267
!is_locked_by_vm () && (!is_unloading () || is_unloaded ());
1273
1268
}
1274
1269
0 commit comments