/
niceSOFT
/
openjdk21
Обзор
Документация
Войти
/
niceSOFT
/
openjdk21
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.base/share/classes/jdk/internal/foreign/SharedSession.java
146 строк
6 KB
Maurizio Cimadamore
8295044: Implementation of Foreign Function and Memory API (Second Preview)
05 дек 2022, 16:49
05 дек 2022, 16:49
73baadc
Код
Авторство
О чём код?
/* * Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package jdk.internal.foreign; import java.lang.invoke.MethodHandles; import java.lang.invoke.VarHandle; import java.lang.ref.Cleaner; import jdk.internal.misc.ScopedMemoryAccess; import jdk.internal.vm.annotation.ForceInline; /** * A shared session, which can be shared across multiple threads. Closing a shared session has to ensure that * (i) only one thread can successfully close a session (e.g. in a close vs. close race) and that * (ii) no other thread is accessing the memory associated with this session while the segment is being * closed. To ensure the former condition, a CAS is performed on the liveness bit. Ensuring the latter * is trickier, and require a complex synchronization protocol (see {@link jdk.internal.misc.ScopedMemoryAccess}). * Since it is the responsibility of the closing thread to make sure that no concurrent access is possible, * checking the liveness bit upon access can be performed in plain mode, as in the confined case. */ sealed class SharedSession extends MemorySessionImpl permits ImplicitSession { private static final ScopedMemoryAccess SCOPED_MEMORY_ACCESS = ScopedMemoryAccess.getScopedMemoryAccess(); SharedSession() { super(null, new SharedResourceList()); } @Override @ForceInline public void acquire0() { int value; do { value = (int) STATE.getVolatile(this); if (value < OPEN) { //segment is not open! throw alreadyClosed(); } else if (value == MAX_FORKS) { //overflow throw tooManyAcquires(); } } while (!STATE.compareAndSet(this, value, value + 1)); } @Override @ForceInline public void release0() { int value; do { value = (int) STATE.getVolatile(this); if (value <= OPEN) { //cannot get here - we can't close segment twice throw alreadyClosed(); } } while (!STATE.compareAndSet(this, value, value - 1)); } void justClose() { int prevState = (int) STATE.compareAndExchange(this, OPEN, CLOSING); if (prevState < 0) { throw alreadyClosed(); } else if (prevState != OPEN) { throw alreadyAcquired(prevState); } boolean success = SCOPED_MEMORY_ACCESS.closeScope(this); STATE.setVolatile(this, success ? CLOSED : OPEN); if (!success) { throw alreadyAcquired(1); } } /** * A shared resource list; this implementation has to handle add vs. add races, as well as add vs. cleanup races. */ static class SharedResourceList extends ResourceList { static final VarHandle FST; static { try { FST = MethodHandles.lookup().findVarHandle(ResourceList.class, "fst", ResourceCleanup.class); } catch (Throwable ex) { throw new ExceptionInInitializerError(); } } @Override void add(ResourceCleanup cleanup) { while (true) { ResourceCleanup prev = (ResourceCleanup) FST.getVolatile(this); if (prev == ResourceCleanup.CLOSED_LIST) { // too late throw alreadyClosed(); } cleanup.next = prev; if (FST.compareAndSet(this, prev, cleanup)) { return; //victory } // keep trying } } void cleanup() { // At this point we are only interested about add vs. close races - not close vs. close // (because MemorySessionImpl::justClose ensured that this thread won the race to close the session). // So, the only "bad" thing that could happen is that some other thread adds to this list // while we're closing it. if (FST.getAcquire(this) != ResourceCleanup.CLOSED_LIST) { //ok now we're really closing down ResourceCleanup prev = null; while (true) { prev = (ResourceCleanup) FST.getVolatile(this); // no need to check for DUMMY, since only one thread can get here! if (FST.compareAndSet(this, prev, ResourceCleanup.CLOSED_LIST)) { break; } } cleanup(prev); } else { throw alreadyClosed(); } } } }