What's invokedynamic and how do I use it?

前端 未结 4 1339
栀梦
栀梦 2020-12-04 06:11

I keep hearing about all the new cool features that are being added to the JVM and one of those cool features is invokedynamic. I would like to know what it is and how does

4条回答
  •  我在风中等你
    2020-12-04 06:43

    As part of my Java Records article, I articulated about the motivation behind Inoke Dynamic. Let's start with a rough definition of Indy.

    Introducing Indy

    Invoke Dynamic (Also known as Indy) was part of JSR 292 intending to enhance the JVM support for Dynamic Type Languages. After its first release in Java 7, The invokedynamic opcode along with its java.lang.invoke luggage is used quite extensively by dynamic JVM-based languages like JRuby.

    Although indy specifically designed to enhance the dynamic language support, it offers much more than that. As a matter of fact, it’s suitable to use wherever a language designer needs any form of dynamicity, from dynamic type acrobatics to dynamic strategies!

    For instance, the Java 8 Lambda Expressions are actually implemented using invokedynamic, even though Java is a statically typed language!

    User-Definable Bytecode

    For quite some time JVM did support four method invocation types: invokestatic to call static methods, invokeinterface to call interface methods, invokespecial to call constructors, super() or private methods and invokevirtual to call instance methods.

    Despite their differences, these invocation types share one common trait: we can’t enrich them with our own logic. On the contrary, invokedynamic enables us to Bootstrap the invocation process in any way we want. Then the JVM takes care of calling the Bootstrapped Method directly.

    How Does Indy Work?

    The first time JVM sees an invokedynamic instruction, it calls a special static method called Bootstrap Method. The bootstrap method is a piece of Java code that we’ve written to prepare the actual to-be-invoked logic:

    Then the bootstrap method returns an instance of java.lang.invoke.CallSite. This CallSite holds a reference to the actual method, i.e. MethodHandle.

    From now on, every time JVM sees this invokedynamic instruction again, it skips the Slow Path and directly calls the underlying executable. The JVM continues to skip the slow path unless something changes.

    Example: Java 14 Records

    Java 14 Records are providing a nice compact syntax to declare classes that are supposed to be dumb data holders.

    Considering this simple record:

    public record Range(int min, int max) {}
    

    The bytecode for this example would be something like:

    Compiled from "Range.java"
    public java.lang.String toString();
        descriptor: ()Ljava/lang/String;
        flags: (0x0001) ACC_PUBLIC
        Code:
          stack=1, locals=1, args_size=1
             0: aload_0
             1: invokedynamic #18,  0 // InvokeDynamic #0:toString:(LRange;)Ljava/lang/String;
             6: areturn
    

    In its Bootstrap Method Table:

    BootstrapMethods:
      0: #41 REF_invokeStatic java/lang/runtime/ObjectMethods.bootstrap:
         (Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;
         Ljava/lang/invoke/TypeDescriptor;Ljava/lang/Class;
         Ljava/lang/String;[Ljava/lang/invoke/MethodHandle;)Ljava/lang/Object;
        Method arguments:
          #8 Range
          #48 min;max
          #50 REF_getField Range.min:I
          #51 REF_getField Range.max:I
    

    So the bootstrap method for Records is called bootstrap which resides in the java.lang.runtime.ObjectMethods class. As you can see, this bootstrap method expects the following parameters:

    • An instance of MethodHandles.Lookup representing the lookup context (The Ljava/lang/invoke/MethodHandles$Lookup part).
    • The method name (i.e. toString, equals, hashCode, etc.) the bootstrap is going to link. For example, when the value is toString, bootstrap will return a ConstantCallSite (a CallSite that never changes) that points to the actual toString implementation for this particular Record.
    • The TypeDescriptor for the method (Ljava/lang/invoke/TypeDescriptor part).
    • A type token, i.e. Class, representing the Record class type. It’s Class in this case.
    • A semi-colon separated list of all component names, i.e. min;max.
    • One MethodHandle per component. This way the bootstrap method can create a MethodHandle based on the components for this particular method implementation.

    The invokedynamic instruction passes all those arguments to the bootstrap method. Bootstrap method, in turn, returns an instance of ConstantCallSite. This ConstantCallSite is holding a reference to requested method implementation, e.g. toString.

    Why Indy?

    As opposed to the Reflection APIs, the java.lang.invoke API is quite efficient since the JVM can completely see through all invocations. Therefore, JVM may apply all sorts of optimizations as long as we avoid the slow path as much as possible!

    In addition to the efficiency argument, the invokedynamic approach is more reliable and less brittle because of its simplicity.

    Moreover, the generated bytecode for Java Records is independent of the number of properties. So, less bytecode and faster startup time.

    Finally, let’s suppose a new version of Java includes a new and more efficient bootstrap method implementation. With invokedynamic, our app can take advantage of this improvement without recompilation. This way we have some sort of Forward Binary Compatibility. Also, That’s the dynamic strategy we were talking about!

    Other Examples

    In addition to Java Records, the invoke dynamic has been used to implement features like:

    • Lambda Expressions in Java 8+: LambdaMetafactory
    • String Concatenation in Java 9+: StringConcatFactory

提交回复
热议问题