Skip to content

Commit e32bf91

Browse files
committedApr 7, 2022
Merge
2 parents e41a98f + f204647 commit e32bf91

25 files changed

+135
-84
lines changed
 

‎src/hotspot/share/code/codeCache.cpp

-23
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,6 @@ void CodeCache::purge_exception_caches() {
829829
}
830830

831831
uint8_t CodeCache::_unloading_cycle = 1;
832-
uint64_t CodeCache::_marking_cycle = 0;
833832

834833
void CodeCache::increment_unloading_cycle() {
835834
// 2-bit value (see IsUnloadingState in nmethod.cpp for details)
@@ -840,28 +839,6 @@ void CodeCache::increment_unloading_cycle() {
840839
}
841840
}
842841

843-
void CodeCache::increment_marking_cycle() {
844-
++_marking_cycle;
845-
BarrierSetNMethod* bs_nm = BarrierSet::barrier_set()->barrier_set_nmethod();
846-
if (bs_nm != NULL) {
847-
bs_nm->arm_all_nmethods();
848-
}
849-
}
850-
851-
bool CodeCache::is_marking_cycle_active() {
852-
return (_marking_cycle % 2) == 1;
853-
}
854-
855-
void CodeCache::start_marking_cycle() {
856-
assert(!is_marking_cycle_active(), "Previous marking cycle never ended");
857-
increment_marking_cycle();
858-
}
859-
860-
void CodeCache::finish_marking_cycle() {
861-
assert(is_marking_cycle_active(), "Marking cycle started before last one finished");
862-
increment_marking_cycle();
863-
}
864-
865842
CodeCache::UnloadingScope::UnloadingScope(BoolObjectClosure* is_alive)
866843
: _is_unloading_behaviour(is_alive)
867844
{

‎src/hotspot/share/code/codeCache.hpp

-9
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ class CodeCache : AllStatic {
9696
static address _high_bound; // Upper bound of CodeHeap addresses
9797
static int _number_of_nmethods_with_dependencies; // Total number of nmethods with dependencies
9898
static uint8_t _unloading_cycle; // Global state for recognizing old nmethods that need to be unloaded
99-
static uint64_t _marking_cycle;
10099

101100
static ExceptionCache* volatile _exception_cache_purge_list;
102101

@@ -203,14 +202,6 @@ class CodeCache : AllStatic {
203202

204203
static void increment_unloading_cycle();
205204

206-
private:
207-
static void increment_marking_cycle();
208-
209-
public:
210-
static void start_marking_cycle();
211-
static void finish_marking_cycle();
212-
static bool is_marking_cycle_active();
213-
static uint64_t marking_cycle() { return _marking_cycle; }
214205
static void release_exception_cache(ExceptionCache* entry);
215206
static void purge_exception_caches();
216207

‎src/hotspot/share/code/nmethod.cpp

+9-14
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ nmethod::nmethod(
631631
// values something that will never match a pc like the nmethod vtable entry
632632
_exception_offset = 0;
633633
_orig_pc_offset = 0;
634-
_marking_cycle = 0;
634+
_gc_epoch = Continuations::gc_epoch();
635635

636636
_consts_offset = data_offset();
637637
_stub_offset = content_offset() + code_buffer->total_offset_of(code_buffer->stubs());
@@ -768,7 +768,7 @@ nmethod::nmethod(
768768
_comp_level = comp_level;
769769
_orig_pc_offset = orig_pc_offset;
770770
_hotness_counter = NMethodSweeper::hotness_counter_reset_val();
771-
_marking_cycle = CodeCache::marking_cycle();
771+
_gc_epoch = Continuations::gc_epoch();
772772

773773
// Section offsets
774774
_consts_offset = content_offset() + code_buffer->total_offset_of(code_buffer->consts());
@@ -1232,22 +1232,17 @@ void nmethod::mark_as_seen_on_stack() {
12321232

12331233
void nmethod::mark_as_maybe_on_continuation() {
12341234
assert(is_alive(), "Must be an alive method");
1235-
_marking_cycle = CodeCache::marking_cycle();
1235+
_gc_epoch = Continuations::gc_epoch();
12361236
}
12371237

1238-
bool nmethod::is_not_on_continuation_stack() {
1238+
bool nmethod::is_maybe_on_continuation_stack() {
12391239
if (!Continuations::enabled()) {
1240-
return true;
1240+
return false;
12411241
}
12421242

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();
12511246
}
12521247

12531248
// Tell if a non-entrant method can be converted to a zombie (i.e.,
@@ -1268,7 +1263,7 @@ bool nmethod::can_convert_to_zombie() {
12681263
// If an is_unloading() nmethod is still not_entrant, then it is not safe to
12691264
// convert it to zombie due to GC unloading interactions. However, if it
12701265
// 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() &&
12721267
!is_locked_by_vm() && (!is_unloading() || is_unloaded());
12731268
}
12741269

‎src/hotspot/share/code/nmethod.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class nmethod : public CompiledMethod {
7474
// Shared fields for all nmethod's
7575
int _entry_bci; // != InvocationEntryBci if this nmethod is an on-stack replacement method
7676

77-
uint64_t _marking_cycle;
77+
uint64_t _gc_epoch;
7878

7979
// To support simple linked-list chaining of nmethods:
8080
nmethod* _osr_link; // from InstanceKlass::osr_nmethods_head
@@ -571,7 +571,7 @@ class nmethod : public CompiledMethod {
571571
// See comment at definition of _last_seen_on_stack
572572
void mark_as_seen_on_stack();
573573
void mark_as_maybe_on_continuation();
574-
bool is_not_on_continuation_stack();
574+
bool is_maybe_on_continuation_stack();
575575
bool can_convert_to_zombie();
576576

577577
// Evolution support. We make old (discarded) compiled methods point to new Method*s.

‎src/hotspot/share/gc/g1/g1CollectedHeap.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -3457,13 +3457,14 @@ void G1CollectedHeap::fill_with_dummy_object(HeapWord* start, HeapWord* end, boo
34573457
}
34583458

34593459
void G1CollectedHeap::start_codecache_marking_cycle_if_inactive() {
3460-
if (!CodeCache::is_marking_cycle_active()) {
3460+
if (!Continuations::is_gc_marking_cycle_active()) {
34613461
// This is the normal case when we do not call collect when a
34623462
// concurrent mark is ongoing. We then start a new code marking
34633463
// cycle. If, on the other hand, a concurrent mark is ongoing, we
34643464
// will be conservative and use the last code marking cycle. Code
34653465
// caches marked between the two concurrent marks will live a bit
34663466
// longer than needed.
3467-
CodeCache::start_marking_cycle();
3467+
Continuations::on_gc_marking_cycle_start();
3468+
Continuations::arm_all_nmethods();
34683469
}
34693470
}

‎src/hotspot/share/gc/g1/g1ConcurrentMark.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
#include "oops/access.inline.hpp"
6767
#include "oops/oop.inline.hpp"
6868
#include "runtime/atomic.hpp"
69+
#include "runtime/continuation.hpp"
6970
#include "runtime/globals_extension.hpp"
7071
#include "runtime/handles.inline.hpp"
7172
#include "runtime/java.hpp"
@@ -1300,7 +1301,8 @@ void G1ConcurrentMark::remark() {
13001301
report_object_count(mark_finished);
13011302
}
13021303

1303-
CodeCache::finish_marking_cycle();
1304+
Continuations::on_gc_marking_cycle_finish();
1305+
Continuations::arm_all_nmethods();
13041306

13051307
// Statistics
13061308
double now = os::elapsedTime();

‎src/hotspot/share/gc/g1/g1FullCollector.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
#include "gc/shared/weakProcessor.inline.hpp"
4545
#include "gc/shared/workerPolicy.hpp"
4646
#include "logging/log.hpp"
47+
#include "runtime/continuation.hpp"
4748
#include "runtime/handles.inline.hpp"
4849
#include "utilities/debug.hpp"
4950

@@ -201,7 +202,8 @@ void G1FullCollector::collect() {
201202

202203
phase4_do_compaction();
203204

204-
CodeCache::finish_marking_cycle();
205+
Continuations::on_gc_marking_cycle_finish();
206+
Continuations::arm_all_nmethods();
205207
}
206208

207209
void G1FullCollector::complete_collection() {

‎src/hotspot/share/gc/g1/g1FullGCOopClosures.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ inline void G1MarkAndPushClosure::do_cld(ClassLoaderData* cld) {
6464
}
6565

6666
inline void G1MarkAndPushClosure::do_method(Method* m) {
67-
m->record_marking_cycle();
67+
m->record_gc_epoch();
6868
}
6969

7070
inline void G1MarkAndPushClosure::do_nmethod(nmethod* nm) {

‎src/hotspot/share/gc/parallel/psParallelCompact.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
#include "oops/objArrayKlass.inline.hpp"
7676
#include "oops/oop.inline.hpp"
7777
#include "runtime/atomic.hpp"
78+
#include "runtime/continuation.hpp"
7879
#include "runtime/handles.inline.hpp"
7980
#include "runtime/java.hpp"
8081
#include "runtime/safepoint.hpp"
@@ -960,7 +961,8 @@ void PSParallelCompact::pre_compact()
960961
// Increment the invocation count
961962
heap->increment_total_collections(true);
962963

963-
CodeCache::start_marking_cycle();
964+
Continuations::on_gc_marking_cycle_start();
965+
Continuations::arm_all_nmethods();
964966

965967
// We need to track unique mark sweep invocations as well.
966968
_total_invocations++;
@@ -992,7 +994,8 @@ void PSParallelCompact::post_compact()
992994
GCTraceTime(Info, gc, phases) tm("Post Compact", &_gc_timer);
993995
ParCompactionManager::remove_all_shadow_regions();
994996

995-
CodeCache::finish_marking_cycle();
997+
Continuations::on_gc_marking_cycle_finish();
998+
Continuations::arm_all_nmethods();
996999

9971000
for (unsigned int id = old_space_id; id < last_space_id; ++id) {
9981001
// Clear the marking bitmap, summary data and split info.

‎src/hotspot/share/gc/serial/markSweep.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ inline void MarkAndPushClosure::do_oop(oop* p) { do_oop_work(p); }
8686
inline void MarkAndPushClosure::do_oop(narrowOop* p) { do_oop_work(p); }
8787
inline void MarkAndPushClosure::do_klass(Klass* k) { MarkSweep::follow_klass(k); }
8888
inline void MarkAndPushClosure::do_cld(ClassLoaderData* cld) { MarkSweep::follow_cld(cld); }
89-
inline void MarkAndPushClosure::do_method(Method* m) { m->record_marking_cycle(); }
89+
inline void MarkAndPushClosure::do_method(Method* m) { m->record_gc_epoch(); }
9090
inline void MarkAndPushClosure::do_nmethod(nmethod* nm) { nm->follow_nmethod(this); }
9191

9292
template <class T> inline void MarkSweep::adjust_pointer(T* p) {

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

+2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ class BarrierSetNMethodArmClosure : public ThreadClosure {
9696
};
9797

9898
void BarrierSetNMethod::arm_all_nmethods() {
99+
// Change to a new global GC phase. Doing this requires changing the thread-local
100+
// disarm value for all threads, to reflect the new GC phase.
99101
++_current_phase;
100102
if (_current_phase == 4) {
101103
_current_phase = 1;

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

+5-2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
#include "memory/resourceArea.hpp"
6464
#include "memory/universe.hpp"
6565
#include "oops/oop.inline.hpp"
66+
#include "runtime/continuation.hpp"
6667
#include "runtime/handles.hpp"
6768
#include "runtime/handles.inline.hpp"
6869
#include "runtime/java.hpp"
@@ -607,7 +608,8 @@ void GenCollectedHeap::do_collection(bool full,
607608
increment_total_full_collections();
608609
}
609610

610-
CodeCache::start_marking_cycle();
611+
Continuations::on_gc_marking_cycle_start();
612+
Continuations::arm_all_nmethods();
611613

612614
collect_generation(_old_gen,
613615
full,
@@ -616,7 +618,8 @@ void GenCollectedHeap::do_collection(bool full,
616618
run_verification && VerifyGCLevel <= 1,
617619
do_clear_all_soft_refs);
618620

619-
CodeCache::finish_marking_cycle();
621+
Continuations::on_gc_marking_cycle_finish();
622+
Continuations::arm_all_nmethods();
620623

621624
// Adjust generation sizes.
622625
_old_gen->compute_new_size();

‎src/hotspot/share/gc/z/zMark.cpp

+10-2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
#include "oops/objArrayOop.inline.hpp"
5757
#include "oops/oop.inline.hpp"
5858
#include "runtime/atomic.hpp"
59+
#include "runtime/continuation.hpp"
5960
#include "runtime/handshake.hpp"
6061
#include "runtime/prefetch.inline.hpp"
6162
#include "runtime/safepointMechanism.hpp"
@@ -109,7 +110,11 @@ void ZMark::start() {
109110
// marking information for all pages.
110111
ZGlobalSeqNum++;
111112

112-
CodeCache::start_marking_cycle();
113+
// Tell the sweeper that we start a marking cycle.
114+
// Unlike other GCs, the color switch implicitly changes the nmethods
115+
// to be armed, and the thread-local disarm values are lazily updated
116+
// when JavaThreads wake up from safepoints.
117+
Continuations::on_gc_marking_cycle_start();
113118

114119
// Reset flush/continue counters
115120
_nproactiveflush = 0;
@@ -817,7 +822,10 @@ bool ZMark::end() {
817822
// Update statistics
818823
ZStatMark::set_at_mark_end(_nproactiveflush, _nterminateflush, _ntrycomplete, _ncontinue);
819824

820-
CodeCache::finish_marking_cycle();
825+
// Tell the sweeper that we finished a marking cycle.
826+
// Unlike other GCs, we do not arm the nmethods
827+
// when marking terminates.
828+
Continuations::on_gc_marking_cycle_finish();
821829

822830
// Mark completed
823831
return true;

‎src/hotspot/share/memory/iterator.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ inline void ClaimMetadataVisitingOopIterateClosure::do_nmethod(nmethod* nm) {
6060

6161
inline void ClaimMetadataVisitingOopIterateClosure::do_method(Method* m) {
6262
// Mark interpreted frames for marking_cycle
63-
m->record_marking_cycle();
63+
m->record_gc_epoch();
6464
}
6565

6666
// Implementation of the non-virtual do_oop dispatch.

‎src/hotspot/share/oops/constantPool.cpp

+21-8
Original file line numberDiff line numberDiff line change
@@ -2213,17 +2213,30 @@ int ConstantPool::copy_cpool_bytes(int cpool_size,
22132213

22142214
#undef DBG
22152215

2216-
// For redefinition, if any methods found in InstanceStackChunks, the marking_cycle is
2216+
bool ConstantPool::is_maybe_on_continuation_stack() const {
2217+
// This method uses the similar logic as nmethod::is_maybe_on_continuation_stack()
2218+
if (!Continuations::enabled()) {
2219+
return false;
2220+
}
2221+
2222+
// If the condition below is true, it means that the nmethod was found to
2223+
// be alive the previous completed marking cycle.
2224+
return cache()->gc_epoch() >= Continuations::previous_completed_gc_marking_cycle();
2225+
}
2226+
2227+
// For redefinition, if any methods found in loom stack chunks, the gc_epoch is
22172228
// recorded in their constant pool cache. The on_stack-ness of the constant pool controls whether
22182229
// memory for the method is reclaimed.
22192230
bool ConstantPool::on_stack() const {
2220-
// See nmethod::is_not_on_continuation_stack for explanation of what this means.
2221-
// cpCache is null when doing default method processing during class loading, so
2222-
// won't be on a continuation stack.
2223-
bool not_on_vthread_stack = !Continuations::enabled()
2224-
|| _cache == nullptr
2225-
|| CodeCache::marking_cycle() >= align_up(cache()->marking_cycle(), 2) + 2;
2226-
return (_flags &_on_stack) != 0 || !not_on_vthread_stack;
2231+
if ((_flags &_on_stack) != 0) {
2232+
return true;
2233+
}
2234+
2235+
if (_cache == nullptr) {
2236+
return false;
2237+
}
2238+
2239+
return is_maybe_on_continuation_stack();
22272240
}
22282241

22292242
void ConstantPool::set_on_stack(const bool value) {

‎src/hotspot/share/oops/constantPool.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ class ConstantPool : public Metadata {
206206
// can't be removed from the set of previous versions saved in the instance
207207
// class.
208208
bool on_stack() const;
209+
bool is_maybe_on_continuation_stack() const;
209210
void set_on_stack(const bool value);
210211

211212
// Faster than MetaspaceObj::is_shared() - used by set_on_stack()

‎src/hotspot/share/oops/cpCache.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include "classfile/resolutionErrors.hpp"
2828
#include "classfile/systemDictionary.hpp"
2929
#include "classfile/vmClasses.hpp"
30-
#include "code/codeCache.hpp"
3130
#include "interpreter/bytecodeStream.hpp"
3231
#include "interpreter/bytecodes.hpp"
3332
#include "interpreter/interpreter.hpp"
@@ -47,6 +46,7 @@
4746
#include "prims/methodHandles.hpp"
4847
#include "runtime/arguments.hpp"
4948
#include "runtime/atomic.hpp"
49+
#include "runtime/continuation.hpp"
5050
#include "runtime/handles.inline.hpp"
5151
#include "runtime/vm_version.hpp"
5252
#include "utilities/macros.hpp"
@@ -706,9 +706,9 @@ void ConstantPoolCache::initialize(const intArray& inverse_index_map,
706706
}
707707
}
708708

709-
// Record the GC marking cycle when redefined vs. when found in the InstanceStackChunks.
710-
void ConstantPoolCache::record_marking_cycle() {
711-
_marking_cycle = CodeCache::marking_cycle();
709+
// Record the GC marking cycle when redefined vs. when found in the loom stack chunks.
710+
void ConstantPoolCache::record_gc_epoch() {
711+
_gc_epoch = Continuations::gc_epoch();
712712
}
713713

714714
void ConstantPoolCache::verify_just_initialized() {

0 commit comments

Comments
 (0)
Please sign in to comment.