src/java.base/share/classes/java/lang/invoke/LambdaForm.java
author mchung
Mon, 22 Oct 2018 17:00:04 -0700
changeset 52220 9c260a6b6471
parent 49935 2ace90aec488
child 53435 ea254e9fc587
permissions -rw-r--r--
8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference Reviewed-by: dholmes, thartmann
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     1
/*
49935
2ace90aec488 8200167: Validate more special case invocations
dholmes
parents: 48989
diff changeset
     2
 * Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     4
 *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    10
 *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    15
 * accompanied this code).
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    16
 *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    20
 *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    23
 * questions.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    24
 */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    25
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    26
package java.lang.invoke;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    27
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
    28
import jdk.internal.perf.PerfCounter;
35252
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    29
import jdk.internal.vm.annotation.DontInline;
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    30
import jdk.internal.vm.annotation.Stable;
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    31
import sun.invoke.util.Wrapper;
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    32
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    33
import java.lang.annotation.ElementType;
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    34
import java.lang.annotation.Retention;
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    35
import java.lang.annotation.RetentionPolicy;
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    36
import java.lang.annotation.Target;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    37
import java.lang.reflect.Method;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    38
import java.util.Arrays;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    39
import java.util.HashMap;
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
    40
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
    41
import static java.lang.invoke.LambdaForm.BasicType.*;
35252
754852fba784 8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents: 34429
diff changeset
    42
import static java.lang.invoke.MethodHandleNatives.Constants.REF_invokeStatic;
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
    43
import static java.lang.invoke.MethodHandleStatics.*;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    44
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    45
/**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    46
 * The symbolic, non-executable form of a method handle's invocation semantics.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    47
 * It consists of a series of names.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    48
 * The first N (N=arity) names are parameters,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    49
 * while any remaining names are temporary values.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    50
 * Each temporary specifies the application of a function to some arguments.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    51
 * The functions are method handles, while the arguments are mixes of
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    52
 * constant values and local names.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    53
 * The result of the lambda is defined as one of the names, often the last one.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    54
 * <p>
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    55
 * Here is an approximate grammar:
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20527
diff changeset
    56
 * <blockquote><pre>{@code
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    57
 * LambdaForm = "(" ArgName* ")=>{" TempName* Result "}"
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    58
 * ArgName = "a" N ":" T
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    59
 * TempName = "t" N ":" T "=" Function "(" Argument* ");"
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    60
 * Function = ConstantValue
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    61
 * Argument = NameRef | ConstantValue
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    62
 * Result = NameRef | "void"
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    63
 * NameRef = "a" N | "t" N
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    64
 * N = (any whole number)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    65
 * T = "L" | "I" | "J" | "F" | "D" | "V"
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20527
diff changeset
    66
 * }</pre></blockquote>
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    67
 * Names are numbered consecutively from left to right starting at zero.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    68
 * (The letters are merely a taste of syntax sugar.)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    69
 * Thus, the first temporary (if any) is always numbered N (where N=arity).
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    70
 * Every occurrence of a name reference in an argument list must refer to
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    71
 * a name previously defined within the same lambda.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    72
 * A lambda has a void result if and only if its result index is -1.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    73
 * If a temporary has the type "V", it cannot be the subject of a NameRef,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    74
 * even though possesses a number.
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20527
diff changeset
    75
 * Note that all reference types are erased to "L", which stands for {@code Object}.
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    76
 * All subword types (boolean, byte, short, char) are erased to "I" which is {@code int}.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    77
 * The other types stand for the usual primitive types.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    78
 * <p>
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    79
 * Function invocation closely follows the static rules of the Java verifier.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    80
 * Arguments and return values must exactly match when their "Name" types are
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    81
 * considered.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    82
 * Conversions are allowed only if they do not change the erased type.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    83
 * <ul>
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    84
 * <li>L = Object: casts are used freely to convert into and out of reference types
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    85
 * <li>I = int: subword types are forcibly narrowed when passed as arguments (see {@code explicitCastArguments})
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    86
 * <li>J = long: no implicit conversions
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    87
 * <li>F = float: no implicit conversions
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    88
 * <li>D = double: no implicit conversions
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    89
 * <li>V = void: a function result may be void if and only if its Name is of type "V"
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    90
 * </ul>
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    91
 * Although implicit conversions are not allowed, explicit ones can easily be
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    92
 * encoded by using temporary expressions which call type-transformed identity functions.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    93
 * <p>
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    94
 * Examples:
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20527
diff changeset
    95
 * <blockquote><pre>{@code
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    96
 * (a0:J)=>{ a0 }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    97
 *     == identity(long)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    98
 * (a0:I)=>{ t1:V = System.out#println(a0); void }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
    99
 *     == System.out#println(int)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   100
 * (a0:L)=>{ t1:V = System.out#println(a0); a0 }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   101
 *     == identity, with printing side-effect
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   102
 * (a0:L, a1:L)=>{ t2:L = BoundMethodHandle#argument(a0);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   103
 *                 t3:L = BoundMethodHandle#target(a0);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   104
 *                 t4:L = MethodHandle#invoke(t3, t2, a1); t4 }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   105
 *     == general invoker for unary insertArgument combination
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   106
 * (a0:L, a1:L)=>{ t2:L = FilterMethodHandle#filter(a0);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   107
 *                 t3:L = MethodHandle#invoke(t2, a1);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   108
 *                 t4:L = FilterMethodHandle#target(a0);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   109
 *                 t5:L = MethodHandle#invoke(t4, t3); t5 }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   110
 *     == general invoker for unary filterArgument combination
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   111
 * (a0:L, a1:L)=>{ ...(same as previous example)...
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   112
 *                 t5:L = MethodHandle#invoke(t4, t3, a1); t5 }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   113
 *     == general invoker for unary/unary foldArgument combination
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   114
 * (a0:L, a1:I)=>{ t2:I = identity(long).asType((int)->long)(a1); t2 }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   115
 *     == invoker for identity method handle which performs i2l
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   116
 * (a0:L, a1:L)=>{ t2:L = BoundMethodHandle#argument(a0);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   117
 *                 t3:L = Class#cast(t2,a1); t3 }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   118
 *     == invoker for identity method handle which performs cast
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20527
diff changeset
   119
 * }</pre></blockquote>
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   120
 * <p>
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   121
 * @author John Rose, JSR 292 EG
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   122
 */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   123
class LambdaForm {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   124
    final int arity;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   125
    final int result;
27295
8ed31033bf48 8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents: 26482
diff changeset
   126
    final boolean forceInline;
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   127
    final MethodHandle customized;
20494
cf77ae5ff678 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 14852
diff changeset
   128
    @Stable final Name[] names;
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   129
    final Kind kind;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   130
    MemberName vmentry;   // low-level behavior, or null if not yet prepared
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   131
    private boolean isCompiled;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   132
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   133
    // Either a LambdaForm cache (managed by LambdaFormEditor) or a link to uncustomized version (for customized LF)
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   134
    volatile Object transformCache;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   135
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   136
    public static final int VOID_RESULT = -1, LAST_RESULT = -2;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   137
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   138
    enum BasicType {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   139
        L_TYPE('L', Object.class, Wrapper.OBJECT),  // all reference types
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   140
        I_TYPE('I', int.class,    Wrapper.INT),
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   141
        J_TYPE('J', long.class,   Wrapper.LONG),
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   142
        F_TYPE('F', float.class,  Wrapper.FLOAT),
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   143
        D_TYPE('D', double.class, Wrapper.DOUBLE),  // all primitive types
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   144
        V_TYPE('V', void.class,   Wrapper.VOID);    // not valid in all contexts
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   145
47753
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   146
        static final @Stable BasicType[] ALL_TYPES = BasicType.values();
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   147
        static final @Stable BasicType[] ARG_TYPES = Arrays.copyOf(ALL_TYPES, ALL_TYPES.length-1);
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   148
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   149
        static final int ARG_TYPE_LIMIT = ARG_TYPES.length;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   150
        static final int TYPE_LIMIT = ALL_TYPES.length;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   151
47753
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   152
        // Derived int constants, which (unlike the enums) can be constant folded.
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   153
        // We can remove them when JDK-8161245 is fixed.
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   154
        static final byte
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   155
                L_TYPE_NUM = (byte) L_TYPE.ordinal(),
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   156
                I_TYPE_NUM = (byte) I_TYPE.ordinal(),
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   157
                J_TYPE_NUM = (byte) J_TYPE.ordinal(),
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   158
                F_TYPE_NUM = (byte) F_TYPE.ordinal(),
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   159
                D_TYPE_NUM = (byte) D_TYPE.ordinal(),
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   160
                V_TYPE_NUM = (byte) V_TYPE.ordinal();
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   161
40272
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
   162
        final char btChar;
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
   163
        final Class<?> btClass;
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
   164
        final Wrapper btWrapper;
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   165
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   166
        private BasicType(char btChar, Class<?> btClass, Wrapper wrapper) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   167
            this.btChar = btChar;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   168
            this.btClass = btClass;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   169
            this.btWrapper = wrapper;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   170
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   171
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   172
        char basicTypeChar() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   173
            return btChar;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   174
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   175
        Class<?> basicTypeClass() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   176
            return btClass;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   177
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   178
        Wrapper basicTypeWrapper() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   179
            return btWrapper;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   180
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   181
        int basicTypeSlots() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   182
            return btWrapper.stackSlots();
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   183
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   184
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   185
        static BasicType basicType(byte type) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   186
            return ALL_TYPES[type];
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   187
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   188
        static BasicType basicType(char type) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   189
            switch (type) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   190
                case 'L': return L_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   191
                case 'I': return I_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   192
                case 'J': return J_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   193
                case 'F': return F_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   194
                case 'D': return D_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   195
                case 'V': return V_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   196
                // all subword types are represented as ints
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   197
                case 'Z':
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   198
                case 'B':
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   199
                case 'S':
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   200
                case 'C':
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   201
                    return I_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   202
                default:
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   203
                    throw newInternalError("Unknown type char: '"+type+"'");
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   204
            }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   205
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   206
        static BasicType basicType(Wrapper type) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   207
            char c = type.basicTypeChar();
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   208
            return basicType(c);
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   209
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   210
        static BasicType basicType(Class<?> type) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   211
            if (!type.isPrimitive())  return L_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   212
            return basicType(Wrapper.forPrimitiveType(type));
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   213
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   214
        static BasicType[] basicTypes(String types) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   215
            BasicType[] btypes = new BasicType[types.length()];
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   216
            for (int i = 0; i < btypes.length; i++) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   217
                btypes[i] = basicType(types.charAt(i));
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   218
            }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   219
            return btypes;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   220
        }
39342
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   221
        static String basicTypeDesc(BasicType[] types) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   222
            if (types == null) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   223
                return null;
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   224
            }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   225
            if (types.length == 0) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   226
                return "";
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   227
            }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   228
            StringBuilder sb = new StringBuilder();
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   229
            for (BasicType bt : types) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   230
                sb.append(bt.basicTypeChar());
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   231
            }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   232
            return sb.toString();
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   233
        }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   234
        static int[] basicTypeOrds(BasicType[] types) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   235
            if (types == null) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   236
                return null;
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   237
            }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   238
            int[] a = new int[types.length];
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   239
            for(int i = 0; i < types.length; ++i) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   240
                a[i] = types[i].ordinal();
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   241
            }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   242
            return a;
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   243
        }
34384
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   244
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   245
        static char basicTypeChar(Class<?> type) {
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   246
            return basicType(type).btChar;
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   247
        }
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   248
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   249
        static byte[] basicTypesOrd(Class<?>[] types) {
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   250
            byte[] ords = new byte[types.length];
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   251
            for (int i = 0; i < ords.length; i++) {
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   252
                ords[i] = (byte)basicType(types[i]).ordinal();
26481
c5b74a88a3c0 8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents: 26479
diff changeset
   253
            }
c5b74a88a3c0 8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents: 26479
diff changeset
   254
            return ords;
c5b74a88a3c0 8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents: 26479
diff changeset
   255
        }
34384
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
   256
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   257
        static boolean isBasicTypeChar(char c) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   258
            return "LIJFDV".indexOf(c) >= 0;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   259
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   260
        static boolean isArgBasicTypeChar(char c) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   261
            return "LIJFD".indexOf(c) >= 0;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   262
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   263
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   264
        static { assert(checkBasicType()); }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   265
        private static boolean checkBasicType() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   266
            for (int i = 0; i < ARG_TYPE_LIMIT; i++) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   267
                assert ARG_TYPES[i].ordinal() == i;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   268
                assert ARG_TYPES[i] == ALL_TYPES[i];
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   269
            }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   270
            for (int i = 0; i < TYPE_LIMIT; i++) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   271
                assert ALL_TYPES[i].ordinal() == i;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   272
            }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   273
            assert ALL_TYPES[TYPE_LIMIT - 1] == V_TYPE;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   274
            assert !Arrays.asList(ARG_TYPES).contains(V_TYPE);
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   275
            return true;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   276
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   277
    }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   278
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   279
    enum Kind {
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   280
        GENERIC("invoke"),
40419
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
   281
        ZERO("zero"),
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
   282
        IDENTITY("identity"),
44590
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   283
        BOUND_REINVOKER("BMH.reinvoke", "reinvoke"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   284
        REINVOKER("MH.reinvoke", "reinvoke"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   285
        DELEGATE("MH.delegate", "delegate"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   286
        EXACT_LINKER("MH.invokeExact_MT", "invokeExact_MT"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   287
        EXACT_INVOKER("MH.exactInvoker", "exactInvoker"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   288
        GENERIC_LINKER("MH.invoke_MT", "invoke_MT"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   289
        GENERIC_INVOKER("MH.invoker", "invoker"),
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   290
        LINK_TO_TARGET_METHOD("linkToTargetMethod"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   291
        LINK_TO_CALL_SITE("linkToCallSite"),
44590
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   292
        DIRECT_INVOKE_VIRTUAL("DMH.invokeVirtual", "invokeVirtual"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   293
        DIRECT_INVOKE_SPECIAL("DMH.invokeSpecial", "invokeSpecial"),
49935
2ace90aec488 8200167: Validate more special case invocations
dholmes
parents: 48989
diff changeset
   294
        DIRECT_INVOKE_SPECIAL_IFC("DMH.invokeSpecialIFC", "invokeSpecialIFC"),
44590
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   295
        DIRECT_INVOKE_STATIC("DMH.invokeStatic", "invokeStatic"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   296
        DIRECT_NEW_INVOKE_SPECIAL("DMH.newInvokeSpecial", "newInvokeSpecial"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   297
        DIRECT_INVOKE_INTERFACE("DMH.invokeInterface", "invokeInterface"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   298
        DIRECT_INVOKE_STATIC_INIT("DMH.invokeStaticInit", "invokeStaticInit"),
52220
9c260a6b6471 8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents: 49935
diff changeset
   299
        GET_REFERENCE("getReference"),
9c260a6b6471 8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents: 49935
diff changeset
   300
        PUT_REFERENCE("putReference"),
9c260a6b6471 8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents: 49935
diff changeset
   301
        GET_REFERENCE_VOLATILE("getReferenceVolatile"),
9c260a6b6471 8207146: Rename jdk.internal.misc.Unsafe::xxxObject to xxxReference
mchung
parents: 49935
diff changeset
   302
        PUT_REFERENCE_VOLATILE("putReferenceVolatile"),
40542
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   303
        GET_INT("getInt"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   304
        PUT_INT("putInt"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   305
        GET_INT_VOLATILE("getIntVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   306
        PUT_INT_VOLATILE("putIntVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   307
        GET_BOOLEAN("getBoolean"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   308
        PUT_BOOLEAN("putBoolean"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   309
        GET_BOOLEAN_VOLATILE("getBooleanVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   310
        PUT_BOOLEAN_VOLATILE("putBooleanVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   311
        GET_BYTE("getByte"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   312
        PUT_BYTE("putByte"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   313
        GET_BYTE_VOLATILE("getByteVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   314
        PUT_BYTE_VOLATILE("putByteVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   315
        GET_CHAR("getChar"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   316
        PUT_CHAR("putChar"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   317
        GET_CHAR_VOLATILE("getCharVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   318
        PUT_CHAR_VOLATILE("putCharVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   319
        GET_SHORT("getShort"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   320
        PUT_SHORT("putShort"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   321
        GET_SHORT_VOLATILE("getShortVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   322
        PUT_SHORT_VOLATILE("putShortVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   323
        GET_LONG("getLong"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   324
        PUT_LONG("putLong"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   325
        GET_LONG_VOLATILE("getLongVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   326
        PUT_LONG_VOLATILE("putLongVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   327
        GET_FLOAT("getFloat"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   328
        PUT_FLOAT("putFloat"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   329
        GET_FLOAT_VOLATILE("getFloatVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   330
        PUT_FLOAT_VOLATILE("putFloatVolatile"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   331
        GET_DOUBLE("getDouble"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   332
        PUT_DOUBLE("putDouble"),
e7be26f852fa 8164483: Generate field lambda forms at link time
redestad
parents: 40461
diff changeset
   333
        GET_DOUBLE_VOLATILE("getDoubleVolatile"),
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   334
        PUT_DOUBLE_VOLATILE("putDoubleVolatile"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   335
        TRY_FINALLY("tryFinally"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   336
        COLLECT("collect"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   337
        CONVERT("convert"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   338
        SPREAD("spread"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   339
        LOOP("loop"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   340
        FIELD("field"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   341
        GUARD("guard"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   342
        GUARD_WITH_CATCH("guardWithCatch"),
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   343
        VARHANDLE_EXACT_INVOKER("VH.exactInvoker"),
44590
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   344
        VARHANDLE_INVOKER("VH.invoker", "invoker"),
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   345
        VARHANDLE_LINKER("VH.invoke_MT", "invoke_MT");
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   346
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   347
        final String defaultLambdaName;
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   348
        final String methodName;
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   349
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   350
        private Kind(String defaultLambdaName) {
44590
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   351
            this(defaultLambdaName, defaultLambdaName);
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   352
        }
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   353
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   354
        private Kind(String defaultLambdaName, String methodName) {
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   355
            this.defaultLambdaName = defaultLambdaName;
44590
15a77e5b7612 8178384: Reduce work in java.lang.invoke initializers
redestad
parents: 43893
diff changeset
   356
            this.methodName = methodName;
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   357
        }
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   358
    }
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   359
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   360
    LambdaForm(int arity, Name[] names, int result) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   361
        this(arity, names, result, /*forceInline=*/true, /*customized=*/null, Kind.GENERIC);
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   362
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   363
    LambdaForm(int arity, Name[] names, int result, Kind kind) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   364
        this(arity, names, result, /*forceInline=*/true, /*customized=*/null, kind);
27295
8ed31033bf48 8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents: 26482
diff changeset
   365
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   366
    LambdaForm(int arity, Name[] names, int result, boolean forceInline, MethodHandle customized) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   367
        this(arity, names, result, forceInline, customized, Kind.GENERIC);
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   368
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   369
    LambdaForm(int arity, Name[] names, int result, boolean forceInline, MethodHandle customized, Kind kind) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   370
        assert(namesOK(arity, names));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   371
        this.arity = arity;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   372
        this.result = fixResult(result, names);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   373
        this.names = names.clone();
27295
8ed31033bf48 8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents: 26482
diff changeset
   374
        this.forceInline = forceInline;
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   375
        this.customized = customized;
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   376
        this.kind = kind;
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   377
        int maxOutArity = normalize();
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   378
        if (maxOutArity > MethodType.MAX_MH_INVOKER_ARITY) {
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   379
            // Cannot use LF interpreter on very high arity expressions.
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   380
            assert(maxOutArity <= MethodType.MAX_JVM_ARITY);
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   381
            compileToBytecode();
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   382
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   383
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   384
    LambdaForm(int arity, Name[] names) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   385
        this(arity, names, LAST_RESULT, /*forceInline=*/true, /*customized=*/null, Kind.GENERIC);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   386
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   387
    LambdaForm(int arity, Name[] names, Kind kind) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   388
        this(arity, names, LAST_RESULT, /*forceInline=*/true, /*customized=*/null, kind);
40543
629f1f599595 8164569: Generate non-customized invoker forms at link time
redestad
parents: 40542
diff changeset
   389
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   390
    LambdaForm(int arity, Name[] names, boolean forceInline) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   391
        this(arity, names, LAST_RESULT, forceInline, /*customized=*/null, Kind.GENERIC);
40408
cf7e826d4d63 8164044: Generate corresponding simple DelegatingMethodHandles when generating a DirectMethodHandle at link time
redestad
parents: 40272
diff changeset
   392
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   393
    LambdaForm(int arity, Name[] names, boolean forceInline, Kind kind) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   394
        this(arity, names, LAST_RESULT, forceInline, /*customized=*/null, kind);
27295
8ed31033bf48 8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents: 26482
diff changeset
   395
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   396
    LambdaForm(Name[] formals, Name[] temps, Name result) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   397
        this(formals.length, buildNames(formals, temps, result), LAST_RESULT, /*forceInline=*/true, /*customized=*/null);
27295
8ed31033bf48 8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents: 26482
diff changeset
   398
    }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   399
    LambdaForm(Name[] formals, Name[] temps, Name result, boolean forceInline) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   400
        this(formals.length, buildNames(formals, temps, result), LAST_RESULT, forceInline, /*customized=*/null);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   401
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   402
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   403
    private static Name[] buildNames(Name[] formals, Name[] temps, Name result) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   404
        int arity = formals.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   405
        int length = arity + temps.length + (result == null ? 0 : 1);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   406
        Name[] names = Arrays.copyOf(formals, length);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   407
        System.arraycopy(temps, 0, names, arity, temps.length);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   408
        if (result != null)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   409
            names[length - 1] = result;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   410
        return names;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   411
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   412
34429
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   413
    private LambdaForm(MethodType mt) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   414
        // Make a blank lambda form, which returns a constant zero or null.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   415
        // It is used as a template for managing the invocation of similar forms that are non-empty.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   416
        // Called only from getPreparedForm.
34429
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   417
        this.arity = mt.parameterCount();
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   418
        this.result = (mt.returnType() == void.class || mt.returnType() == Void.class) ? -1 : arity;
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   419
        this.names = buildEmptyNames(arity, mt, result == -1);
29019
a859b806c8bd 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27803
diff changeset
   420
        this.forceInline = true;
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   421
        this.customized = null;
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   422
        this.kind = Kind.ZERO;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   423
        assert(nameRefsAreLegal());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   424
        assert(isEmpty());
34429
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   425
        String sig = null;
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   426
        assert(isValidSignature(sig = basicTypeSignature()));
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   427
        assert(sig.equals(basicTypeSignature())) : sig + " != " + basicTypeSignature();
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   428
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   429
34429
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   430
    private static Name[] buildEmptyNames(int arity, MethodType mt, boolean isVoid) {
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   431
        Name[] names = arguments(isVoid ? 0 : 1, mt);
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   432
        if (!isVoid) {
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   433
            Name zero = new Name(constantZero(basicType(mt.returnType())));
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   434
            names[arity] = zero.newIndex(arity);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   435
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   436
        return names;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   437
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   438
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   439
    private static int fixResult(int result, Name[] names) {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   440
        if (result == LAST_RESULT)
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   441
            result = names.length - 1;  // might still be void
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   442
        if (result >= 0 && names[result].type == V_TYPE)
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   443
            result = VOID_RESULT;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   444
        return result;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   445
    }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   446
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   447
    static boolean debugNames() {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   448
        return DEBUG_NAME_COUNTERS != null;
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   449
    }
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   450
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   451
    static void associateWithDebugName(LambdaForm form, String name) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   452
        assert (debugNames());
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   453
        synchronized (DEBUG_NAMES) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   454
            DEBUG_NAMES.put(form, name);
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   455
        }
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   456
    }
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   457
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   458
    String lambdaName() {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   459
        if (DEBUG_NAMES != null) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   460
            synchronized (DEBUG_NAMES) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   461
                String name = DEBUG_NAMES.get(this);
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   462
                if (name == null) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   463
                    name = generateDebugName();
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   464
                }
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   465
                return name;
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   466
            }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   467
        }
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   468
        return kind.defaultLambdaName;
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   469
    }
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   470
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   471
    private String generateDebugName() {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   472
        assert (debugNames());
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   473
        String debugNameStem = kind.defaultLambdaName;
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   474
        Integer ctr = DEBUG_NAME_COUNTERS.getOrDefault(debugNameStem, 0);
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   475
        DEBUG_NAME_COUNTERS.put(debugNameStem, ctr + 1);
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   476
        StringBuilder buf = new StringBuilder(debugNameStem);
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   477
        int leadingZero = buf.length();
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   478
        buf.append((int) ctr);
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   479
        for (int i = buf.length() - leadingZero; i < 3; i++) {
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   480
            buf.insert(leadingZero, '0');
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   481
        }
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   482
        buf.append('_');
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   483
        buf.append(basicTypeSignature());
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   484
        String name = buf.toString();
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   485
        associateWithDebugName(this, name);
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   486
        return name;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   487
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   488
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   489
    private static boolean namesOK(int arity, Name[] names) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   490
        for (int i = 0; i < names.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   491
            Name n = names[i];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   492
            assert(n != null) : "n is null";
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   493
            if (i < arity)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   494
                assert( n.isParam()) : n + " is not param at " + i;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   495
            else
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   496
                assert(!n.isParam()) : n + " is param at " + i;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   497
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   498
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   499
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   500
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   501
    /** Customize LambdaForm for a particular MethodHandle */
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   502
    LambdaForm customize(MethodHandle mh) {
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
   503
        LambdaForm customForm = new LambdaForm(arity, names, result, forceInline, mh, kind);
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   504
        if (COMPILE_THRESHOLD >= 0 && isCompiled) {
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   505
            // If shared LambdaForm has been compiled, compile customized version as well.
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   506
            customForm.compileToBytecode();
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   507
        }
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   508
        customForm.transformCache = this; // LambdaFormEditor should always use uncustomized form.
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   509
        return customForm;
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   510
    }
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   511
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   512
    /** Get uncustomized flavor of the LambdaForm */
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   513
    LambdaForm uncustomize() {
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   514
        if (customized == null) {
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   515
            return this;
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   516
        }
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   517
        assert(transformCache != null); // Customized LambdaForm should always has a link to uncustomized version.
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   518
        LambdaForm uncustomizedForm = (LambdaForm)transformCache;
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   519
        if (COMPILE_THRESHOLD >= 0 && isCompiled) {
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   520
            // If customized LambdaForm has been compiled, compile uncustomized version as well.
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   521
            uncustomizedForm.compileToBytecode();
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   522
        }
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   523
        return uncustomizedForm;
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   524
    }
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   525
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   526
    /** Renumber and/or replace params so that they are interned and canonically numbered.
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   527
     *  @return maximum argument list length among the names (since we have to pass over them anyway)
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   528
     */
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   529
    private int normalize() {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   530
        Name[] oldNames = null;
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   531
        int maxOutArity = 0;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   532
        int changesStart = 0;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   533
        for (int i = 0; i < names.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   534
            Name n = names[i];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   535
            if (!n.initIndex(i)) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   536
                if (oldNames == null) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   537
                    oldNames = names.clone();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   538
                    changesStart = i;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   539
                }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   540
                names[i] = n.cloneWithIndex(i);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   541
            }
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   542
            if (n.arguments != null && maxOutArity < n.arguments.length)
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   543
                maxOutArity = n.arguments.length;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   544
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   545
        if (oldNames != null) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   546
            int startFixing = arity;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   547
            if (startFixing <= changesStart)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   548
                startFixing = changesStart+1;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   549
            for (int i = startFixing; i < names.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   550
                Name fixed = names[i].replaceNames(oldNames, names, changesStart, i);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   551
                names[i] = fixed.newIndex(i);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   552
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   553
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   554
        assert(nameRefsAreLegal());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   555
        int maxInterned = Math.min(arity, INTERNED_ARGUMENT_LIMIT);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   556
        boolean needIntern = false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   557
        for (int i = 0; i < maxInterned; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   558
            Name n = names[i], n2 = internArgument(n);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   559
            if (n != n2) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   560
                names[i] = n2;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   561
                needIntern = true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   562
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   563
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   564
        if (needIntern) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   565
            for (int i = arity; i < names.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   566
                names[i].internArguments();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   567
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   568
        }
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
   569
        assert(nameRefsAreLegal());
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   570
        return maxOutArity;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   571
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   572
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   573
    /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   574
     * Check that all embedded Name references are localizable to this lambda,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   575
     * and are properly ordered after their corresponding definitions.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   576
     * <p>
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   577
     * Note that a Name can be local to multiple lambdas, as long as
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   578
     * it possesses the same index in each use site.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   579
     * This allows Name references to be freely reused to construct
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   580
     * fresh lambdas, without confusion.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   581
     */
26481
c5b74a88a3c0 8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents: 26479
diff changeset
   582
    boolean nameRefsAreLegal() {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   583
        assert(arity >= 0 && arity <= names.length);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   584
        assert(result >= -1 && result < names.length);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   585
        // Do all names possess an index consistent with their local definition order?
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   586
        for (int i = 0; i < arity; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   587
            Name n = names[i];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   588
            assert(n.index() == i) : Arrays.asList(n.index(), i);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   589
            assert(n.isParam());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   590
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   591
        // Also, do all local name references
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   592
        for (int i = arity; i < names.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   593
            Name n = names[i];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   594
            assert(n.index() == i);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   595
            for (Object arg : n.arguments) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   596
                if (arg instanceof Name) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   597
                    Name n2 = (Name) arg;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   598
                    int i2 = n2.index;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   599
                    assert(0 <= i2 && i2 < names.length) : n.debugString() + ": 0 <= i2 && i2 < names.length: 0 <= " + i2 + " < " + names.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   600
                    assert(names[i2] == n2) : Arrays.asList("-1-", i, "-2-", n.debugString(), "-3-", i2, "-4-", n2.debugString(), "-5-", names[i2].debugString(), "-6-", this);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   601
                    assert(i2 < i);  // ref must come after def!
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   602
                }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   603
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   604
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   605
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   606
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   607
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   608
    /** Invoke this form on the given arguments. */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   609
    // final Object invoke(Object... args) throws Throwable {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   610
    //     // NYI: fit this into the fast path?
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   611
    //     return interpretWithArguments(args);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   612
    // }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   613
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   614
    /** Report the return type. */
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   615
    BasicType returnType() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   616
        if (result < 0)  return V_TYPE;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   617
        Name n = names[result];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   618
        return n.type;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   619
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   620
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   621
    /** Report the N-th argument type. */
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   622
    BasicType parameterType(int n) {
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   623
        return parameter(n).type;
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   624
    }
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   625
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   626
    /** Report the N-th argument name. */
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   627
    Name parameter(int n) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   628
        assert(n < arity);
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   629
        Name param = names[n];
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   630
        assert(param.isParam());
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   631
        return param;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   632
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   633
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
   634
    /** Report the N-th argument type constraint. */
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
   635
    Object parameterConstraint(int n) {
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
   636
        return parameter(n).constraint;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
   637
    }
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
   638
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   639
    /** Report the arity. */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   640
    int arity() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   641
        return arity;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   642
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   643
26472
71b6a6f208c0 8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents: 26468
diff changeset
   644
    /** Report the number of expressions (non-parameter names). */
71b6a6f208c0 8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents: 26468
diff changeset
   645
    int expressionCount() {
71b6a6f208c0 8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents: 26468
diff changeset
   646
        return names.length - arity;
71b6a6f208c0 8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents: 26468
diff changeset
   647
    }
71b6a6f208c0 8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents: 26468
diff changeset
   648
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   649
    /** Return the method type corresponding to my basic type signature. */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   650
    MethodType methodType() {
34429
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   651
        Class<?>[] ptypes = new Class<?>[arity];
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   652
        for (int i = 0; i < arity; ++i) {
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   653
            ptypes[i] = parameterType(i).btClass;
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   654
        }
44591
b9bf065070fe 8178387: Reduce memory churn when creating java.lang.invoke entities
redestad
parents: 44590
diff changeset
   655
        return MethodType.makeImpl(returnType().btClass, ptypes, true);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   656
    }
34429
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   657
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   658
    /** Return ABC_Z, where the ABC are parameter type characters, and Z is the return type character. */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   659
    final String basicTypeSignature() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   660
        StringBuilder buf = new StringBuilder(arity() + 3);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   661
        for (int i = 0, a = arity(); i < a; i++)
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   662
            buf.append(parameterType(i).basicTypeChar());
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   663
        return buf.append('_').append(returnType().basicTypeChar()).toString();
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   664
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   665
    static int signatureArity(String sig) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   666
        assert(isValidSignature(sig));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   667
        return sig.indexOf('_');
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   668
    }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   669
    static BasicType signatureReturn(String sig) {
26464
65b37da18e06 8037209: Improvements and cleanups to bytecode assembly for lambda forms
vlivanov
parents: 25859
diff changeset
   670
        return basicType(sig.charAt(signatureArity(sig) + 1));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   671
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   672
    static boolean isValidSignature(String sig) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   673
        int arity = sig.indexOf('_');
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   674
        if (arity < 0)  return false;  // must be of the form *_*
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   675
        int siglen = sig.length();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   676
        if (siglen != arity + 2)  return false;  // *_X
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   677
        for (int i = 0; i < siglen; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   678
            if (i == arity)  continue;  // skip '_'
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   679
            char c = sig.charAt(i);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   680
            if (c == 'V')
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   681
                return (i == siglen - 1 && arity == siglen - 2);
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   682
            if (!isArgBasicTypeChar(c))  return false; // must be [LIJFD]
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   683
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   684
        return true;  // [LIJFD]*_[LIJFDV]
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   685
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   686
    static MethodType signatureType(String sig) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   687
        Class<?>[] ptypes = new Class<?>[signatureArity(sig)];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   688
        for (int i = 0; i < ptypes.length; i++)
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   689
            ptypes[i] = basicType(sig.charAt(i)).btClass;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   690
        Class<?> rtype = signatureReturn(sig).btClass;
44591
b9bf065070fe 8178387: Reduce memory churn when creating java.lang.invoke entities
redestad
parents: 44590
diff changeset
   691
        return MethodType.makeImpl(rtype, ptypes, true);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   692
    }
47753
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   693
    static MethodType basicMethodType(MethodType mt) {
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   694
        return signatureType(basicTypeSignature(mt));
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
   695
    }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   696
39342
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   697
    /**
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   698
     * Check if i-th name is a call to MethodHandleImpl.selectAlternative.
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   699
     */
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   700
    boolean isSelectAlternative(int pos) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   701
        // selectAlternative idiom:
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   702
        //   t_{n}:L=MethodHandleImpl.selectAlternative(...)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   703
        //   t_{n+1}:?=MethodHandle.invokeBasic(t_{n}, ...)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   704
        if (pos+1 >= names.length)  return false;
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   705
        Name name0 = names[pos];
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   706
        Name name1 = names[pos+1];
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   707
        return name0.refersTo(MethodHandleImpl.class, "selectAlternative") &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   708
                name1.isInvokeBasic() &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   709
                name1.lastUseIndex(name0) == 0 && // t_{n+1}:?=MethodHandle.invokeBasic(t_{n}, ...)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   710
                lastUseIndex(name0) == pos+1;     // t_{n} is local: used only in t_{n+1}
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   711
    }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   712
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   713
    private boolean isMatchingIdiom(int pos, String idiomName, int nArgs) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   714
        if (pos+2 >= names.length)  return false;
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   715
        Name name0 = names[pos];
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   716
        Name name1 = names[pos+1];
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   717
        Name name2 = names[pos+2];
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   718
        return name1.refersTo(MethodHandleImpl.class, idiomName) &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   719
                name0.isInvokeBasic() &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   720
                name2.isInvokeBasic() &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   721
                name1.lastUseIndex(name0) == nArgs && // t_{n+1}:L=MethodHandleImpl.<invoker>(<args>, t_{n});
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   722
                lastUseIndex(name0) == pos+1 &&       // t_{n} is local: used only in t_{n+1}
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   723
                name2.lastUseIndex(name1) == 1 &&     // t_{n+2}:?=MethodHandle.invokeBasic(*, t_{n+1})
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   724
                lastUseIndex(name1) == pos+2;         // t_{n+1} is local: used only in t_{n+2}
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   725
    }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   726
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   727
    /**
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   728
     * Check if i-th name is a start of GuardWithCatch idiom.
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   729
     */
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   730
    boolean isGuardWithCatch(int pos) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   731
        // GuardWithCatch idiom:
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   732
        //   t_{n}:L=MethodHandle.invokeBasic(...)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   733
        //   t_{n+1}:L=MethodHandleImpl.guardWithCatch(*, *, *, t_{n});
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   734
        //   t_{n+2}:?=MethodHandle.invokeBasic(*, t_{n+1})
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   735
        return isMatchingIdiom(pos, "guardWithCatch", 3);
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   736
    }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   737
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   738
    /**
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   739
     * Check if i-th name is a start of the tryFinally idiom.
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   740
     */
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   741
    boolean isTryFinally(int pos) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   742
        // tryFinally idiom:
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   743
        //   t_{n}:L=MethodHandle.invokeBasic(...)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   744
        //   t_{n+1}:L=MethodHandleImpl.tryFinally(*, *, t_{n})
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   745
        //   t_{n+2}:?=MethodHandle.invokeBasic(*, t_{n+1})
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   746
        return isMatchingIdiom(pos, "tryFinally", 2);
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   747
    }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   748
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   749
    /**
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   750
     * Check if i-th name is a start of the loop idiom.
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   751
     */
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   752
    boolean isLoop(int pos) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   753
        // loop idiom:
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   754
        //   t_{n}:L=MethodHandle.invokeBasic(...)
41125
88d76c8db1fa 8161211: better inlining support for loop bytecode intrinsics
mhaupt
parents: 40550
diff changeset
   755
        //   t_{n+1}:L=MethodHandleImpl.loop(types, *, t_{n})
39342
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   756
        //   t_{n+2}:?=MethodHandle.invokeBasic(*, t_{n+1})
41125
88d76c8db1fa 8161211: better inlining support for loop bytecode intrinsics
mhaupt
parents: 40550
diff changeset
   757
        return isMatchingIdiom(pos, "loop", 2);
39342
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   758
    }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
   759
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   760
    /*
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   761
     * Code generation issues:
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   762
     *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   763
     * Compiled LFs should be reusable in general.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   764
     * The biggest issue is how to decide when to pull a name into
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   765
     * the bytecode, versus loading a reified form from the MH data.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   766
     *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   767
     * For example, an asType wrapper may require execution of a cast
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   768
     * after a call to a MH.  The target type of the cast can be placed
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   769
     * as a constant in the LF itself.  This will force the cast type
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   770
     * to be compiled into the bytecodes and native code for the MH.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   771
     * Or, the target type of the cast can be erased in the LF, and
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   772
     * loaded from the MH data.  (Later on, if the MH as a whole is
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   773
     * inlined, the data will flow into the inlined instance of the LF,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   774
     * as a constant, and the end result will be an optimal cast.)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   775
     *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   776
     * This erasure of cast types can be done with any use of
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   777
     * reference types.  It can also be done with whole method
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   778
     * handles.  Erasing a method handle might leave behind
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   779
     * LF code that executes correctly for any MH of a given
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   780
     * type, and load the required MH from the enclosing MH's data.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   781
     * Or, the erasure might even erase the expected MT.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   782
     *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   783
     * Also, for direct MHs, the MemberName of the target
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   784
     * could be erased, and loaded from the containing direct MH.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   785
     * As a simple case, a LF for all int-valued non-static
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   786
     * field getters would perform a cast on its input argument
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   787
     * (to non-constant base type derived from the MemberName)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   788
     * and load an integer value from the input object
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   789
     * (at a non-constant offset also derived from the MemberName).
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   790
     * Such MN-erased LFs would be inlinable back to optimized
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   791
     * code, whenever a constant enclosing DMH is available
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   792
     * to supply a constant MN from its data.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   793
     *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   794
     * The main problem here is to keep LFs reasonably generic,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   795
     * while ensuring that hot spots will inline good instances.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   796
     * "Reasonably generic" means that we don't end up with
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   797
     * repeated versions of bytecode or machine code that do
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   798
     * not differ in their optimized form.  Repeated versions
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   799
     * of machine would have the undesirable overheads of
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   800
     * (a) redundant compilation work and (b) extra I$ pressure.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   801
     * To control repeated versions, we need to be ready to
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   802
     * erase details from LFs and move them into MH data,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   803
     * whevener those details are not relevant to significant
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   804
     * optimization.  "Significant" means optimization of
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   805
     * code that is actually hot.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   806
     *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   807
     * Achieving this may require dynamic splitting of MHs, by replacing
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   808
     * a generic LF with a more specialized one, on the same MH,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   809
     * if (a) the MH is frequently executed and (b) the MH cannot
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   810
     * be inlined into a containing caller, such as an invokedynamic.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   811
     *
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   812
     * Compiled LFs that are no longer used should be GC-able.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   813
     * If they contain non-BCP references, they should be properly
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   814
     * interlinked with the class loader(s) that their embedded types
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   815
     * depend on.  This probably means that reusable compiled LFs
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   816
     * will be tabulated (indexed) on relevant class loaders,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   817
     * or else that the tables that cache them will have weak links.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   818
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   819
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   820
    /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   821
     * Make this LF directly executable, as part of a MethodHandle.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   822
     * Invariant:  Every MH which is invoked must prepare its LF
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   823
     * before invocation.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   824
     * (In principle, the JVM could do this very lazily,
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   825
     * as a sort of pre-invocation linkage step.)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   826
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   827
    public void prepare() {
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   828
        if (COMPILE_THRESHOLD == 0 && !forceInterpretation() && !isCompiled) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   829
            compileToBytecode();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   830
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   831
        if (this.vmentry != null) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   832
            // already prepared (e.g., a primitive DMH invoker form)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   833
            return;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   834
        }
34429
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   835
        MethodType mtype = methodType();
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   836
        LambdaForm prep = mtype.form().cachedLambdaForm(MethodTypeForm.LF_INTERPRET);
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   837
        if (prep == null) {
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   838
            assert (isValidSignature(basicTypeSignature()));
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   839
            prep = new LambdaForm(mtype);
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   840
            prep.vmentry = InvokerBytecodeGenerator.generateLambdaFormInterpreterEntryPoint(mtype);
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   841
            prep = mtype.form().setCachedLambdaForm(MethodTypeForm.LF_INTERPRET, prep);
8893c723602e 8072844: Use more efficient LambdaForm type representation
mhaupt
parents: 34384
diff changeset
   842
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   843
        this.vmentry = prep.vmentry;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   844
        // TO DO: Maybe add invokeGeneric, invokeWithArguments
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   845
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   846
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   847
    private static @Stable PerfCounter LF_FAILED;
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   848
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   849
    private static PerfCounter failedCompilationCounter() {
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   850
        if (LF_FAILED == null) {
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   851
            LF_FAILED = PerfCounter.newPerfCounter("java.lang.invoke.failedLambdaFormCompilations");
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   852
        }
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   853
        return LF_FAILED;
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   854
    }
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   855
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   856
    /** Generate optimizable bytecode for this form. */
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   857
    void compileToBytecode() {
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   858
        if (forceInterpretation()) {
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   859
            return; // this should not be compiled
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   860
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   861
        if (vmentry != null && isCompiled) {
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   862
            return;  // already compiled somehow
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   863
        }
44592
6b028630b652 8178480: Wrong exception being thrown on an invalid MethodType
redestad
parents: 44591
diff changeset
   864
6b028630b652 8178480: Wrong exception being thrown on an invalid MethodType
redestad
parents: 44591
diff changeset
   865
        // Obtain the invoker MethodType outside of the following try block.
6b028630b652 8178480: Wrong exception being thrown on an invalid MethodType
redestad
parents: 44591
diff changeset
   866
        // This ensures that an IllegalArgumentException is directly thrown if the
6b028630b652 8178480: Wrong exception being thrown on an invalid MethodType
redestad
parents: 44591
diff changeset
   867
        // type would have 256 or more parameters
6b028630b652 8178480: Wrong exception being thrown on an invalid MethodType
redestad
parents: 44591
diff changeset
   868
        MethodType invokerType = methodType();
6b028630b652 8178480: Wrong exception being thrown on an invalid MethodType
redestad
parents: 44591
diff changeset
   869
        assert(vmentry == null || vmentry.getMethodType().basicType().equals(invokerType));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   870
        try {
44592
6b028630b652 8178480: Wrong exception being thrown on an invalid MethodType
redestad
parents: 44591
diff changeset
   871
            vmentry = InvokerBytecodeGenerator.generateCustomizedCode(this, invokerType);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   872
            if (TRACE_INTERPRETER)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   873
                traceInterpreter("compileToBytecode", this);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   874
            isCompiled = true;
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   875
        } catch (InvokerBytecodeGenerator.BytecodeGenerationException bge) {
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   876
            // bytecode generation failed - mark this LambdaForm as to be run in interpretation mode only
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   877
            invocationCounter = -1;
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   878
            failedCompilationCounter().increment();
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   879
            if (LOG_LF_COMPILATION_FAILURE) {
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   880
                System.out.println("LambdaForm compilation failed: " + this);
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   881
                bge.printStackTrace(System.out);
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   882
            }
42105
d04ede5f10e7 8163553: java.lang.LinkageError from test java/lang/ThreadGroup/Stop.java
psandoz
parents: 41125
diff changeset
   883
        } catch (Error e) {
d04ede5f10e7 8163553: java.lang.LinkageError from test java/lang/ThreadGroup/Stop.java
psandoz
parents: 41125
diff changeset
   884
            // Pass through any error
d04ede5f10e7 8163553: java.lang.LinkageError from test java/lang/ThreadGroup/Stop.java
psandoz
parents: 41125
diff changeset
   885
            throw e;
d04ede5f10e7 8163553: java.lang.LinkageError from test java/lang/ThreadGroup/Stop.java
psandoz
parents: 41125
diff changeset
   886
        } catch (Exception e) {
d04ede5f10e7 8163553: java.lang.LinkageError from test java/lang/ThreadGroup/Stop.java
psandoz
parents: 41125
diff changeset
   887
            // Wrap any exception
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   888
            throw newInternalError(this.toString(), e);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   889
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   890
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   891
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   892
    // The next few routines are called only from assert expressions
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   893
    // They verify that the built-in invokers process the correct raw data types.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   894
    private static boolean argumentTypesMatch(String sig, Object[] av) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   895
        int arity = signatureArity(sig);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   896
        assert(av.length == arity) : "av.length == arity: av.length=" + av.length + ", arity=" + arity;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   897
        assert(av[0] instanceof MethodHandle) : "av[0] not instace of MethodHandle: " + av[0];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   898
        MethodHandle mh = (MethodHandle) av[0];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   899
        MethodType mt = mh.type();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   900
        assert(mt.parameterCount() == arity-1);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   901
        for (int i = 0; i < av.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   902
            Class<?> pt = (i == 0 ? MethodHandle.class : mt.parameterType(i-1));
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   903
            assert(valueMatches(basicType(sig.charAt(i)), pt, av[i]));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   904
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   905
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   906
    }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   907
    private static boolean valueMatches(BasicType tc, Class<?> type, Object x) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   908
        // The following line is needed because (...)void method handles can use non-void invokers
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   909
        if (type == void.class)  tc = V_TYPE;   // can drop any kind of value
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   910
        assert tc == basicType(type) : tc + " == basicType(" + type + ")=" + basicType(type);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   911
        switch (tc) {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   912
        case I_TYPE: assert checkInt(type, x)   : "checkInt(" + type + "," + x +")";   break;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   913
        case J_TYPE: assert x instanceof Long   : "instanceof Long: " + x;             break;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   914
        case F_TYPE: assert x instanceof Float  : "instanceof Float: " + x;            break;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   915
        case D_TYPE: assert x instanceof Double : "instanceof Double: " + x;           break;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   916
        case L_TYPE: assert checkRef(type, x)   : "checkRef(" + type + "," + x + ")";  break;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
   917
        case V_TYPE: break;  // allow anything here; will be dropped
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   918
        default:  assert(false);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   919
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   920
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   921
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   922
    private static boolean checkInt(Class<?> type, Object x) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   923
        assert(x instanceof Integer);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   924
        if (type == int.class)  return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   925
        Wrapper w = Wrapper.forBasicType(type);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   926
        assert(w.isSubwordOrInt());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   927
        Object x1 = Wrapper.INT.wrap(w.wrap(x));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   928
        return x.equals(x1);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   929
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   930
    private static boolean checkRef(Class<?> type, Object x) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   931
        assert(!type.isPrimitive());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   932
        if (x == null)  return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   933
        if (type.isInterface())  return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   934
        return type.isInstance(x);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   935
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   936
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   937
    /** If the invocation count hits the threshold we spin bytecodes and call that subsequently. */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   938
    private static final int COMPILE_THRESHOLD;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   939
    static {
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   940
        COMPILE_THRESHOLD = Math.max(-1, MethodHandleStatics.COMPILE_THRESHOLD);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   941
    }
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   942
    private int invocationCounter = 0; // a value of -1 indicates LambdaForm interpretation mode forever
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   943
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   944
    private boolean forceInterpretation() {
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   945
        return invocationCounter == -1;
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   946
    }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   947
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   948
    @Hidden
14852
d513c47448f4 8005345: JSR 292: JDK performance tweaks
twisti
parents: 14089
diff changeset
   949
    @DontInline
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   950
    /** Interpretively invoke this form on the given arguments. */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   951
    Object interpretWithArguments(Object... argumentValues) throws Throwable {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   952
        if (TRACE_INTERPRETER)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   953
            return interpretWithArgumentsTracing(argumentValues);
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   954
        checkInvocationCounter();
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   955
        assert(arityCheck(argumentValues));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   956
        Object[] values = Arrays.copyOf(argumentValues, names.length);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   957
        for (int i = argumentValues.length; i < values.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   958
            values[i] = interpretName(names[i], values);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   959
        }
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   960
        Object rv = (result < 0) ? null : values[result];
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   961
        assert(resultCheck(argumentValues, rv));
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   962
        return rv;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   963
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   964
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   965
    @Hidden
14852
d513c47448f4 8005345: JSR 292: JDK performance tweaks
twisti
parents: 14089
diff changeset
   966
    @DontInline
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   967
    /** Evaluate a single Name within this form, applying its function to its arguments. */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   968
    Object interpretName(Name name, Object[] values) throws Throwable {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   969
        if (TRACE_INTERPRETER)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   970
            traceInterpreter("| interpretName", name.debugString(), (Object[]) null);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   971
        Object[] arguments = Arrays.copyOf(name.arguments, name.arguments.length, Object[].class);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   972
        for (int i = 0; i < arguments.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   973
            Object a = arguments[i];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   974
            if (a instanceof Name) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   975
                int i2 = ((Name)a).index();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   976
                assert(names[i2] == a);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   977
                a = values[i2];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   978
                arguments[i] = a;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   979
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   980
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   981
        return name.function.invokeWithArguments(arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   982
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   983
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   984
    private void checkInvocationCounter() {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   985
        if (COMPILE_THRESHOLD != 0 &&
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   986
            !forceInterpretation() && invocationCounter < COMPILE_THRESHOLD) {
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   987
            invocationCounter++;  // benign race
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   988
            if (invocationCounter >= COMPILE_THRESHOLD) {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   989
                // Replace vmentry with a bytecode version of this LF.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   990
                compileToBytecode();
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   991
            }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   992
        }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   993
    }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   994
    Object interpretWithArgumentsTracing(Object... argumentValues) throws Throwable {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   995
        traceInterpreter("[ interpretWithArguments", this, argumentValues);
39483
3a7e016ba204 8160717: MethodHandles.loop() does not check for excessive signature
mhaupt
parents: 39342
diff changeset
   996
        if (!forceInterpretation() && invocationCounter < COMPILE_THRESHOLD) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   997
            int ctr = invocationCounter++;  // benign race
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   998
            traceInterpreter("| invocationCounter", ctr);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
   999
            if (invocationCounter >= COMPILE_THRESHOLD) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1000
                compileToBytecode();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1001
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1002
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1003
        Object rval;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1004
        try {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1005
            assert(arityCheck(argumentValues));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1006
            Object[] values = Arrays.copyOf(argumentValues, names.length);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1007
            for (int i = argumentValues.length; i < values.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1008
                values[i] = interpretName(names[i], values);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1009
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1010
            rval = (result < 0) ? null : values[result];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1011
        } catch (Throwable ex) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1012
            traceInterpreter("] throw =>", ex);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1013
            throw ex;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1014
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1015
        traceInterpreter("] return =>", rval);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1016
        return rval;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1017
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1018
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1019
    static void traceInterpreter(String event, Object obj, Object... args) {
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1020
        if (TRACE_INTERPRETER) {
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1021
            System.out.println("LFI: "+event+" "+(obj != null ? obj : "")+(args != null && args.length != 0 ? Arrays.asList(args) : ""));
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1022
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1023
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1024
    static void traceInterpreter(String event, Object obj) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1025
        traceInterpreter(event, obj, (Object[])null);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1026
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1027
    private boolean arityCheck(Object[] argumentValues) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1028
        assert(argumentValues.length == arity) : arity+"!="+Arrays.asList(argumentValues)+".length";
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1029
        // also check that the leading (receiver) argument is somehow bound to this LF:
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1030
        assert(argumentValues[0] instanceof MethodHandle) : "not MH: " + argumentValues[0];
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1031
        MethodHandle mh = (MethodHandle) argumentValues[0];
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1032
        assert(mh.internalForm() == this);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1033
        // note:  argument #0 could also be an interface wrapper, in the future
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1034
        argumentTypesMatch(basicTypeSignature(), argumentValues);
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1035
        return true;
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1036
    }
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1037
    private boolean resultCheck(Object[] argumentValues, Object result) {
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1038
        MethodHandle mh = (MethodHandle) argumentValues[0];
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1039
        MethodType mt = mh.type();
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1040
        assert(valueMatches(returnType(), mt.returnType(), result));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1041
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1042
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1043
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1044
    private boolean isEmpty() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1045
        if (result < 0)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1046
            return (names.length == arity);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1047
        else if (result == arity && names.length == arity + 1)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1048
            return names[arity].isConstantZero();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1049
        else
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1050
            return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1051
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1052
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1053
    public String toString() {
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1054
        String lambdaName = lambdaName();
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1055
        StringBuilder buf = new StringBuilder(lambdaName + "=Lambda(");
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1056
        for (int i = 0; i < names.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1057
            if (i == arity)  buf.append(")=>{");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1058
            Name n = names[i];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1059
            if (i >= arity)  buf.append("\n    ");
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1060
            buf.append(n.paramString());
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1061
            if (i < arity) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1062
                if (i+1 < arity)  buf.append(",");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1063
                continue;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1064
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1065
            buf.append("=").append(n.exprString());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1066
            buf.append(";");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1067
        }
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1068
        if (arity == names.length)  buf.append(")=>{");
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1069
        buf.append(result < 0 ? "void" : names[result]).append("}");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1070
        if (TRACE_INTERPRETER) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1071
            // Extra verbosity:
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1072
            buf.append(":").append(basicTypeSignature());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1073
            buf.append("/").append(vmentry);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1074
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1075
        return buf.toString();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1076
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1077
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1078
    @Override
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1079
    public boolean equals(Object obj) {
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1080
        return obj instanceof LambdaForm && equals((LambdaForm)obj);
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1081
    }
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1082
    public boolean equals(LambdaForm that) {
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1083
        if (this.result != that.result)  return false;
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1084
        return Arrays.equals(this.names, that.names);
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1085
    }
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1086
    public int hashCode() {
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1087
        return result + 31 * Arrays.hashCode(names);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1088
    }
26481
c5b74a88a3c0 8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents: 26479
diff changeset
  1089
    LambdaFormEditor editor() {
c5b74a88a3c0 8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents: 26479
diff changeset
  1090
        return LambdaFormEditor.lambdaFormEditor(this);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1091
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1092
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1093
    boolean contains(Name name) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1094
        int pos = name.index();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1095
        if (pos >= 0) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1096
            return pos < names.length && name.equals(names[pos]);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1097
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1098
        for (int i = arity; i < names.length; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1099
            if (name.equals(names[i]))
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1100
                return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1101
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1102
        return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1103
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1104
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1105
    static class NamedFunction {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1106
        final MemberName member;
33841
1d1d1ea6a5f2 8142334: Improve lazy initialization of java.lang.invoke
redestad
parents: 30035
diff changeset
  1107
        private @Stable MethodHandle resolvedHandle;
20494
cf77ae5ff678 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 14852
diff changeset
  1108
        @Stable MethodHandle invoker;
45470
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1109
        private final MethodHandleImpl.Intrinsic intrinsicName;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1110
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1111
        NamedFunction(MethodHandle resolvedHandle) {
45470
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1112
            this(resolvedHandle.internalMemberName(), resolvedHandle, MethodHandleImpl.Intrinsic.NONE);
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1113
        }
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1114
        NamedFunction(MethodHandle resolvedHandle, MethodHandleImpl.Intrinsic intrinsic) {
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1115
            this(resolvedHandle.internalMemberName(), resolvedHandle, intrinsic);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1116
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1117
        NamedFunction(MemberName member, MethodHandle resolvedHandle) {
45470
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1118
            this(member, resolvedHandle, MethodHandleImpl.Intrinsic.NONE);
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1119
        }
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1120
        NamedFunction(MemberName member, MethodHandle resolvedHandle, MethodHandleImpl.Intrinsic intrinsic) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1121
            this.member = member;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1122
            this.resolvedHandle = resolvedHandle;
45470
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1123
            this.intrinsicName = intrinsic;
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1124
            assert(resolvedHandle == null ||
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1125
                   resolvedHandle.intrinsicName() == MethodHandleImpl.Intrinsic.NONE ||
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1126
                   resolvedHandle.intrinsicName() == intrinsic) : resolvedHandle.intrinsicName() + " != " + intrinsic;
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1127
             // The following assert is almost always correct, but will fail for corner cases, such as PrivateInvokeTest.
39754
a04d89a52ad9 8154475: Clean up lookup visibility
jrose
parents: 39483
diff changeset
  1128
             //assert(!isInvokeBasic(member));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1129
        }
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1130
        NamedFunction(MethodType basicInvokerType) {
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1131
            assert(basicInvokerType == basicInvokerType.basicType()) : basicInvokerType;
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1132
            if (basicInvokerType.parameterSlotCount() < MethodType.MAX_MH_INVOKER_ARITY) {
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1133
                this.resolvedHandle = basicInvokerType.invokers().basicInvoker();
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1134
                this.member = resolvedHandle.internalMemberName();
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1135
            } else {
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1136
                // necessary to pass BigArityTest
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1137
                this.member = Invokers.invokeBasicMethod(basicInvokerType);
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1138
            }
45470
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1139
            this.intrinsicName = MethodHandleImpl.Intrinsic.NONE;
39754
a04d89a52ad9 8154475: Clean up lookup visibility
jrose
parents: 39483
diff changeset
  1140
            assert(isInvokeBasic(member));
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1141
        }
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1142
39754
a04d89a52ad9 8154475: Clean up lookup visibility
jrose
parents: 39483
diff changeset
  1143
        private static boolean isInvokeBasic(MemberName member) {
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1144
            return member != null &&
39754
a04d89a52ad9 8154475: Clean up lookup visibility
jrose
parents: 39483
diff changeset
  1145
                   member.getDeclaringClass() == MethodHandle.class &&
a04d89a52ad9 8154475: Clean up lookup visibility
jrose
parents: 39483
diff changeset
  1146
                  "invokeBasic".equals(member.getName());
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1147
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1148
34384
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1149
        // The next 2 constructors are used to break circular dependencies on MH.invokeStatic, etc.
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1150
        // Any LambdaForm containing such a member is not interpretable.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1151
        // This is OK, since all such LFs are prepared with special primitive vmentry points.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1152
        // And even without the resolvedHandle, the name can still be compiled and optimized.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1153
        NamedFunction(Method method) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1154
            this(new MemberName(method));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1155
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1156
        NamedFunction(MemberName member) {
34384
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1157
            this(member, null);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1158
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1159
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1160
        MethodHandle resolvedHandle() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1161
            if (resolvedHandle == null)  resolve();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1162
            return resolvedHandle;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1163
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1164
33841
1d1d1ea6a5f2 8142334: Improve lazy initialization of java.lang.invoke
redestad
parents: 30035
diff changeset
  1165
        synchronized void resolve() {
1d1d1ea6a5f2 8142334: Improve lazy initialization of java.lang.invoke
redestad
parents: 30035
diff changeset
  1166
            if (resolvedHandle == null) {
1d1d1ea6a5f2 8142334: Improve lazy initialization of java.lang.invoke
redestad
parents: 30035
diff changeset
  1167
                resolvedHandle = DirectMethodHandle.make(member);
1d1d1ea6a5f2 8142334: Improve lazy initialization of java.lang.invoke
redestad
parents: 30035
diff changeset
  1168
            }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1169
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1170
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1171
        @Override
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1172
        public boolean equals(Object other) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1173
            if (this == other) return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1174
            if (other == null) return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1175
            if (!(other instanceof NamedFunction)) return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1176
            NamedFunction that = (NamedFunction) other;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1177
            return this.member != null && this.member.equals(that.member);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1178
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1179
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1180
        @Override
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1181
        public int hashCode() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1182
            if (member != null)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1183
                return member.hashCode();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1184
            return super.hashCode();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1185
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1186
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1187
        static final MethodType INVOKER_METHOD_TYPE =
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1188
            MethodType.methodType(Object.class, MethodHandle.class, Object[].class);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1189
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1190
        private static MethodHandle computeInvoker(MethodTypeForm typeForm) {
26468
2d57604f9299 8050053: Improve caching of different invokers
vlivanov
parents: 26467
diff changeset
  1191
            typeForm = typeForm.basicType().form();  // normalize to basic type
2d57604f9299 8050053: Improve caching of different invokers
vlivanov
parents: 26467
diff changeset
  1192
            MethodHandle mh = typeForm.cachedMethodHandle(MethodTypeForm.MH_NF_INV);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1193
            if (mh != null)  return mh;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1194
            MemberName invoker = InvokerBytecodeGenerator.generateNamedFunctionInvoker(typeForm);  // this could take a while
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1195
            mh = DirectMethodHandle.make(invoker);
26468
2d57604f9299 8050053: Improve caching of different invokers
vlivanov
parents: 26467
diff changeset
  1196
            MethodHandle mh2 = typeForm.cachedMethodHandle(MethodTypeForm.MH_NF_INV);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1197
            if (mh2 != null)  return mh2;  // benign race
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1198
            if (!mh.type().equals(INVOKER_METHOD_TYPE))
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1199
                throw newInternalError(mh.debugString());
26468
2d57604f9299 8050053: Improve caching of different invokers
vlivanov
parents: 26467
diff changeset
  1200
            return typeForm.setCachedMethodHandle(MethodTypeForm.MH_NF_INV, mh);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1201
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1202
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1203
        @Hidden
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1204
        Object invokeWithArguments(Object... arguments) throws Throwable {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1205
            // If we have a cached invoker, call it right away.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1206
            // NOTE: The invoker always returns a reference value.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1207
            if (TRACE_INTERPRETER)  return invokeWithArgumentsTracing(arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1208
            return invoker().invokeBasic(resolvedHandle(), arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1209
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1210
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1211
        @Hidden
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1212
        Object invokeWithArgumentsTracing(Object[] arguments) throws Throwable {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1213
            Object rval;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1214
            try {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1215
                traceInterpreter("[ call", this, arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1216
                if (invoker == null) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1217
                    traceInterpreter("| getInvoker", this);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1218
                    invoker();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1219
                }
33841
1d1d1ea6a5f2 8142334: Improve lazy initialization of java.lang.invoke
redestad
parents: 30035
diff changeset
  1220
                // resolvedHandle might be uninitialized, ok for tracing
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1221
                if (resolvedHandle == null) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1222
                    traceInterpreter("| resolve", this);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1223
                    resolvedHandle();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1224
                }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1225
                rval = invoker().invokeBasic(resolvedHandle(), arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1226
            } catch (Throwable ex) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1227
                traceInterpreter("] throw =>", ex);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1228
                throw ex;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1229
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1230
            traceInterpreter("] return =>", rval);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1231
            return rval;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1232
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1233
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1234
        private MethodHandle invoker() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1235
            if (invoker != null)  return invoker;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1236
            // Get an invoker and cache it.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1237
            return invoker = computeInvoker(methodType().form());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1238
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1239
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1240
        MethodType methodType() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1241
            if (resolvedHandle != null)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1242
                return resolvedHandle.type();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1243
            else
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1244
                // only for certain internal LFs during bootstrapping
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1245
                return member.getInvocationType();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1246
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1247
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1248
        MemberName member() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1249
            assert(assertMemberIsConsistent());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1250
            return member;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1251
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1252
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1253
        // Called only from assert.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1254
        private boolean assertMemberIsConsistent() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1255
            if (resolvedHandle instanceof DirectMethodHandle) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1256
                MemberName m = resolvedHandle.internalMemberName();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1257
                assert(m.equals(member));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1258
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1259
            return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1260
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1261
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1262
        Class<?> memberDeclaringClassOrNull() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1263
            return (member == null) ? null : member.getDeclaringClass();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1264
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1265
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1266
        BasicType returnType() {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1267
            return basicType(methodType().returnType());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1268
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1269
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1270
        BasicType parameterType(int n) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1271
            return basicType(methodType().parameterType(n));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1272
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1273
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1274
        int arity() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1275
            return methodType().parameterCount();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1276
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1277
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1278
        public String toString() {
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1279
            if (member == null)  return String.valueOf(resolvedHandle);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1280
            return member.getDeclaringClass().getSimpleName()+"."+member.getName();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1281
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1282
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1283
        public boolean isIdentity() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1284
            return this.equals(identity(returnType()));
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1285
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1286
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1287
        public boolean isConstantZero() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1288
            return this.equals(constantZero(returnType()));
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1289
        }
26473
0abc9399a1a6 8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents: 26472
diff changeset
  1290
0abc9399a1a6 8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents: 26472
diff changeset
  1291
        public MethodHandleImpl.Intrinsic intrinsicName() {
45470
fad095de1919 8161207: remove extra MethodHandle subclass in MethodHandleImpl
rpressler
parents: 44592
diff changeset
  1292
            return intrinsicName;
26473
0abc9399a1a6 8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents: 26472
diff changeset
  1293
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1294
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1295
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1296
    public static String basicTypeSignature(MethodType type) {
40272
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
  1297
        int params = type.parameterCount();
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
  1298
        char[] sig = new char[params + 2];
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1299
        int sigp = 0;
40272
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
  1300
        while (sigp < params) {
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
  1301
            sig[sigp] = basicTypeChar(type.parameterType(sigp++));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1302
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1303
        sig[sigp++] = '_';
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1304
        sig[sigp++] = basicTypeChar(type.returnType());
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1305
        assert(sigp == sig.length);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1306
        return String.valueOf(sig);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1307
    }
47753
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1308
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1309
    /** Hack to make signatures more readable when they show up in method names.
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1310
     * Signature should start with a sequence of uppercase ASCII letters.
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1311
     * Runs of three or more are replaced by a single letter plus a decimal repeat count.
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1312
     * A tail of anything other than uppercase ASCII is passed through unchanged.
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1313
     * @param signature sequence of uppercase ASCII letters with possible repetitions
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1314
     * @return same sequence, with repetitions counted by decimal numerals
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1315
     */
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1316
    public static String shortenSignature(String signature) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1317
        final int NO_CHAR = -1, MIN_RUN = 3;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1318
        int c0, c1 = NO_CHAR, c1reps = 0;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1319
        StringBuilder buf = null;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1320
        int len = signature.length();
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1321
        if (len < MIN_RUN)  return signature;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1322
        for (int i = 0; i <= len; i++) {
47753
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1323
            if (c1 != NO_CHAR && !('A' <= c1 && c1 <= 'Z')) {
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1324
                // wrong kind of char; bail out here
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1325
                if (buf != null) {
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1326
                    buf.append(signature.substring(i - c1reps, len));
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1327
                }
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1328
                break;
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1329
            }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1330
            // shift in the next char:
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1331
            c0 = c1; c1 = (i == len ? NO_CHAR : signature.charAt(i));
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1332
            if (c1 == c0) { ++c1reps; continue; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1333
            // shift in the next count:
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1334
            int c0reps = c1reps; c1reps = 1;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1335
            // end of a  character run
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1336
            if (c0reps < MIN_RUN) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1337
                if (buf != null) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1338
                    while (--c0reps >= 0)
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1339
                        buf.append((char)c0);
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1340
                }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1341
                continue;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1342
            }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1343
            // found three or more in a row
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1344
            if (buf == null)
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1345
                buf = new StringBuilder().append(signature, 0, i - c0reps);
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1346
            buf.append((char)c0).append(c0reps);
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1347
        }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1348
        return (buf == null) ? signature : buf.toString();
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1349
    }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1350
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1351
    static final class Name {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1352
        final BasicType type;
40272
6af4511ee5a4 8163878: Remove unnecessary bridge methods, allocations in java.lang.invoke
redestad
parents: 40212
diff changeset
  1353
        @Stable short index;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1354
        final NamedFunction function;
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1355
        final Object constraint;  // additional type information, if not null
20494
cf77ae5ff678 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 14852
diff changeset
  1356
        @Stable final Object[] arguments;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1357
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1358
        private Name(int index, BasicType type, NamedFunction function, Object[] arguments) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1359
            this.index = (short)index;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1360
            this.type = type;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1361
            this.function = function;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1362
            this.arguments = arguments;
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1363
            this.constraint = null;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1364
            assert(this.index == index);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1365
        }
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1366
        private Name(Name that, Object constraint) {
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1367
            this.index = that.index;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1368
            this.type = that.type;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1369
            this.function = that.function;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1370
            this.arguments = that.arguments;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1371
            this.constraint = constraint;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1372
            assert(constraint == null || isParam());  // only params have constraints
47753
a2008587c13f 8184777: Factor out species generation logic from BoundMethodHandle
redestad
parents: 47216
diff changeset
  1373
            assert(constraint == null || constraint instanceof ClassSpecializer.SpeciesData || constraint instanceof Class);
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1374
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1375
        Name(MethodHandle function, Object... arguments) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1376
            this(new NamedFunction(function), arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1377
        }
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1378
        Name(MethodType functionType, Object... arguments) {
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1379
            this(new NamedFunction(functionType), arguments);
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1380
            assert(arguments[0] instanceof Name && ((Name)arguments[0]).type == L_TYPE);
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1381
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1382
        Name(MemberName function, Object... arguments) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1383
            this(new NamedFunction(function), arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1384
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1385
        Name(NamedFunction function, Object... arguments) {
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1386
            this(-1, function.returnType(), function, arguments = Arrays.copyOf(arguments, arguments.length, Object[].class));
34384
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1387
            assert(typesMatch(function, arguments));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1388
        }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1389
        /** Create a raw parameter of the given type, with an expected index. */
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1390
        Name(int index, BasicType type) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1391
            this(index, type, null, null);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1392
        }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1393
        /** Create a raw parameter of the given type. */
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1394
        Name(BasicType type) { this(-1, type); }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1395
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1396
        BasicType type() { return type; }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1397
        int index() { return index; }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1398
        boolean initIndex(int i) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1399
            if (index != i) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1400
                if (index != -1)  return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1401
                index = (short)i;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1402
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1403
            return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1404
        }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1405
        char typeChar() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1406
            return type.btChar;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1407
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1408
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1409
        void resolve() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1410
            if (function != null)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1411
                function.resolve();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1412
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1413
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1414
        Name newIndex(int i) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1415
            if (initIndex(i))  return this;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1416
            return cloneWithIndex(i);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1417
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1418
        Name cloneWithIndex(int i) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1419
            Object[] newArguments = (arguments == null) ? null : arguments.clone();
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1420
            return new Name(i, type, function, newArguments).withConstraint(constraint);
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1421
        }
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1422
        Name withConstraint(Object constraint) {
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1423
            if (constraint == this.constraint)  return this;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1424
            return new Name(this, constraint);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1425
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1426
        Name replaceName(Name oldName, Name newName) {  // FIXME: use replaceNames uniformly
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1427
            if (oldName == newName)  return this;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1428
            @SuppressWarnings("LocalVariableHidesMemberVariable")
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1429
            Object[] arguments = this.arguments;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1430
            if (arguments == null)  return this;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1431
            boolean replaced = false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1432
            for (int j = 0; j < arguments.length; j++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1433
                if (arguments[j] == oldName) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1434
                    if (!replaced) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1435
                        replaced = true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1436
                        arguments = arguments.clone();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1437
                    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1438
                    arguments[j] = newName;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1439
                }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1440
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1441
            if (!replaced)  return this;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1442
            return new Name(function, arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1443
        }
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1444
        /** In the arguments of this Name, replace oldNames[i] pairwise by newNames[i].
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1445
         *  Limit such replacements to {@code start<=i<end}.  Return possibly changed self.
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1446
         */
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1447
        Name replaceNames(Name[] oldNames, Name[] newNames, int start, int end) {
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1448
            if (start >= end)  return this;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1449
            @SuppressWarnings("LocalVariableHidesMemberVariable")
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1450
            Object[] arguments = this.arguments;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1451
            boolean replaced = false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1452
        eachArg:
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1453
            for (int j = 0; j < arguments.length; j++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1454
                if (arguments[j] instanceof Name) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1455
                    Name n = (Name) arguments[j];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1456
                    int check = n.index;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1457
                    // harmless check to see if the thing is already in newNames:
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1458
                    if (check >= 0 && check < newNames.length && n == newNames[check])
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1459
                        continue eachArg;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1460
                    // n might not have the correct index: n != oldNames[n.index].
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1461
                    for (int i = start; i < end; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1462
                        if (n == oldNames[i]) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1463
                            if (n == newNames[i])
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1464
                                continue eachArg;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1465
                            if (!replaced) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1466
                                replaced = true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1467
                                arguments = arguments.clone();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1468
                            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1469
                            arguments[j] = newNames[i];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1470
                            continue eachArg;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1471
                        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1472
                    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1473
                }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1474
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1475
            if (!replaced)  return this;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1476
            return new Name(function, arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1477
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1478
        void internArguments() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1479
            @SuppressWarnings("LocalVariableHidesMemberVariable")
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1480
            Object[] arguments = this.arguments;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1481
            for (int j = 0; j < arguments.length; j++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1482
                if (arguments[j] instanceof Name) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1483
                    Name n = (Name) arguments[j];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1484
                    if (n.isParam() && n.index < INTERNED_ARGUMENT_LIMIT)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1485
                        arguments[j] = internArgument(n);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1486
                }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1487
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1488
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1489
        boolean isParam() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1490
            return function == null;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1491
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1492
        boolean isConstantZero() {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1493
            return !isParam() && arguments.length == 0 && function.isConstantZero();
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1494
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1495
39342
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1496
        boolean refersTo(Class<?> declaringClass, String methodName) {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1497
            return function != null &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1498
                    function.member() != null && function.member().refersTo(declaringClass, methodName);
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1499
        }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1500
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1501
        /**
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1502
         * Check if MemberName is a call to MethodHandle.invokeBasic.
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1503
         */
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1504
        boolean isInvokeBasic() {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1505
            if (function == null)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1506
                return false;
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1507
            if (arguments.length < 1)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1508
                return false;  // must have MH argument
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1509
            MemberName member = function.member();
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1510
            return member != null && member.refersTo(MethodHandle.class, "invokeBasic") &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1511
                    !member.isPublic() && !member.isStatic();
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1512
        }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1513
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1514
        /**
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1515
         * Check if MemberName is a call to MethodHandle.linkToStatic, etc.
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1516
         */
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1517
        boolean isLinkerMethodInvoke() {
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1518
            if (function == null)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1519
                return false;
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1520
            if (arguments.length < 1)
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1521
                return false;  // must have MH argument
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1522
            MemberName member = function.member();
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1523
            return member != null &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1524
                    member.getDeclaringClass() == MethodHandle.class &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1525
                    !member.isPublic() && member.isStatic() &&
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1526
                    member.getName().startsWith("linkTo");
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1527
        }
f66a89ed6fca 8143211: provide bytecode intrinsics for loop and try/finally executors
mhaupt
parents: 35252
diff changeset
  1528
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1529
        public String toString() {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1530
            return (isParam()?"a":"t")+(index >= 0 ? index : System.identityHashCode(this))+":"+typeChar();
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1531
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1532
        public String debugString() {
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1533
            String s = paramString();
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1534
            return (function == null) ? s : s + "=" + exprString();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1535
        }
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1536
        public String paramString() {
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1537
            String s = toString();
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1538
            Object c = constraint;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1539
            if (c == null)
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1540
                return s;
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1541
            if (c instanceof Class)  c = ((Class<?>)c).getSimpleName();
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1542
            return s + "/" + c;
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
  1543
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1544
        public String exprString() {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1545
            if (function == null)  return toString();
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1546
            StringBuilder buf = new StringBuilder(function.toString());
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1547
            buf.append("(");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1548
            String cma = "";
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1549
            for (Object a : arguments) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1550
                buf.append(cma); cma = ",";
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1551
                if (a instanceof Name || a instanceof Integer)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1552
                    buf.append(a);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1553
                else
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1554
                    buf.append("(").append(a).append(")");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1555
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1556
            buf.append(")");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1557
            return buf.toString();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1558
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1559
34384
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1560
        private boolean typesMatch(NamedFunction function, Object ... arguments) {
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1561
            assert(arguments.length == function.arity()) : "arity mismatch: arguments.length=" + arguments.length + " == function.arity()=" + function.arity() + " in " + debugString();
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1562
            for (int i = 0; i < arguments.length; i++) {
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1563
                assert (typesMatch(function.parameterType(i), arguments[i])) : "types don't match: function.parameterType(" + i + ")=" + function.parameterType(i) + ", arguments[" + i + "]=" + arguments[i] + " in " + debugString();
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1564
            }
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1565
            return true;
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1566
        }
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1567
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1568
        private static boolean typesMatch(BasicType parameterType, Object object) {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1569
            if (object instanceof Name) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1570
                return ((Name)object).type == parameterType;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1571
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1572
            switch (parameterType) {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1573
                case I_TYPE:  return object instanceof Integer;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1574
                case J_TYPE:  return object instanceof Long;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1575
                case F_TYPE:  return object instanceof Float;
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1576
                case D_TYPE:  return object instanceof Double;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1577
            }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1578
            assert(parameterType == L_TYPE);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1579
            return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1580
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1581
23038
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1582
        /** Return the index of the last occurrence of n in the argument array.
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1583
         *  Return -1 if the name is not used.
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1584
         */
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1585
        int lastUseIndex(Name n) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1586
            if (arguments == null)  return -1;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1587
            for (int i = arguments.length; --i >= 0; ) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1588
                if (arguments[i] == n)  return i;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1589
            }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1590
            return -1;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1591
        }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1592
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1593
        /** Return the number of occurrences of n in the argument array.
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1594
         *  Return 0 if the name is not used.
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1595
         */
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1596
        int useCount(Name n) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1597
            if (arguments == null)  return 0;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1598
            int count = 0;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1599
            for (int i = arguments.length; --i >= 0; ) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1600
                if (arguments[i] == n)  ++count;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1601
            }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1602
            return count;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1603
        }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1604
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1605
        boolean contains(Name n) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1606
            return this == n || lastUseIndex(n) >= 0;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1607
        }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1608
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1609
        public boolean equals(Name that) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1610
            if (this == that)  return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1611
            if (isParam())
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1612
                // each parameter is a unique atom
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1613
                return false;  // this != that
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1614
            return
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1615
                //this.index == that.index &&
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1616
                this.type == that.type &&
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1617
                this.function.equals(that.function) &&
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1618
                Arrays.equals(this.arguments, that.arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1619
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1620
        @Override
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1621
        public boolean equals(Object x) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1622
            return x instanceof Name && equals((Name)x);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1623
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1624
        @Override
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1625
        public int hashCode() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1626
            if (isParam())
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1627
                return index | (type.ordinal() << 8);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1628
            return function.hashCode() ^ Arrays.hashCode(arguments);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1629
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1630
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1631
23038
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1632
    /** Return the index of the last name which contains n as an argument.
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1633
     *  Return -1 if the name is not used.  Return names.length if it is the return value.
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1634
     */
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1635
    int lastUseIndex(Name n) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1636
        int ni = n.index, nmax = names.length;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1637
        assert(names[ni] == n);
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1638
        if (result == ni)  return nmax;  // live all the way beyond the end
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1639
        for (int i = nmax; --i > ni; ) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1640
            if (names[i].lastUseIndex(n) >= 0)
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1641
                return i;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1642
        }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1643
        return -1;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1644
    }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1645
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1646
    /** Return the number of times n is used as an argument or return value. */
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1647
    int useCount(Name n) {
34384
439c06c76808 8143131: Remove unused code from java.lang.invoke
redestad
parents: 33869
diff changeset
  1648
        int nmax = names.length;
23038
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1649
        int end = lastUseIndex(n);
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1650
        if (end < 0)  return 0;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1651
        int count = 0;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1652
        if (end == nmax) { count++; end--; }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1653
        int beg = n.index() + 1;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1654
        if (beg < arity)  beg = arity;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1655
        for (int i = beg; i <= end; i++) {
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1656
            count += names[i].useCount(n);
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1657
        }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1658
        return count;
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1659
    }
bb8b3b23af3a 8027827: Improve performance of catchException combinator
vlivanov
parents: 23010
diff changeset
  1660
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1661
    static Name argument(int which, BasicType type) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1662
        if (which >= INTERNED_ARGUMENT_LIMIT)
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1663
            return new Name(which, type);
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1664
        return INTERNED_ARGUMENTS[type.ordinal()][which];
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1665
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1666
    static Name internArgument(Name n) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1667
        assert(n.isParam()) : "not param: " + n;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1668
        assert(n.index < INTERNED_ARGUMENT_LIMIT);
26479
a60a19ec5ce5 8057657: Annotate LambdaForm parameters with types
vlivanov
parents: 26473
diff changeset
  1669
        if (n.constraint != null)  return n;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1670
        return argument(n.index, n.type);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1671
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1672
    static Name[] arguments(int extra, MethodType types) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1673
        int length = types.parameterCount();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1674
        Name[] names = new Name[length + extra];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1675
        for (int i = 0; i < length; i++)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1676
            names[i] = argument(i, basicType(types.parameterType(i)));
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1677
        return names;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1678
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1679
    static final int INTERNED_ARGUMENT_LIMIT = 10;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1680
    private static final Name[][] INTERNED_ARGUMENTS
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1681
            = new Name[ARG_TYPE_LIMIT][INTERNED_ARGUMENT_LIMIT];
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1682
    static {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1683
        for (BasicType type : BasicType.ARG_TYPES) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1684
            int ord = type.ordinal();
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1685
            for (int i = 0; i < INTERNED_ARGUMENTS[ord].length; i++) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1686
                INTERNED_ARGUMENTS[ord][i] = new Name(i, type);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1687
            }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1688
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1689
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1690
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1691
    private static final MemberName.Factory IMPL_NAMES = MemberName.getFactory();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1692
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1693
    static LambdaForm identityForm(BasicType type) {
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1694
        int ord = type.ordinal();
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1695
        LambdaForm form = LF_identity[ord];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1696
        if (form != null) {
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1697
            return form;
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1698
        }
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1699
        createFormsFor(type);
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1700
        return LF_identity[ord];
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1701
    }
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1702
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1703
    static LambdaForm zeroForm(BasicType type) {
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1704
        int ord = type.ordinal();
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1705
        LambdaForm form = LF_zero[ord];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1706
        if (form != null) {
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1707
            return form;
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1708
        }
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1709
        createFormsFor(type);
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1710
        return LF_zero[ord];
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1711
    }
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1712
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1713
    static NamedFunction identity(BasicType type) {
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1714
        int ord = type.ordinal();
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1715
        NamedFunction function = NF_identity[ord];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1716
        if (function != null) {
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1717
            return function;
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1718
        }
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1719
        createFormsFor(type);
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1720
        return NF_identity[ord];
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1721
    }
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1722
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1723
    static NamedFunction constantZero(BasicType type) {
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1724
        int ord = type.ordinal();
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1725
        NamedFunction function = NF_zero[ord];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1726
        if (function != null) {
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1727
            return function;
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1728
        }
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1729
        createFormsFor(type);
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1730
        return NF_zero[ord];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1731
    }
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1732
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1733
    private static final @Stable LambdaForm[] LF_identity = new LambdaForm[TYPE_LIMIT];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1734
    private static final @Stable LambdaForm[] LF_zero = new LambdaForm[TYPE_LIMIT];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1735
    private static final @Stable NamedFunction[] NF_identity = new NamedFunction[TYPE_LIMIT];
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1736
    private static final @Stable NamedFunction[] NF_zero = new NamedFunction[TYPE_LIMIT];
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1737
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1738
    private static final Object createFormsLock = new Object();
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1739
    private static void createFormsFor(BasicType type) {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1740
        // Avoid racy initialization during bootstrap
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1741
        UNSAFE.ensureClassInitialized(BoundMethodHandle.class);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1742
        synchronized (createFormsLock) {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1743
            final int ord = type.ordinal();
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1744
            LambdaForm idForm = LF_identity[ord];
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1745
            if (idForm != null) {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1746
                return;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1747
            }
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1748
            char btChar = type.basicTypeChar();
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1749
            boolean isVoid = (type == V_TYPE);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1750
            Class<?> btClass = type.btClass;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1751
            MethodType zeType = MethodType.methodType(btClass);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1752
            MethodType idType = (isVoid) ? zeType : MethodType.methodType(btClass, btClass);
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1753
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1754
            // Look up symbolic names.  It might not be necessary to have these,
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1755
            // but if we need to emit direct references to bytecodes, it helps.
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1756
            // Zero is built from a call to an identity function with a constant zero input.
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1757
            MemberName idMem = new MemberName(LambdaForm.class, "identity_"+btChar, idType, REF_invokeStatic);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1758
            MemberName zeMem = null;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1759
            try {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1760
                idMem = IMPL_NAMES.resolveOrFail(REF_invokeStatic, idMem, null, NoSuchMethodException.class);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1761
                if (!isVoid) {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1762
                    zeMem = new MemberName(LambdaForm.class, "zero_"+btChar, zeType, REF_invokeStatic);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1763
                    zeMem = IMPL_NAMES.resolveOrFail(REF_invokeStatic, zeMem, null, NoSuchMethodException.class);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1764
                }
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1765
            } catch (IllegalAccessException|NoSuchMethodException ex) {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1766
                throw newInternalError(ex);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1767
            }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1768
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1769
            NamedFunction idFun;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1770
            LambdaForm zeForm;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1771
            NamedFunction zeFun;
33869
a25f84d078ab 8143232: Fix java.lang.invoke bootstrap when specifying COMPILE_THRESHOLD
redestad
parents: 33842
diff changeset
  1772
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1773
            // Create the LFs and NamedFunctions. Precompiling LFs to byte code is needed to break circular
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1774
            // bootstrap dependency on this method in case we're interpreting LFs
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1775
            if (isVoid) {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1776
                Name[] idNames = new Name[] { argument(0, L_TYPE) };
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1777
                idForm = new LambdaForm(1, idNames, VOID_RESULT, Kind.IDENTITY);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1778
                idForm.compileToBytecode();
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1779
                idFun = new NamedFunction(idMem, SimpleMethodHandle.make(idMem.getInvocationType(), idForm));
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1780
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1781
                zeForm = idForm;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1782
                zeFun = idFun;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1783
            } else {
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1784
                Name[] idNames = new Name[] { argument(0, L_TYPE), argument(1, type) };
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1785
                idForm = new LambdaForm(2, idNames, 1, Kind.IDENTITY);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1786
                idForm.compileToBytecode();
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1787
                idFun = new NamedFunction(idMem, SimpleMethodHandle.make(idMem.getInvocationType(), idForm),
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1788
                            MethodHandleImpl.Intrinsic.IDENTITY);
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1789
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1790
                Object zeValue = Wrapper.forBasicType(btChar).zero();
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1791
                Name[] zeNames = new Name[] { argument(0, L_TYPE), new Name(idFun, zeValue) };
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1792
                zeForm = new LambdaForm(1, zeNames, 1, Kind.ZERO);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1793
                zeForm.compileToBytecode();
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1794
                zeFun = new NamedFunction(zeMem, SimpleMethodHandle.make(zeMem.getInvocationType(), zeForm),
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1795
                        MethodHandleImpl.Intrinsic.ZERO);
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1796
            }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1797
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1798
            LF_zero[ord] = zeForm;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1799
            NF_zero[ord] = zeFun;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1800
            LF_identity[ord] = idForm;
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1801
            NF_identity[ord] = idFun;
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1802
48989
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1803
            assert(idFun.isIdentity());
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1804
            assert(zeFun.isConstantZero());
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1805
            assert(new Name(zeFun).isConstantZero());
0b65c64c9db9 8198492: Bootstrapping java.lang.invoke can cause deadlock after JDK-8198418
redestad
parents: 47753
diff changeset
  1806
        }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1807
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1808
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1809
    // Avoid appealing to ValueConversions at bootstrap time:
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1810
    private static int identity_I(int x) { return x; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1811
    private static long identity_J(long x) { return x; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1812
    private static float identity_F(float x) { return x; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1813
    private static double identity_D(double x) { return x; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1814
    private static Object identity_L(Object x) { return x; }
33842
d261fb6ab872 8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents: 33841
diff changeset
  1815
    private static void identity_V() { return; }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1816
    private static int zero_I() { return 0; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1817
    private static long zero_J() { return 0; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1818
    private static float zero_F() { return 0; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1819
    private static double zero_D() { return 0; }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1820
    private static Object zero_L() { return null; }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1821
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1822
    /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1823
     * Internal marker for byte-compiled LambdaForms.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1824
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1825
    /*non-public*/
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1826
    @Target(ElementType.METHOD)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1827
    @Retention(RetentionPolicy.RUNTIME)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1828
    @interface Compiled {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1829
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1830
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1831
    /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1832
     * Internal marker for LambdaForm interpreter frames.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1833
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1834
    /*non-public*/
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1835
    @Target(ElementType.METHOD)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1836
    @Retention(RetentionPolicy.RUNTIME)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1837
    @interface Hidden {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1838
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1839
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1840
    private static final HashMap<String,Integer> DEBUG_NAME_COUNTERS;
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1841
    private static final HashMap<LambdaForm,String> DEBUG_NAMES;
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1842
    static {
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1843
        if (debugEnabled()) {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1844
            DEBUG_NAME_COUNTERS = new HashMap<>();
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1845
            DEBUG_NAMES = new HashMap<>();
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1846
        } else {
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1847
            DEBUG_NAME_COUNTERS = null;
43893
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1848
            DEBUG_NAMES = null;
0e72a2804a0c 8175233: Remove LambdaForm.debugName
redestad
parents: 42105
diff changeset
  1849
        }
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1850
    }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1851
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1852
    static {
40419
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1853
        // The Holder class will contain pre-generated forms resolved
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1854
        // using MemberName.getFactory(). However, that doesn't initialize the
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1855
        // class, which subtly breaks inlining etc. By forcing
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1856
        // initialization of the Holder class we avoid these issues.
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1857
        UNSAFE.ensureClassInitialized(Holder.class);
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 23038
diff changeset
  1858
    }
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1859
40419
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1860
    /* Placeholder class for zero and identity forms generated ahead of time */
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1861
    final class Holder {}
20e2e4b25a40 8164451: Generate all zero and identity forms at link time
redestad
parents: 40408
diff changeset
  1862
20527
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1863
    // The following hack is necessary in order to suppress TRACE_INTERPRETER
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1864
    // during execution of the static initializes of this class.
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1865
    // Turning on TRACE_INTERPRETER too early will cause
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1866
    // stack overflows and other misbehavior during attempts to trace events
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1867
    // that occur during LambdaForm.<clinit>.
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1868
    // Therefore, do not move this line higher in this file, and do not remove.
d241258cfbcb 8024761: JSR 292 improve performance of generic invocation
jrose
parents: 20494
diff changeset
  1869
    private static final boolean TRACE_INTERPRETER = MethodHandleStatics.TRACE_INTERPRETER;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff changeset
  1870
}