view graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/phases/DeadCodeEliminationPhase.java @ 3054:fe7145755a91

LoopEnd is not a Merge anymore
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 21 Jun 2011 11:44:33 +0200
parents 3ed1b2a5d071
children f08a810b8449
line wrap: on
line source

/*
 * Copyright (c) 2011, 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.max.graal.compiler.phases;

import java.util.*;

import com.oracle.max.graal.compiler.*;
import com.oracle.max.graal.compiler.debug.*;
import com.oracle.max.graal.compiler.gen.*;
import com.oracle.max.graal.compiler.ir.*;
import com.oracle.max.graal.graph.*;


public class DeadCodeEliminationPhase extends Phase {

    private NodeFlood flood;
    private Graph graph;
    private ArrayList<LoopBegin> brokenLoops;

    @Override
    protected void run(Graph graph) {
        this.graph = graph;
        this.flood = graph.createNodeFlood();
        this.brokenLoops = new ArrayList<LoopBegin>();

        // remove chained Merges
        for (Merge merge : graph.getNodes(Merge.class)) {
            if (merge.endCount() == 1 && merge.usages().size() == 0 && !(merge instanceof LoopBegin)) {
                FixedNode next = merge.next();
                EndNode endNode = merge.endAt(0);
                merge.delete();
                endNode.replace(next);
            }
        }
        // remove if nodes with constant-value comparison
//        for (If ifNode : graph.getNodes(If.class)) {
//            Compare compare = ifNode.compare();
//            if (compare.x().isConstant() && compare.y().isConstant()) {
//                CiConstant constX = compare.x().asConstant();
//                CiConstant constY = compare.y().asConstant();
//                Boolean result = compare.condition().foldCondition(constX, constY, GraalCompilation.compilation().runtime);
//                if (result != null) {
//                    Node actualSuccessor = result ? ifNode.trueSuccessor() : ifNode.falseSuccessor();
//                    ifNode.replace(actualSuccessor);
//                } else {
//                    TTY.println("if not removed %s %s %s (%s %s)", constX, compare.condition(), constY, constX.kind, constY.kind);
//                }
//            }
//        }

        flood.add(graph.start());

        iterateSuccessors();
        disconnectCFGNodes();
        iterateInputs();
        disconnectNodes();
        deleteNodes();

        deleteBrokenLoops();

        new PhiSimplifier(graph);

        if (GraalOptions.TraceDeadCodeElimination) {
            TTY.println("dead code elimination finished");
        }
    }

    private static boolean isCFG(Node n) {
        return n != null && ((n instanceof Instruction) || (n instanceof ControlSplit) || n == n.graph().start());
    }

    private void iterateSuccessors() {
        for (Node current : flood) {
            if (current instanceof EndNode) {
                EndNode end = (EndNode) current;
                flood.add(end.merge());
            } else {
                for (Node successor : current.successors()) {
                    flood.add(successor);
                }
            }
        }
    }

    private void disconnectCFGNodes() {
        for (Node node : graph.getNodes()) {
            if (node != Node.Null && !flood.isMarked(node)) {
                if (node instanceof EndNode) {
                    EndNode end = (EndNode) node;
                    Merge merge = end.merge();
                    if (merge != null && flood.isMarked(merge)) {
                        // We are a dead end node leading to a live merge.
                        merge.removeEnd(end);
                    }
                }
            }
        }
    }

    private void deleteBrokenLoops() {
        for (LoopBegin loop : brokenLoops) {
            assert loop.predecessors().size() == 1;
            for (Node usage : new ArrayList<Node>(loop.usages())) {
                assert usage instanceof Phi;
                usage.replace(((Phi) usage).valueAt(0));
            }

            loop.replace(loop.next());
        }
    }

    private void deleteNodes() {
        for (Node node : graph.getNodes()) {
            if (node != Node.Null && !flood.isMarked(node)) {
                node.unsafeDelete();
            }
        }
    }

    private void iterateInputs() {
        for (Node node : graph.getNodes()) {
            if (node instanceof Local) {
                flood.add(node);
            }
            if (node != Node.Null && flood.isMarked(node)) {
                for (Node input : node.inputs()) {
                    flood.add(input);
                }
            }
        }
        for (Node current : flood) {
            for (Node input : current.inputs()) {
                flood.add(input);
            }
        }
    }

    private void disconnectNodes() {
        for (Node node : graph.getNodes()) {
            if (node != Node.Null && !flood.isMarked(node)) {
                for (int i = 0; i < node.inputs().size(); i++) {
                    Node input = node.inputs().get(i);
                    if (input != Node.Null && flood.isMarked(input)) {
                        node.inputs().set(i, Node.Null);
                    }
                }
            }
        }
    }
}