All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.truffle.sl.nodes.call.SLDispatchNode Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * The Universal Permissive License (UPL), Version 1.0
 *
 * Subject to the condition set forth below, permission is hereby granted to any
 * person obtaining a copy of this software, associated documentation and/or
 * data (collectively the "Software"), free of charge and under any and all
 * copyright rights in the Software, and any and all patent rights owned or
 * freely licensable by each licensor hereunder covering either (i) the
 * unmodified Software as contributed to or provided by such licensor, or (ii)
 * the Larger Works (as defined below), to deal in both
 *
 * (a) the Software, and
 *
 * (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
 * one is included with the Software each a "Larger Work" to which the Software
 * is contributed by such licensors),
 *
 * without restriction, including without limitation the rights to copy, create
 * derivative works of, display, perform, and distribute the Software and make,
 * use, sell, offer for sale, import, export, have made, and have sold the
 * Software and the Larger Work(s), and to sublicense the foregoing rights on
 * either these or other terms.
 *
 * This license is subject to the following condition:
 *
 * The above copyright notice and either this complete permission notice or at a
 * minimum a reference to the UPL must be included in all copies or substantial
 * portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package com.oracle.truffle.sl.nodes.call;

import com.oracle.truffle.api.Assumption;
import com.oracle.truffle.api.CallTarget;
import com.oracle.truffle.api.RootCallTarget;
import com.oracle.truffle.api.dsl.Cached;
import com.oracle.truffle.api.dsl.Fallback;
import com.oracle.truffle.api.dsl.ReportPolymorphism;
import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.api.dsl.TypeSystemReference;
import com.oracle.truffle.api.interop.ArityException;
import com.oracle.truffle.api.interop.ForeignAccess;
import com.oracle.truffle.api.interop.Message;
import com.oracle.truffle.api.interop.TruffleObject;
import com.oracle.truffle.api.interop.UnsupportedMessageException;
import com.oracle.truffle.api.interop.UnsupportedTypeException;
import com.oracle.truffle.api.nodes.DirectCallNode;
import com.oracle.truffle.api.nodes.IndirectCallNode;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.sl.nodes.SLTypes;
import com.oracle.truffle.sl.nodes.interop.SLForeignToSLTypeNode;
import com.oracle.truffle.sl.nodes.interop.SLForeignToSLTypeNodeGen;
import com.oracle.truffle.sl.runtime.SLFunction;
import com.oracle.truffle.sl.runtime.SLUndefinedNameException;

@ReportPolymorphism
@TypeSystemReference(SLTypes.class)
public abstract class SLDispatchNode extends Node {

    public static final int INLINE_CACHE_SIZE = 2;

    public abstract Object executeDispatch(Object function, Object[] arguments);

    /**
     * Inline cached specialization of the dispatch.
     *
     * 

* Since SL is a quite simple language, the benefit of the inline cache seems small: after * checking that the actual function to be executed is the same as the cachedFuntion, we can * safely execute the cached call target. You can reasonably argue that caching the call target * is overkill, since we could just retrieve it via {@code function.getCallTarget()}. However, * caching the call target and using a {@link DirectCallNode} allows Truffle to perform method * inlining. In addition, in a more complex language the lookup of the call target is usually * much more complicated than in SL. *

* *

* {@code limit = "INLINE_CACHE_SIZE"} Specifies the limit number of inline cache specialization * instantiations. *

*

* {@code guards = "function.getCallTarget() == cachedTarget"} The inline cache check. Note that * cachedTarget is a final field so that the compiler can optimize the check. *

*

* {@code assumptions = "callTargetStable"} Support for function redefinition: When a function * is redefined, the call target maintained by the SLFunction object is changed. To avoid a * check for that, we use an Assumption that is invalidated by the SLFunction when the change is * performed. Since checking an assumption is a no-op in compiled code, the assumption check * performed by the DSL does not add any overhead during optimized execution. *

* * @see Cached * @see Specialization * * @param function the dynamically provided function * @param cachedFunction the cached function of the specialization instance * @param callNode the {@link DirectCallNode} specifically created for the {@link CallTarget} in * cachedFunction. */ @Specialization(limit = "INLINE_CACHE_SIZE", // guards = "function.getCallTarget() == cachedTarget", // assumptions = "callTargetStable") @SuppressWarnings("unused") protected static Object doDirect(SLFunction function, Object[] arguments, @Cached("function.getCallTargetStable()") Assumption callTargetStable, @Cached("function.getCallTarget()") RootCallTarget cachedTarget, @Cached("create(cachedTarget)") DirectCallNode callNode) { /* Inline cache hit, we are safe to execute the cached call target. */ return callNode.call(arguments); } /** * Slow-path code for a call, used when the polymorphic inline cache exceeded its maximum size * specified in INLINE_CACHE_SIZE. Such calls are not optimized any further, e.g., * no method inlining is performed. */ @Specialization(replaces = "doDirect") protected static Object doIndirect(SLFunction function, Object[] arguments, @Cached("create()") IndirectCallNode callNode) { /* * SL has a quite simple call lookup: just ask the function for the current call target, and * call it. */ return callNode.call(function.getCallTarget(), arguments); } /** * When no specialization fits, the receiver is not an object (which is a type error). */ @Fallback protected Object unknownFunction(Object function, @SuppressWarnings("unused") Object[] arguments) { throw SLUndefinedNameException.undefinedFunction(this, function); } /** * Language interoperability: If the function is a foreign value, i.e., not a SLFunction, we use * Truffle's interop API to execute the foreign function. */ @Specialization(guards = "isForeignFunction(function)") protected Object doForeign(TruffleObject function, Object[] arguments, // The child node to call the foreign function @Cached("createCrossLanguageCallNode()") Node crossLanguageCallNode, // The child node to convert the result of the foreign call to a SL value @Cached("createToSLTypeNode()") SLForeignToSLTypeNode toSLTypeNode) { try { /* Perform the foreign function call. */ Object res = ForeignAccess.sendExecute(crossLanguageCallNode, function, arguments); /* Convert the result to a SL value. */ return toSLTypeNode.executeConvert(res); } catch (ArityException | UnsupportedTypeException | UnsupportedMessageException e) { /* Foreign access was not successful. */ throw SLUndefinedNameException.undefinedFunction(this, function); } } protected static boolean isForeignFunction(TruffleObject function) { return !(function instanceof SLFunction); } protected static Node createCrossLanguageCallNode() { return Message.EXECUTE.createNode(); } protected static SLForeignToSLTypeNode createToSLTypeNode() { return SLForeignToSLTypeNodeGen.create(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy