/*
 * Copyright (c) 2009, 2020, 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.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * 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 org.graalvm.compiler.core;

import org.graalvm.compiler.code.CompilationResult;
import org.graalvm.compiler.core.common.PermanentBailoutException;
import org.graalvm.compiler.core.common.RetryableBailoutException;
import org.graalvm.compiler.core.common.util.CompilationAlarm;
import org.graalvm.compiler.core.target.Backend;
import org.graalvm.compiler.debug.DebugCloseable;
import org.graalvm.compiler.debug.DebugContext;
import org.graalvm.compiler.debug.DebugContext.CompilerPhaseScope;
import org.graalvm.compiler.debug.MethodFilter;
import org.graalvm.compiler.debug.TimerKey;
import org.graalvm.compiler.lir.asm.CompilationResultBuilderFactory;
import org.graalvm.compiler.lir.phases.LIRSuites;
import org.graalvm.compiler.nodes.StructuredGraph;
import org.graalvm.compiler.phases.OptimisticOptimizations;
import org.graalvm.compiler.phases.PhaseSuite;
import org.graalvm.compiler.phases.common.DeadCodeEliminationPhase;
import org.graalvm.compiler.phases.tiers.HighTierContext;
import org.graalvm.compiler.phases.tiers.LowTierContext;
import org.graalvm.compiler.phases.tiers.MidTierContext;
import org.graalvm.compiler.phases.tiers.Suites;
import org.graalvm.compiler.phases.tiers.TargetProvider;
import org.graalvm.compiler.phases.util.Providers;

import jdk.vm.ci.meta.ProfilingInfo;
import jdk.vm.ci.meta.ResolvedJavaMethod;

Static methods for orchestrating the compilation of a graph.
/** * Static methods for orchestrating the compilation of a {@linkplain StructuredGraph graph}. */
public class GraalCompiler { private static final TimerKey CompilerTimer = DebugContext.timer("GraalCompiler").doc("Time spent in compilation (excludes code installation)."); private static final TimerKey FrontEnd = DebugContext.timer("FrontEnd").doc("Time spent processing HIR.");
Encapsulates all the inputs to a compilation.
/** * Encapsulates all the inputs to a {@linkplain GraalCompiler#compile(Request) compilation}. */
public static class Request<T extends CompilationResult> { public final StructuredGraph graph; public final ResolvedJavaMethod installedCodeOwner; public final Providers providers; public final Backend backend; public final PhaseSuite<HighTierContext> graphBuilderSuite; public final OptimisticOptimizations optimisticOpts; public final ProfilingInfo profilingInfo; public final Suites suites; public final LIRSuites lirSuites; public final T compilationResult; public final CompilationResultBuilderFactory factory; public final boolean verifySourcePositions;
Params:
  • graph – the graph to be compiled
  • installedCodeOwner – the method the compiled code will be associated with once installed. This argument can be null.
  • providers –
  • backend –
  • graphBuilderSuite –
  • optimisticOpts –
  • profilingInfo –
  • suites –
  • lirSuites –
  • compilationResult –
  • factory –
/** * @param graph the graph to be compiled * @param installedCodeOwner the method the compiled code will be associated with once * installed. This argument can be null. * @param providers * @param backend * @param graphBuilderSuite * @param optimisticOpts * @param profilingInfo * @param suites * @param lirSuites * @param compilationResult * @param factory */
public Request(StructuredGraph graph, ResolvedJavaMethod installedCodeOwner, Providers providers, Backend backend, PhaseSuite<HighTierContext> graphBuilderSuite, OptimisticOptimizations optimisticOpts, ProfilingInfo profilingInfo, Suites suites, LIRSuites lirSuites, T compilationResult, CompilationResultBuilderFactory factory, boolean verifySourcePositions) { this.graph = graph; this.installedCodeOwner = installedCodeOwner; this.providers = providers; this.backend = backend; this.graphBuilderSuite = graphBuilderSuite; this.optimisticOpts = optimisticOpts; this.profilingInfo = profilingInfo; this.suites = suites; this.lirSuites = lirSuites; this.compilationResult = compilationResult; this.factory = factory; this.verifySourcePositions = verifySourcePositions; }
Executes this compilation request.
Returns:the result of the compilation
/** * Executes this compilation request. * * @return the result of the compilation */
public T execute() { return GraalCompiler.compile(this); } }
Requests compilation of a given graph.
Params:
  • graph – the graph to be compiled
  • installedCodeOwner – the method the compiled code will be associated with once installed. This argument can be null.
Returns:the result of the compilation
/** * Requests compilation of a given graph. * * @param graph the graph to be compiled * @param installedCodeOwner the method the compiled code will be associated with once * installed. This argument can be null. * @return the result of the compilation */
public static <T extends CompilationResult> T compileGraph(StructuredGraph graph, ResolvedJavaMethod installedCodeOwner, Providers providers, Backend backend, PhaseSuite<HighTierContext> graphBuilderSuite, OptimisticOptimizations optimisticOpts, ProfilingInfo profilingInfo, Suites suites, LIRSuites lirSuites, T compilationResult, CompilationResultBuilderFactory factory, boolean verifySourcePositions) { return compile(new Request<>(graph, installedCodeOwner, providers, backend, graphBuilderSuite, optimisticOpts, profilingInfo, suites, lirSuites, compilationResult, factory, verifySourcePositions)); }
Services a given compilation request.
Returns:the result of the compilation
/** * Services a given compilation request. * * @return the result of the compilation */
@SuppressWarnings("try") public static <T extends CompilationResult> T compile(Request<T> r) { DebugContext debug = r.graph.getDebug(); try (CompilationAlarm alarm = CompilationAlarm.trackCompilationPeriod(r.graph.getOptions())) { assert !r.graph.isFrozen(); try (DebugContext.Scope s0 = debug.scope("GraalCompiler", r.graph, r.providers.getCodeCache()); DebugCloseable a = CompilerTimer.start(debug)) { emitFrontEnd(r.providers, r.backend, r.graph, r.graphBuilderSuite, r.optimisticOpts, r.profilingInfo, r.suites); r.backend.emitBackEnd(r.graph, null, r.installedCodeOwner, r.compilationResult, r.factory, null, r.lirSuites); if (r.verifySourcePositions) { assert r.graph.verifySourcePositions(true); } } catch (Throwable e) { throw debug.handle(e); } checkForRequestedCrash(r.graph); return r.compilationResult; } }
Checks whether the GraalCompilerOptions.CrashAt option indicates that the compilation of graph should result in an exception.
Params:
  • graph – a graph currently being compiled
Throws:
/** * Checks whether the {@link GraalCompilerOptions#CrashAt} option indicates that the compilation * of {@code graph} should result in an exception. * * @param graph a graph currently being compiled * @throws RuntimeException if the value of {@link GraalCompilerOptions#CrashAt} matches * {@code graph.method()} or {@code graph.name} */
private static void checkForRequestedCrash(StructuredGraph graph) { String value = GraalCompilerOptions.CrashAt.getValue(graph.getOptions()); if (value != null) { boolean bailout = false; boolean permanentBailout = false; String methodPattern = value; if (value.endsWith(":Bailout")) { methodPattern = value.substring(0, value.length() - ":Bailout".length()); bailout = true; } else if (value.endsWith(":PermanentBailout")) { methodPattern = value.substring(0, value.length() - ":PermanentBailout".length()); permanentBailout = true; } String crashLabel = null; if (graph.name != null && graph.name.contains(methodPattern)) { crashLabel = graph.name; } if (crashLabel == null) { ResolvedJavaMethod method = graph.method(); MethodFilter filter = MethodFilter.parse(methodPattern); if (filter.matches(method)) { crashLabel = method.format("%H.%n(%p)"); } } if (crashLabel != null) { String crashMessage = "Forced crash after compiling " + crashLabel; notifyCrash(crashMessage); if (permanentBailout) { throw new PermanentBailoutException(crashMessage); } if (bailout) { throw new RetryableBailoutException(crashMessage); } throw new RuntimeException(crashMessage); } } }
Substituted by com.oracle.svm.graal.hotspot.libgraal. Target_org_graalvm_compiler_core_GraalCompiler to optionally test routing fatal error handling from libgraal to HotSpot.
/** * Substituted by {@code com.oracle.svm.graal.hotspot.libgraal. * Target_org_graalvm_compiler_core_GraalCompiler} to optionally test routing fatal error * handling from libgraal to HotSpot. */
@SuppressWarnings("unused") private static void notifyCrash(String crashMessage) { }
Builds the graph, optimizes it.
/** * Builds the graph, optimizes it. */
@SuppressWarnings("try") public static void emitFrontEnd(Providers providers, TargetProvider target, StructuredGraph graph, PhaseSuite<HighTierContext> graphBuilderSuite, OptimisticOptimizations optimisticOpts, ProfilingInfo profilingInfo, Suites suites) { DebugContext debug = graph.getDebug(); try (DebugContext.Scope s = debug.scope("FrontEnd"); DebugCloseable a = FrontEnd.start(debug)) { HighTierContext highTierContext = new HighTierContext(providers, graphBuilderSuite, optimisticOpts); if (graph.start().next() == null) { try (CompilerPhaseScope cps = debug.enterCompilerPhase("Parsing")) { graphBuilderSuite.apply(graph, highTierContext); new DeadCodeEliminationPhase(DeadCodeEliminationPhase.Optionality.Optional).apply(graph); debug.dump(DebugContext.BASIC_LEVEL, graph, "After parsing"); } } else { debug.dump(DebugContext.INFO_LEVEL, graph, "initial state"); } suites.getHighTier().apply(graph, highTierContext); graph.maybeCompress(); debug.dump(DebugContext.BASIC_LEVEL, graph, "After high tier"); MidTierContext midTierContext = new MidTierContext(providers, target, optimisticOpts, profilingInfo); suites.getMidTier().apply(graph, midTierContext); graph.maybeCompress(); debug.dump(DebugContext.BASIC_LEVEL, graph, "After mid tier"); LowTierContext lowTierContext = new LowTierContext(providers, target); suites.getLowTier().apply(graph, lowTierContext); debug.dump(DebugContext.BASIC_LEVEL, graph, "After low tier"); debug.dump(DebugContext.BASIC_LEVEL, graph.getLastSchedule(), "Final HIR schedule"); graph.logInliningTree(); } catch (Throwable e) { throw debug.handle(e); } finally { graph.checkCancellation(); } } protected static <T extends CompilationResult> String getCompilationUnitName(StructuredGraph graph, T compilationResult) { if (compilationResult != null && compilationResult.getName() != null) { return compilationResult.getName(); } ResolvedJavaMethod method = graph.method(); if (method == null) { return "<unknown>"; } return method.format("%H.%n(%p)"); } }