nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/Bootstrap.java
author attila
Thu, 05 Mar 2015 15:43:43 +0100
changeset 29283 fb47e4d25a9f
parent 28881 0008daeef352
child 29834 f678f348c947
permissions -rw-r--r--
8035712: Restore some of the RuntimeCallSite specializations Reviewed-by: hannesw, lagergren
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     1
/*
16151
97c1e756ae1e 8005663: Update copyright year to 2013
jlaskey
parents: 16147
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     4
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    10
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    15
 * accompanied this code).
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    16
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    20
 *
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    23
 * questions.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    24
 */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    25
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    26
package jdk.nashorn.internal.runtime.linker;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    27
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    28
import static jdk.nashorn.internal.codegen.CompilerConstants.staticCallNoLookup;
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
    29
import static jdk.nashorn.internal.runtime.ECMAErrors.typeError;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    30
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    31
import java.lang.invoke.CallSite;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    32
import java.lang.invoke.ConstantCallSite;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    33
import java.lang.invoke.MethodHandle;
16226
0e4f37e6cc40 8007915: Nashorn IR, codegen, parser packages and Context instance should be inaccessible to user code
sundar
parents: 16184
diff changeset
    34
import java.lang.invoke.MethodHandles;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    35
import java.lang.invoke.MethodHandles.Lookup;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    36
import java.lang.invoke.MethodType;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16226
diff changeset
    37
import jdk.internal.dynalink.CallSiteDescriptor;
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16226
diff changeset
    38
import jdk.internal.dynalink.DynamicLinker;
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16226
diff changeset
    39
import jdk.internal.dynalink.DynamicLinkerFactory;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    40
import jdk.internal.dynalink.GuardedInvocationFilter;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16226
diff changeset
    41
import jdk.internal.dynalink.beans.BeansLinker;
19627
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
    42
import jdk.internal.dynalink.beans.StaticClass;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16226
diff changeset
    43
import jdk.internal.dynalink.linker.GuardedInvocation;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    44
import jdk.internal.dynalink.linker.LinkRequest;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16226
diff changeset
    45
import jdk.internal.dynalink.linker.LinkerServices;
27360
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
    46
import jdk.internal.dynalink.linker.MethodTypeConversionStrategy;
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
    47
import jdk.internal.dynalink.support.TypeUtilities;
19889
63af9358d0dc 8024615: Refactor ScriptObjectMirror and JSObject to support external JSObject implementations
sundar
parents: 19627
diff changeset
    48
import jdk.nashorn.api.scripting.JSObject;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    49
import jdk.nashorn.internal.codegen.CompilerConstants.Call;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    50
import jdk.nashorn.internal.codegen.ObjectClassGenerator;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    51
import jdk.nashorn.internal.lookup.MethodHandleFactory;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    52
import jdk.nashorn.internal.lookup.MethodHandleFunctionality;
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
    53
import jdk.nashorn.internal.objects.ScriptFunctionImpl;
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
    54
import jdk.nashorn.internal.runtime.ECMAException;
19090
b5cf0f877326 8021164: REGRESSION: test262 failures after JDK-8021122
sundar
parents: 19088
diff changeset
    55
import jdk.nashorn.internal.runtime.JSType;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    56
import jdk.nashorn.internal.runtime.OptimisticReturnFilters;
19088
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
    57
import jdk.nashorn.internal.runtime.ScriptFunction;
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
    58
import jdk.nashorn.internal.runtime.ScriptRuntime;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    59
import jdk.nashorn.internal.runtime.options.Options;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    60
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    61
/**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    62
 * This class houses bootstrap method for invokedynamic instructions generated by compiler.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    63
 */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    64
public final class Bootstrap {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    65
    /** Reference to the seed boostrap function */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    66
    public static final Call BOOTSTRAP = staticCallNoLookup(Bootstrap.class, "bootstrap", CallSite.class, Lookup.class, String.class, MethodType.class, int.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    67
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    68
    private static final MethodHandleFunctionality MH = MethodHandleFactory.getFunctionality();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    69
28438
f164fc2618a0 8068573: POJO setter using [] syntax throws an exception
attila
parents: 28437
diff changeset
    70
    private static final MethodHandle VOID_TO_OBJECT = MH.constant(Object.class, ScriptRuntime.UNDEFINED);
f164fc2618a0 8068573: POJO setter using [] syntax throws an exception
attila
parents: 28437
diff changeset
    71
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    72
    /**
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    73
     * The default dynalink relink threshold for megamorphisism is 8. In the case
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    74
     * of object fields only, it is fine. However, with dual fields, in order to get
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    75
     * performance on benchmarks with a lot of object instantiation and then field
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    76
     * reassignment, it can take slightly more relinks to become stable with type
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    77
     * changes swapping out an entire proprety map and making a map guard fail.
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    78
     * Therefore the relink threshold is set to 16 for dual fields (now the default).
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    79
     * This doesn't seem to have any other negative performance implication.
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    80
     *
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    81
     * See for example octane.gbemu, run with --log=fields:warning to study
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    82
     * megamorphic behavior
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    83
     */
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    84
    private static final int NASHORN_DEFAULT_UNSTABLE_RELINK_THRESHOLD =
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    85
            ObjectClassGenerator.OBJECT_FIELDS_ONLY ?
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    86
                     8 :
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    87
                    16;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
    88
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    89
    // do not create me!!
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    90
    private Bootstrap() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    91
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    92
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    93
    private static final DynamicLinker dynamicLinker;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    94
    static {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    95
        final DynamicLinkerFactory factory = new DynamicLinkerFactory();
24591
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
    96
        final NashornBeansLinker nashornBeansLinker = new NashornBeansLinker();
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
    97
        factory.setPrioritizedLinkers(
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
    98
            new NashornLinker(),
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
    99
            new NashornPrimitiveLinker(),
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
   100
            new NashornStaticClassLinker(),
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   101
            new BoundCallableLinker(),
24591
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
   102
            new JavaSuperAdapterLinker(),
26237
b6509e37ce64 8055796: JSObject and browser JSObject linkers should provide fallback to call underlying Java methods directly
sundar
parents: 26236
diff changeset
   103
            new JSObjectLinker(nashornBeansLinker),
b6509e37ce64 8055796: JSObject and browser JSObject linkers should provide fallback to call underlying Java methods directly
sundar
parents: 26236
diff changeset
   104
            new BrowserJSObjectLinker(nashornBeansLinker),
24591
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
   105
            new ReflectionCheckLinker());
67e22e0e8473 8044000: Access to undefined property yields "null" instead of "undefined"
sundar
parents: 22668
diff changeset
   106
        factory.setFallbackLinkers(nashornBeansLinker, new NashornBottomLinker());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   107
        factory.setSyncOnRelink(true);
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   108
        factory.setPrelinkFilter(new GuardedInvocationFilter() {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   109
            @Override
24738
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24719
diff changeset
   110
            public GuardedInvocation filter(final GuardedInvocation inv, final LinkRequest request, final LinkerServices linkerServices) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   111
                final CallSiteDescriptor desc = request.getCallSiteDescriptor();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   112
                return OptimisticReturnFilters.filterOptimisticReturnValue(inv, desc).asType(linkerServices, desc.getMethodType());
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   113
            }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   114
        });
27360
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   115
        factory.setAutoConversionStrategy(new MethodTypeConversionStrategy() {
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   116
            @Override
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   117
            public MethodHandle asType(final MethodHandle target, final MethodType newType) {
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   118
                return unboxReturnType(target, newType);
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   119
            }
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   120
        });
28881
0008daeef352 8072596: Arrays.asList results in ClassCastException with a JS array
attila
parents: 28438
diff changeset
   121
        factory.setInternalObjectsFilter(NashornBeansLinker.createHiddenObjectFilter());
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   122
        final int relinkThreshold = Options.getIntProperty("nashorn.unstable.relink.threshold", NASHORN_DEFAULT_UNSTABLE_RELINK_THRESHOLD);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   123
        if (relinkThreshold > -1) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   124
            factory.setUnstableRelinkThreshold(relinkThreshold);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   125
        }
19455
b972b61a6921 8022509: Various Dynalink security enhancements
attila
parents: 19090
diff changeset
   126
b972b61a6921 8022509: Various Dynalink security enhancements
attila
parents: 19090
diff changeset
   127
        // Linkers for any additional language runtimes deployed alongside Nashorn will be picked up by the factory.
b972b61a6921 8022509: Various Dynalink security enhancements
attila
parents: 19090
diff changeset
   128
        factory.setClassLoader(Bootstrap.class.getClassLoader());
b972b61a6921 8022509: Various Dynalink security enhancements
attila
parents: 19090
diff changeset
   129
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   130
        dynamicLinker = factory.createLinker();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   131
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   132
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   133
    /**
19088
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   134
     * Returns if the given object is a "callable"
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   135
     * @param obj object to be checked for callability
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   136
     * @return true if the obj is callable
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   137
     */
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   138
    public static boolean isCallable(final Object obj) {
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   139
        if (obj == ScriptRuntime.UNDEFINED || obj == null) {
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   140
            return false;
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   141
        }
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   142
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   143
        return obj instanceof ScriptFunction ||
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   144
            isJSObjectFunction(obj) ||
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   145
            BeansLinker.isDynamicMethod(obj) ||
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   146
            obj instanceof BoundCallable ||
19627
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   147
            isFunctionalInterfaceObject(obj) ||
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   148
            obj instanceof StaticClass;
19088
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   149
    }
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   150
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   151
    /**
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   152
     * Returns true if the given object is a strict callable
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   153
     * @param callable the callable object to be checked for strictness
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   154
     * @return true if the obj is a strict callable, false if it is a non-strict callable.
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   155
     * @throws ECMAException with {@code TypeError} if the object is not a callable.
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   156
     */
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   157
    public static boolean isStrictCallable(final Object callable) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   158
        if (callable instanceof ScriptFunction) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   159
            return ((ScriptFunction)callable).isStrict();
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   160
        } else if (isJSObjectFunction(callable)) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   161
            return ((JSObject)callable).isStrictFunction();
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   162
        } else if (callable instanceof BoundCallable) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   163
            return isStrictCallable(((BoundCallable)callable).getCallable());
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   164
        } else if (BeansLinker.isDynamicMethod(callable) || callable instanceof StaticClass) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   165
            return false;
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   166
        }
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   167
        throw notFunction(callable);
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   168
    }
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   169
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   170
    private static ECMAException notFunction(final Object obj) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   171
        return typeError("not.a.function", ScriptRuntime.safeToString(obj));
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   172
    }
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   173
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   174
    private static boolean isJSObjectFunction(final Object obj) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   175
        return obj instanceof JSObject && ((JSObject)obj).isFunction();
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   176
    }
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   177
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   178
    /**
19088
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   179
     * Returns if the given object is a dynalink Dynamic method
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   180
     * @param obj object to be checked
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   181
     * @return true if the obj is a dynamic method
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   182
     */
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   183
    public static boolean isDynamicMethod(final Object obj) {
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   184
        return BeansLinker.isDynamicMethod(obj instanceof BoundCallable ? ((BoundCallable)obj).getCallable() : obj);
19088
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   185
    }
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   186
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   187
    /**
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   188
     * Returns if the given object is an instance of an interface annotated with
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   189
     * java.lang.FunctionalInterface
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   190
     * @param obj object to be checked
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   191
     * @return true if the obj is an instance of @FunctionalInterface interface
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   192
     */
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   193
    public static boolean isFunctionalInterfaceObject(final Object obj) {
28437
b9b1042592e6 8068889: Calling a @FunctionalInterface from JS leaks internal objects
attila
parents: 27815
diff changeset
   194
        return !JSType.isPrimitive(obj) && (NashornBeansLinker.getFunctionalInterfaceMethod(obj.getClass()) != null);
19088
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   195
    }
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   196
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 18878
diff changeset
   197
    /**
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   198
     * Create a call site and link it for Nashorn. This version of the method conforms to the invokedynamic bootstrap
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   199
     * method expected signature and is referenced from Nashorn generated bytecode as the bootstrap method for all
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   200
     * invokedynamic instructions.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   201
     * @param lookup MethodHandle lookup. Ignored as Nashorn only uses public lookup.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   202
     * @param opDesc Dynalink dynamic operation descriptor.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   203
     * @param type   Method type.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   204
     * @param flags  flags for call type, trace/profile etc.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   205
     * @return CallSite with MethodHandle to appropriate method or null if not found.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   206
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   207
    public static CallSite bootstrap(final Lookup lookup, final String opDesc, final MethodType type, final int flags) {
18841
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   208
        return dynamicLinker.link(LinkerCallSite.newLinkerCallSite(lookup, opDesc, type, flags));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   209
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   210
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   211
    /**
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   212
     * Boostrapper for math calls that may overflow
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   213
     * @param lookup         lookup
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   214
     * @param name           name of operation
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   215
     * @param type           method type
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   216
     * @param programPoint   program point to bind to callsite
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   217
     *
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   218
     * @return callsite for a math instrinic node
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   219
     */
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   220
    public static CallSite mathBootstrap(final MethodHandles.Lookup lookup, final String name, final MethodType type, final int programPoint) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   221
        final MethodHandle mh;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   222
        switch (name) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   223
        case "iadd":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   224
            mh = JSType.ADD_EXACT.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   225
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   226
        case "isub":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   227
            mh = JSType.SUB_EXACT.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   228
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   229
        case "imul":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   230
            mh = JSType.MUL_EXACT.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   231
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   232
        case "idiv":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   233
            mh = JSType.DIV_EXACT.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   234
            break;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24738
diff changeset
   235
        case "irem":
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24738
diff changeset
   236
            mh = JSType.REM_EXACT.methodHandle();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24738
diff changeset
   237
            break;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   238
        case "ineg":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   239
            mh = JSType.NEGATE_EXACT.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   240
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   241
        case "ladd":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   242
            mh = JSType.ADD_EXACT_LONG.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   243
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   244
        case "lsub":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   245
            mh = JSType.SUB_EXACT_LONG.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   246
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   247
        case "lmul":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   248
            mh = JSType.MUL_EXACT_LONG.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   249
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   250
        case "ldiv":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   251
            mh = JSType.DIV_EXACT_LONG.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   252
            break;
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24738
diff changeset
   253
        case "lrem":
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24738
diff changeset
   254
            mh = JSType.REM_EXACT_LONG.methodHandle();
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents: 24738
diff changeset
   255
            break;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   256
        case "lneg":
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   257
            mh = JSType.NEGATE_EXACT_LONG.methodHandle();
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   258
            break;
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   259
        default:
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   260
            throw new AssertionError("unsupported math intrinsic");
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   261
        }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   262
        return new ConstantCallSite(MH.insertArguments(mh, mh.type().parameterCount() - 1, programPoint));
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   263
    }
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   264
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   265
    /**
18841
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   266
     * Returns a dynamic invoker for a specified dynamic operation using the public lookup. You can use this method to
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   267
     * create a method handle that when invoked acts completely as if it were a Nashorn-linked call site. An overview of
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   268
     * available dynamic operations can be found in the
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   269
     * <a href="https://github.com/szegedi/dynalink/wiki/User-Guide-0.6">Dynalink User Guide</a>, but we'll show few
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   270
     * examples here:
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   271
     * <ul>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   272
     *   <li>Get a named property with fixed name:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   273
     *     <pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   274
     * MethodHandle getColor = Boostrap.createDynamicInvoker("dyn:getProp:color", Object.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   275
     * Object obj = ...; // somehow obtain the object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   276
     * Object color = getColor.invokeExact(obj);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   277
     *     </pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   278
     *   </li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   279
     *   <li>Get a named property with variable name:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   280
     *     <pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   281
     * MethodHandle getProperty = Boostrap.createDynamicInvoker("dyn:getElem", Object.class, Object.class, String.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   282
     * Object obj = ...; // somehow obtain the object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   283
     * Object color = getProperty.invokeExact(obj, "color");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   284
     * Object shape = getProperty.invokeExact(obj, "shape");
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   285
     * MethodHandle getNumProperty = Boostrap.createDynamicInvoker("dyn:getElem", Object.class, Object.class, int.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   286
     * Object elem42 = getNumProperty.invokeExact(obj, 42);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   287
     *     </pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   288
     *   </li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   289
     *   <li>Set a named property with fixed name:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   290
     *     <pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   291
     * MethodHandle setColor = Boostrap.createDynamicInvoker("dyn:setProp:color", void.class, Object.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   292
     * Object obj = ...; // somehow obtain the object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   293
     * setColor.invokeExact(obj, Color.BLUE);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   294
     *     </pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   295
     *   </li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   296
     *   <li>Set a property with variable name:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   297
     *     <pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   298
     * MethodHandle setProperty = Boostrap.createDynamicInvoker("dyn:setElem", void.class, Object.class, String.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   299
     * Object obj = ...; // somehow obtain the object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   300
     * setProperty.invokeExact(obj, "color", Color.BLUE);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   301
     * setProperty.invokeExact(obj, "shape", Shape.CIRCLE);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   302
     *     </pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   303
     *   </li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   304
     *   <li>Call a function on an object; two-step variant. This is the actual variant used by Nashorn-generated code:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   305
     *     <pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   306
     * MethodHandle findFooFunction = Boostrap.createDynamicInvoker("dyn:getMethod:foo", Object.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   307
     * Object obj = ...; // somehow obtain the object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   308
     * Object foo_fn = findFooFunction.invokeExact(obj);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   309
     * MethodHandle callFunctionWithTwoArgs = Boostrap.createDynamicInvoker("dyn:call", Object.class, Object.class, Object.class, Object.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   310
     * // Note: "call" operation takes a function, then a "this" value, then the arguments:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   311
     * Object foo_retval = callFunctionWithTwoArgs.invokeExact(foo_fn, obj, arg1, arg2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   312
     *     </pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   313
     *   </li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   314
     *   <li>Call a function on an object; single-step variant. Although Nashorn doesn't use this variant and never
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   315
     *   emits any INVOKEDYNAMIC instructions with {@code dyn:getMethod}, it still supports this standard Dynalink
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   316
     *   operation:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   317
     *     <pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   318
     * MethodHandle callFunctionFooWithTwoArgs = Boostrap.createDynamicInvoker("dyn:callMethod:foo", Object.class, Object.class, Object.class, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   319
     * Object obj = ...; // somehow obtain the object
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   320
     * Object foo_retval = callFunctionFooWithTwoArgs.invokeExact(obj, arg1, arg2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   321
     *     </pre>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   322
     *   </li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   323
     * </ul>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   324
     * Few additional remarks:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   325
     * <ul>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   326
     * <li>Just as Nashorn works with any Java object, the invokers returned from this method can also be applied to
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   327
     * arbitrary Java objects in addition to Nashorn JavaScript objects.</li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   328
     * <li>For invoking a named function on an object, you can also use the {@link InvokeByName} convenience class.</li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   329
     * <li>For Nashorn objects {@code getElem}, {@code getProp}, and {@code getMethod} are handled almost identically,
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   330
     * since JavaScript doesn't distinguish between different kinds of properties on an object. Either can be used with
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   331
     * fixed property name or a variable property name. The only significant difference is handling of missing
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   332
     * properties: {@code getMethod} for a missing member will link to a potential invocation of
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   333
     * {@code __noSuchMethod__} on the object, {@code getProp} for a missing member will link to a potential invocation
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   334
     * of {@code __noSuchProperty__}, while {@code getElem} for a missing member will link to an empty getter.</li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   335
     * <li>In similar vein, {@code setElem} and {@code setProp} are handled identically on Nashorn objects.</li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   336
     * <li>There's no rule that the variable property identifier has to be a {@code String} for {@code getProp/setProp}
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   337
     * and {@code int} for {@code getElem/setElem}. You can declare their type to be {@code int}, {@code double},
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   338
     * {@code Object}, and so on regardless of the kind of the operation.</li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   339
     * <li>You can be as specific in parameter types as you want. E.g. if you know that the receiver of the operation
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   340
     * will always be {@code ScriptObject}, you can pass {@code ScriptObject.class} as its parameter type. If you happen
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   341
     * to link to a method that expects different types, (you can use these invokers on POJOs too, after all, and end up
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   342
     * linking with their methods that have strongly-typed signatures), all necessary conversions allowed by either Java
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   343
     * or JavaScript will be applied: if invoked methods specify either primitive or wrapped Java numeric types, or
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   344
     * {@code String} or {@code boolean/Boolean}, then the parameters might be subjected to standard ECMAScript
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   345
     * {@code ToNumber}, {@code ToString}, and {@code ToBoolean} conversion, respectively. Less obviously, if the
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   346
     * expected parameter type is a SAM type, and you pass a JavaScript function, a proxy object implementing the SAM
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   347
     * type and delegating to the function will be passed. Linkage can often be optimized when linkers have more
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   348
     * specific type information than "everything can be an object".</li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   349
     * <li>You can also be as specific in return types as you want. For return types any necessary type conversion
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   350
     * available in either Java or JavaScript will be automatically applied, similar to the process described for
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   351
     * parameters, only in reverse direction:  if you specify any either primitive or wrapped Java numeric type, or
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   352
     * {@code String} or {@code boolean/Boolean}, then the return values will be subjected to standard ECMAScript
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   353
     * {@code ToNumber}, {@code ToString}, and {@code ToBoolean} conversion, respectively. Less obviously, if the return
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   354
     * type is a SAM type, and the return value is a JavaScript function, a proxy object implementing the SAM type and
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   355
     * delegating to the function will be returned.</li>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   356
     * </ul>
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   357
     * @param opDesc Dynalink dynamic operation descriptor.
16173
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   358
     * @param rtype the return type for the operation
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   359
     * @param ptypes the parameter types for the operation
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   360
     * @return MethodHandle for invoking the operation.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   361
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   362
    public static MethodHandle createDynamicInvoker(final String opDesc, final Class<?> rtype, final Class<?>... ptypes) {
16173
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   363
        return createDynamicInvoker(opDesc, MethodType.methodType(rtype, ptypes));
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   364
    }
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   365
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   366
    /**
18841
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   367
     * Returns a dynamic invoker for a specified dynamic operation using the public lookup. Similar to
27307
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   368
     * {@link #createDynamicInvoker(String, Class, Class...)} but with an additional parameter to
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   369
     * set the call site flags of the dynamic invoker.
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   370
     * @param opDesc Dynalink dynamic operation descriptor.
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   371
     * @param flags the call site flags for the operation
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   372
     * @param rtype the return type for the operation
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   373
     * @param ptypes the parameter types for the operation
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   374
     * @return MethodHandle for invoking the operation.
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   375
     */
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   376
    public static MethodHandle createDynamicInvoker(final String opDesc, final int flags, final Class<?> rtype, final Class<?>... ptypes) {
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   377
        return bootstrap(MethodHandles.publicLookup(), opDesc, MethodType.methodType(rtype, ptypes), flags).dynamicInvoker();
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   378
    }
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   379
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   380
    /**
62ed492cbe63 8062401: User accessors require boxing and do not support optimistic types
hannesw
parents: 26237
diff changeset
   381
     * Returns a dynamic invoker for a specified dynamic operation using the public lookup. Similar to
16173
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   382
     * {@link #createDynamicInvoker(String, Class, Class...)} but with return and parameter types composed into a
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   383
     * method type in the signature. See the discussion of that method for details.
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   384
     * @param opDesc Dynalink dynamic operation descriptor.
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   385
     * @param type the method type for the operation
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   386
     * @return MethodHandle for invoking the operation.
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   387
     */
