Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8253857: Shenandoah: Bugs in ShenandoahEvacOOMHandler related code #439

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/hotspot/share/gc/shenandoah/shenandoahEvacOOMHandler.cpp
Original file line number Diff line number Diff line change
@@ -50,18 +50,18 @@ void ShenandoahEvacOOMHandler::register_thread(Thread* thr) {

assert(!ShenandoahThreadLocalData::is_oom_during_evac(Thread::current()), "TL oom-during-evac must not be set");
while (true) {
// Check for OOM.
// If offender has OOM_MARKER_MASK, then loop until no more threads in evac
if ((threads_in_evac & OOM_MARKER_MASK) != 0) {
wait_for_no_evac_threads();
return;
}

jint other = Atomic::cmpxchg(&_threads_in_evac, threads_in_evac, threads_in_evac + 1);
if (other == threads_in_evac) {
// Success: caller may safely enter evacuation
return;
} else {
// Failure:
// - if offender has OOM_MARKER_MASK, then loop until no more threads in evac
// - otherwise re-try CAS
if ((other & OOM_MARKER_MASK) != 0) {
wait_for_no_evac_threads();
return;
}
threads_in_evac = other;
}
}
23 changes: 12 additions & 11 deletions src/hotspot/share/gc/shenandoah/shenandoahEvacOOMHandler.inline.hpp
Original file line number Diff line number Diff line change
@@ -34,17 +34,18 @@ void ShenandoahEvacOOMHandler::enter_evacuation(Thread* thr) {
jint threads_in_evac = Atomic::load_acquire(&_threads_in_evac);

uint8_t level = ShenandoahThreadLocalData::push_evac_oom_scope(thr);
if ((threads_in_evac & OOM_MARKER_MASK) != 0) {
wait_for_no_evac_threads();
return;
}

// Nesting case, this thread already registered
if (level != 0) {
return;
}
// Entering top level scope, register this thread.
register_thread(thr);
if (level == 0) {
// Entering top level scope, register this thread.
register_thread(thr);
} else if (!ShenandoahThreadLocalData::is_oom_during_evac(thr)) {
jint threads_in_evac = Atomic::load_acquire(&_threads_in_evac);
// If OOM is in progress, handle it.
if ((threads_in_evac & OOM_MARKER_MASK) != 0) {
assert((threads_in_evac & ~OOM_MARKER_MASK) > 0, "sanity");
Atomic::dec(&_threads_in_evac);
wait_for_no_evac_threads();
}
}
}

void ShenandoahEvacOOMHandler::leave_evacuation(Thread* thr) {