author | chegar |
Sun, 17 Aug 2014 15:54:13 +0100 | |
changeset 25859 | 3317bb8137f4 |
parent 24572 | jdk/src/share/classes/java/lang/invoke/DirectMethodHandle.java@5c9e5961d21c |
child 26464 | 65b37da18e06 |
permissions | -rw-r--r-- |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
1 |
/* |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
2 |
* Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved. |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
4 |
* |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
10 |
* |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
15 |
* accompanied this code). |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
16 |
* |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License version |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
20 |
* |
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
24 |
*/ |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
25 |
|
8822
8145ab9f5f86
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8821
diff
changeset
|
26 |
package java.lang.invoke; |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
27 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
28 |
import sun.misc.Unsafe; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
29 |
import java.lang.reflect.Method; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
30 |
import java.util.Arrays; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
31 |
import sun.invoke.util.VerifyAccess; |
8822
8145ab9f5f86
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
8821
diff
changeset
|
32 |
import static java.lang.invoke.MethodHandleNatives.Constants.*; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
33 |
import static java.lang.invoke.LambdaForm.*; |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
20495
diff
changeset
|
34 |
import static java.lang.invoke.LambdaForm.BasicType.*; |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
35 |
import static java.lang.invoke.MethodTypeForm.*; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
36 |
import static java.lang.invoke.MethodHandleStatics.*; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
37 |
import java.lang.ref.WeakReference; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
38 |
import java.lang.reflect.Field; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
39 |
import sun.invoke.util.ValueConversions; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
40 |
import sun.invoke.util.VerifyType; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
41 |
import sun.invoke.util.Wrapper; |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
42 |
|
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
43 |
/** |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
44 |
* The flavor of method handle which implements a constant reference |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
45 |
* to a class member. |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
46 |
* @author jrose |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
47 |
*/ |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
48 |
class DirectMethodHandle extends MethodHandle { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
49 |
final MemberName member; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
50 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
51 |
// Constructors and factory methods in this class *must* be package scoped or private. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
52 |
private DirectMethodHandle(MethodType mtype, LambdaForm form, MemberName member) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
53 |
super(mtype, form); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
54 |
if (!member.isResolved()) throw new InternalError(); |
16119
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
55 |
|
16484
f24cb2927b7a
8009222: java.lang.IllegalArgumentException: not invocable, no method type when attempting to get getter method handle for a static field
vlivanov
parents:
16123
diff
changeset
|
56 |
if (member.getDeclaringClass().isInterface() && |
f24cb2927b7a
8009222: java.lang.IllegalArgumentException: not invocable, no method type when attempting to get getter method handle for a static field
vlivanov
parents:
16123
diff
changeset
|
57 |
member.isMethod() && !member.isAbstract()) { |
16119
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
58 |
// Check for corner case: invokeinterface of Object method |
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
59 |
MemberName m = new MemberName(Object.class, member.getName(), member.getMethodType(), member.getReferenceKind()); |
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
60 |
m = MemberName.getFactory().resolveOrNull(m.getReferenceKind(), m, null); |
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
61 |
if (m != null && m.isPublic()) { |
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
62 |
member = m; |
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
63 |
} |
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
64 |
} |
ca09c1ad6a45
8006179: JSR292 MethodHandles lookup with interface using findVirtual()
vlivanov
parents:
14342
diff
changeset
|
65 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
66 |
this.member = member; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
67 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
68 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
69 |
// Factory methods: |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
70 |
static DirectMethodHandle make(byte refKind, Class<?> receiver, MemberName member) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
71 |
MethodType mtype = member.getMethodOrFieldType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
72 |
if (!member.isStatic()) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
73 |
if (!member.getDeclaringClass().isAssignableFrom(receiver) || member.isConstructor()) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
74 |
throw new InternalError(member.toString()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
75 |
mtype = mtype.insertParameterTypes(0, receiver); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
76 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
77 |
if (!member.isField()) { |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
78 |
if (refKind == REF_invokeSpecial) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
79 |
member = member.asSpecial(); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
80 |
LambdaForm lform = preparedLambdaForm(member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
81 |
return new Special(mtype, lform, member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
82 |
} else { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
83 |
LambdaForm lform = preparedLambdaForm(member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
84 |
return new DirectMethodHandle(mtype, lform, member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
85 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
86 |
} else { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
87 |
LambdaForm lform = preparedFieldLambdaForm(member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
88 |
if (member.isStatic()) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
89 |
long offset = MethodHandleNatives.staticFieldOffset(member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
90 |
Object base = MethodHandleNatives.staticFieldBase(member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
91 |
return new StaticAccessor(mtype, lform, member, base, offset); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
92 |
} else { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
93 |
long offset = MethodHandleNatives.objectFieldOffset(member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
94 |
assert(offset == (int)offset); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
95 |
return new Accessor(mtype, lform, member, (int)offset); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
96 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
97 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
98 |
} |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
99 |
static DirectMethodHandle make(Class<?> receiver, MemberName member) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
100 |
byte refKind = member.getReferenceKind(); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
101 |
if (refKind == REF_invokeSpecial) |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
102 |
refKind = REF_invokeVirtual; |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
103 |
return make(refKind, receiver, member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
104 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
105 |
static DirectMethodHandle make(MemberName member) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
106 |
if (member.isConstructor()) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
107 |
return makeAllocator(member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
108 |
return make(member.getDeclaringClass(), member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
109 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
110 |
static DirectMethodHandle make(Method method) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
111 |
return make(method.getDeclaringClass(), new MemberName(method)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
112 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
113 |
static DirectMethodHandle make(Field field) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
114 |
return make(field.getDeclaringClass(), new MemberName(field)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
115 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
116 |
private static DirectMethodHandle makeAllocator(MemberName ctor) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
117 |
assert(ctor.isConstructor() && ctor.getName().equals("<init>")); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
118 |
Class<?> instanceClass = ctor.getDeclaringClass(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
119 |
ctor = ctor.asConstructor(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
120 |
assert(ctor.isConstructor() && ctor.getReferenceKind() == REF_newInvokeSpecial) : ctor; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
121 |
MethodType mtype = ctor.getMethodType().changeReturnType(instanceClass); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
122 |
LambdaForm lform = preparedLambdaForm(ctor); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
123 |
MemberName init = ctor.asSpecial(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
124 |
assert(init.getMethodType().returnType() == void.class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
125 |
return new Constructor(mtype, lform, ctor, init, instanceClass); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
126 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
127 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
128 |
@Override |
13610
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
129 |
String internalProperties() { |
28122b96858e
7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents:
13423
diff
changeset
|
130 |
return "/DMH="+member.toString(); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
131 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
132 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
133 |
//// Implementation methods. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
134 |
@Override |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
135 |
MethodHandle viewAsType(MethodType newType) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
136 |
return new DirectMethodHandle(newType, form, member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
137 |
} |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
138 |
@Override |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
139 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
140 |
MemberName internalMemberName() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
141 |
return member; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
142 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
143 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
144 |
@Override |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
20495
diff
changeset
|
145 |
MethodHandle bindArgument(int pos, BasicType basicType, Object value) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
146 |
// If the member needs dispatching, do so. |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
20495
diff
changeset
|
147 |
if (pos == 0 && basicType == L_TYPE) { |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
148 |
DirectMethodHandle concrete = maybeRebind(value); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
149 |
if (concrete != null) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
150 |
return concrete.bindReceiver(value); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
151 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
152 |
return super.bindArgument(pos, basicType, value); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
153 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
154 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
155 |
@Override |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
156 |
MethodHandle bindReceiver(Object receiver) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
157 |
// If the member needs dispatching, do so. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
158 |
DirectMethodHandle concrete = maybeRebind(receiver); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
159 |
if (concrete != null) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
160 |
return concrete.bindReceiver(receiver); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
161 |
return super.bindReceiver(receiver); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
162 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
163 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
164 |
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:
8822
diff
changeset
|
165 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
166 |
private DirectMethodHandle maybeRebind(Object receiver) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
167 |
if (receiver != null) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
168 |
switch (member.getReferenceKind()) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
169 |
case REF_invokeInterface: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
170 |
case REF_invokeVirtual: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
171 |
// Pre-dispatch the member. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
172 |
Class<?> concreteClass = receiver.getClass(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
173 |
MemberName concrete = new MemberName(concreteClass, member.getName(), member.getMethodType(), REF_invokeSpecial); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
174 |
concrete = IMPL_NAMES.resolveOrNull(REF_invokeSpecial, concrete, concreteClass); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
175 |
if (concrete != null) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
176 |
return new DirectMethodHandle(type(), preparedLambdaForm(concrete), concrete); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
177 |
break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
178 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
179 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
180 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
181 |
} |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
182 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
183 |
/** |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
184 |
* Create a LF which can invoke the given method. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
185 |
* Cache and share this structure among all methods with |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
186 |
* the same basicType and refKind. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
187 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
188 |
private static LambdaForm preparedLambdaForm(MemberName m) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
189 |
assert(m.isInvocable()) : m; // call preparedFieldLambdaForm instead |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
190 |
MethodType mtype = m.getInvocationType().basicType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
191 |
assert(!m.isMethodHandleInvoke() || "invokeBasic".equals(m.getName())) : m; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
192 |
int which; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
193 |
switch (m.getReferenceKind()) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
194 |
case REF_invokeVirtual: which = LF_INVVIRTUAL; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
195 |
case REF_invokeStatic: which = LF_INVSTATIC; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
196 |
case REF_invokeSpecial: which = LF_INVSPECIAL; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
197 |
case REF_invokeInterface: which = LF_INVINTERFACE; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
198 |
case REF_newInvokeSpecial: which = LF_NEWINVSPECIAL; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
199 |
default: throw new InternalError(m.toString()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
200 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
201 |
if (which == LF_INVSTATIC && shouldBeInitialized(m)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
202 |
// precompute the barrier-free version: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
203 |
preparedLambdaForm(mtype, which); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
204 |
which = LF_INVSTATIC_INIT; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
205 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
206 |
LambdaForm lform = preparedLambdaForm(mtype, which); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
207 |
maybeCompile(lform, m); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
208 |
assert(lform.methodType().dropParameterTypes(0, 1) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
209 |
.equals(m.getInvocationType().basicType())) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
210 |
: Arrays.asList(m, m.getInvocationType().basicType(), lform, lform.methodType()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
211 |
return lform; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
212 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
213 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
214 |
private static LambdaForm preparedLambdaForm(MethodType mtype, int which) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
215 |
LambdaForm lform = mtype.form().cachedLambdaForm(which); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
216 |
if (lform != null) return lform; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
217 |
lform = makePreparedLambdaForm(mtype, which); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
218 |
return mtype.form().setCachedLambdaForm(which, lform); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
219 |
} |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
220 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
221 |
private static LambdaForm makePreparedLambdaForm(MethodType mtype, int which) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
222 |
boolean needsInit = (which == LF_INVSTATIC_INIT); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
223 |
boolean doesAlloc = (which == LF_NEWINVSPECIAL); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
224 |
String linkerName, lambdaName; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
225 |
switch (which) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
226 |
case LF_INVVIRTUAL: linkerName = "linkToVirtual"; lambdaName = "DMH.invokeVirtual"; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
227 |
case LF_INVSTATIC: linkerName = "linkToStatic"; lambdaName = "DMH.invokeStatic"; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
228 |
case LF_INVSTATIC_INIT:linkerName = "linkToStatic"; lambdaName = "DMH.invokeStaticInit"; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
229 |
case LF_INVSPECIAL: linkerName = "linkToSpecial"; lambdaName = "DMH.invokeSpecial"; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
230 |
case LF_INVINTERFACE: linkerName = "linkToInterface"; lambdaName = "DMH.invokeInterface"; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
231 |
case LF_NEWINVSPECIAL: linkerName = "linkToSpecial"; lambdaName = "DMH.newInvokeSpecial"; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
232 |
default: throw new InternalError("which="+which); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
233 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
234 |
MethodType mtypeWithArg = mtype.appendParameterTypes(MemberName.class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
235 |
if (doesAlloc) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
236 |
mtypeWithArg = mtypeWithArg |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
237 |
.insertParameterTypes(0, Object.class) // insert newly allocated obj |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
238 |
.changeReturnType(void.class); // <init> returns void |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
239 |
MemberName linker = new MemberName(MethodHandle.class, linkerName, mtypeWithArg, REF_invokeStatic); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
240 |
try { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
241 |
linker = IMPL_NAMES.resolveOrFail(REF_invokeStatic, linker, null, NoSuchMethodException.class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
242 |
} catch (ReflectiveOperationException ex) { |
14089
0a41b980d62a
8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents:
13610
diff
changeset
|
243 |
throw newInternalError(ex); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
244 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
245 |
final int DMH_THIS = 0; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
246 |
final int ARG_BASE = 1; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
247 |
final int ARG_LIMIT = ARG_BASE + mtype.parameterCount(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
248 |
int nameCursor = ARG_LIMIT; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
249 |
final int NEW_OBJ = (doesAlloc ? nameCursor++ : -1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
250 |
final int GET_MEMBER = nameCursor++; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
251 |
final int LINKER_CALL = nameCursor++; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
252 |
Name[] names = arguments(nameCursor - ARG_LIMIT, mtype.invokerType()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
253 |
assert(names.length == nameCursor); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
254 |
if (doesAlloc) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
255 |
// names = { argx,y,z,... new C, init method } |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
256 |
names[NEW_OBJ] = new Name(Lazy.NF_allocateInstance, names[DMH_THIS]); |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
257 |
names[GET_MEMBER] = new Name(Lazy.NF_constructorMethod, names[DMH_THIS]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
258 |
} else if (needsInit) { |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
259 |
names[GET_MEMBER] = new Name(Lazy.NF_internalMemberNameEnsureInit, names[DMH_THIS]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
260 |
} else { |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
261 |
names[GET_MEMBER] = new Name(Lazy.NF_internalMemberName, names[DMH_THIS]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
262 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
263 |
Object[] outArgs = Arrays.copyOfRange(names, ARG_BASE, GET_MEMBER+1, Object[].class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
264 |
assert(outArgs[outArgs.length-1] == names[GET_MEMBER]); // look, shifted args! |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
265 |
int result = LambdaForm.LAST_RESULT; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
266 |
if (doesAlloc) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
267 |
assert(outArgs[outArgs.length-2] == names[NEW_OBJ]); // got to move this one |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
268 |
System.arraycopy(outArgs, 0, outArgs, 1, outArgs.length-2); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
269 |
outArgs[0] = names[NEW_OBJ]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
270 |
result = NEW_OBJ; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
271 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
272 |
names[LINKER_CALL] = new Name(linker, outArgs); |
24572
5c9e5961d21c
8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents:
20495
diff
changeset
|
273 |
lambdaName += "_" + shortenSignature(basicTypeSignature(mtype)); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
274 |
LambdaForm lform = new LambdaForm(lambdaName, ARG_LIMIT, names, result); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
275 |
// This is a tricky bit of code. Don't send it through the LF interpreter. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
276 |
lform.compileToBytecode(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
277 |
return lform; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
278 |
} |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
279 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
280 |
private static void maybeCompile(LambdaForm lform, MemberName m) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
281 |
if (VerifyAccess.isSamePackage(m.getDeclaringClass(), MethodHandle.class)) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
282 |
// Help along bootstrapping... |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
283 |
lform.compileToBytecode(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
284 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
285 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
286 |
/** Static wrapper for DirectMethodHandle.internalMemberName. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
287 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
288 |
/*non-public*/ static Object internalMemberName(Object mh) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
289 |
return ((DirectMethodHandle)mh).member; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
290 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
291 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
292 |
/** Static wrapper for DirectMethodHandle.internalMemberName. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
293 |
* This one also forces initialization. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
294 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
295 |
/*non-public*/ static Object internalMemberNameEnsureInit(Object mh) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
296 |
DirectMethodHandle dmh = (DirectMethodHandle)mh; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
297 |
dmh.ensureInitialized(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
298 |
return dmh.member; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
299 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
300 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
301 |
/*non-public*/ static |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
302 |
boolean shouldBeInitialized(MemberName member) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
303 |
switch (member.getReferenceKind()) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
304 |
case REF_invokeStatic: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
305 |
case REF_getStatic: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
306 |
case REF_putStatic: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
307 |
case REF_newInvokeSpecial: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
308 |
break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
309 |
default: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
310 |
// No need to initialize the class on this kind of member. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
311 |
return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
312 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
313 |
Class<?> cls = member.getDeclaringClass(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
314 |
if (cls == ValueConversions.class || |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
315 |
cls == MethodHandleImpl.class || |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
316 |
cls == Invokers.class) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
317 |
// These guys have lots of <clinit> DMH creation but we know |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
318 |
// the MHs will not be used until the system is booted. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
319 |
return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
320 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
321 |
if (VerifyAccess.isSamePackage(MethodHandle.class, cls) || |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
322 |
VerifyAccess.isSamePackage(ValueConversions.class, cls)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
323 |
// It is a system class. It is probably in the process of |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
324 |
// being initialized, but we will help it along just to be safe. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
325 |
if (UNSAFE.shouldBeInitialized(cls)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
326 |
UNSAFE.ensureClassInitialized(cls); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
327 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
328 |
return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
329 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
330 |
return UNSAFE.shouldBeInitialized(cls); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
331 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
332 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
333 |
private static class EnsureInitialized extends ClassValue<WeakReference<Thread>> { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
334 |
@Override |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
335 |
protected WeakReference<Thread> computeValue(Class<?> type) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
336 |
UNSAFE.ensureClassInitialized(type); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
337 |
if (UNSAFE.shouldBeInitialized(type)) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
338 |
// If the previous call didn't block, this can happen. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
339 |
// We are executing inside <clinit>. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
340 |
return new WeakReference<>(Thread.currentThread()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
341 |
return null; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
342 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
343 |
static final EnsureInitialized INSTANCE = new EnsureInitialized(); |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
344 |
} |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
345 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
346 |
private void ensureInitialized() { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
347 |
if (checkInitialized(member)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
348 |
// The coast is clear. Delete the <clinit> barrier. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
349 |
if (member.isField()) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
350 |
updateForm(preparedFieldLambdaForm(member)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
351 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
352 |
updateForm(preparedLambdaForm(member)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
353 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
354 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
355 |
private static boolean checkInitialized(MemberName member) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
356 |
Class<?> defc = member.getDeclaringClass(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
357 |
WeakReference<Thread> ref = EnsureInitialized.INSTANCE.get(defc); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
358 |
if (ref == null) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
359 |
return true; // the final state |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
360 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
361 |
Thread clinitThread = ref.get(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
362 |
// Somebody may still be running defc.<clinit>. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
363 |
if (clinitThread == Thread.currentThread()) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
364 |
// If anybody is running defc.<clinit>, it is this thread. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
365 |
if (UNSAFE.shouldBeInitialized(defc)) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
366 |
// Yes, we are running it; keep the barrier for now. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
367 |
return false; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
368 |
} else { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
369 |
// We are in a random thread. Block. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
370 |
UNSAFE.ensureClassInitialized(defc); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
371 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
372 |
assert(!UNSAFE.shouldBeInitialized(defc)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
373 |
// put it into the final state |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
374 |
EnsureInitialized.INSTANCE.remove(defc); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
375 |
return true; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
376 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
377 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
378 |
/*non-public*/ static void ensureInitialized(Object mh) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
379 |
((DirectMethodHandle)mh).ensureInitialized(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
380 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
381 |
|
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
382 |
/** This subclass represents invokespecial instructions. */ |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
383 |
static class Special extends DirectMethodHandle { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
384 |
private Special(MethodType mtype, LambdaForm form, MemberName member) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
385 |
super(mtype, form, member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
386 |
} |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
387 |
@Override |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
388 |
boolean isInvokeSpecial() { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
389 |
return true; |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
390 |
} |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
391 |
@Override |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
392 |
MethodHandle viewAsType(MethodType newType) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
393 |
return new Special(newType, form, member); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
394 |
} |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
395 |
} |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
396 |
|
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
397 |
/** This subclass handles constructor references. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
398 |
static class Constructor extends DirectMethodHandle { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
399 |
final MemberName initMethod; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
400 |
final Class<?> instanceClass; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
401 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
402 |
private Constructor(MethodType mtype, LambdaForm form, MemberName constructor, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
403 |
MemberName initMethod, Class<?> instanceClass) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
404 |
super(mtype, form, constructor); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
405 |
this.initMethod = initMethod; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
406 |
this.instanceClass = instanceClass; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
407 |
assert(initMethod.isResolved()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
408 |
} |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
409 |
@Override |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
410 |
MethodHandle viewAsType(MethodType newType) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
411 |
return new Constructor(newType, form, member, initMethod, instanceClass); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
412 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
413 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
414 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
415 |
/*non-public*/ static Object constructorMethod(Object mh) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
416 |
Constructor dmh = (Constructor)mh; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
417 |
return dmh.initMethod; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
418 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
419 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
420 |
/*non-public*/ static Object allocateInstance(Object mh) throws InstantiationException { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
421 |
Constructor dmh = (Constructor)mh; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
422 |
return UNSAFE.allocateInstance(dmh.instanceClass); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
423 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
424 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
425 |
/** This subclass handles non-static field references. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
426 |
static class Accessor extends DirectMethodHandle { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
427 |
final Class<?> fieldType; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
428 |
final int fieldOffset; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
429 |
private Accessor(MethodType mtype, LambdaForm form, MemberName member, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
430 |
int fieldOffset) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
431 |
super(mtype, form, member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
432 |
this.fieldType = member.getFieldType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
433 |
this.fieldOffset = fieldOffset; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
434 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
435 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
436 |
@Override Object checkCast(Object obj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
437 |
return fieldType.cast(obj); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
438 |
} |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
439 |
@Override |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
440 |
MethodHandle viewAsType(MethodType newType) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
441 |
return new Accessor(newType, form, member, fieldOffset); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
442 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
443 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
444 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
445 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
446 |
/*non-public*/ static long fieldOffset(Object accessorObj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
447 |
// Note: We return a long because that is what Unsafe.getObject likes. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
448 |
// We store a plain int because it is more compact. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
449 |
return ((Accessor)accessorObj).fieldOffset; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
450 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
451 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
452 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
453 |
/*non-public*/ static Object checkBase(Object obj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
454 |
// Note that the object's class has already been verified, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
455 |
// since the parameter type of the Accessor method handle |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
456 |
// is either member.getDeclaringClass or a subclass. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
457 |
// This was verified in DirectMethodHandle.make. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
458 |
// Therefore, the only remaining check is for null. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
459 |
// Since this check is *not* guaranteed by Unsafe.getInt |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
460 |
// and its siblings, we need to make an explicit one here. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
461 |
obj.getClass(); // maybe throw NPE |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
462 |
return obj; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
463 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
464 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
465 |
/** This subclass handles static field references. */ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
466 |
static class StaticAccessor extends DirectMethodHandle { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
467 |
final private Class<?> fieldType; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
468 |
final private Object staticBase; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
469 |
final private long staticOffset; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
470 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
471 |
private StaticAccessor(MethodType mtype, LambdaForm form, MemberName member, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
472 |
Object staticBase, long staticOffset) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
473 |
super(mtype, form, member); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
474 |
this.fieldType = member.getFieldType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
475 |
this.staticBase = staticBase; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
476 |
this.staticOffset = staticOffset; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
477 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
478 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
479 |
@Override Object checkCast(Object obj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
480 |
return fieldType.cast(obj); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
481 |
} |
16030
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
482 |
@Override |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
483 |
MethodHandle viewAsType(MethodType newType) { |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
484 |
return new StaticAccessor(newType, form, member, staticBase, staticOffset); |
265a0d86c9ff
7087570: java.lang.invoke.MemberName information wrong for method handles created with findConstructor
kmo
parents:
14342
diff
changeset
|
485 |
} |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
486 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
487 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
488 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
489 |
/*non-public*/ static Object nullCheck(Object obj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
490 |
obj.getClass(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
491 |
return obj; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
492 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
493 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
494 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
495 |
/*non-public*/ static Object staticBase(Object accessorObj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
496 |
return ((StaticAccessor)accessorObj).staticBase; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
497 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
498 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
499 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
500 |
/*non-public*/ static long staticOffset(Object accessorObj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
501 |
return ((StaticAccessor)accessorObj).staticOffset; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
502 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
503 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
504 |
@ForceInline |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
505 |
/*non-public*/ static Object checkCast(Object mh, Object obj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
506 |
return ((DirectMethodHandle) mh).checkCast(obj); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
507 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
508 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
509 |
Object checkCast(Object obj) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
510 |
return member.getReturnType().cast(obj); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
511 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
512 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
513 |
// Caching machinery for field accessors: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
514 |
private static byte |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
515 |
AF_GETFIELD = 0, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
516 |
AF_PUTFIELD = 1, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
517 |
AF_GETSTATIC = 2, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
518 |
AF_PUTSTATIC = 3, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
519 |
AF_GETSTATIC_INIT = 4, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
520 |
AF_PUTSTATIC_INIT = 5, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
521 |
AF_LIMIT = 6; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
522 |
// Enumerate the different field kinds using Wrapper, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
523 |
// with an extra case added for checked references. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
524 |
private static int |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
525 |
FT_LAST_WRAPPER = Wrapper.values().length-1, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
526 |
FT_UNCHECKED_REF = Wrapper.OBJECT.ordinal(), |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
527 |
FT_CHECKED_REF = FT_LAST_WRAPPER+1, |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
528 |
FT_LIMIT = FT_LAST_WRAPPER+2; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
529 |
private static int afIndex(byte formOp, boolean isVolatile, int ftypeKind) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
530 |
return ((formOp * FT_LIMIT * 2) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
531 |
+ (isVolatile ? FT_LIMIT : 0) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
532 |
+ ftypeKind); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
533 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
534 |
private static final LambdaForm[] ACCESSOR_FORMS |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
535 |
= new LambdaForm[afIndex(AF_LIMIT, false, 0)]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
536 |
private static int ftypeKind(Class<?> ftype) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
537 |
if (ftype.isPrimitive()) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
538 |
return Wrapper.forPrimitiveType(ftype).ordinal(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
539 |
else if (VerifyType.isNullReferenceConversion(Object.class, ftype)) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
540 |
return FT_UNCHECKED_REF; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
541 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
542 |
return FT_CHECKED_REF; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
543 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
544 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
545 |
/** |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
546 |
* Create a LF which can access the given field. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
547 |
* Cache and share this structure among all fields with |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
548 |
* the same basicType and refKind. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
549 |
*/ |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
550 |
private static LambdaForm preparedFieldLambdaForm(MemberName m) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
551 |
Class<?> ftype = m.getFieldType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
552 |
boolean isVolatile = m.isVolatile(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
553 |
byte formOp; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
554 |
switch (m.getReferenceKind()) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
555 |
case REF_getField: formOp = AF_GETFIELD; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
556 |
case REF_putField: formOp = AF_PUTFIELD; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
557 |
case REF_getStatic: formOp = AF_GETSTATIC; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
558 |
case REF_putStatic: formOp = AF_PUTSTATIC; break; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
559 |
default: throw new InternalError(m.toString()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
560 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
561 |
if (shouldBeInitialized(m)) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
562 |
// precompute the barrier-free version: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
563 |
preparedFieldLambdaForm(formOp, isVolatile, ftype); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
564 |
assert((AF_GETSTATIC_INIT - AF_GETSTATIC) == |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
565 |
(AF_PUTSTATIC_INIT - AF_PUTSTATIC)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
566 |
formOp += (AF_GETSTATIC_INIT - AF_GETSTATIC); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
567 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
568 |
LambdaForm lform = preparedFieldLambdaForm(formOp, isVolatile, ftype); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
569 |
maybeCompile(lform, m); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
570 |
assert(lform.methodType().dropParameterTypes(0, 1) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
571 |
.equals(m.getInvocationType().basicType())) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
572 |
: Arrays.asList(m, m.getInvocationType().basicType(), lform, lform.methodType()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
573 |
return lform; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
574 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
575 |
private static LambdaForm preparedFieldLambdaForm(byte formOp, boolean isVolatile, Class<?> ftype) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
576 |
int afIndex = afIndex(formOp, isVolatile, ftypeKind(ftype)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
577 |
LambdaForm lform = ACCESSOR_FORMS[afIndex]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
578 |
if (lform != null) return lform; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
579 |
lform = makePreparedFieldLambdaForm(formOp, isVolatile, ftypeKind(ftype)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
580 |
ACCESSOR_FORMS[afIndex] = lform; // don't bother with a CAS |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
581 |
return lform; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
582 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
583 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
584 |
private static LambdaForm makePreparedFieldLambdaForm(byte formOp, boolean isVolatile, int ftypeKind) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
585 |
boolean isGetter = (formOp & 1) == (AF_GETFIELD & 1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
586 |
boolean isStatic = (formOp >= AF_GETSTATIC); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
587 |
boolean needsInit = (formOp >= AF_GETSTATIC_INIT); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
588 |
boolean needsCast = (ftypeKind == FT_CHECKED_REF); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
589 |
Wrapper fw = (needsCast ? Wrapper.OBJECT : Wrapper.values()[ftypeKind]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
590 |
Class<?> ft = fw.primitiveType(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
591 |
assert(ftypeKind(needsCast ? String.class : ft) == ftypeKind); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
592 |
String tname = fw.primitiveSimpleName(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
593 |
String ctname = Character.toUpperCase(tname.charAt(0)) + tname.substring(1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
594 |
if (isVolatile) ctname += "Volatile"; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
595 |
String getOrPut = (isGetter ? "get" : "put"); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
596 |
String linkerName = (getOrPut + ctname); // getObject, putIntVolatile, etc. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
597 |
MethodType linkerType; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
598 |
if (isGetter) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
599 |
linkerType = MethodType.methodType(ft, Object.class, long.class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
600 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
601 |
linkerType = MethodType.methodType(void.class, Object.class, long.class, ft); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
602 |
MemberName linker = new MemberName(Unsafe.class, linkerName, linkerType, REF_invokeVirtual); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
603 |
try { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
604 |
linker = IMPL_NAMES.resolveOrFail(REF_invokeVirtual, linker, null, NoSuchMethodException.class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
605 |
} catch (ReflectiveOperationException ex) { |
14089
0a41b980d62a
8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents:
13610
diff
changeset
|
606 |
throw newInternalError(ex); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
607 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
608 |
|
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
609 |
// What is the external type of the lambda form? |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
610 |
MethodType mtype; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
611 |
if (isGetter) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
612 |
mtype = MethodType.methodType(ft); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
613 |
else |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
614 |
mtype = MethodType.methodType(void.class, ft); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
615 |
mtype = mtype.basicType(); // erase short to int, etc. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
616 |
if (!isStatic) |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
617 |
mtype = mtype.insertParameterTypes(0, Object.class); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
618 |
final int DMH_THIS = 0; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
619 |
final int ARG_BASE = 1; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
620 |
final int ARG_LIMIT = ARG_BASE + mtype.parameterCount(); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
621 |
// if this is for non-static access, the base pointer is stored at this index: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
622 |
final int OBJ_BASE = isStatic ? -1 : ARG_BASE; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
623 |
// if this is for write access, the value to be written is stored at this index: |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
624 |
final int SET_VALUE = isGetter ? -1 : ARG_LIMIT - 1; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
625 |
int nameCursor = ARG_LIMIT; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
626 |
final int F_HOLDER = (isStatic ? nameCursor++ : -1); // static base if any |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
627 |
final int F_OFFSET = nameCursor++; // Either static offset or field offset. |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
628 |
final int OBJ_CHECK = (OBJ_BASE >= 0 ? nameCursor++ : -1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
629 |
final int INIT_BAR = (needsInit ? nameCursor++ : -1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
630 |
final int PRE_CAST = (needsCast && !isGetter ? nameCursor++ : -1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
631 |
final int LINKER_CALL = nameCursor++; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
632 |
final int POST_CAST = (needsCast && isGetter ? nameCursor++ : -1); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
633 |
final int RESULT = nameCursor-1; // either the call or the cast |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
634 |
Name[] names = arguments(nameCursor - ARG_LIMIT, mtype.invokerType()); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
635 |
if (needsInit) |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
636 |
names[INIT_BAR] = new Name(Lazy.NF_ensureInitialized, names[DMH_THIS]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
637 |
if (needsCast && !isGetter) |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
638 |
names[PRE_CAST] = new Name(Lazy.NF_checkCast, names[DMH_THIS], names[SET_VALUE]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
639 |
Object[] outArgs = new Object[1 + linkerType.parameterCount()]; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
640 |
assert(outArgs.length == (isGetter ? 3 : 4)); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
641 |
outArgs[0] = UNSAFE; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
642 |
if (isStatic) { |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
643 |
outArgs[1] = names[F_HOLDER] = new Name(Lazy.NF_staticBase, names[DMH_THIS]); |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
644 |
outArgs[2] = names[F_OFFSET] = new Name(Lazy.NF_staticOffset, names[DMH_THIS]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
645 |
} else { |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
646 |
outArgs[1] = names[OBJ_CHECK] = new Name(Lazy.NF_checkBase, names[OBJ_BASE]); |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
647 |
outArgs[2] = names[F_OFFSET] = new Name(Lazy.NF_fieldOffset, names[DMH_THIS]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
648 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
649 |
if (!isGetter) { |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
650 |
outArgs[3] = (needsCast ? names[PRE_CAST] : names[SET_VALUE]); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
651 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
652 |
for (Object a : outArgs) assert(a != null); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
653 |
names[LINKER_CALL] = new Name(linker, outArgs); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
654 |
if (needsCast && isGetter) |
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
655 |
names[POST_CAST] = new Name(Lazy.NF_checkCast, names[DMH_THIS], names[LINKER_CALL]); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
656 |
for (Name n : names) assert(n != null); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
657 |
String fieldOrStatic = (isStatic ? "Static" : "Field"); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
658 |
String lambdaName = (linkerName + fieldOrStatic); // significant only for debugging |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
659 |
if (needsCast) lambdaName += "Cast"; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
660 |
if (needsInit) lambdaName += "Init"; |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
661 |
return new LambdaForm(lambdaName, ARG_LIMIT, names, RESULT); |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
662 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
663 |
|
20495
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
664 |
/** |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
665 |
* Pre-initialized NamedFunctions for bootstrapping purposes. |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
666 |
* Factored in an inner class to delay initialization until first usage. |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
667 |
*/ |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
668 |
private static class Lazy { |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
669 |
static final NamedFunction |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
670 |
NF_internalMemberName, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
671 |
NF_internalMemberNameEnsureInit, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
672 |
NF_ensureInitialized, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
673 |
NF_fieldOffset, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
674 |
NF_checkBase, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
675 |
NF_staticBase, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
676 |
NF_staticOffset, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
677 |
NF_checkCast, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
678 |
NF_allocateInstance, |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
679 |
NF_constructorMethod; |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
680 |
static { |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
681 |
try { |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
682 |
NamedFunction nfs[] = { |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
683 |
NF_internalMemberName = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
684 |
.getDeclaredMethod("internalMemberName", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
685 |
NF_internalMemberNameEnsureInit = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
686 |
.getDeclaredMethod("internalMemberNameEnsureInit", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
687 |
NF_ensureInitialized = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
688 |
.getDeclaredMethod("ensureInitialized", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
689 |
NF_fieldOffset = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
690 |
.getDeclaredMethod("fieldOffset", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
691 |
NF_checkBase = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
692 |
.getDeclaredMethod("checkBase", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
693 |
NF_staticBase = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
694 |
.getDeclaredMethod("staticBase", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
695 |
NF_staticOffset = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
696 |
.getDeclaredMethod("staticOffset", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
697 |
NF_checkCast = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
698 |
.getDeclaredMethod("checkCast", Object.class, Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
699 |
NF_allocateInstance = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
700 |
.getDeclaredMethod("allocateInstance", Object.class)), |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
701 |
NF_constructorMethod = new NamedFunction(DirectMethodHandle.class |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
702 |
.getDeclaredMethod("constructorMethod", Object.class)) |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
703 |
}; |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
704 |
for (NamedFunction nf : nfs) { |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
705 |
// Each nf must be statically invocable or we get tied up in our bootstraps. |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
706 |
assert(InvokerBytecodeGenerator.isStaticallyInvocable(nf.member)) : nf; |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
707 |
nf.resolve(); |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
708 |
} |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
709 |
} catch (ReflectiveOperationException ex) { |
6586c2f78d57
8024616: JSR292: lazily initialize core NamedFunctions used for bootstrapping
vlivanov
parents:
16484
diff
changeset
|
710 |
throw newInternalError(ex); |
13423
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
711 |
} |
17843fff200d
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
8822
diff
changeset
|
712 |
} |
2707
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
713 |
} |
5a17df307cbc
6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff
changeset
|
714 |
} |