c41d062f7d2a 8006293: Reduce ScriptObject.findCallMethodMethod
attila
parents: 16151
diff changeset
   388
    public static MethodHandle createDynamicInvoker(final String opDesc, final MethodType type) {
18841
9bbc4b8832b2 8010946: AccessControl.doPrivileged is broken when called from js script
attila
parents: 16522
diff changeset
   389
        return bootstrap(MethodHandles.publicLookup(), opDesc, type, 0).dynamicInvoker();
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   390
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   391
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   392
    /**
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   393
     * Binds any object Nashorn can use as a [[Callable]] to a receiver and optionally arguments.
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   394
     * @param callable the callable to bind
18876
ada98218aaae 8020324: Implement Object.bindProperties(target, source) for beans
attila
parents: 18841
diff changeset
   395
     * @param boundThis the bound "this" value.
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   396
     * @param boundArgs the bound arguments. Can be either null or empty array to signify no arguments are bound.
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   397
     * @return a bound callable.
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   398
     * @throws ECMAException with {@code TypeError} if the object is not a callable.
18876
ada98218aaae 8020324: Implement Object.bindProperties(target, source) for beans
attila
parents: 18841
diff changeset
   399
     */
27815
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   400
    public static Object bindCallable(final Object callable, final Object boundThis, final Object[] boundArgs) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   401
        if (callable instanceof ScriptFunctionImpl) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   402
            return ((ScriptFunctionImpl)callable).makeBoundFunction(boundThis, boundArgs);
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   403
        } else if (callable instanceof BoundCallable) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   404
            return ((BoundCallable)callable).bind(boundArgs);
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   405
        } else if (isCallable(callable)) {
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   406
            return new BoundCallable(callable, boundThis, boundArgs);
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   407
        }
6ed8e97e8fb6 8051778: support bind on all Nashorn callables
attila
parents: 27360
diff changeset
   408
        throw notFunction(callable);
18876
ada98218aaae 8020324: Implement Object.bindProperties(target, source) for beans
attila
parents: 18841
diff changeset
   409
    }
18878
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   410
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   411
    /**
19627
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   412
     * Creates a super-adapter for an adapter, that is, an adapter to the adapter that allows invocation of superclass
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   413
     * methods on it.
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   414
     * @param adapter the original adapter
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   415
     * @return a new adapter that can be used to invoke super methods on the original adapter.
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   416
     */
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   417
    public static Object createSuperAdapter(final Object adapter) {
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   418
        return new JavaSuperAdapter(adapter);
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   419
    }
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   420
90d910ec15a3 8023630: Implement Java.super() as the preferred way to call super methods
attila
parents: 19455
diff changeset
   421
    /**
18878
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   422
     * If the given class is a reflection-specific class (anything in {@code java.lang.reflect} and
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   423
     * {@code java.lang.invoke} package, as well a {@link Class} and any subclass of {@link ClassLoader}) and there is
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   424
     * a security manager in the system, then it checks the {@code nashorn.JavaReflection} {@code RuntimePermission}.
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   425
     * @param clazz the class being tested
22668
245094625886 8032948: Nashorn linkages awry
sundar
parents: 21686
diff changeset
   426
     * @param isStatic is access checked for static members (or instance members)
18878
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   427
     */
