view truffle/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/NodeChildTest.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 9c8c0937da41
children 14e6dfb1ef05
line wrap: on
line source

/*
 * Copyright (c) 2012, 2012, 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.
 *
 * 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.dsl.test;

import com.oracle.truffle.api.dsl.NodeChild;
import com.oracle.truffle.api.dsl.NodeChildren;
import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.api.dsl.test.NodeFieldTestFactory.IntFieldTestNodeFactory;
import static com.oracle.truffle.api.dsl.test.TestHelper.createCallTarget;
import com.oracle.truffle.api.dsl.test.TypeSystemTest.ValueNode;
import static org.junit.Assert.assertEquals;
import org.junit.Test;

public class NodeChildTest {

    @Test
    public void testIntField() {
        assertEquals(42, createCallTarget(IntFieldTestNodeFactory.create(42)).call());
    }

    @NodeChild("child0")
    abstract static class Base0Node extends ValueNode {

    }

    @NodeChild(value = "child1", type = ValueNode.class)
    abstract static class Child0Node extends Base0Node {

        @Specialization
        int intField(int child0, int child1) {
            return child0 + child1;
        }
    }

    @NodeChildren({@NodeChild("child0")})
    abstract static class Base1Node extends ValueNode {

    }

    @NodeChildren({@NodeChild(value = "child1", type = ValueNode.class)})
    abstract static class Child1Node extends Base1Node {

        @Specialization
        int intField(int child0, int child1) {
            return child0 + child1;
        }
    }

    @NodeChildren({@NodeChild("child0"), @NodeChild("child1")})
    abstract static class Base2Node extends ValueNode {

    }

    @ExpectError("Not enough child node declarations found. Please annotate the node class with addtional @NodeChild annotations or remove all execute methods that do not provide all evaluated values. "
                    + "The following execute methods do not provide all evaluated values for the expected signature size 3:%")
    @NodeChildren({@NodeChild(value = "child2", type = ValueNode.class)})
    abstract static class Child2Node extends Base1Node {

        @ExpectError("Method signature (int, int, int) does not match to the expected signature:%")
        @Specialization
        int intField(int child0, int child1, int child2) {
            return child0 + child1 + child2;
        }
    }

    @NodeChildren({@NodeChild(value = "receiver", type = ValueNode.class), @NodeChild(value = "arguments", type = ValueNode[].class)})
    abstract static class BaseNode extends ValueNode {
        public abstract ValueNode getReceiver();

        public abstract ValueNode[] getArguments();
    }

    abstract static class UnaryNode extends BaseNode {
        @Specialization
        public int doIt(int value) {
            return value;
        }
    }

    abstract static class BinaryNode extends BaseNode {
        @Specialization
        public int doIt(int value0, int value1) {
            return value0 + value1;
        }
    }

    abstract static class TernaryNode extends BaseNode {
        @Specialization
        public int doIt(int value0, int value1, int value2) {
            return value0 + value1 + value2;
        }
    }

}