view graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/PolymorphicTest.java @ 14641:f0bb82ebe30c

Truffle-DSL: some fixes and optimizations to the generated code. Fixed polymorphic specialization nodes could still reference children in some cases. Removed generation of getCost methods since they were very expensive to call. Removed generation of copyPolymorphic, setNext0. Made generated executeGeneric0 and executeAndSpecialize0 final.
author Christian Humer <christian.humer@gmail.com>
date Thu, 20 Mar 2014 17:50:41 +0100
parents 5d1308c78ddc
children 5148aab962af
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 static com.oracle.truffle.api.dsl.test.TestHelper.*;
import static org.junit.Assert.*;

import org.junit.*;

import com.oracle.truffle.api.dsl.*;
import com.oracle.truffle.api.dsl.test.BinaryNodeTest.BinaryNode;
import com.oracle.truffle.api.dsl.test.PolymorphicTestFactory.Node1Factory;
import com.oracle.truffle.api.dsl.test.TypeSystemTest.TestRootNode;
import com.oracle.truffle.api.dsl.test.TypeSystemTest.ValueNode;
import com.oracle.truffle.api.nodes.*;

public class PolymorphicTest {

    private static void assertParent(Node expectedParent, Node child) {
        Node parent = child.getParent();
        while (parent != null && parent != expectedParent) {
            parent = parent.getParent();
        }

        if (parent != expectedParent) {
            assertEquals(expectedParent, parent);
        }
    }

    @Test
    public void testJustSpecialize() {
        TestRootNode<Node1> node = TestHelper.createRoot(Node1Factory.getInstance());
        assertEquals("(int,int)", executeWith(node, 42, 42));
        assertEquals("(boolean,boolean)", executeWith(node, false, false));
        assertEquals("(int,boolean)", executeWith(node, 42, false));
        assertEquals("(boolean,int)", executeWith(node, false, 42));
        assertEquals(NodeCost.MONOMORPHIC, node.getNode().getCost());
        assertParent(node.getNode(), node.getNode().getLeft());
        assertParent(node.getNode(), node.getNode().getRight());
    }

    @Test
    public void testPolymorphic2() {
        TestRootNode<Node1> node = TestHelper.createRoot(Node1Factory.getInstance());
        assertEquals("(int,boolean)", executeWith(node, 42, false));
        assertEquals("(int,int)", executeWith(node, 42, 42));
        assertEquals(NodeCost.POLYMORPHIC, node.getNode().getCost());
        assertParent(node.getNode(), node.getNode().getLeft());
        assertParent(node.getNode(), node.getNode().getRight());
    }

    @Test
    public void testPolymorphic3() {
        TestRootNode<Node1> node = TestHelper.createRoot(Node1Factory.getInstance());
        assertEquals("(int,boolean)", executeWith(node, 42, false));
        assertEquals("(boolean,boolean)", executeWith(node, true, false));
        assertEquals("(int,int)", executeWith(node, 42, 42));
        assertEquals(NodeCost.POLYMORPHIC, node.getNode().getCost());
        assertParent(node.getNode(), node.getNode().getLeft());
        assertParent(node.getNode(), node.getNode().getRight());
    }

    @Test
    public void testGenericLimitReached() {
        TestRootNode<Node1> node = TestHelper.createRoot(Node1Factory.getInstance());
        assertEquals("(boolean,int)", executeWith(node, false, 42));
        assertEquals("(int,boolean)", executeWith(node, 42, false));
        assertEquals("(boolean,boolean)", executeWith(node, true, false));
        assertEquals("(int,int)", executeWith(node, 42, 42));
        assertEquals(NodeCost.MEGAMORPHIC, node.getNode().getCost());
        assertParent(node.getNode(), node.getNode().getLeft());
        assertParent(node.getNode(), node.getNode().getRight());
    }

    @Test
    public void testGenericInitial() {
        TestRootNode<Node1> node = TestHelper.createRoot(Node1Factory.getInstance());
        assertEquals("(generic,generic)", executeWith(node, "1", "1"));
        assertEquals(NodeCost.MEGAMORPHIC, node.getNode().getCost());
        assertParent(node.getNode(), node.getNode().getLeft());
        assertParent(node.getNode(), node.getNode().getRight());
    }

    @Test
    public void testGenericPolymorphic1() {
        TestRootNode<Node1> node = TestHelper.createRoot(Node1Factory.getInstance());
        assertEquals("(boolean,int)", executeWith(node, false, 42));
        assertEquals("(boolean,boolean)", executeWith(node, false, false));
        assertEquals("(generic,generic)", executeWith(node, "", ""));
        assertEquals(NodeCost.MEGAMORPHIC, node.getNode().getCost());
        /* Assertions for bug GRAAL-425 */
        assertParent(node.getNode(), node.getNode().getLeft());
        assertParent(node.getNode(), node.getNode().getRight());
    }

    @SuppressWarnings("unused")
    @PolymorphicLimit(3)
    abstract static class Node1 extends BinaryNode {

        public abstract ValueNode getLeft();

        public abstract ValueNode getRight();

        @Specialization(order = 1)
        String add(int left, int right) {
            return "(int,int)";
        }

        @Specialization(order = 2)
        String add(boolean left, boolean right) {
            return "(boolean,boolean)";
        }

        @Specialization(order = 3)
        String add(int left, boolean right) {
            return "(int,boolean)";
        }

        @Specialization(order = 4)
        String add(boolean left, int right) {
            return "(boolean,int)";
        }

        @Generic
        String add(Object left, Object right) {
            return "(generic,generic)";
        }

    }

}