24738
be2026c9717c 8039746: Transform applies to calls wherever possible, for ScriptFunctions and JSObjects.
lagergren
parents: 24719
diff changeset
   428
    public static void checkReflectionAccess(final Class<?> clazz, final boolean isStatic) {
22668
245094625886 8032948: Nashorn linkages awry
sundar
parents: 21686
diff changeset
   429
        ReflectionCheckLinker.checkReflectionAccess(clazz, isStatic);
18878
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   430
    }
078eb52cf5bc 8020508: Enforce reflection access restrictions on Object.bindProperties
attila
parents: 18876
diff changeset
   431
18876
ada98218aaae 8020324: Implement Object.bindProperties(target, source) for beans
attila
parents: 18841
diff changeset
   432
    /**
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   433
     * Returns the Nashorn's internally used dynamic linker's services object. Note that in code that is processing a
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   434
     * linking request, you will normally use the {@code LinkerServices} object passed by whatever top-level linker
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   435
     * invoked the linking (if the call site is in Nashorn-generated code, you'll get this object anyway). You should
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   436
     * only resort to retrieving a linker services object using this method when you need some linker services (e.g.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   437
     * type converter method handles) outside of a code path that is linking a call site.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   438
     * @return Nashorn's internal dynamic linker's services object.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   439
     */
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   440
    public static LinkerServices getLinkerServices() {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   441
        return dynamicLinker.getLinkerServices();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   442
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   443
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   444
    /**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   445
     * Takes a guarded invocation, and ensures its method and guard conform to the type of the call descriptor, using
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   446
     * all type conversions allowed by the linker's services. This method is used by Nashorn's linkers as a last step
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   447
     * before returning guarded invocations. Most of the code used to produce the guarded invocations does not make an
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   448
     * effort to coordinate types of the methods, and so a final type adjustment before a guarded invocation is returned
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   449
     * to the aggregating linker is the responsibility of the linkers themselves.
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   450
     * @param inv the guarded invocation that needs to be type-converted. Can be null.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   451
     * @param linkerServices the linker services object providing the type conversions.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   452
     * @param desc the call site descriptor to whose method type the invocation needs to conform.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   453
     * @return the type-converted guarded invocation. If input is null, null is returned. If the input invocation
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   454
     * already conforms to the requested type, it is returned unchanged.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   455
     */
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   456
    static GuardedInvocation asTypeSafeReturn(final GuardedInvocation inv, final LinkerServices linkerServices, final CallSiteDescriptor desc) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22668
diff changeset
   457
        return inv == null ? null : inv.asTypeSafeReturn(linkerServices, desc.getMethodType());
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   458
    }
27360
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   459
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   460
    /**
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   461
     * Adapts the return type of the method handle with {@code explicitCastArguments} when it is an unboxing
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   462
     * conversion. This will ensure that nulls are unwrapped to false or 0.
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   463
     * @param target the target method handle
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   464
     * @param newType the desired new type. Note that this method does not adapt the method handle completely to the
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   465
     * new type, it only adapts the return type; this is allowed as per
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   466
     * {@link DynamicLinkerFactory#setAutoConversionStrategy(MethodTypeConversionStrategy)}, which is what this method
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   467
     * is used for.
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   468
     * @return the method handle with adapted return type, if it required an unboxing conversion.
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   469
     */
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   470
    private static MethodHandle unboxReturnType(final MethodHandle target, final MethodType newType) {
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   471
        final MethodType targetType = target.type();
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   472
        final Class<?> oldReturnType = targetType.returnType();
28438
f164fc2618a0 8068573: POJO setter using [] syntax throws an exception
attila
parents: 28437
diff changeset
   473
        final Class<?> newReturnType = newType.returnType();
27360
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   474
        if (TypeUtilities.isWrapperType(oldReturnType)) {
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   475
            if (newReturnType.isPrimitive()) {
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   476
                // The contract of setAutoConversionStrategy is such that the difference between newType and targetType
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   477
                // can only be JLS method invocation conversions.
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   478
                assert TypeUtilities.isMethodInvocationConvertible(oldReturnType, newReturnType);
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   479
                return MethodHandles.explicitCastArguments(target, targetType.changeReturnType(newReturnType));
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   480
            }
28438
f164fc2618a0 8068573: POJO setter using [] syntax throws an exception
attila
parents: 28437
diff changeset
   481
        } else if (oldReturnType == void.class && newReturnType == Object.class) {
f164fc2618a0 8068573: POJO setter using [] syntax throws an exception
attila
parents: 28437
diff changeset
   482
            return MethodHandles.filterReturnValue(target, VOID_TO_OBJECT);
27360
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   483
        }
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   484
        return target;
a19c14022fa4 8059443: NPE when unboxing return values
attila
parents: 27307
diff changeset
   485
    }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   486
}