view graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java @ 13995:e455fc531ec2

Truffle: Added API in NodeUtil to count nodes restricted to a Kind. Added API in NodeUtil to print the inlining tree.
author Christian Humer <christian.humer@gmail.com>
date Fri, 21 Feb 2014 02:25:12 +0100
parents f46cab39a9a2
children c5411233cdf8
line wrap: on
line source

/*
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package com.oracle.truffle.api.nodes;

import java.util.*;

import com.oracle.truffle.api.*;
import com.oracle.truffle.api.CompilerDirectives.*;
import com.oracle.truffle.api.frame.*;

/**
 * A root node is a node with a method to execute it given only a frame as a parameter. Therefore, a
 * root node can be used to create a call target using
 * {@link TruffleRuntime#createCallTarget(RootNode)}.
 */
public abstract class RootNode extends Node {

    private CallTarget callTarget;
    private final FrameDescriptor frameDescriptor;

    /*
     * Internal field to keep reference to the inlined call node. The inlined parent should not be
     * the same as the Node parent to keep the same tree hierarchy if inlined vs not inlined.
     */
    @CompilationFinal private List<CallNode> parentInlinedCalls = new ArrayList<>();

    protected RootNode() {
        this(null, null);
    }

    protected RootNode(SourceSection sourceSection) {
        this(sourceSection, null);
    }

    protected RootNode(SourceSection sourceSection, FrameDescriptor frameDescriptor) {
        super(sourceSection);
        if (frameDescriptor == null) {
            this.frameDescriptor = new FrameDescriptor();
        } else {
            this.frameDescriptor = frameDescriptor;
        }
    }

    /**
     * @deprecated Not required anymore. Do not use.
     */
    @Deprecated
    public RootNode inline() {
        if (!isInlinable()) {
            throw new UnsupportedOperationException("Inlining is not enabled.");
        }
        return split();
    }

    /**
     * @deprecated Not required anymore. Do not use.
     */
    @Deprecated
    public int getInlineNodeCount() {
        return 0;
    }

    /**
     * @deprecated Not required anymore. Do not use.
     */
    @Deprecated
    public boolean isInlinable() {
        return true;
    }

    public RootNode split() {
        return NodeUtil.cloneNode(this);
    }

    public boolean isSplittable() {
        return false;
    }

    /**
     * Reports the execution count of a loop that is a child of this node. The optimization
     * heuristics can use the loop count to guide compilation and inlining.
     */
    public void reportLoopCount(int count) {
        List<CallTarget> callTargets = NodeUtil.findOutermostCallTargets(this);
        for (CallTarget target : callTargets) {
            if (target instanceof LoopCountReceiver) {
                ((LoopCountReceiver) target).reportLoopCount(count);
            }
        }
    }

    /**
     * Executes this function using the specified frame and returns the result value.
     * 
     * @param frame the frame of the currently executing guest language method
     * @return the value of the execution
     */
    public abstract Object execute(VirtualFrame frame);

    public CallTarget getCallTarget() {
        return callTarget;
    }

    public final FrameDescriptor getFrameDescriptor() {
        return frameDescriptor;
    }

    public void setCallTarget(CallTarget callTarget) {
        this.callTarget = callTarget;
    }

    /* Internal API. Do not use. */
    void addParentInlinedCall(CallNode inlinedParent) {
        this.parentInlinedCalls.add(inlinedParent);
    }

    public final List<CallNode> getParentInlinedCalls() {
        return Collections.unmodifiableList(parentInlinedCalls);
    }

    /**
     * @deprecated use {@link #getParentInlinedCalls()} instead.
     */
    @Deprecated
    public final CallNode getParentInlinedCall() {
        return parentInlinedCalls.isEmpty() ? null : parentInlinedCalls.get(0);
    }
}