Package com.oracle.truffle.api.nodes

Examples of com.oracle.truffle.api.nodes.RootNode


    @Specialization
    @SlowPath
    protected Object dump(RFunction function, byte igvDump, byte verbose) {
        controlVisibility();

        RootNode root = function.getTarget().getRootNode();
        if (igvDump == RRuntime.LOGICAL_FALSE) {
            // Use .dot dump instead
            writeDotTreeToFile(root, verbose == RRuntime.LOGICAL_TRUE);
            // User gets no feedback about the output file; should 'debug.deump' be visible?
            return RNull.instance;
View Full Code Here

TOP

Related Classes of com.oracle.truffle.api.nodes.RootNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.