author | shade |
Tue, 17 May 2016 22:28:00 +0300 | |
changeset 38372 | 017d7578731c |
parent 35252 | 754852fba784 |
child 39342 | f66a89ed6fca |
permissions | -rw-r--r-- |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1 |
/* |
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
2 |
* Copyright (c) 2011, 2015, 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 |
|
35252
754852fba784
8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents:
34429
diff
changeset
|
28 |
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
|
29 |
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
|
30 |
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
|
31 |
|
754852fba784
8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents:
34429
diff
changeset
|
32 |
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
|
33 |
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
|
34 |
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
|
35 |
import java.lang.annotation.Target; |
754852fba784
8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents:
34429
diff
changeset
|
36 |
import java.lang.reflect.Field; |
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; |
35252
754852fba784
8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents:
34429
diff
changeset
|
40 |
import java.util.List; |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
41 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
42 |
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
|
43 |
import static java.lang.invoke.MethodHandleNatives.Constants.REF_invokeStatic; |
754852fba784
8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents:
34429
diff
changeset
|
44 |
import static java.lang.invoke.MethodHandleStatics.debugEnabled; |
754852fba784
8144223: Move j.l.invoke.{ForceInline, DontInline, Stable} to jdk.internal.vm.annotation package
psandoz
parents:
34429
diff
changeset
|
45 |
import static java.lang.invoke.MethodHandleStatics.newInternalError; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
46 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
47 |
/** |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
48 |
* 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
|
49 |
* 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
|
50 |
* 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
|
51 |
* 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
|
52 |
* 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
|
53 |
* 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
|
54 |
* constant values and local names. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
55 |
* 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
|
56 |
* <p> |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
57 |
* Here is an approximate grammar: |
20535
cc85c8626435
8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents:
20527
diff
changeset
|
58 |
* <blockquote><pre>{@code |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
59 |
* LambdaForm = "(" ArgName* ")=>{" TempName* Result "}" |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
60 |
* ArgName = "a" N ":" T |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
61 |
* TempName = "t" N ":" T "=" Function "(" Argument* ");" |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
62 |
* Function = ConstantValue |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
63 |
* Argument = NameRef | ConstantValue |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
64 |
* Result = NameRef | "void" |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
65 |
* NameRef = "a" N | "t" N |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
66 |
* N = (any whole number) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
67 |
* T = "L" | "I" | "J" | "F" | "D" | "V" |
20535
cc85c8626435
8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents:
20527
diff
changeset
|
68 |
* }</pre></blockquote> |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
69 |
* 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
|
70 |
* (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
|
71 |
* 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
|
72 |
* 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
|
73 |
* 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
|
74 |
* 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
|
75 |
* 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
|
76 |
* even though possesses a number. |
20535
cc85c8626435
8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents:
20527
diff
changeset
|
77 |
* 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
|
78 |
* 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
|
79 |
* 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
|
80 |
* <p> |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
81 |
* 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
|
82 |
* 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
|
83 |
* considered. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
84 |
* 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
|
85 |
* <ul> |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
86 |
* <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
|
87 |
* <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
|
88 |
* <li>J = long: no implicit conversions |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
89 |
* <li>F = float: no implicit conversions |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
90 |
* <li>D = double: no implicit conversions |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
91 |
* <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
|
92 |
* </ul> |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
93 |
* 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
|
94 |
* 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
|
95 |
* <p> |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
96 |
* Examples: |
20535
cc85c8626435
8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents:
20527
diff
changeset
|
97 |
* <blockquote><pre>{@code |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
98 |
* (a0:J)=>{ a0 } |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
99 |
* == identity(long) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
100 |
* (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
|
101 |
* == System.out#println(int) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
102 |
* (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
|
103 |
* == identity, with printing side-effect |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
104 |
* (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
|
105 |
* t3:L = BoundMethodHandle#target(a0); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
106 |
* 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
|
107 |
* == general invoker for unary insertArgument combination |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
108 |
* (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
|
109 |
* t3:L = MethodHandle#invoke(t2, a1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
110 |
* t4:L = FilterMethodHandle#target(a0); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
111 |
* 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
|
112 |
* == general invoker for unary filterArgument combination |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
113 |
* (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
|
114 |
* 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
|
115 |
* == 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
|
116 |
* (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
|
117 |
* == 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
|
118 |
* (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
|
119 |
* 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
|
120 |
* == invoker for identity method handle which performs cast |
20535
cc85c8626435
8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents:
20527
diff
changeset
|
121 |
* }</pre></blockquote> |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
122 |
* <p> |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
123 |
* @author John Rose, JSR 292 EG |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
124 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
125 |
class LambdaForm { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
126 |
final int arity; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
127 |
final int result; |
27295
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
128 |
final boolean forceInline; |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
129 |
final MethodHandle customized; |
20494
cf77ae5ff678
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
14852
diff
changeset
|
130 |
@Stable final Name[] names; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
131 |
final String debugName; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
132 |
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
|
133 |
private boolean isCompiled; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
134 |
|
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
135 |
// 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
|
136 |
volatile Object transformCache; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
137 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
138 |
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
|
139 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
140 |
enum BasicType { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
141 |
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
|
142 |
I_TYPE('I', int.class, Wrapper.INT), |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
143 |
J_TYPE('J', long.class, Wrapper.LONG), |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
144 |
F_TYPE('F', float.class, Wrapper.FLOAT), |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
145 |
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
|
146 |
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
|
147 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
148 |
static final BasicType[] ALL_TYPES = BasicType.values(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
149 |
static final BasicType[] ARG_TYPES = Arrays.copyOf(ALL_TYPES, ALL_TYPES.length-1); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
150 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
151 |
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
|
152 |
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
|
153 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
154 |
private final char btChar; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
155 |
private final Class<?> btClass; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
156 |
private final Wrapper btWrapper; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
157 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
158 |
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
|
159 |
this.btChar = btChar; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
160 |
this.btClass = btClass; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
161 |
this.btWrapper = wrapper; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
162 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
163 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
164 |
char basicTypeChar() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
165 |
return btChar; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
166 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
167 |
Class<?> basicTypeClass() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
168 |
return btClass; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
169 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
170 |
Wrapper basicTypeWrapper() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
171 |
return btWrapper; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
172 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
173 |
int basicTypeSlots() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
174 |
return btWrapper.stackSlots(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
175 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
176 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
177 |
static BasicType basicType(byte type) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
178 |
return ALL_TYPES[type]; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
179 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
180 |
static BasicType basicType(char type) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
181 |
switch (type) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
182 |
case 'L': return L_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
183 |
case 'I': return I_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
184 |
case 'J': return J_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
185 |
case 'F': return F_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
186 |
case 'D': return D_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
187 |
case 'V': return V_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
188 |
// all subword types are represented as ints |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
189 |
case 'Z': |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
190 |
case 'B': |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
191 |
case 'S': |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
192 |
case 'C': |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
193 |
return I_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
194 |
default: |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
195 |
throw newInternalError("Unknown type char: '"+type+"'"); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
196 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
197 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
198 |
static BasicType basicType(Wrapper type) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
199 |
char c = type.basicTypeChar(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
200 |
return basicType(c); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
201 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
202 |
static BasicType basicType(Class<?> type) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
203 |
if (!type.isPrimitive()) return L_TYPE; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
204 |
return basicType(Wrapper.forPrimitiveType(type)); |
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[] basicTypes(String types) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
207 |
BasicType[] btypes = new BasicType[types.length()]; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
208 |
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
|
209 |
btypes[i] = basicType(types.charAt(i)); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
210 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
211 |
return btypes; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
212 |
} |
34384
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
213 |
|
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
214 |
static char basicTypeChar(Class<?> type) { |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
215 |
return basicType(type).btChar; |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
216 |
} |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
217 |
|
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
218 |
static byte[] basicTypesOrd(Class<?>[] types) { |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
219 |
byte[] ords = new byte[types.length]; |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
220 |
for (int i = 0; i < ords.length; i++) { |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
221 |
ords[i] = (byte)basicType(types[i]).ordinal(); |
26481
c5b74a88a3c0
8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents:
26479
diff
changeset
|
222 |
} |
c5b74a88a3c0
8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents:
26479
diff
changeset
|
223 |
return ords; |
c5b74a88a3c0
8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents:
26479
diff
changeset
|
224 |
} |
34384
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
225 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
226 |
static boolean isBasicTypeChar(char c) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
227 |
return "LIJFDV".indexOf(c) >= 0; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
228 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
229 |
static boolean isArgBasicTypeChar(char c) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
230 |
return "LIJFD".indexOf(c) >= 0; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
231 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
232 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
233 |
static { assert(checkBasicType()); } |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
234 |
private static boolean checkBasicType() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
235 |
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
|
236 |
assert ARG_TYPES[i].ordinal() == i; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
237 |
assert ARG_TYPES[i] == ALL_TYPES[i]; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
238 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
239 |
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
|
240 |
assert ALL_TYPES[i].ordinal() == i; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
241 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
242 |
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
|
243 |
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
|
244 |
return true; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
245 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
246 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
247 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
248 |
LambdaForm(String debugName, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
249 |
int arity, Name[] names, int result) { |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
250 |
this(debugName, arity, names, result, /*forceInline=*/true, /*customized=*/null); |
27295
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
251 |
} |
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
252 |
LambdaForm(String debugName, |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
253 |
int arity, Name[] names, int result, boolean forceInline, MethodHandle customized) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
254 |
assert(namesOK(arity, names)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
255 |
this.arity = arity; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
256 |
this.result = fixResult(result, names); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
257 |
this.names = names.clone(); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
258 |
this.debugName = fixDebugName(debugName); |
27295
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
259 |
this.forceInline = forceInline; |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
260 |
this.customized = customized; |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
261 |
int maxOutArity = normalize(); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
262 |
if (maxOutArity > MethodType.MAX_MH_INVOKER_ARITY) { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
263 |
// Cannot use LF interpreter on very high arity expressions. |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
264 |
assert(maxOutArity <= MethodType.MAX_JVM_ARITY); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
265 |
compileToBytecode(); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
266 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
267 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
268 |
LambdaForm(String debugName, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
269 |
int arity, Name[] names) { |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
270 |
this(debugName, arity, names, LAST_RESULT, /*forceInline=*/true, /*customized=*/null); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
271 |
} |
27295
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
272 |
LambdaForm(String debugName, |
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
273 |
int arity, Name[] names, boolean forceInline) { |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
274 |
this(debugName, arity, names, LAST_RESULT, forceInline, /*customized=*/null); |
27295
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
275 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
276 |
LambdaForm(String debugName, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
277 |
Name[] formals, Name[] temps, Name result) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
278 |
this(debugName, |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
279 |
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
|
280 |
} |
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
281 |
LambdaForm(String debugName, |
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
282 |
Name[] formals, Name[] temps, Name result, boolean forceInline) { |
8ed31033bf48
8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents:
26482
diff
changeset
|
283 |
this(debugName, |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
284 |
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
|
285 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
286 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
287 |
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
|
288 |
int arity = formals.length; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
289 |
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
|
290 |
Name[] names = Arrays.copyOf(formals, length); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
291 |
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
|
292 |
if (result != null) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
293 |
names[length - 1] = result; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
294 |
return names; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
295 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
296 |
|
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
297 |
private LambdaForm(MethodType mt) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
298 |
// 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
|
299 |
// 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
|
300 |
// Called only from getPreparedForm. |
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
301 |
this.arity = mt.parameterCount(); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
302 |
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
|
303 |
this.names = buildEmptyNames(arity, mt, result == -1); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
304 |
this.debugName = "LF.zero"; |
29019
a859b806c8bd
8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents:
27803
diff
changeset
|
305 |
this.forceInline = true; |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
306 |
this.customized = null; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
307 |
assert(nameRefsAreLegal()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
308 |
assert(isEmpty()); |
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
309 |
String sig = null; |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
310 |
assert(isValidSignature(sig = basicTypeSignature())); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
311 |
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
|
312 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
313 |
|
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
314 |
private static Name[] buildEmptyNames(int arity, MethodType mt, boolean isVoid) { |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
315 |
Name[] names = arguments(isVoid ? 0 : 1, mt); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
316 |
if (!isVoid) { |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
317 |
Name zero = new Name(constantZero(basicType(mt.returnType()))); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
318 |
names[arity] = zero.newIndex(arity); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
319 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
320 |
return names; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
321 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
322 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
323 |
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
|
324 |
if (result == LAST_RESULT) |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
325 |
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
|
326 |
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
|
327 |
result = VOID_RESULT; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
328 |
return result; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
329 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
330 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
331 |
private static String fixDebugName(String debugName) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
332 |
if (DEBUG_NAME_COUNTERS != null) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
333 |
int under = debugName.indexOf('_'); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
334 |
int length = debugName.length(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
335 |
if (under < 0) under = length; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
336 |
String debugNameStem = debugName.substring(0, under); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
337 |
Integer ctr; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
338 |
synchronized (DEBUG_NAME_COUNTERS) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
339 |
ctr = DEBUG_NAME_COUNTERS.get(debugNameStem); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
340 |
if (ctr == null) ctr = 0; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
341 |
DEBUG_NAME_COUNTERS.put(debugNameStem, ctr+1); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
342 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
343 |
StringBuilder buf = new StringBuilder(debugNameStem); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
344 |
buf.append('_'); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
345 |
int leadingZero = buf.length(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
346 |
buf.append((int) ctr); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
347 |
for (int i = buf.length() - leadingZero; i < 3; i++) |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
348 |
buf.insert(leadingZero, '0'); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
349 |
if (under < length) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
350 |
++under; // skip "_" |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
351 |
while (under < length && Character.isDigit(debugName.charAt(under))) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
352 |
++under; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
353 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
354 |
if (under < length && debugName.charAt(under) == '_') ++under; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
355 |
if (under < length) |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
356 |
buf.append('_').append(debugName, under, length); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
357 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
358 |
return buf.toString(); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
359 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
360 |
return debugName; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
361 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
362 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
363 |
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
|
364 |
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
|
365 |
Name n = names[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
366 |
assert(n != null) : "n is null"; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
367 |
if (i < arity) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
368 |
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
|
369 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
370 |
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
|
371 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
372 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
373 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
374 |
|
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
375 |
/** Customize LambdaForm for a particular MethodHandle */ |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
376 |
LambdaForm customize(MethodHandle mh) { |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
377 |
LambdaForm customForm = new LambdaForm(debugName, arity, names, result, forceInline, mh); |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
378 |
if (COMPILE_THRESHOLD > 0 && isCompiled) { |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
379 |
// 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
|
380 |
customForm.compileToBytecode(); |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
381 |
} |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
382 |
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
|
383 |
return customForm; |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
384 |
} |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
385 |
|
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
386 |
/** Get uncustomized flavor of the LambdaForm */ |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
387 |
LambdaForm uncustomize() { |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
388 |
if (customized == null) { |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
389 |
return this; |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
390 |
} |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
391 |
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
|
392 |
LambdaForm uncustomizedForm = (LambdaForm)transformCache; |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
393 |
if (COMPILE_THRESHOLD > 0 && isCompiled) { |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
394 |
// 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
|
395 |
uncustomizedForm.compileToBytecode(); |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
396 |
} |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
397 |
return uncustomizedForm; |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
398 |
} |
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
399 |
|
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
400 |
/** 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
|
401 |
* @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
|
402 |
*/ |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
403 |
private int normalize() { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
404 |
Name[] oldNames = null; |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
405 |
int maxOutArity = 0; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
406 |
int changesStart = 0; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
407 |
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
|
408 |
Name n = names[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
409 |
if (!n.initIndex(i)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
410 |
if (oldNames == null) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
411 |
oldNames = names.clone(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
412 |
changesStart = i; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
413 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
414 |
names[i] = n.cloneWithIndex(i); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
415 |
} |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
416 |
if (n.arguments != null && maxOutArity < n.arguments.length) |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
417 |
maxOutArity = n.arguments.length; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
418 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
419 |
if (oldNames != null) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
420 |
int startFixing = arity; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
421 |
if (startFixing <= changesStart) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
422 |
startFixing = changesStart+1; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
423 |
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
|
424 |
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
|
425 |
names[i] = fixed.newIndex(i); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
426 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
427 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
428 |
assert(nameRefsAreLegal()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
429 |
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
|
430 |
boolean needIntern = false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
431 |
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
|
432 |
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
|
433 |
if (n != n2) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
434 |
names[i] = n2; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
435 |
needIntern = true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
436 |
} |
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 |
if (needIntern) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
439 |
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
|
440 |
names[i].internArguments(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
441 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
442 |
} |
29020
9f6d43586ccb
8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents:
29019
diff
changeset
|
443 |
assert(nameRefsAreLegal()); |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
444 |
return maxOutArity; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
445 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
446 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
447 |
/** |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
448 |
* 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
|
449 |
* 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
|
450 |
* <p> |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
451 |
* 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
|
452 |
* 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
|
453 |
* 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
|
454 |
* fresh lambdas, without confusion. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
455 |
*/ |
26481
c5b74a88a3c0
8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents:
26479
diff
changeset
|
456 |
boolean nameRefsAreLegal() { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
457 |
assert(arity >= 0 && arity <= names.length); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
458 |
assert(result >= -1 && result < names.length); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
459 |
// 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
|
460 |
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
|
461 |
Name n = names[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
462 |
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
|
463 |
assert(n.isParam()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
464 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
465 |
// Also, do all local name references |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
466 |
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
|
467 |
Name n = names[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
468 |
assert(n.index() == i); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
469 |
for (Object arg : n.arguments) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
470 |
if (arg instanceof Name) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
471 |
Name n2 = (Name) arg; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
472 |
int i2 = n2.index; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
473 |
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
|
474 |
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
|
475 |
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
|
476 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
477 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
478 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
479 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
480 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
481 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
482 |
/** 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
|
483 |
// 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
|
484 |
// // 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
|
485 |
// return interpretWithArguments(args); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
486 |
// } |
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 |
/** Report the return type. */ |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
489 |
BasicType returnType() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
490 |
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
|
491 |
Name n = names[result]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
492 |
return n.type; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
493 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
494 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
495 |
/** Report the N-th argument type. */ |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
496 |
BasicType parameterType(int n) { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
497 |
return parameter(n).type; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
498 |
} |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
499 |
|
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
500 |
/** Report the N-th argument name. */ |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
501 |
Name parameter(int n) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
502 |
assert(n < arity); |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
503 |
Name param = names[n]; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
504 |
assert(param.isParam()); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
505 |
return param; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
506 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
507 |
|
26479
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
508 |
/** Report the N-th argument type constraint. */ |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
509 |
Object parameterConstraint(int n) { |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
510 |
return parameter(n).constraint; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
511 |
} |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
512 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
513 |
/** Report the arity. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
514 |
int arity() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
515 |
return arity; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
516 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
517 |
|
26472
71b6a6f208c0
8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents:
26468
diff
changeset
|
518 |
/** Report the number of expressions (non-parameter names). */ |
71b6a6f208c0
8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents:
26468
diff
changeset
|
519 |
int expressionCount() { |
71b6a6f208c0
8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents:
26468
diff
changeset
|
520 |
return names.length - arity; |
71b6a6f208c0
8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents:
26468
diff
changeset
|
521 |
} |
71b6a6f208c0
8050057: Improve caching of MethodHandle reinvokers
vlivanov
parents:
26468
diff
changeset
|
522 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
523 |
/** 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
|
524 |
MethodType methodType() { |
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
525 |
Class<?>[] ptypes = new Class<?>[arity]; |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
526 |
for (int i = 0; i < arity; ++i) { |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
527 |
ptypes[i] = parameterType(i).btClass; |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
528 |
} |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
529 |
return MethodType.methodType(returnType().btClass, ptypes); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
530 |
} |
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
531 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
532 |
/** 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
|
533 |
final String basicTypeSignature() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
534 |
StringBuilder buf = new StringBuilder(arity() + 3); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
535 |
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
|
536 |
buf.append(parameterType(i).basicTypeChar()); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
537 |
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
|
538 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
539 |
static int signatureArity(String sig) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
540 |
assert(isValidSignature(sig)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
541 |
return sig.indexOf('_'); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
542 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
543 |
static BasicType signatureReturn(String sig) { |
26464
65b37da18e06
8037209: Improvements and cleanups to bytecode assembly for lambda forms
vlivanov
parents:
25859
diff
changeset
|
544 |
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
|
545 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
546 |
static boolean isValidSignature(String sig) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
547 |
int arity = sig.indexOf('_'); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
548 |
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
|
549 |
int siglen = sig.length(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
550 |
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
|
551 |
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
|
552 |
if (i == arity) continue; // skip '_' |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
553 |
char c = sig.charAt(i); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
554 |
if (c == 'V') |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
555 |
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
|
556 |
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
|
557 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
558 |
return true; // [LIJFD]*_[LIJFDV] |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
559 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
560 |
static MethodType signatureType(String sig) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
561 |
Class<?>[] ptypes = new Class<?>[signatureArity(sig)]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
562 |
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
|
563 |
ptypes[i] = basicType(sig.charAt(i)).btClass; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
564 |
Class<?> rtype = signatureReturn(sig).btClass; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
565 |
return MethodType.methodType(rtype, ptypes); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
566 |
} |
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 |
/* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
569 |
* Code generation issues: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
570 |
* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
571 |
* 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
|
572 |
* 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
|
573 |
* 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
|
574 |
* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
575 |
* 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
|
576 |
* 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
|
577 |
* 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
|
578 |
* 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
|
579 |
* 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
|
580 |
* 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
|
581 |
* 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
|
582 |
* 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
|
583 |
* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
584 |
* 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
|
585 |
* 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
|
586 |
* 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
|
587 |
* 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
|
588 |
* 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
|
589 |
* 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
|
590 |
* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
591 |
* 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
|
592 |
* 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
|
593 |
* 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
|
594 |
* 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
|
595 |
* (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
|
596 |
* 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
|
597 |
* (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
|
598 |
* 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
|
599 |
* 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
|
600 |
* 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
|
601 |
* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
602 |
* 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
|
603 |
* 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
|
604 |
* "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
|
605 |
* 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
|
606 |
* 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
|
607 |
* 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
|
608 |
* (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
|
609 |
* 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
|
610 |
* 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
|
611 |
* 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
|
612 |
* optimization. "Significant" means optimization of |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
613 |
* code that is actually hot. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
614 |
* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
615 |
* 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
|
616 |
* 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
|
617 |
* 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
|
618 |
* 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
|
619 |
* |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
620 |
* 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
|
621 |
* 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
|
622 |
* 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
|
623 |
* 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
|
624 |
* 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
|
625 |
* 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
|
626 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
627 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
628 |
/** |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
629 |
* 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
|
630 |
* 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
|
631 |
* before invocation. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
632 |
* (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
|
633 |
* 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
|
634 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
635 |
public void prepare() { |
30035
b83ec0c9fd74
8059455: LambdaForm.prepare() does unnecessary work for cached LambdaForms
vlivanov
parents:
29020
diff
changeset
|
636 |
if (COMPILE_THRESHOLD == 0 && !isCompiled) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
637 |
compileToBytecode(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
638 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
639 |
if (this.vmentry != null) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
640 |
// 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
|
641 |
return; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
642 |
} |
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
643 |
MethodType mtype = methodType(); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
644 |
LambdaForm prep = mtype.form().cachedLambdaForm(MethodTypeForm.LF_INTERPRET); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
645 |
if (prep == null) { |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
646 |
assert (isValidSignature(basicTypeSignature())); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
647 |
prep = new LambdaForm(mtype); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
648 |
prep.vmentry = InvokerBytecodeGenerator.generateLambdaFormInterpreterEntryPoint(mtype); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
649 |
prep = mtype.form().setCachedLambdaForm(MethodTypeForm.LF_INTERPRET, prep); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
650 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
651 |
this.vmentry = prep.vmentry; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
652 |
// TO DO: Maybe add invokeGeneric, invokeWithArguments |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
653 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
654 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
655 |
/** Generate optimizable bytecode for this form. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
656 |
MemberName compileToBytecode() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
657 |
if (vmentry != null && isCompiled) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
658 |
return vmentry; // already compiled somehow |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
659 |
} |
30035
b83ec0c9fd74
8059455: LambdaForm.prepare() does unnecessary work for cached LambdaForms
vlivanov
parents:
29020
diff
changeset
|
660 |
MethodType invokerType = methodType(); |
b83ec0c9fd74
8059455: LambdaForm.prepare() does unnecessary work for cached LambdaForms
vlivanov
parents:
29020
diff
changeset
|
661 |
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
|
662 |
try { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
663 |
vmentry = InvokerBytecodeGenerator.generateCustomizedCode(this, invokerType); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
664 |
if (TRACE_INTERPRETER) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
665 |
traceInterpreter("compileToBytecode", this); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
666 |
isCompiled = true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
667 |
return vmentry; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
668 |
} catch (Error | Exception ex) { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
669 |
throw newInternalError(this.toString(), ex); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
670 |
} |
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 |
|
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
673 |
private static void computeInitialPreparedForms() { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
674 |
// Find all predefined invokers and associate them with canonical empty lambda forms. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
675 |
for (MemberName m : MemberName.getFactory().getMethods(LambdaForm.class, false, null, null, null)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
676 |
if (!m.isStatic() || !m.isPackage()) continue; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
677 |
MethodType mt = m.getMethodType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
678 |
if (mt.parameterCount() > 0 && |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
679 |
mt.parameterType(0) == MethodHandle.class && |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
680 |
m.getName().startsWith("interpret_")) { |
34429
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
681 |
String sig = null; |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
682 |
assert((sig = basicTypeSignature(mt)) != null && |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
683 |
m.getName().equals("interpret" + sig.substring(sig.indexOf('_')))); |
8893c723602e
8072844: Use more efficient LambdaForm type representation
mhaupt
parents:
34384
diff
changeset
|
684 |
LambdaForm form = new LambdaForm(mt); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
685 |
form.vmentry = m; |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
686 |
form = mt.form().setCachedLambdaForm(MethodTypeForm.LF_INTERPRET, form); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
687 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
688 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
689 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
690 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
691 |
// Set this false to disable use of the interpret_L methods defined in this file. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
692 |
private static final boolean USE_PREDEFINED_INTERPRET_METHODS = true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
693 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
694 |
// The following are predefined exact invokers. The system must build |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
695 |
// a separate invoker for each distinct signature. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
696 |
static Object interpret_L(MethodHandle mh) throws Throwable { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
697 |
Object[] av = {mh}; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
698 |
String sig = null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
699 |
assert(argumentTypesMatch(sig = "L_L", av)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
700 |
Object res = mh.form.interpretWithArguments(av); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
701 |
assert(returnTypesMatch(sig, av, res)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
702 |
return res; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
703 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
704 |
static Object interpret_L(MethodHandle mh, Object x1) throws Throwable { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
705 |
Object[] av = {mh, x1}; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
706 |
String sig = null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
707 |
assert(argumentTypesMatch(sig = "LL_L", av)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
708 |
Object res = mh.form.interpretWithArguments(av); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
709 |
assert(returnTypesMatch(sig, av, res)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
710 |
return res; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
711 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
712 |
static Object interpret_L(MethodHandle mh, Object x1, Object x2) throws Throwable { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
713 |
Object[] av = {mh, x1, x2}; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
714 |
String sig = null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
715 |
assert(argumentTypesMatch(sig = "LLL_L", av)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
716 |
Object res = mh.form.interpretWithArguments(av); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
717 |
assert(returnTypesMatch(sig, av, res)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
718 |
return res; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
719 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
720 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
721 |
// 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
|
722 |
// 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
|
723 |
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
|
724 |
int arity = signatureArity(sig); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
725 |
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
|
726 |
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
|
727 |
MethodHandle mh = (MethodHandle) av[0]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
728 |
MethodType mt = mh.type(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
729 |
assert(mt.parameterCount() == arity-1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
730 |
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
|
731 |
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
|
732 |
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
|
733 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
734 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
735 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
736 |
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
|
737 |
// 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
|
738 |
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
|
739 |
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
|
740 |
switch (tc) { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
741 |
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
|
742 |
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
|
743 |
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
|
744 |
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
|
745 |
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
|
746 |
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
|
747 |
default: assert(false); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
748 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
749 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
750 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
751 |
private static boolean returnTypesMatch(String sig, Object[] av, Object res) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
752 |
MethodHandle mh = (MethodHandle) av[0]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
753 |
return valueMatches(signatureReturn(sig), mh.type().returnType(), res); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
754 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
755 |
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
|
756 |
assert(x instanceof Integer); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
757 |
if (type == int.class) return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
758 |
Wrapper w = Wrapper.forBasicType(type); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
759 |
assert(w.isSubwordOrInt()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
760 |
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
|
761 |
return x.equals(x1); |
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 |
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
|
764 |
assert(!type.isPrimitive()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
765 |
if (x == null) return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
766 |
if (type.isInterface()) return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
767 |
return type.isInstance(x); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
768 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
769 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
770 |
/** 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
|
771 |
private static final int COMPILE_THRESHOLD; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
772 |
static { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
773 |
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
|
774 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
775 |
private int invocationCounter = 0; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
776 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
777 |
@Hidden |
14852 | 778 |
@DontInline |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
779 |
/** 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
|
780 |
Object interpretWithArguments(Object... argumentValues) throws Throwable { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
781 |
if (TRACE_INTERPRETER) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
782 |
return interpretWithArgumentsTracing(argumentValues); |
13610
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
783 |
checkInvocationCounter(); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
784 |
assert(arityCheck(argumentValues)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
785 |
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
|
786 |
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
|
787 |
values[i] = interpretName(names[i], values); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
788 |
} |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
789 |
Object rv = (result < 0) ? null : values[result]; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
790 |
assert(resultCheck(argumentValues, rv)); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
791 |
return rv; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
792 |
} |
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 |
@Hidden |
14852 | 795 |
@DontInline |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
796 |
/** 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
|
797 |
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
|
798 |
if (TRACE_INTERPRETER) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
799 |
traceInterpreter("| interpretName", name.debugString(), (Object[]) null); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
800 |
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
|
801 |
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
|
802 |
Object a = arguments[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
803 |
if (a instanceof Name) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
804 |
int i2 = ((Name)a).index(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
805 |
assert(names[i2] == a); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
806 |
a = values[i2]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
807 |
arguments[i] = a; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
808 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
809 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
810 |
return name.function.invokeWithArguments(arguments); |
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 |
|
13610
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
813 |
private void checkInvocationCounter() { |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
814 |
if (COMPILE_THRESHOLD != 0 && |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
815 |
invocationCounter < COMPILE_THRESHOLD) { |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
816 |
invocationCounter++; // benign race |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
817 |
if (invocationCounter >= COMPILE_THRESHOLD) { |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
818 |
// 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
|
819 |
compileToBytecode(); |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
820 |
} |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
821 |
} |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
822 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
823 |
Object interpretWithArgumentsTracing(Object... argumentValues) throws Throwable { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
824 |
traceInterpreter("[ interpretWithArguments", this, argumentValues); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
825 |
if (invocationCounter < COMPILE_THRESHOLD) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
826 |
int ctr = invocationCounter++; // benign race |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
827 |
traceInterpreter("| invocationCounter", ctr); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
828 |
if (invocationCounter >= COMPILE_THRESHOLD) { |
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 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
832 |
Object rval; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
833 |
try { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
834 |
assert(arityCheck(argumentValues)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
835 |
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
|
836 |
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
|
837 |
values[i] = interpretName(names[i], values); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
838 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
839 |
rval = (result < 0) ? null : values[result]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
840 |
} catch (Throwable ex) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
841 |
traceInterpreter("] throw =>", ex); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
842 |
throw ex; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
843 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
844 |
traceInterpreter("] return =>", rval); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
845 |
return rval; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
846 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
847 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
848 |
static void traceInterpreter(String event, Object obj, Object... args) { |
20527
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
849 |
if (TRACE_INTERPRETER) { |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
850 |
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
|
851 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
852 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
853 |
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
|
854 |
traceInterpreter(event, obj, (Object[])null); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
855 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
856 |
private boolean arityCheck(Object[] argumentValues) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
857 |
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
|
858 |
// 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
|
859 |
assert(argumentValues[0] instanceof MethodHandle) : "not MH: " + argumentValues[0]; |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
860 |
MethodHandle mh = (MethodHandle) argumentValues[0]; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
861 |
assert(mh.internalForm() == this); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
862 |
// 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
|
863 |
argumentTypesMatch(basicTypeSignature(), argumentValues); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
864 |
return true; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
865 |
} |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
866 |
private boolean resultCheck(Object[] argumentValues, Object result) { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
867 |
MethodHandle mh = (MethodHandle) argumentValues[0]; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
868 |
MethodType mt = mh.type(); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
869 |
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
|
870 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
871 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
872 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
873 |
private boolean isEmpty() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
874 |
if (result < 0) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
875 |
return (names.length == arity); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
876 |
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
|
877 |
return names[arity].isConstantZero(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
878 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
879 |
return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
880 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
881 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
882 |
public String toString() { |
13610
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
883 |
StringBuilder buf = new StringBuilder(debugName+"=Lambda("); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
884 |
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
|
885 |
if (i == arity) buf.append(")=>{"); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
886 |
Name n = names[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
887 |
if (i >= arity) buf.append("\n "); |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
888 |
buf.append(n.paramString()); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
889 |
if (i < arity) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
890 |
if (i+1 < arity) buf.append(","); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
891 |
continue; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
892 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
893 |
buf.append("=").append(n.exprString()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
894 |
buf.append(";"); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
895 |
} |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
896 |
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
|
897 |
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
|
898 |
if (TRACE_INTERPRETER) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
899 |
// Extra verbosity: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
900 |
buf.append(":").append(basicTypeSignature()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
901 |
buf.append("/").append(vmentry); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
902 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
903 |
return buf.toString(); |
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 |
|
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
906 |
@Override |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
907 |
public boolean equals(Object obj) { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
908 |
return obj instanceof LambdaForm && equals((LambdaForm)obj); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
909 |
} |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
910 |
public boolean equals(LambdaForm that) { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
911 |
if (this.result != that.result) return false; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
912 |
return Arrays.equals(this.names, that.names); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
913 |
} |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
914 |
public int hashCode() { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
915 |
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
|
916 |
} |
26481
c5b74a88a3c0
8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents:
26479
diff
changeset
|
917 |
LambdaFormEditor editor() { |
c5b74a88a3c0
8057042: LambdaFormEditor: derive new LFs from a base LF
vlivanov
parents:
26479
diff
changeset
|
918 |
return LambdaFormEditor.lambdaFormEditor(this); |
13423
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 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
921 |
boolean contains(Name name) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
922 |
int pos = name.index(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
923 |
if (pos >= 0) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
924 |
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
|
925 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
926 |
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
|
927 |
if (name.equals(names[i])) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
928 |
return true; |
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 |
return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
931 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
932 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
933 |
static class NamedFunction { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
934 |
final MemberName member; |
33841
1d1d1ea6a5f2
8142334: Improve lazy initialization of java.lang.invoke
redestad
parents:
30035
diff
changeset
|
935 |
private @Stable MethodHandle resolvedHandle; |
20494
cf77ae5ff678
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
14852
diff
changeset
|
936 |
@Stable MethodHandle invoker; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
937 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
938 |
NamedFunction(MethodHandle resolvedHandle) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
939 |
this(resolvedHandle.internalMemberName(), resolvedHandle); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
940 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
941 |
NamedFunction(MemberName member, MethodHandle resolvedHandle) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
942 |
this.member = member; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
943 |
this.resolvedHandle = resolvedHandle; |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
944 |
// The following assert is almost always correct, but will fail for corner cases, such as PrivateInvokeTest. |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
945 |
//assert(!isInvokeBasic()); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
946 |
} |
20527
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
947 |
NamedFunction(MethodType basicInvokerType) { |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
948 |
assert(basicInvokerType == basicInvokerType.basicType()) : basicInvokerType; |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
949 |
if (basicInvokerType.parameterSlotCount() < MethodType.MAX_MH_INVOKER_ARITY) { |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
950 |
this.resolvedHandle = basicInvokerType.invokers().basicInvoker(); |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
951 |
this.member = resolvedHandle.internalMemberName(); |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
952 |
} else { |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
953 |
// necessary to pass BigArityTest |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
954 |
this.member = Invokers.invokeBasicMethod(basicInvokerType); |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
955 |
} |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
956 |
assert(isInvokeBasic()); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
957 |
} |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
958 |
|
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
959 |
private boolean isInvokeBasic() { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
960 |
return member != null && |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
961 |
member.isMethodHandleInvoke() && |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
962 |
"invokeBasic".equals(member.getName()); |
20527
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
963 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
964 |
|
34384
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
965 |
// 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
|
966 |
// 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
|
967 |
// 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
|
968 |
// 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
|
969 |
NamedFunction(Method method) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
970 |
this(new MemberName(method)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
971 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
972 |
NamedFunction(MemberName member) { |
34384
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
973 |
this(member, null); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
974 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
975 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
976 |
MethodHandle resolvedHandle() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
977 |
if (resolvedHandle == null) resolve(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
978 |
return resolvedHandle; |
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 |
|
33841
1d1d1ea6a5f2
8142334: Improve lazy initialization of java.lang.invoke
redestad
parents:
30035
diff
changeset
|
981 |
synchronized void resolve() { |
1d1d1ea6a5f2
8142334: Improve lazy initialization of java.lang.invoke
redestad
parents:
30035
diff
changeset
|
982 |
if (resolvedHandle == null) { |
1d1d1ea6a5f2
8142334: Improve lazy initialization of java.lang.invoke
redestad
parents:
30035
diff
changeset
|
983 |
resolvedHandle = DirectMethodHandle.make(member); |
1d1d1ea6a5f2
8142334: Improve lazy initialization of java.lang.invoke
redestad
parents:
30035
diff
changeset
|
984 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
985 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
986 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
987 |
@Override |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
988 |
public boolean equals(Object other) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
989 |
if (this == other) return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
990 |
if (other == null) return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
991 |
if (!(other instanceof NamedFunction)) return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
992 |
NamedFunction that = (NamedFunction) other; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
993 |
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
|
994 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
995 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
996 |
@Override |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
997 |
public int hashCode() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
998 |
if (member != null) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
999 |
return member.hashCode(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1000 |
return super.hashCode(); |
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 |
// Put the predefined NamedFunction invokers into the table. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1004 |
static void initializeInvokers() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1005 |
for (MemberName m : MemberName.getFactory().getMethods(NamedFunction.class, false, null, null, null)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1006 |
if (!m.isStatic() || !m.isPackage()) continue; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1007 |
MethodType type = m.getMethodType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1008 |
if (type.equals(INVOKER_METHOD_TYPE) && |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1009 |
m.getName().startsWith("invoke_")) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1010 |
String sig = m.getName().substring("invoke_".length()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1011 |
int arity = LambdaForm.signatureArity(sig); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1012 |
MethodType srcType = MethodType.genericMethodType(arity); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1013 |
if (LambdaForm.signatureReturn(sig) == V_TYPE) |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1014 |
srcType = srcType.changeReturnType(void.class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1015 |
MethodTypeForm typeForm = srcType.form(); |
26468 | 1016 |
typeForm.setCachedMethodHandle(MethodTypeForm.MH_NF_INV, DirectMethodHandle.make(m)); |
13423
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 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1020 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1021 |
// The following are predefined NamedFunction invokers. The system must build |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1022 |
// a separate invoker for each distinct signature. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1023 |
/** void return type invokers. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1024 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1025 |
static Object invoke__V(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1026 |
assert(arityCheck(0, void.class, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1027 |
mh.invokeBasic(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1028 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1029 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1030 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1031 |
static Object invoke_L_V(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1032 |
assert(arityCheck(1, void.class, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1033 |
mh.invokeBasic(a[0]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1034 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1035 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1036 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1037 |
static Object invoke_LL_V(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1038 |
assert(arityCheck(2, void.class, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1039 |
mh.invokeBasic(a[0], a[1]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1040 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1041 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1042 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1043 |
static Object invoke_LLL_V(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1044 |
assert(arityCheck(3, void.class, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1045 |
mh.invokeBasic(a[0], a[1], a[2]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1046 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1047 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1048 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1049 |
static Object invoke_LLLL_V(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1050 |
assert(arityCheck(4, void.class, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1051 |
mh.invokeBasic(a[0], a[1], a[2], a[3]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1052 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1053 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1054 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1055 |
static Object invoke_LLLLL_V(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1056 |
assert(arityCheck(5, void.class, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1057 |
mh.invokeBasic(a[0], a[1], a[2], a[3], a[4]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1058 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1059 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1060 |
/** Object return type invokers. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1061 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1062 |
static Object invoke__L(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1063 |
assert(arityCheck(0, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1064 |
return mh.invokeBasic(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1065 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1066 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1067 |
static Object invoke_L_L(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1068 |
assert(arityCheck(1, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1069 |
return mh.invokeBasic(a[0]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1070 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1071 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1072 |
static Object invoke_LL_L(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1073 |
assert(arityCheck(2, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1074 |
return mh.invokeBasic(a[0], a[1]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1075 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1076 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1077 |
static Object invoke_LLL_L(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1078 |
assert(arityCheck(3, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1079 |
return mh.invokeBasic(a[0], a[1], a[2]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1080 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1081 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1082 |
static Object invoke_LLLL_L(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1083 |
assert(arityCheck(4, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1084 |
return mh.invokeBasic(a[0], a[1], a[2], a[3]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1085 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1086 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1087 |
static Object invoke_LLLLL_L(MethodHandle mh, Object[] a) throws Throwable { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1088 |
assert(arityCheck(5, mh, a)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1089 |
return mh.invokeBasic(a[0], a[1], a[2], a[3], a[4]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1090 |
} |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1091 |
private static boolean arityCheck(int arity, MethodHandle mh, Object[] a) { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1092 |
return arityCheck(arity, Object.class, mh, a); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1093 |
} |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1094 |
private static boolean arityCheck(int arity, Class<?> rtype, MethodHandle mh, Object[] a) { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1095 |
assert(a.length == arity) |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1096 |
: Arrays.asList(a.length, arity); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1097 |
assert(mh.type().basicType() == MethodType.genericMethodType(arity).changeReturnType(rtype)) |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1098 |
: Arrays.asList(mh, rtype, arity); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1099 |
MemberName member = mh.internalMemberName(); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1100 |
if (member != null && member.getName().equals("invokeBasic") && member.isMethodHandleInvoke()) { |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1101 |
assert(arity > 0); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1102 |
assert(a[0] instanceof MethodHandle); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1103 |
MethodHandle mh2 = (MethodHandle) a[0]; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1104 |
assert(mh2.type().basicType() == MethodType.genericMethodType(arity-1).changeReturnType(rtype)) |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1105 |
: Arrays.asList(member, mh2, rtype, arity); |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1106 |
} |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1107 |
return true; |
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1108 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1109 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1110 |
static final MethodType INVOKER_METHOD_TYPE = |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1111 |
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
|
1112 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1113 |
private static MethodHandle computeInvoker(MethodTypeForm typeForm) { |
26468 | 1114 |
typeForm = typeForm.basicType().form(); // normalize to basic type |
1115 |
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
|
1116 |
if (mh != null) return mh; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1117 |
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
|
1118 |
mh = DirectMethodHandle.make(invoker); |
26468 | 1119 |
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
|
1120 |
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
|
1121 |
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
|
1122 |
throw newInternalError(mh.debugString()); |
26468 | 1123 |
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
|
1124 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1125 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1126 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1127 |
Object invokeWithArguments(Object... arguments) throws Throwable { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1128 |
// 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
|
1129 |
// 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
|
1130 |
if (TRACE_INTERPRETER) return invokeWithArgumentsTracing(arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1131 |
assert(checkArgumentTypes(arguments, methodType())); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1132 |
return invoker().invokeBasic(resolvedHandle(), arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1133 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1134 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1135 |
@Hidden |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1136 |
Object invokeWithArgumentsTracing(Object[] arguments) throws Throwable { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1137 |
Object rval; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1138 |
try { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1139 |
traceInterpreter("[ call", this, arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1140 |
if (invoker == null) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1141 |
traceInterpreter("| getInvoker", this); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1142 |
invoker(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1143 |
} |
33841
1d1d1ea6a5f2
8142334: Improve lazy initialization of java.lang.invoke
redestad
parents:
30035
diff
changeset
|
1144 |
// 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
|
1145 |
if (resolvedHandle == null) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1146 |
traceInterpreter("| resolve", this); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1147 |
resolvedHandle(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1148 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1149 |
assert(checkArgumentTypes(arguments, methodType())); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1150 |
rval = invoker().invokeBasic(resolvedHandle(), arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1151 |
} catch (Throwable ex) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1152 |
traceInterpreter("] throw =>", ex); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1153 |
throw ex; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1154 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1155 |
traceInterpreter("] return =>", rval); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1156 |
return rval; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1157 |
} |
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 |
private MethodHandle invoker() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1160 |
if (invoker != null) return invoker; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1161 |
// Get an invoker and cache it. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1162 |
return invoker = computeInvoker(methodType().form()); |
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 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1165 |
private static boolean checkArgumentTypes(Object[] arguments, MethodType methodType) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1166 |
if (true) return true; // FIXME |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1167 |
MethodType dstType = methodType.form().erasedType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1168 |
MethodType srcType = dstType.basicType().wrap(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1169 |
Class<?>[] ptypes = new Class<?>[arguments.length]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1170 |
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
|
1171 |
Object arg = arguments[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1172 |
Class<?> ptype = arg == null ? Object.class : arg.getClass(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1173 |
// If the dest. type is a primitive we keep the |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1174 |
// argument type. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1175 |
ptypes[i] = dstType.parameterType(i).isPrimitive() ? ptype : Object.class; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1176 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1177 |
MethodType argType = MethodType.methodType(srcType.returnType(), ptypes).wrap(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1178 |
assert(argType.isConvertibleTo(srcType)) : "wrong argument types: cannot convert " + argType + " to " + srcType; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1179 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1180 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1181 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1182 |
MethodType methodType() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1183 |
if (resolvedHandle != null) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1184 |
return resolvedHandle.type(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1185 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1186 |
// 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
|
1187 |
return member.getInvocationType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1188 |
} |
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 |
MemberName member() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1191 |
assert(assertMemberIsConsistent()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1192 |
return member; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1193 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1194 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1195 |
// Called only from assert. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1196 |
private boolean assertMemberIsConsistent() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1197 |
if (resolvedHandle instanceof DirectMethodHandle) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1198 |
MemberName m = resolvedHandle.internalMemberName(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1199 |
assert(m.equals(member)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1200 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1201 |
return true; |
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 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1204 |
Class<?> memberDeclaringClassOrNull() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1205 |
return (member == null) ? null : member.getDeclaringClass(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1206 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1207 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1208 |
BasicType returnType() { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1209 |
return basicType(methodType().returnType()); |
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 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1212 |
BasicType parameterType(int n) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1213 |
return basicType(methodType().parameterType(n)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1214 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1215 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1216 |
int arity() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1217 |
return methodType().parameterCount(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1218 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1219 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1220 |
public String toString() { |
20527
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1221 |
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
|
1222 |
return member.getDeclaringClass().getSimpleName()+"."+member.getName(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1223 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1224 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1225 |
public boolean isIdentity() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1226 |
return this.equals(identity(returnType())); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1227 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1228 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1229 |
public boolean isConstantZero() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1230 |
return this.equals(constantZero(returnType())); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1231 |
} |
26473
0abc9399a1a6
8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents:
26472
diff
changeset
|
1232 |
|
0abc9399a1a6
8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents:
26472
diff
changeset
|
1233 |
public MethodHandleImpl.Intrinsic intrinsicName() { |
0abc9399a1a6
8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents:
26472
diff
changeset
|
1234 |
return resolvedHandle == null ? MethodHandleImpl.Intrinsic.NONE |
0abc9399a1a6
8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents:
26472
diff
changeset
|
1235 |
: resolvedHandle.intrinsicName(); |
0abc9399a1a6
8050200: Make LambdaForm intrinsics detection more robust
vlivanov
parents:
26472
diff
changeset
|
1236 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1237 |
} |
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 |
public static String basicTypeSignature(MethodType type) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1240 |
char[] sig = new char[type.parameterCount() + 2]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1241 |
int sigp = 0; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1242 |
for (Class<?> pt : type.parameterList()) { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1243 |
sig[sigp++] = basicTypeChar(pt); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1244 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1245 |
sig[sigp++] = '_'; |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1246 |
sig[sigp++] = basicTypeChar(type.returnType()); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1247 |
assert(sigp == sig.length); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1248 |
return String.valueOf(sig); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1249 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1250 |
public static String shortenSignature(String signature) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1251 |
// Hack to make signatures more readable when they show up in method names. |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1252 |
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
|
1253 |
int c0, c1 = NO_CHAR, c1reps = 0; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1254 |
StringBuilder buf = null; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1255 |
int len = signature.length(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1256 |
if (len < MIN_RUN) return signature; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1257 |
for (int i = 0; i <= len; i++) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1258 |
// shift in the next char: |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1259 |
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
|
1260 |
if (c1 == c0) { ++c1reps; continue; } |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1261 |
// shift in the next count: |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1262 |
int c0reps = c1reps; c1reps = 1; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1263 |
// end of a character run |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1264 |
if (c0reps < MIN_RUN) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1265 |
if (buf != null) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1266 |
while (--c0reps >= 0) |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1267 |
buf.append((char)c0); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1268 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1269 |
continue; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1270 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1271 |
// found three or more in a row |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1272 |
if (buf == null) |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1273 |
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
|
1274 |
buf.append((char)c0).append(c0reps); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1275 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1276 |
return (buf == null) ? signature : buf.toString(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1277 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1278 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1279 |
static final class Name { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1280 |
final BasicType type; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1281 |
private short index; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1282 |
final NamedFunction function; |
26479
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1283 |
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
|
1284 |
@Stable final Object[] arguments; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1285 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1286 |
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
|
1287 |
this.index = (short)index; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1288 |
this.type = type; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1289 |
this.function = function; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1290 |
this.arguments = arguments; |
26479
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1291 |
this.constraint = null; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1292 |
assert(this.index == index); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1293 |
} |
26479
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1294 |
private Name(Name that, Object constraint) { |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1295 |
this.index = that.index; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1296 |
this.type = that.type; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1297 |
this.function = that.function; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1298 |
this.arguments = that.arguments; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1299 |
this.constraint = constraint; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1300 |
assert(constraint == null || isParam()); // only params have constraints |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1301 |
assert(constraint == null || constraint instanceof BoundMethodHandle.SpeciesData || constraint instanceof Class); |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1302 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1303 |
Name(MethodHandle function, Object... arguments) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1304 |
this(new NamedFunction(function), arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1305 |
} |
20527
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1306 |
Name(MethodType functionType, Object... arguments) { |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1307 |
this(new NamedFunction(functionType), arguments); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1308 |
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
|
1309 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1310 |
Name(MemberName function, Object... arguments) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1311 |
this(new NamedFunction(function), arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1312 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1313 |
Name(NamedFunction function, Object... arguments) { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1314 |
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
|
1315 |
assert(typesMatch(function, arguments)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1316 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1317 |
/** 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
|
1318 |
Name(int index, BasicType type) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1319 |
this(index, type, null, null); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1320 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1321 |
/** 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
|
1322 |
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
|
1323 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1324 |
BasicType type() { return type; } |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1325 |
int index() { return index; } |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1326 |
boolean initIndex(int i) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1327 |
if (index != i) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1328 |
if (index != -1) return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1329 |
index = (short)i; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1330 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1331 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1332 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1333 |
char typeChar() { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1334 |
return type.btChar; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1335 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1336 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1337 |
void resolve() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1338 |
if (function != null) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1339 |
function.resolve(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1340 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1341 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1342 |
Name newIndex(int i) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1343 |
if (initIndex(i)) return this; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1344 |
return cloneWithIndex(i); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1345 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1346 |
Name cloneWithIndex(int i) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1347 |
Object[] newArguments = (arguments == null) ? null : arguments.clone(); |
26479
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1348 |
return new Name(i, type, function, newArguments).withConstraint(constraint); |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1349 |
} |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1350 |
Name withConstraint(Object constraint) { |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1351 |
if (constraint == this.constraint) return this; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1352 |
return new Name(this, constraint); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1353 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1354 |
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
|
1355 |
if (oldName == newName) return this; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1356 |
@SuppressWarnings("LocalVariableHidesMemberVariable") |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1357 |
Object[] arguments = this.arguments; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1358 |
if (arguments == null) return this; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1359 |
boolean replaced = false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1360 |
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
|
1361 |
if (arguments[j] == oldName) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1362 |
if (!replaced) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1363 |
replaced = true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1364 |
arguments = arguments.clone(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1365 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1366 |
arguments[j] = newName; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1367 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1368 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1369 |
if (!replaced) return this; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1370 |
return new Name(function, arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1371 |
} |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1372 |
/** 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
|
1373 |
* 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
|
1374 |
*/ |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1375 |
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
|
1376 |
if (start >= end) return this; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1377 |
@SuppressWarnings("LocalVariableHidesMemberVariable") |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1378 |
Object[] arguments = this.arguments; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1379 |
boolean replaced = false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1380 |
eachArg: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1381 |
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
|
1382 |
if (arguments[j] instanceof Name) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1383 |
Name n = (Name) arguments[j]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1384 |
int check = n.index; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1385 |
// 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
|
1386 |
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
|
1387 |
continue eachArg; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1388 |
// 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
|
1389 |
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
|
1390 |
if (n == oldNames[i]) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1391 |
if (n == newNames[i]) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1392 |
continue eachArg; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1393 |
if (!replaced) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1394 |
replaced = true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1395 |
arguments = arguments.clone(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1396 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1397 |
arguments[j] = newNames[i]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1398 |
continue eachArg; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1399 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1400 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1401 |
} |
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 |
if (!replaced) return this; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1404 |
return new Name(function, arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1405 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1406 |
void internArguments() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1407 |
@SuppressWarnings("LocalVariableHidesMemberVariable") |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1408 |
Object[] arguments = this.arguments; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1409 |
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
|
1410 |
if (arguments[j] instanceof Name) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1411 |
Name n = (Name) arguments[j]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1412 |
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
|
1413 |
arguments[j] = internArgument(n); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1414 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1415 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1416 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1417 |
boolean isParam() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1418 |
return function == null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1419 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1420 |
boolean isConstantZero() { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1421 |
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
|
1422 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1423 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1424 |
public String toString() { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1425 |
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
|
1426 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1427 |
public String debugString() { |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1428 |
String s = paramString(); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1429 |
return (function == null) ? s : s + "=" + exprString(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1430 |
} |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1431 |
public String paramString() { |
26479
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1432 |
String s = toString(); |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1433 |
Object c = constraint; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1434 |
if (c == null) |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1435 |
return s; |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1436 |
if (c instanceof Class) c = ((Class<?>)c).getSimpleName(); |
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1437 |
return s + "/" + c; |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1438 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1439 |
public String exprString() { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1440 |
if (function == null) return toString(); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1441 |
StringBuilder buf = new StringBuilder(function.toString()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1442 |
buf.append("("); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1443 |
String cma = ""; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1444 |
for (Object a : arguments) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1445 |
buf.append(cma); cma = ","; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1446 |
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
|
1447 |
buf.append(a); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1448 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1449 |
buf.append("(").append(a).append(")"); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1450 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1451 |
buf.append(")"); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1452 |
return buf.toString(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1453 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1454 |
|
34384
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1455 |
private boolean typesMatch(NamedFunction function, Object ... arguments) { |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1456 |
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
|
1457 |
for (int i = 0; i < arguments.length; i++) { |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1458 |
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
|
1459 |
} |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1460 |
return true; |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1461 |
} |
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1462 |
|
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1463 |
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
|
1464 |
if (object instanceof Name) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1465 |
return ((Name)object).type == parameterType; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1466 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1467 |
switch (parameterType) { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1468 |
case I_TYPE: return object instanceof Integer; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1469 |
case J_TYPE: return object instanceof Long; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1470 |
case F_TYPE: return object instanceof Float; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1471 |
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
|
1472 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1473 |
assert(parameterType == L_TYPE); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1474 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1475 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1476 |
|
23038
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1477 |
/** 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
|
1478 |
* Return -1 if the name is not used. |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1479 |
*/ |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1480 |
int lastUseIndex(Name n) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1481 |
if (arguments == null) return -1; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1482 |
for (int i = arguments.length; --i >= 0; ) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1483 |
if (arguments[i] == n) return i; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1484 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1485 |
return -1; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1486 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1487 |
|
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1488 |
/** Return the number of occurrences of n in the argument array. |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1489 |
* Return 0 if the name is not used. |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1490 |
*/ |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1491 |
int useCount(Name n) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1492 |
if (arguments == null) return 0; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1493 |
int count = 0; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1494 |
for (int i = arguments.length; --i >= 0; ) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1495 |
if (arguments[i] == n) ++count; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1496 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1497 |
return count; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1498 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1499 |
|
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1500 |
boolean contains(Name n) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1501 |
return this == n || lastUseIndex(n) >= 0; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1502 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1503 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1504 |
public boolean equals(Name that) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1505 |
if (this == that) return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1506 |
if (isParam()) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1507 |
// each parameter is a unique atom |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1508 |
return false; // this != that |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1509 |
return |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1510 |
//this.index == that.index && |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1511 |
this.type == that.type && |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1512 |
this.function.equals(that.function) && |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1513 |
Arrays.equals(this.arguments, that.arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1514 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1515 |
@Override |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1516 |
public boolean equals(Object x) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1517 |
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
|
1518 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1519 |
@Override |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1520 |
public int hashCode() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1521 |
if (isParam()) |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1522 |
return index | (type.ordinal() << 8); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1523 |
return function.hashCode() ^ Arrays.hashCode(arguments); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1524 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1525 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1526 |
|
23038
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1527 |
/** 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
|
1528 |
* 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
|
1529 |
*/ |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1530 |
int lastUseIndex(Name n) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1531 |
int ni = n.index, nmax = names.length; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1532 |
assert(names[ni] == n); |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1533 |
if (result == ni) return nmax; // live all the way beyond the end |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1534 |
for (int i = nmax; --i > ni; ) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1535 |
if (names[i].lastUseIndex(n) >= 0) |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1536 |
return i; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1537 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1538 |
return -1; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1539 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1540 |
|
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1541 |
/** 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
|
1542 |
int useCount(Name n) { |
34384
439c06c76808
8143131: Remove unused code from java.lang.invoke
redestad
parents:
33869
diff
changeset
|
1543 |
int nmax = names.length; |
23038
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1544 |
int end = lastUseIndex(n); |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1545 |
if (end < 0) return 0; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1546 |
int count = 0; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1547 |
if (end == nmax) { count++; end--; } |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1548 |
int beg = n.index() + 1; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1549 |
if (beg < arity) beg = arity; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1550 |
for (int i = beg; i <= end; i++) { |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1551 |
count += names[i].useCount(n); |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1552 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1553 |
return count; |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1554 |
} |
bb8b3b23af3a
8027827: Improve performance of catchException combinator
vlivanov
parents:
23010
diff
changeset
|
1555 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1556 |
static Name argument(int which, BasicType type) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1557 |
if (which >= INTERNED_ARGUMENT_LIMIT) |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1558 |
return new Name(which, type); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1559 |
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
|
1560 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1561 |
static Name internArgument(Name n) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1562 |
assert(n.isParam()) : "not param: " + n; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1563 |
assert(n.index < INTERNED_ARGUMENT_LIMIT); |
26479
a60a19ec5ce5
8057657: Annotate LambdaForm parameters with types
vlivanov
parents:
26473
diff
changeset
|
1564 |
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
|
1565 |
return argument(n.index, n.type); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1566 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1567 |
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
|
1568 |
int length = types.parameterCount(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1569 |
Name[] names = new Name[length + extra]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1570 |
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
|
1571 |
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
|
1572 |
return names; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1573 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1574 |
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
|
1575 |
private static final Name[][] INTERNED_ARGUMENTS |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1576 |
= 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
|
1577 |
static { |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1578 |
for (BasicType type : BasicType.ARG_TYPES) { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1579 |
int ord = type.ordinal(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1580 |
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
|
1581 |
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
|
1582 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1583 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1584 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1585 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1586 |
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
|
1587 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1588 |
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
|
1589 |
int ord = type.ordinal(); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1590 |
LambdaForm form = LF_identity[ord]; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1591 |
if (form != null) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1592 |
return form; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1593 |
} |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1594 |
createFormsFor(type); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1595 |
return LF_identity[ord]; |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1596 |
} |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1597 |
|
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1598 |
static LambdaForm zeroForm(BasicType type) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1599 |
int ord = type.ordinal(); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1600 |
LambdaForm form = LF_zero[ord]; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1601 |
if (form != null) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1602 |
return form; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1603 |
} |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1604 |
createFormsFor(type); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1605 |
return LF_zero[ord]; |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1606 |
} |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1607 |
|
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1608 |
static NamedFunction identity(BasicType type) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1609 |
int ord = type.ordinal(); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1610 |
NamedFunction function = NF_identity[ord]; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1611 |
if (function != null) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1612 |
return function; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1613 |
} |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1614 |
createFormsFor(type); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1615 |
return NF_identity[ord]; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1616 |
} |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1617 |
|
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1618 |
static NamedFunction constantZero(BasicType type) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1619 |
int ord = type.ordinal(); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1620 |
NamedFunction function = NF_zero[ord]; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1621 |
if (function != null) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1622 |
return function; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1623 |
} |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1624 |
createFormsFor(type); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1625 |
return NF_zero[ord]; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1626 |
} |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1627 |
|
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1628 |
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
|
1629 |
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
|
1630 |
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
|
1631 |
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
|
1632 |
|
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1633 |
private static synchronized void createFormsFor(BasicType type) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1634 |
final int ord = type.ordinal(); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1635 |
LambdaForm idForm = LF_identity[ord]; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1636 |
if (idForm != null) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1637 |
return; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1638 |
} |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1639 |
char btChar = type.basicTypeChar(); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1640 |
boolean isVoid = (type == V_TYPE); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1641 |
Class<?> btClass = type.btClass; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1642 |
MethodType zeType = MethodType.methodType(btClass); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1643 |
MethodType idType = (isVoid) ? zeType : zeType.appendParameterTypes(btClass); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1644 |
|
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1645 |
// Look up symbolic names. It might not be necessary to have these, |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1646 |
// but if we need to emit direct references to bytecodes, it helps. |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1647 |
// Zero is built from a call to an identity function with a constant zero input. |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1648 |
MemberName idMem = new MemberName(LambdaForm.class, "identity_"+btChar, idType, REF_invokeStatic); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1649 |
MemberName zeMem = null; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1650 |
try { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1651 |
idMem = IMPL_NAMES.resolveOrFail(REF_invokeStatic, idMem, null, NoSuchMethodException.class); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1652 |
if (!isVoid) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1653 |
zeMem = new MemberName(LambdaForm.class, "zero_"+btChar, zeType, REF_invokeStatic); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1654 |
zeMem = IMPL_NAMES.resolveOrFail(REF_invokeStatic, zeMem, null, NoSuchMethodException.class); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1655 |
} |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1656 |
} catch (IllegalAccessException|NoSuchMethodException ex) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1657 |
throw newInternalError(ex); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1658 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1659 |
|
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1660 |
NamedFunction idFun; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1661 |
LambdaForm zeForm; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1662 |
NamedFunction zeFun; |
33869
a25f84d078ab
8143232: Fix java.lang.invoke bootstrap when specifying COMPILE_THRESHOLD
redestad
parents:
33842
diff
changeset
|
1663 |
|
a25f84d078ab
8143232: Fix java.lang.invoke bootstrap when specifying COMPILE_THRESHOLD
redestad
parents:
33842
diff
changeset
|
1664 |
// Create the LFs and NamedFunctions. Precompiling LFs to byte code is needed to break circular |
a25f84d078ab
8143232: Fix java.lang.invoke bootstrap when specifying COMPILE_THRESHOLD
redestad
parents:
33842
diff
changeset
|
1665 |
// bootstrap dependency on this method in case we're interpreting LFs |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1666 |
if (isVoid) { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1667 |
Name[] idNames = new Name[] { argument(0, L_TYPE) }; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1668 |
idForm = new LambdaForm(idMem.getName(), 1, idNames, VOID_RESULT); |
33869
a25f84d078ab
8143232: Fix java.lang.invoke bootstrap when specifying COMPILE_THRESHOLD
redestad
parents:
33842
diff
changeset
|
1669 |
idForm.compileToBytecode(); |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1670 |
idFun = new NamedFunction(idMem, SimpleMethodHandle.make(idMem.getInvocationType(), idForm)); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1671 |
|
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1672 |
zeForm = idForm; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1673 |
zeFun = idFun; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1674 |
} else { |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1675 |
Name[] idNames = new Name[] { argument(0, L_TYPE), argument(1, type) }; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1676 |
idForm = new LambdaForm(idMem.getName(), 2, idNames, 1); |
33869
a25f84d078ab
8143232: Fix java.lang.invoke bootstrap when specifying COMPILE_THRESHOLD
redestad
parents:
33842
diff
changeset
|
1677 |
idForm.compileToBytecode(); |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1678 |
idFun = new NamedFunction(idMem, SimpleMethodHandle.make(idMem.getInvocationType(), idForm)); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1679 |
|
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1680 |
Object zeValue = Wrapper.forBasicType(btChar).zero(); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1681 |
Name[] zeNames = new Name[] { argument(0, L_TYPE), new Name(idFun, zeValue) }; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1682 |
zeForm = new LambdaForm(zeMem.getName(), 1, zeNames, 1); |
33869
a25f84d078ab
8143232: Fix java.lang.invoke bootstrap when specifying COMPILE_THRESHOLD
redestad
parents:
33842
diff
changeset
|
1683 |
zeForm.compileToBytecode(); |
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1684 |
zeFun = new NamedFunction(zeMem, SimpleMethodHandle.make(zeMem.getInvocationType(), zeForm)); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1685 |
} |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1686 |
|
33842
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1687 |
LF_zero[ord] = zeForm; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1688 |
NF_zero[ord] = zeFun; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1689 |
LF_identity[ord] = idForm; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1690 |
NF_identity[ord] = idFun; |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1691 |
|
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1692 |
assert(idFun.isIdentity()); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1693 |
assert(zeFun.isConstantZero()); |
d261fb6ab872
8142487: Cleanup sun.invoke.util.Wrapper zeroes to be both reliable and lazy
redestad
parents:
33841
diff
changeset
|
1694 |
assert(new Name(zeFun).isConstantZero()); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1695 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1696 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1697 |
// 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
|
1698 |
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
|
1699 |
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
|
1700 |
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
|
1701 |
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
|
1702 |
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
|
1703 |
private static void identity_V() { return; } |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1704 |
private static int zero_I() { return 0; } |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1705 |
private static long zero_J() { return 0; } |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1706 |
private static float zero_F() { return 0; } |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1707 |
private static double zero_D() { return 0; } |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1708 |
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
|
1709 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1710 |
/** |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1711 |
* Internal marker for byte-compiled LambdaForms. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1712 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1713 |
/*non-public*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1714 |
@Target(ElementType.METHOD) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1715 |
@Retention(RetentionPolicy.RUNTIME) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1716 |
@interface Compiled { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1717 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1718 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1719 |
/** |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1720 |
* Internal marker for LambdaForm interpreter frames. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1721 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1722 |
/*non-public*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1723 |
@Target(ElementType.METHOD) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1724 |
@Retention(RetentionPolicy.RUNTIME) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1725 |
@interface Hidden { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1726 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
diff
changeset
|
1727 |
|
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1728 |
private static final HashMap<String,Integer> DEBUG_NAME_COUNTERS; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1729 |
static { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1730 |
if (debugEnabled()) |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1731 |
DEBUG_NAME_COUNTERS = new HashMap<>(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1732 |
else |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1733 |
DEBUG_NAME_COUNTERS = null; |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1734 |
} |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1735 |
|
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1736 |
// Put this last, so that previous static inits can run before. |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1737 |
static { |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1738 |
if (USE_PREDEFINED_INTERPRET_METHODS) |
26467
d69abed3a07d
8050052: Small cleanups in java.lang.invoke code
vlivanov
parents:
26464
diff
changeset
|
1739 |
computeInitialPreparedForms(); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1740 |
NamedFunction.initializeInvokers(); |
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
23038
diff
changeset
|
1741 |
} |
20527
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1742 |
|
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1743 |
// 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
|
1744 |
// during execution of the static initializes of this class. |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1745 |
// Turning on TRACE_INTERPRETER too early will cause |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1746 |
// stack overflows and other misbehavior during attempts to trace events |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1747 |
// that occur during LambdaForm.<clinit>. |
d241258cfbcb
8024761: JSR 292 improve performance of generic invocation
jrose
parents:
20494
diff
changeset
|
1748 |
// 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
|
1749 |
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
|
1750 |
} |