diff --git a/make/common/Release.gmk b/make/common/Release.gmk index 4bee467967d8dbedf43903ae0aa665eb3ba487b0..da7f469093225d402b49867d0e280b753af3bd1f 100644 --- a/make/common/Release.gmk +++ b/make/common/Release.gmk @@ -52,6 +52,9 @@ EXCLUDE_PROPWARN_PKGS = com.sun.java.swing.plaf \ com.sun.java.swing.plaf.motif \ com.sun.java.swing.plaf.gtk +# This is a stopgap until 6839872 is fixed. +EXCLUDE_PROPWARN_PKGS += sun.dyn + # 64-bit solaris has a few special cases. We define the variable # SOLARIS64 for use in this Makefile to easily test those cases ifeq ($(PLATFORM), solaris) diff --git a/make/docs/CORE_PKGS.gmk b/make/docs/CORE_PKGS.gmk index dc4bc1cdaf872856653d7ca8adff1bad572912c1..43a380ef8362b1cc88cef14b064412ce5aad8379 100644 --- a/make/docs/CORE_PKGS.gmk +++ b/make/docs/CORE_PKGS.gmk @@ -97,6 +97,7 @@ CORE_PKGS = \ java.awt.print \ java.beans \ java.beans.beancontext \ + java.dyn \ java.io \ java.lang \ java.lang.annotation \ diff --git a/src/share/classes/java/dyn/CallSite.java b/src/share/classes/java/dyn/CallSite.java index 67ad52f737d39a145158e862081d968711588a67..34624a5a170b9064b0f3055a53b5b160e5564ad3 100644 --- a/src/share/classes/java/dyn/CallSite.java +++ b/src/share/classes/java/dyn/CallSite.java @@ -28,18 +28,28 @@ package java.dyn; import sun.dyn.util.BytecodeName; /** - * An invokedynamic call site, as reified to the bootstrap method. - * Every instance of a call site corresponds to a distinct instance - * of the invokedynamic instruction. - * Call sites have state, one reference word, called the target, - * and typed as a {@link MethodHandle}. When this state is null (as it is - * initially) the call site is in the unlinked state. Otherwise, it is said - * to be linked to its target. + * An {@code invokedynamic} call site, as reified by the + * containing class's bootstrap method. + * Every call site object corresponds to a distinct instance + * of the invokedynamic instruction, and vice versa. + * Every call site has one state variable, called the {@code target}. + * It is typed as a {@link MethodHandle}. This state is never null, and + * it is the responsibility of the bootstrap method to produce call sites + * which have been pre-linked to an initial target method. *

- * When an unlinked call site is executed, a bootstrap routine is called - * to finish the execution of the call site, and optionally to link - * the call site. + * (Note: The bootstrap method may elect to produce call sites of a + * language-specific subclass of {@code CallSite}. In such a case, + * the subclass may claim responsibility for initializing its target to + * a non-null value, by overriding {@link #initialTarget}.) *

+ * An {@code invokedynamic} instruction which has not yet been executed + * is said to be unlinked. When an unlinked call site is executed, + * the containing class's bootstrap method is called to manufacture a call site, + * for the instruction. If the bootstrap method does not assign a non-null + * value to the new call site's target variable, the method {@link #initialTarget} + * is called to produce the new call site's first target method. + *

+ * @see Linkage#registerBootstrapMethod(java.lang.Class, java.dyn.MethodHandle) * @author John Rose, JSR 292 EG */ public class CallSite { @@ -52,6 +62,15 @@ public class CallSite { final String name; final MethodType type; + /** + * Make a call site given the parameters from a call to the bootstrap method. + * The resulting call site is in an unlinked state, which means that before + * it is returned from a bootstrap method call it must be provided with + * a target method via a call to {@link CallSite#setTarget}. + * @param caller the class in which the relevant {@code invokedynamic} instruction occurs + * @param name the name specified by the {@code invokedynamic} instruction + * @param type the method handle type derived from descriptor of the {@code invokedynamic} instruction + */ public CallSite(Object caller, String name, MethodType type) { this.caller = caller; this.name = name; @@ -73,7 +92,9 @@ public class CallSite { *

* If the bootstrap method itself does not initialize the call site, * this method must be overridden, because it just raises an - * {@code InvokeDynamicBootstrapError}. + * {@code InvokeDynamicBootstrapError}, which in turn causes the + * linkage of the {@code invokedynamic} instruction to terminate + * abnormally. */ protected MethodHandle initialTarget() { throw new InvokeDynamicBootstrapError("target must be initialized before call site is linked: "+this); @@ -81,7 +102,7 @@ public class CallSite { /** * Report the current linkage state of the call site. (This is mutable.) - * The value is null if and only if the call site is currently unlinked. + * The value maybe null only if the call site is currently unlinked. * When a linked call site is invoked, the target method is used directly. * When an unlinked call site is invoked, its bootstrap method receives * the call, as if via {@link Linkage#bootstrapInvokeDynamic}. @@ -113,8 +134,9 @@ public class CallSite { * into the bootstrap method and/or the target methods used * at any given call site. * @param target the new target, or null if it is to be unlinked - * @throws WrongMethodTypeException if the new target is not null - * and has a method type that differs from the call site's {@link #type} + * @throws NullPointerException if the proposed new target is null + * @throws WrongMethodTypeException if the proposed new target + * has a method type that differs from the call site's {@link #type()} */ public void setTarget(MethodHandle target) { checkTarget(target); @@ -122,6 +144,7 @@ public class CallSite { } protected void checkTarget(MethodHandle target) { + target.type(); // provoke NPE if (!canSetTarget(target)) throw new WrongMethodTypeException(String.valueOf(target)); } @@ -132,7 +155,7 @@ public class CallSite { /** * Report the class containing the call site. - * This is immutable static context. + * This is an immutable property of the call site, set from the first argument to the constructor. * @return class containing the call site */ public Class callerClass() { @@ -141,7 +164,7 @@ public class CallSite { /** * Report the method name specified in the {@code invokedynamic} instruction. - * This is immutable static context. + * This is an immutable property of the call site, set from the second argument to the constructor. *

* Note that the name is a JVM bytecode name, and as such can be any * non-empty string, as long as it does not contain certain "dangerous" @@ -187,7 +210,7 @@ public class CallSite { * which are derived from its bytecode-level invocation descriptor. * The types are packaged into a {@link MethodType}. * Any linked target of this call site must be exactly this method type. - * This is immutable static context. + * This is an immutable property of the call site, set from the third argument to the constructor. * @return method type specified by the call site */ public MethodType type() { diff --git a/src/share/classes/java/dyn/InvokeDynamic.java b/src/share/classes/java/dyn/InvokeDynamic.java index 446c2d0c55bb7e27cdd07bdb949ae6c0708d31c3..2bec7b7dfe6a115c24086f052ad4c3a53eac16a4 100644 --- a/src/share/classes/java/dyn/InvokeDynamic.java +++ b/src/share/classes/java/dyn/InvokeDynamic.java @@ -26,10 +26,25 @@ package java.dyn; /** - * Syntactic marker interface to request javac to emit an {@code invokedynamic} instruction. + * Syntactic marker to request javac to emit an {@code invokedynamic} instruction. + * An {@code invokedynamic} instruction is a 5-byte bytecoded instruction + * which begins with an opcode byte of value 186 ({@code 0xBA}), + * and is followed by a two-byte index of a {@code NameAndType} constant + * pool entry, then by two zero bytes. The constant pool reference gives + * the method name and argument and return types of the call site; there + * is no other information provided at the call site. *

- * This type has no particular meaning as a class or interface supertype, and can never be instantiated. + * The {@code invokedynamic} instruction is incomplete without a target method. + * The target method is a property of the reified call site object + * (of type {@link CallSite}) which is in a one-to-one association with each + * corresponding {@code invokedynamic} instruction. The call site object + * is initially produced by a bootstrap method associated with + * the call site, via the various overloadings of {@link Linkage#registerBootstrapMethod}. + *

+ * The type {@code InvokeDynamic} has no particular meaning as a + * class or interface supertype, or an object type; it can never be instantiated. * Logically, it denotes a source of all dynamically typed methods. + * It may be viewed as a pure syntactic marker (an importable one) of static calls. * @author John Rose, JSR 292 EG */ public final class InvokeDynamic { diff --git a/src/share/classes/java/dyn/Linkage.java b/src/share/classes/java/dyn/Linkage.java index 09e84d16ac9355054a76c2690808db902ed6b3ed..cbeeb3351deb62695758f16e625f7f54c73e8c21 100644 --- a/src/share/classes/java/dyn/Linkage.java +++ b/src/share/classes/java/dyn/Linkage.java @@ -37,16 +37,19 @@ public class Linkage { private Linkage() {} // do not instantiate /** - * Register a bootstrap method for use for a given caller class. - * The method handle must be of a type equivalent to {@link Linkage#makeCallSite}. + * PROVISIONAL API, WORK IN PROGRESS: + * Register a bootstrap method to use when linking a given caller class. + * It must be a method handle of a type equivalent to {@link CallSite#CallSite}. + * In other words, it must act as a factory method which accepts the arguments + * to {@code CallSite}'s constructor (a class, a string, and a method type), + * and returns a {@code CallSite} object (possibly of a subclass of {@code CallSite}). *

- * The operation will fail with an exception if any of the following conditions hold: + * The registration will fail with an {@code IllegalStateException} if any of the following conditions hold: *