< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotGraalRuntimeProvider.java

Print this page
rev 52509 : [mq]: graal

*** 22,31 **** --- 22,32 ---- */ package org.graalvm.compiler.hotspot; + import java.io.PrintStream; import java.util.Map; import org.graalvm.compiler.api.runtime.GraalRuntime; import org.graalvm.compiler.core.CompilationWrapper.ExceptionAction; import org.graalvm.compiler.core.common.CompilationIdentifier;
*** 67,78 **** * method should be called on the returned object once the compilation is finished. * * @param compilationOptions the options used to configure the compilation debug context * @param compilationId a system wide unique compilation id * @param compilable the input to the compilation */ ! DebugContext openDebugContext(OptionValues compilationOptions, CompilationIdentifier compilationId, Object compilable, Iterable<DebugHandlersFactory> factories); /** * Gets the option values associated with this runtime. */ OptionValues getOptions(); --- 68,80 ---- * method should be called on the returned object once the compilation is finished. * * @param compilationOptions the options used to configure the compilation debug context * @param compilationId a system wide unique compilation id * @param compilable the input to the compilation + * @param logStream the log stream to use in this context */ ! DebugContext openDebugContext(OptionValues compilationOptions, CompilationIdentifier compilationId, Object compilable, Iterable<DebugHandlersFactory> factories, PrintStream logStream); /** * Gets the option values associated with this runtime. */ OptionValues getOptions();
< prev index next >