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

com.oracle.truffle.sl.builtins.SLDefineFunctionBuiltinFactory Maven / Gradle / Ivy

There is a newer version: 24.1.1
Show newest version
// CheckStyle: start generated
package com.oracle.truffle.sl.builtins;

import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.CompilerDirectives.CompilationFinal;
import com.oracle.truffle.api.TruffleLanguage.ContextReference;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.dsl.NodeFactory;
import com.oracle.truffle.api.dsl.UnsupportedSpecializationException;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.api.nodes.NodeCost;
import com.oracle.truffle.sl.SLLanguage;
import com.oracle.truffle.sl.nodes.SLExpressionNode;
import com.oracle.truffle.sl.runtime.SLContext;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.locks.Lock;

@GeneratedBy(SLDefineFunctionBuiltin.class)
public final class SLDefineFunctionBuiltinFactory implements NodeFactory {

    private static final SLDefineFunctionBuiltinFactory INSTANCE = new SLDefineFunctionBuiltinFactory();

    private SLDefineFunctionBuiltinFactory() {
    }

    @Override
    public Class getNodeClass() {
        return SLDefineFunctionBuiltin.class;
    }

    @Override
    public List> getExecutionSignature() {
        return Arrays.asList(SLExpressionNode.class);
    }

    @Override
    public List>> getNodeSignatures() {
        return Arrays.asList(Arrays.asList(SLExpressionNode[].class));
    }

    @Override
    public SLDefineFunctionBuiltin createNode(Object... arguments) {
        if (arguments.length == 1 && (arguments[0] == null || arguments[0] instanceof SLExpressionNode[])) {
            return create((SLExpressionNode[]) arguments[0]);
        } else {
            throw new IllegalArgumentException("Invalid create signature.");
        }
    }

    public static NodeFactory getInstance() {
        return INSTANCE;
    }

    public static SLDefineFunctionBuiltin create(SLExpressionNode[] arguments) {
        return new SLDefineFunctionBuiltinNodeGen(arguments);
    }

    @GeneratedBy(SLDefineFunctionBuiltin.class)
    public static final class SLDefineFunctionBuiltinNodeGen extends SLDefineFunctionBuiltin {

        @Child private SLExpressionNode arguments0_;
        @CompilationFinal private volatile int state_;
        @CompilationFinal private ContextReference sLLanguageContextReference_;

        private SLDefineFunctionBuiltinNodeGen(SLExpressionNode[] arguments) {
            this.arguments0_ = arguments != null && 0 < arguments.length ? arguments[0] : null;
        }

        @Override
        protected Object execute(VirtualFrame frameValue) {
            int state = state_;
            Object arguments0Value_ = this.arguments0_.executeGeneric(frameValue);
            if (state != 0 /* is-active defineFunction(String, SLContext) */ && arguments0Value_ instanceof String) {
                String arguments0Value__ = (String) arguments0Value_;
                {
                    ContextReference sLLanguageContextReference__ = this.sLLanguageContextReference_;
                    SLContext context__ = sLLanguageContextReference__.get();
                    return defineFunction(arguments0Value__, context__);
                }
            }
            CompilerDirectives.transferToInterpreterAndInvalidate();
            return executeAndSpecialize(arguments0Value_);
        }

        private String executeAndSpecialize(Object arguments0Value) {
            Lock lock = getLock();
            boolean hasLock = true;
            lock.lock();
            int state = state_;
            try {
                {
                    SLContext context__ = null;
                    if (arguments0Value instanceof String) {
                        String arguments0Value_ = (String) arguments0Value;
                        ContextReference sLLanguageContextReference__1 = this.sLLanguageContextReference_;
                        if (sLLanguageContextReference__1 == null) {
                            this.sLLanguageContextReference_ = sLLanguageContextReference__1 = super.lookupContextReference(SLLanguage.class);
                        }
                        context__ = sLLanguageContextReference__1.get();
                        this.state_ = state = state | 0b1 /* add-active defineFunction(String, SLContext) */;
                        lock.unlock();
                        hasLock = false;
                        return defineFunction(arguments0Value_, context__);
                    }
                }
                throw new UnsupportedSpecializationException(this, new Node[] {this.arguments0_}, arguments0Value);
            } finally {
                if (hasLock) {
                    lock.unlock();
                }
            }
        }

        @Override
        public NodeCost getCost() {
            int state = state_;
            if (state == 0b0) {
                return NodeCost.UNINITIALIZED;
            } else {
                return NodeCost.MONOMORPHIC;
            }
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy