package org.graalvm.compiler.hotspot;
import static jdk.vm.ci.common.InitTimer.timer;
import static jdk.vm.ci.hotspot.HotSpotJVMCICompilerFactory.CompilationLevelAdjustment.None;
import static jdk.vm.ci.services.Services.IS_BUILDING_NATIVE_IMAGE;
import static jdk.vm.ci.services.Services.IS_IN_NATIVE_IMAGE;
import static org.graalvm.compiler.hotspot.HotSpotGraalOptionValues.GRAAL_OPTION_PROPERTY_PREFIX;
import java.io.PrintStream;
import org.graalvm.compiler.api.runtime.GraalRuntime;
import org.graalvm.compiler.debug.MethodFilter;
import org.graalvm.compiler.options.Option;
import org.graalvm.compiler.options.OptionKey;
import org.graalvm.compiler.options.OptionType;
import org.graalvm.compiler.options.OptionValues;
import org.graalvm.compiler.options.OptionsParser;
import org.graalvm.compiler.phases.tiers.CompilerConfiguration;
import jdk.vm.ci.common.InitTimer;
import jdk.vm.ci.hotspot.HotSpotJVMCICompilerFactory;
import jdk.vm.ci.hotspot.HotSpotJVMCIRuntime;
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
import jdk.vm.ci.meta.Signature;
import jdk.vm.ci.runtime.JVMCIRuntime;
import jdk.vm.ci.services.Services;
public final class HotSpotGraalCompilerFactory extends HotSpotJVMCICompilerFactory {
private static MethodFilter graalCompileOnlyFilter;
private static boolean compileGraalWithC1Only;
private IsGraalPredicate isGraalPredicate;
private final HotSpotGraalJVMCIServiceLocator locator;
HotSpotGraalCompilerFactory(HotSpotGraalJVMCIServiceLocator locator) {
this.locator = locator;
}
@Override
public String getCompilerName() {
return "graal";
}
private OptionValues options;
@Override
public void onSelection() {
JVMCIVersionCheck.check(Services.getSavedProperties(), false);
assert options == null : "cannot select " + getClass() + " service more than once";
options = HotSpotGraalOptionValues.defaultOptions();
initializeGraalCompilePolicyFields(options);
isGraalPredicate = compileGraalWithC1Only ? new IsGraalPredicate() : null;
if (isGraalPredicate != null && isGraalPredicate.getCompilationLevelAdjustment() != None) {
adjustCompilationLevelInternal(Object.class, CompilationLevel.FullOptimization);
adjustCompilationLevelInternal(Object.class, CompilationLevel.Simple);
}
if (IS_BUILDING_NATIVE_IMAGE) {
Options.CompileGraalWithC1Only.getName();
}
}
private static void initializeGraalCompilePolicyFields(OptionValues options) {
compileGraalWithC1Only = Options.CompileGraalWithC1Only.getValue(options) && !IS_IN_NATIVE_IMAGE;
String optionValue = Options.GraalCompileOnly.getValue(options);
if (optionValue != null) {
MethodFilter filter = MethodFilter.parse(optionValue);
if (filter.matchesNothing()) {
filter = null;
}
graalCompileOnlyFilter = filter;
}
}
@Override
public void printProperties(PrintStream out) {
out.println("[Graal properties]");
options.printHelp(OptionsParser.getOptionsLoader(), out, GRAAL_OPTION_PROPERTY_PREFIX);
}
static class Options {
@Option(help = "In tiered mode compile Graal and JVMCI using optimized first tier code.", type = OptionType.Expert)
public static final OptionKey<Boolean> CompileGraalWithC1Only = new OptionKey<>(true);
@Option(help = "A filter applied to a method the VM has selected for compilation by Graal. " +
"A method not matching the filter is redirected to a lower tier compiler. " +
"The filter format is the same as for the MethodFilter option.", type = OptionType.Expert)
public static final OptionKey<String> GraalCompileOnly = new OptionKey<>(null);
}
@Override
public HotSpotGraalCompiler createCompiler(JVMCIRuntime runtime) {
CompilerConfigurationFactory factory = CompilerConfigurationFactory.selectFactory(null, options);
if (isGraalPredicate != null) {
isGraalPredicate.onCompilerConfigurationFactorySelection((HotSpotJVMCIRuntime) runtime, factory);
}
HotSpotGraalCompiler compiler = createCompiler("VM", runtime, options, factory);
locator.onCompilerCreation(compiler);
return compiler;
}
@SuppressWarnings("try")
public static HotSpotGraalCompiler createCompiler(String runtimeNameQualifier, JVMCIRuntime runtime, OptionValues options, CompilerConfigurationFactory compilerConfigurationFactory) {
HotSpotJVMCIRuntime jvmciRuntime = (HotSpotJVMCIRuntime) runtime;
try (InitTimer t = timer("HotSpotGraalRuntime.<init>")) {
HotSpotGraalRuntime graalRuntime = new HotSpotGraalRuntime(runtimeNameQualifier, jvmciRuntime, compilerConfigurationFactory, options);
return new HotSpotGraalCompiler(jvmciRuntime, graalRuntime, graalRuntime.getOptions());
}
}
@Override
public CompilationLevelAdjustment getCompilationLevelAdjustment() {
return isGraalPredicate != null ? isGraalPredicate.getCompilationLevelAdjustment() : None;
}
@Override
public CompilationLevel adjustCompilationLevel(Object declaringClassObject, String name, String signature, boolean isOsr, CompilationLevel level) {
Class<?> declaringClass = (Class<?>) declaringClassObject;
return adjustCompilationLevelInternal(declaringClass, level);
}
static {
assert jdk.vm.ci.services.Services.class.getName().equals("jdk.vm.ci.services.Services");
assert HotSpotGraalCompilerFactory.class.getName().equals("org.graalvm.compiler.hotspot.HotSpotGraalCompilerFactory");
}
private CompilationLevel adjustCompilationLevelInternal(Class<?> declaringClass, CompilationLevel level) {
assert isGraalPredicate != null;
if (level.ordinal() > CompilationLevel.Simple.ordinal()) {
if (isGraalPredicate.apply(declaringClass)) {
return CompilationLevel.Simple;
}
}
return level;
}
static boolean shouldExclude(HotSpotResolvedJavaMethod method) {
if (graalCompileOnlyFilter != null) {
String javaClassName = method.getDeclaringClass().toJavaName();
String name = method.getName();
Signature signature = method.getSignature();
if (graalCompileOnlyFilter.matches(javaClassName, name, signature)) {
return false;
}
return true;
}
return false;
}
}