Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/jdk/internal/reflect/NativeMethodAccessorImpl.java
41159 views
1
/*
2
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
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.
24
*/
25
26
package jdk.internal.reflect;
27
28
import sun.reflect.misc.ReflectUtil;
29
30
import java.lang.reflect.*;
31
import jdk.internal.misc.Unsafe;
32
33
/** Used only for the first few invocations of a Method; afterward,
34
switches to bytecode-based implementation */
35
36
class NativeMethodAccessorImpl extends MethodAccessorImpl {
37
private static final Unsafe U = Unsafe.getUnsafe();
38
private static final long GENERATED_OFFSET
39
= U.objectFieldOffset(NativeMethodAccessorImpl.class, "generated");
40
41
private final Method method;
42
private DelegatingMethodAccessorImpl parent;
43
private int numInvocations;
44
private volatile int generated;
45
46
NativeMethodAccessorImpl(Method method) {
47
this.method = method;
48
}
49
50
public Object invoke(Object obj, Object[] args)
51
throws IllegalArgumentException, InvocationTargetException
52
{
53
// We can't inflate methods belonging to vm-anonymous classes because
54
// that kind of class can't be referred to by name, hence can't be
55
// found from the generated bytecode.
56
if (++numInvocations > ReflectionFactory.inflationThreshold()
57
&& !method.getDeclaringClass().isHidden()
58
&& generated == 0
59
&& U.compareAndSetInt(this, GENERATED_OFFSET, 0, 1)) {
60
try {
61
MethodAccessorImpl acc = (MethodAccessorImpl)
62
new MethodAccessorGenerator().
63
generateMethod(method.getDeclaringClass(),
64
method.getName(),
65
method.getParameterTypes(),
66
method.getReturnType(),
67
method.getExceptionTypes(),
68
method.getModifiers());
69
parent.setDelegate(acc);
70
} catch (Throwable t) {
71
// Throwable happens in generateMethod, restore generated to 0
72
generated = 0;
73
throw t;
74
}
75
}
76
77
return invoke0(method, obj, args);
78
}
79
80
void setParent(DelegatingMethodAccessorImpl parent) {
81
this.parent = parent;
82
}
83
84
private static native Object invoke0(Method m, Object obj, Object[] args);
85
}
86
87