nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/NashornBottomLinker.java
author attila
Tue, 13 Jan 2015 16:38:29 +0100
changeset 28437 b9b1042592e6
parent 26649 1d7a917a35e2
child 30394 72a59e4dffea
permissions -rw-r--r--
8068889: Calling a @FunctionalInterface from JS leaks internal objects Reviewed-by: jlaskey, sundar
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
22669
75563515567f 8032681: Issues with Nashorn
attila
parents: 21691
diff changeset
    28
import static jdk.nashorn.internal.lookup.Lookup.MH;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    29
import static jdk.nashorn.internal.runtime.ECMAErrors.typeError;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    30
import static jdk.nashorn.internal.runtime.ScriptRuntime.UNDEFINED;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    31
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    32
import java.lang.invoke.MethodHandle;
22669
75563515567f 8032681: Issues with Nashorn
attila
parents: 21691
diff changeset
    33
import java.util.HashMap;
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
    34
import java.util.Map;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16188
diff changeset
    35
import jdk.internal.dynalink.CallSiteDescriptor;
16246
f60e04200be3 8008387: Improve code coverage tests for JSObjectLinker and NashornBottomLinker
sundar
parents: 16234
diff changeset
    36
import jdk.internal.dynalink.beans.BeansLinker;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16188
diff changeset
    37
import jdk.internal.dynalink.linker.GuardedInvocation;
22669
75563515567f 8032681: Issues with Nashorn
attila
parents: 21691
diff changeset
    38
import jdk.internal.dynalink.linker.GuardedTypeConversion;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16188
diff changeset
    39
import jdk.internal.dynalink.linker.GuardingDynamicLinker;
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
    40
import jdk.internal.dynalink.linker.GuardingTypeConverterFactory;
16234
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16188
diff changeset
    41
import jdk.internal.dynalink.linker.LinkRequest;
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16188
diff changeset
    42
import jdk.internal.dynalink.linker.LinkerServices;
86cb162cec6c 8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents: 16188
diff changeset
    43
import jdk.internal.dynalink.support.Guards;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22669
diff changeset
    44
import jdk.nashorn.internal.codegen.types.Type;
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
    45
import jdk.nashorn.internal.runtime.JSType;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    46
import jdk.nashorn.internal.runtime.ScriptRuntime;
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22669
diff changeset
    47
import jdk.nashorn.internal.runtime.UnwarrantedOptimismException;
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    48
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    49
/**
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    50
 * Nashorn bottom linker; used as a last-resort catch-all linker for all linking requests that fall through all other
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    51
 * linkers (see how {@link Bootstrap} class configures the dynamic linker in its static initializer). It will throw
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    52
 * appropriate ECMAScript errors for attempts to invoke operations on {@code null}, link no-op property getters and
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    53
 * setters for Java objects that couldn't be linked by any other linker, and throw appropriate ECMAScript errors for
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    54
 * attempts to invoke arbitrary Java objects as functions or constructors.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    55
 */
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
    56
final class NashornBottomLinker implements GuardingDynamicLinker, GuardingTypeConverterFactory {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    57
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    58
    @Override
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    59
    public GuardedInvocation getGuardedInvocation(final LinkRequest linkRequest, final LinkerServices linkerServices)
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    60
            throws Exception {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    61
        final Object self = linkRequest.getReceiver();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    62
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    63
        if (self == null) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    64
            return linkNull(linkRequest);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    65
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    66
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    67
        // None of the objects that can be linked by NashornLinker should ever reach here. Basically, anything below
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    68
        // this point is a generic Java bean. Therefore, reaching here with a ScriptObject is a Nashorn bug.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    69
        assert isExpectedObject(self) : "Couldn't link " + linkRequest.getCallSiteDescriptor() + " for " + self.getClass().getName();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    70
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    71
        return linkBean(linkRequest, linkerServices);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    72
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    73
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    74
    private static final MethodHandle EMPTY_PROP_GETTER =
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    75
            MH.dropArguments(MH.constant(Object.class, UNDEFINED), 0, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    76
    private static final MethodHandle EMPTY_ELEM_GETTER =
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    77
            MH.dropArguments(EMPTY_PROP_GETTER, 0, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    78
    private static final MethodHandle EMPTY_PROP_SETTER =
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    79
            MH.asType(EMPTY_ELEM_GETTER, EMPTY_ELEM_GETTER.type().changeReturnType(void.class));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    80
    private static final MethodHandle EMPTY_ELEM_SETTER =
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    81
            MH.dropArguments(EMPTY_PROP_SETTER, 0, Object.class);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    82
19088
153f268bfa72 8021122: Not all callables are handled for toString and other function valued properties
sundar
parents: 16277
diff changeset
    83
    private static GuardedInvocation linkBean(final LinkRequest linkRequest, final LinkerServices linkerServices) throws Exception {
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    84
        final NashornCallSiteDescriptor desc = (NashornCallSiteDescriptor)linkRequest.getCallSiteDescriptor();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    85
        final Object self = linkRequest.getReceiver();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    86
        final String operator = desc.getFirstOperator();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    87
        switch (operator) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    88
        case "new":
16246
f60e04200be3 8008387: Improve code coverage tests for JSObjectLinker and NashornBottomLinker
sundar
parents: 16234
diff changeset
    89
            if(BeansLinker.isDynamicMethod(self)) {
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
    90
                throw typeError("method.not.constructor", ScriptRuntime.safeToString(self));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    91
            }
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
    92
            throw typeError("not.a.function", ScriptRuntime.safeToString(self));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    93
        case "call":
25252
e8bfc909db53 8043232: Index selection of overloaded java new constructors
sundar
parents: 24778
diff changeset
    94
            if(BeansLinker.isDynamicConstructor(self)) {
e8bfc909db53 8043232: Index selection of overloaded java new constructors
sundar
parents: 24778
diff changeset
    95
                throw typeError("constructor.requires.new", ScriptRuntime.safeToString(self));
e8bfc909db53 8043232: Index selection of overloaded java new constructors
sundar
parents: 24778
diff changeset
    96
            }
16246
f60e04200be3 8008387: Improve code coverage tests for JSObjectLinker and NashornBottomLinker
sundar
parents: 16234
diff changeset
    97
            if(BeansLinker.isDynamicMethod(self)) {
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
    98
                throw typeError("no.method.matches.args", ScriptRuntime.safeToString(self));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
    99
            }
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
   100
            throw typeError("not.a.function", ScriptRuntime.safeToString(self));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   101
        case "callMethod":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   102
        case "getMethod":
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
   103
            throw typeError("no.such.function", getArgument(linkRequest), ScriptRuntime.safeToString(self));
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   104
        case "getProp":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   105
        case "getElem":
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22669
diff changeset
   106
            if(NashornCallSiteDescriptor.isOptimistic(desc)) {
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22669
diff changeset
   107
                throw new UnwarrantedOptimismException(UNDEFINED, NashornCallSiteDescriptor.getProgramPoint(desc), Type.OBJECT);
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22669
diff changeset
   108
            }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   109
            if (desc.getOperand() != null) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   110
                return getInvocation(EMPTY_PROP_GETTER, self, linkerServices, desc);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   111
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   112
            return getInvocation(EMPTY_ELEM_GETTER, self, linkerServices, desc);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   113
        case "setProp":
26649
1d7a917a35e2 8058545: With strict mode, bean property assignment of a non-existent property should result in TypeError
sundar
parents: 25865
diff changeset
   114
        case "setElem": {
1d7a917a35e2 8058545: With strict mode, bean property assignment of a non-existent property should result in TypeError
sundar
parents: 25865
diff changeset
   115
            final boolean strict = NashornCallSiteDescriptor.isStrict(desc);
1d7a917a35e2 8058545: With strict mode, bean property assignment of a non-existent property should result in TypeError
sundar
parents: 25865
diff changeset
   116
            if (strict) {
1d7a917a35e2 8058545: With strict mode, bean property assignment of a non-existent property should result in TypeError
sundar
parents: 25865
diff changeset
   117
                throw typeError("cant.set.property", getArgument(linkRequest), ScriptRuntime.safeToString(self));
1d7a917a35e2 8058545: With strict mode, bean property assignment of a non-existent property should result in TypeError
sundar
parents: 25865
diff changeset
   118
            }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   119
            if (desc.getOperand() != null) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   120
                return getInvocation(EMPTY_PROP_SETTER, self, linkerServices, desc);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   121
            }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   122
            return getInvocation(EMPTY_ELEM_SETTER, self, linkerServices, desc);
26649
1d7a917a35e2 8058545: With strict mode, bean property assignment of a non-existent property should result in TypeError
sundar
parents: 25865
diff changeset
   123
        }
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   124
        default:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   125
            break;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   126
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   127
        throw new AssertionError("unknown call type " + desc);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   128
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   129
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   130
    @Override
22669
75563515567f 8032681: Issues with Nashorn
attila
parents: 21691
diff changeset
   131
    public GuardedTypeConversion convertToType(final Class<?> sourceType, final Class<?> targetType) throws Exception {
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   132
        final GuardedInvocation gi = convertToTypeNoCast(sourceType, targetType);
22669
75563515567f 8032681: Issues with Nashorn
attila
parents: 21691
diff changeset
   133
        return gi == null ? null : new GuardedTypeConversion(gi.asType(MH.type(targetType, sourceType)), true);
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   134
    }
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   135
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   136
    /**
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   137
     * Main part of the implementation of {@link GuardingTypeConverterFactory#convertToType(Class, Class)} that doesn't
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   138
     * care about adapting the method signature; that's done by the invoking method. Returns conversion from Object to String/number/boolean (JS primitive types).
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   139
     * @param sourceType the source type
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   140
     * @param targetType the target type
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   141
     * @return a guarded invocation that converts from the source type to the target type.
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   142
     * @throws Exception if something goes wrong
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   143
     */
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   144
    private static GuardedInvocation convertToTypeNoCast(final Class<?> sourceType, final Class<?> targetType) throws Exception {
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   145
        final MethodHandle mh = CONVERTERS.get(targetType);
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   146
        if (mh != null) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22669
diff changeset
   147
            return new GuardedInvocation(mh);
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   148
        }
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   149
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   150
        return null;
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   151
    }
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   152
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   153
    private static GuardedInvocation getInvocation(final MethodHandle handle, final Object self, final LinkerServices linkerServices, final CallSiteDescriptor desc) {
24719
f726e9d67629 8035820: Optimistic recompilation
attila
parents: 22669
diff changeset
   154
        return Bootstrap.asTypeSafeReturn(new GuardedInvocation(handle, Guards.getClassGuard(self.getClass())), linkerServices, desc);
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   155
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   156
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   157
    // Used solely in an assertion to figure out if the object we get here is something we in fact expect. Objects
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   158
    // linked by NashornLinker should never reach here.
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   159
    private static boolean isExpectedObject(final Object obj) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   160
        return !(NashornLinker.canLinkTypeStatic(obj.getClass()));
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   161
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   162
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   163
    private static GuardedInvocation linkNull(final LinkRequest linkRequest) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   164
        final NashornCallSiteDescriptor desc = (NashornCallSiteDescriptor)linkRequest.getCallSiteDescriptor();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   165
        final String operator = desc.getFirstOperator();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   166
        switch (operator) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   167
        case "new":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   168
        case "call":
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
   169
            throw typeError("not.a.function", "null");
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   170
        case "callMethod":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   171
        case "getMethod":
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
   172
            throw typeError("no.such.function", getArgument(linkRequest), "null");
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   173
        case "getProp":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   174
        case "getElem":
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
   175
            throw typeError("cant.get.property", getArgument(linkRequest), "null");
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   176
        case "setProp":
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   177
        case "setElem":
16256
f2d9a0c49914 8007002: Replace implicit exception throwing methods with explicit throws - simplify control flow and remove useless code
lagergren
parents: 16246
diff changeset
   178
            throw typeError("cant.set.property", getArgument(linkRequest), "null");
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   179
        default:
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   180
            break;
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   181
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   182
        throw new AssertionError("unknown call type " + desc);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   183
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   184
21691
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   185
    private static final Map<Class<?>, MethodHandle> CONVERTERS = new HashMap<>();
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   186
    static {
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   187
        CONVERTERS.put(boolean.class, JSType.TO_BOOLEAN.methodHandle());
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   188
        CONVERTERS.put(double.class, JSType.TO_NUMBER.methodHandle());
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   189
        CONVERTERS.put(int.class, JSType.TO_INTEGER.methodHandle());
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   190
        CONVERTERS.put(long.class, JSType.TO_LONG.methodHandle());
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   191
        CONVERTERS.put(String.class, JSType.TO_STRING.methodHandle());
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   192
    }
8e284e9a6144 8027828: ClassCastException when converting return value of a Java method to boolean
sundar
parents: 19097
diff changeset
   193
16147
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   194
    private static String getArgument(final LinkRequest linkRequest) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   195
        final CallSiteDescriptor desc = linkRequest.getCallSiteDescriptor();
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   196
        if (desc.getNameTokenCount() > 2) {
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   197
            return desc.getNameToken(2);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   198
        }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   199
        return ScriptRuntime.safeToString(linkRequest.getArguments()[1]);
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   200
    }
e63b63819133 8005403: Open-source Nashorn
jlaskey
parents:
diff changeset
   201
}