/
githubmirror
/
jdk22
Обзор
Документация
Войти
/
githubmirror
/
jdk22
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.base/share/classes/jdk/internal/access/JavaLangInvokeAccess.java
173 строки
6 KB
Mandy Chung
8315810: Reimplement sun.reflect.ReflectionFactory::newConstructorForSerialization with method handles
14 сен 2023, 19:10
14 сен 2023, 19:10
5cea53d
Код
Авторство
О чём код?
/* * Copyright (c) 2015, 2023, 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.access; import jdk.internal.foreign.abi.NativeEntryPoint; import java.lang.invoke.MethodHandle; import java.lang.invoke.MethodHandles.Lookup; import java.lang.invoke.MethodType; import java.lang.invoke.VarHandle; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.nio.ByteOrder; import java.util.List; import java.util.Map; import java.util.stream.Stream; public interface JavaLangInvokeAccess { /** * Returns the declaring class for the given ResolvedMethodName. * Used by {@code StackFrameInfo}. */ Class<?> getDeclaringClass(Object rmname); /** * Returns the {@code MethodType} for the given method descriptor * and class loader. * Used by {@code StackFrameInfo}. */ MethodType getMethodType(String descriptor, ClassLoader loader); /** * Returns true if the given flags has MN_CALLER_SENSITIVE flag set. */ boolean isCallerSensitive(int flags); /** * Returns true if the given flags has MN_HIDDEN_MEMBER flag set. */ boolean isHiddenMember(int flags); /** * Returns a map of class name in internal forms to its corresponding * class bytes per the given stream of LF_RESOLVE and SPECIES_RESOLVE * trace logs. Used by GenerateJLIClassesPlugin to enable generation * of such classes during the jlink phase. */ Map<String, byte[]> generateHolderClasses(Stream<String> traces); /** * Returns a var handle view of a given memory segment. * Used by {@code jdk.internal.foreign.LayoutPath} and * {@code java.lang.invoke.MethodHandles}. */ VarHandle memorySegmentViewHandle(Class<?> carrier, long alignmentMask, ByteOrder order); /** * Var handle carrier combinator. * Used by {@code java.lang.invoke.MethodHandles}. */ VarHandle filterValue(VarHandle target, MethodHandle filterToTarget, MethodHandle filterFromTarget); /** * Var handle filter coordinates combinator. * Used by {@code java.lang.invoke.MethodHandles}. */ VarHandle filterCoordinates(VarHandle target, int pos, MethodHandle... filters); /** * Var handle drop coordinates combinator. * Used by {@code java.lang.invoke.MethodHandles}. */ VarHandle dropCoordinates(VarHandle target, int pos, Class<?>... valueTypes); /** * Var handle permute coordinates combinator. * Used by {@code java.lang.invoke.MethodHandles}. */ VarHandle permuteCoordinates(VarHandle target, List<Class<?>> newCoordinates, int... reorder); /** * Var handle collect coordinates combinator. * Used by {@code java.lang.invoke.MethodHandles}. */ VarHandle collectCoordinates(VarHandle target, int pos, MethodHandle filter); /** * Var handle insert coordinates combinator. * Used by {@code java.lang.invoke.MethodHandles}. */ VarHandle insertCoordinates(VarHandle target, int pos, Object... values); /** * Returns a native method handle with given arguments as fallback and steering info. * * Will allow JIT to intrinsify. * * @param nep the native entry point * @return the native method handle */ MethodHandle nativeMethodHandle(NativeEntryPoint nep); /** * Produces a method handle unreflecting from a {@code Constructor} with * the trusted lookup */ MethodHandle unreflectConstructor(Constructor<?> ctor) throws IllegalAccessException; /** * Produces a method handle unreflecting from a {@code Field} with * the trusted lookup */ MethodHandle unreflectField(Field field, boolean isSetter) throws IllegalAccessException; /** * Produces a method handle of a virtual method with the trusted lookup. */ MethodHandle findVirtual(Class<?> defc, String name, MethodType type) throws IllegalAccessException; /** * Produces a method handle of a static method with the trusted lookup. */ MethodHandle findStatic(Class<?> defc, String name, MethodType type) throws IllegalAccessException; /** * Returns a method handle of an invoker class injected for core reflection * implementation with the following signature: * reflect_invoke_V(MethodHandle mh, Object target, Object[] args) * * The invoker class is a hidden class which has the same * defining class loader, runtime package, and protection domain * as the given caller class. */ MethodHandle reflectiveInvoker(Class<?> caller); /** * A best-effort method that tries to find any exceptions thrown by the given method handle. * @param handle the handle to check * @return an array of exceptions, or {@code null}. */ Class<?>[] exceptionTypes(MethodHandle handle); /** * Returns a method handle that allocates an instance of the given class * and then invoke the given constructor of one of its superclasses. * * This method should only be used by ReflectionFactory::newConstructorForSerialization. */ MethodHandle serializableConstructor(Class<?> decl, Constructor<?> ctorToCall) throws IllegalAccessException; }