![JAR search and dependency download from the Maven repository](/logo.png)
com.oracle.truffle.runtime.hotspot.HotSpotThreadLocalHandshake Maven / Gradle / Ivy
/*
* Copyright (c) 2021, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* The Universal Permissive License (UPL), Version 1.0
*
* Subject to the condition set forth below, permission is hereby granted to any
* person obtaining a copy of this software, associated documentation and/or
* data (collectively the "Software"), free of charge and under any and all
* copyright rights in the Software, and any and all patent rights owned or
* freely licensable by each licensor hereunder covering either (i) the
* unmodified Software as contributed to or provided by such licensor, or (ii)
* the Larger Works (as defined below), to deal in both
*
* (a) the Software, and
*
* (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
* one is included with the Software each a "Larger Work" to which the Software
* is contributed by such licensors),
*
* without restriction, including without limitation the rights to copy, create
* derivative works of, display, perform, and distribute the Software and make,
* use, sell, offer for sale, import, export, have made, and have sold the
* Software and the Larger Work(s), and to sublicense the foregoing rights on
* either these or other terms.
*
* This license is subject to the following condition:
*
* The above copyright notice and either this complete permission notice or at a
* minimum a reference to the UPL must be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.oracle.truffle.runtime.hotspot;
import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.impl.ThreadLocalHandshake;
import com.oracle.truffle.api.nodes.Node;
import jdk.internal.access.JavaLangAccess;
import jdk.internal.access.SharedSecrets;
final class HotSpotThreadLocalHandshake extends ThreadLocalHandshake {
private static final sun.misc.Unsafe UNSAFE = HotSpotTruffleRuntime.UNSAFE;
private static final JavaLangAccess JAVA_LANG_ACCESS = SharedSecrets.getJavaLangAccess();
static final HotSpotThreadLocalHandshake SINGLETON = new HotSpotThreadLocalHandshake();
private static final ThreadLocal STATE = new ThreadLocal<>();
private static final int PENDING_OFFSET = HotSpotTruffleRuntime.getRuntime().getJVMCIReservedLongOffset0();
private static final long THREAD_EETOP_OFFSET;
private static final long THREAD_CARRIER_THREAD_OFFSET;
static {
try {
THREAD_EETOP_OFFSET = HotSpotTruffleRuntime.getObjectFieldOffset(Thread.class.getDeclaredField("eetop"));
Class> virtualThreadClass = Class.forName("java.lang.VirtualThread");
THREAD_CARRIER_THREAD_OFFSET = HotSpotTruffleRuntime.getObjectFieldOffset(virtualThreadClass.getDeclaredField("carrierThread"));
} catch (Exception e) {
throw new InternalError(e);
}
}
@Override
protected boolean isSupported() {
return true;
}
@Override
public void ensureThreadInitialized() {
STATE.set(getThreadState(Thread.currentThread()));
}
// This is only used in interpreter, PE uses HotSpotTruffleSafepointLoweringSnippet.pollSnippet
@Override
public void poll(Node enclosingNode) {
Thread carrierThread = JAVA_LANG_ACCESS.currentCarrierThread();
long eetop = UNSAFE.getLong(carrierThread, THREAD_EETOP_OFFSET);
if (UNSAFE.getInt(null, eetop + PENDING_OFFSET) != 0) {
processHandshake(enclosingNode);
}
}
static void doHandshake(Object node) {
SINGLETON.processHandshake((Node) node);
}
@Override
@TruffleBoundary
public TruffleSafepointImpl getCurrent() {
TruffleSafepointImpl state = STATE.get();
if (state == null) {
throw CompilerDirectives.shouldNotReachHere("Thread local handshake is not initialized for this thread. " +
"Did you call getCurrent() outside while a polyglot context not entered?");
}
return state;
}
@Override
protected void clearFastPending() {
Thread carrierThread = JAVA_LANG_ACCESS.currentCarrierThread();
long eetop = UNSAFE.getLongVolatile(carrierThread, THREAD_EETOP_OFFSET);
UNSAFE.putIntVolatile(null, eetop + PENDING_OFFSET, 0);
}
@Override
protected void setFastPending(Thread thread) {
/*
* The thread will not go away here because the Truffle implementation ensures that this
* method is no longer used if the thread is no longer active. It only sets this state for
* contexts that are currently entered on a thread. Being entered implies that the thread is
* active.
*/
assert thread.isAlive() : "thread must remain alive while setting the pending flag";
long eetop = UNSAFE.getLongVolatile(thread, THREAD_EETOP_OFFSET);
if (eetop != 0) {
UNSAFE.putIntVolatile(null, eetop + PENDING_OFFSET, 1);
} else { // only the case for VirtualThreads
Object carrierThread = UNSAFE.getObjectVolatile(thread, THREAD_CARRIER_THREAD_OFFSET);
if (carrierThread == null) {
/*
* The carrierThread of the VirtualThread is null, which means the VirtualThread was
* suspended (e.g. Thread.yield(), some blocking call, etc). In that case we will
* set the pending flag when the VirtualThread resumes, thanks to
* setPendingFlagForVirtualThread() below called on VirtualThread#mount().
*/
return;
}
eetop = UNSAFE.getLongVolatile(carrierThread, THREAD_EETOP_OFFSET);
UNSAFE.putIntVolatile(null, eetop + PENDING_OFFSET, 1);
/*
* If the VirtualThread moves to another carrier thread after this method returns, the
* pending flag will still be set correctly thanks to setPendingFlagForVirtualThread()
* below called on VirtualThread#mount().
*/
}
}
static void setPendingFlagForVirtualThread() {
TruffleSafepointImpl safepoint = STATE.get();
if (safepoint != null) {
Thread carrierThread = JAVA_LANG_ACCESS.currentCarrierThread();
long eetop = UNSAFE.getLongVolatile(carrierThread, THREAD_EETOP_OFFSET);
/*
* When this method and setFastPending() are run concurrently, there is a possibility
* that we set the carrier pending flag to 0 here based on pendingBefore==false, after
* setFastPending() sets the flag to 1 (which would lose the flag):
*
* @formatter:off
* with VT=VirtualThread MT=the thread that submits the ThreadLocalAction:
* VT: boolean pending = this.fastPendingSet; // false
* MT: fastPendingSet = true;
* MT: carrierThread.pending = true;
* VT: carrierThread.pending = pending; // false
* @formatter:on
*
* So we check for that case with pendingAfter and fix it. This is correct because
* either we wrote the 0 before setFastPending() wrote the 1 (harmless), or we wrote it
* after and then we must see pendingAfter==true, because (the caller of)
* setFastPending() sets fastPendingSet before writing to the carrier pending flag.
*
* If this method and setFastPending() are not run concurrently, then it is as if both
* methods were executed one after another (since all accesses are volatile and so
* sequentially consistent) and it works trivially.
*
* This solution is better than `if (isFastPendingSet()) { carrierThread.pending = 1; }`
* because that can leave the carrier flag as true after an unmount of a virtual thread
* which did not process safepoints yet and the newly-mounted virtual thread would not
* clear it, causing extra stub calls (clearing is only done if fastPendingSet is true,
* necessary for DefaultThreadLocalHandshake where clearFastPending() is not
* idempotent).
*/
boolean pendingBefore = safepoint.isFastPendingSet();
UNSAFE.putIntVolatile(null, eetop + PENDING_OFFSET, pendingBefore ? 1 : 0);
boolean pendingAfter = safepoint.isFastPendingSet();
if (!pendingBefore && pendingAfter) {
UNSAFE.putIntVolatile(null, eetop + PENDING_OFFSET, 1);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy