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

8331411: Shenandoah: Reconsider spinning duration in ShenandoahLock #19570

Closed
wants to merge 37 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e2cf04b
8331411: Shenandoah: Reconsider spinning duration in ShenandoahLock
pengxiaolong May 28, 2024
6713039
Not spin at all if running with single cpu processor
pengxiaolong Jun 6, 2024
65271a8
Agreesively spin to accquire lock for non-java threads
pengxiaolong Jun 10, 2024
2dc3401
Optimize shenandoahLock to address h2 benchmark regression
pengxiaolong Jun 12, 2024
19b4b15
Bug fix
pengxiaolong Jun 12, 2024
0aa8ef3
Remove trailing whitespace
pengxiaolong Jun 12, 2024
7986936
Apply TTAS for fast lock
pengxiaolong Jun 12, 2024
cbf6c6a
Yield up to 5 times
pengxiaolong Jun 12, 2024
fb77db8
Revert the fix specifically h2 and polish the code
pengxiaolong Jun 12, 2024
e88f2f3
Bug fix
pengxiaolong Jun 12, 2024
7c00440
Typo
pengxiaolong Jun 12, 2024
c1907b4
Merge branch 'openjdk:master' into JDK-8331411
pengxiaolong Jun 12, 2024
8adb2ce
Minor fix
pengxiaolong Jun 12, 2024
897cbaf
minor adjustments
pengxiaolong Jun 13, 2024
d5d8b65
Merge branch 'openjdk:master' into JDK-8331411
pengxiaolong Jun 13, 2024
7bb4ff3
Test code
pengxiaolong Jun 19, 2024
f388b34
Wait on STS_lock to suspend Java thread acquiring heap lock when SP i…
pengxiaolong Jun 19, 2024
0c874c5
Bug missing ')'
pengxiaolong Jun 19, 2024
d5cb460
Use semaphore to block thread when the thread acquire shenandoahLock …
pengxiaolong Jun 20, 2024
4264083
Fix some build errors
pengxiaolong Jun 20, 2024
c912c86
Fix build
pengxiaolong Jun 20, 2024
ea578db
Add TBIVM when SP is not pending but block in vm is allowed
pengxiaolong Jun 21, 2024
76c9f8b
Try not to Semaphore to reach SP faster
pengxiaolong Jun 21, 2024
afde323
Remove the code for using Semaphore to block JavaThread when SP is pe…
pengxiaolong Jun 21, 2024
2b55782
_threads_at_sp was not removed completely
pengxiaolong Jun 21, 2024
d65fe97
Fix typo in comments
pengxiaolong Jun 21, 2024
a165d26
Update comments
pengxiaolong Jun 21, 2024
d21541e
A bit more comments
pengxiaolong Jun 21, 2024
6c523be
Simplify ShenandoahLock::contended_lock_internal
pengxiaolong Jun 22, 2024
536f271
Polish and clean up
pengxiaolong Jun 24, 2024
89acb12
Fix typo
pengxiaolong Jun 24, 2024
c309886
Coe format and comments
pengxiaolong Jun 24, 2024
b1692ba
Fix linux-x64-hs-zero build failure
pengxiaolong Jun 25, 2024
aaeffc2
Adress review comments
pengxiaolong Jun 25, 2024
c14ee02
Increase spin pauses to 0xFF to address performance regression in lig…
pengxiaolong Jun 25, 2024
73e58d7
Add parentheses for better alignment
pengxiaolong Jun 25, 2024
6fd8205
Simplify code with less stacks
pengxiaolong Jun 25, 2024
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
2 changes: 1 addition & 1 deletion src/hotspot/share/gc/shenandoah/shenandoahLock.cpp
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ template<bool ALLOW_BLOCK>
void ShenandoahLock::contended_lock_internal(JavaThread* java_thread) {
assert(!ALLOW_BLOCK || java_thread != nullptr, "Must have a Java thread when allowing block.");
// Spin this much on multi-processor, do not spin on multi-processor.
int ctr = os::is_MP() ? 0x1F : 0;
int ctr = os::is_MP() ? 0xFF : 0;
// Apply TTAS to avoid more expensive CAS calls if the lock is still held by other thread.
while (Atomic::load(&_state) == locked ||
Atomic::cmpxchg(&_state, unlocked, locked) != unlocked) {
2 changes: 1 addition & 1 deletion src/hotspot/share/gc/shenandoah/shenandoahLock.hpp
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ class ShenandoahLock {
assert(Atomic::load(&_owner) != Thread::current(), "reentrant locking attempt, would deadlock");

if ((allow_block_for_safepoint && SafepointSynchronize::is_synchronizing()) ||
Atomic::cmpxchg(&_state, unlocked, locked) != unlocked) {
(Atomic::cmpxchg(&_state, unlocked, locked) != unlocked)) {
// 1. Java thread, and there is a pending safepoint. Dive into contended locking
// immediately without trying anything else, and block.
// 2. Fast lock fails, dive into contended lock handling.