view graal/com.oracle.graal.virtual/src/com/oracle/graal/virtual/phases/ea/IterativeInliningPhase.java @ 8637:ce5750014c3d

moved Replacements and MacroSubstitution from the graal.api.replacements project to graal.nodes project and reversed the dependency between these two projects (the latter now/again depends on the former)
author Doug Simon <doug.simon@oracle.com>
date Fri, 05 Apr 2013 01:22:36 +0200
parents ac4dbfecec8f
children 6d376d09880b
line wrap: on
line source

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

import java.util.*;
import java.util.concurrent.*;

import com.oracle.graal.api.code.*;
import com.oracle.graal.debug.*;
import com.oracle.graal.nodes.*;
import com.oracle.graal.nodes.spi.*;
import com.oracle.graal.phases.*;
import com.oracle.graal.phases.common.*;

public class IterativeInliningPhase extends Phase {

    private final PhasePlan plan;

    private final GraalCodeCacheProvider runtime;
    private final Replacements replacements;
    private final Assumptions assumptions;
    private final GraphCache cache;
    private final OptimisticOptimizations optimisticOpts;
    private final boolean readElimination;

    public IterativeInliningPhase(GraalCodeCacheProvider runtime, Replacements replacements, Assumptions assumptions, GraphCache cache, PhasePlan plan, OptimisticOptimizations optimisticOpts, boolean readElimination) {
        this.runtime = runtime;
        this.replacements = replacements;
        this.assumptions = assumptions;
        this.cache = cache;
        this.plan = plan;
        this.optimisticOpts = optimisticOpts;
        this.readElimination = readElimination;
    }

    public static final void trace(String format, Object... obj) {
        if (GraalOptions.TraceEscapeAnalysis) {
            Debug.log(format, obj);
        }
    }

    @Override
    protected void run(final StructuredGraph graph) {
        runIterations(graph, true);
        runIterations(graph, false);
    }

    private void runIterations(final StructuredGraph graph, final boolean simple) {
        Boolean continueIteration = true;
        for (int iteration = 0; iteration < GraalOptions.EscapeAnalysisIterations && continueIteration; iteration++) {
            continueIteration = Debug.scope("iteration " + iteration, new Callable<Boolean>() {

                @Override
                public Boolean call() {
                    boolean progress = false;
                    PartialEscapeAnalysisPhase ea = new PartialEscapeAnalysisPhase(runtime, assumptions, false, readElimination);
                    ea.apply(graph);
                    progress |= ea.hasChanged();

                    Map<Invoke, Double> hints = GraalOptions.PEAInliningHints ? PartialEscapeAnalysisPhase.getHints(graph) : null;

                    InliningPhase inlining = new InliningPhase(runtime, hints, replacements, assumptions, cache, plan, optimisticOpts);
                    inlining.setMaxMethodsPerInlining(simple ? 1 : Integer.MAX_VALUE);
                    inlining.apply(graph);
                    progress |= inlining.getInliningCount() > 0;

                    new DeadCodeEliminationPhase().apply(graph);

                    if (GraalOptions.ConditionalElimination && GraalOptions.OptCanonicalizer) {
                        new CanonicalizerPhase(runtime, assumptions).apply(graph);
                        new IterativeConditionalEliminationPhase(runtime, assumptions).apply(graph);
                    }

                    return progress;
                }
            });
        }
    }
}