< prev index next >

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

Print this page

        

*** 366,377 **** final CodeCacheProvider codeCache = jvmciRuntime.getHostJVMCIBackend().getCodeCache(); HotSpotBackend backend = compiler.getGraalRuntime().getHostBackend(); installedCode = null; Object[] context = {new DebugDumpScope(getIdString(), true), codeCache, getMethod(), compResult}; try (DebugContext.Scope s = debug.scope("CodeInstall", context)) { ! installedCode = (HotSpotInstalledCode) backend.createInstalledCode(debug, getRequest().getMethod(), getRequest(), compResult, ! getRequest().getMethod().getSpeculationLog(), null, installAsDefault, context); } catch (Throwable e) { throw debug.handle(e); } } --- 366,383 ---- final CodeCacheProvider codeCache = jvmciRuntime.getHostJVMCIBackend().getCodeCache(); HotSpotBackend backend = compiler.getGraalRuntime().getHostBackend(); installedCode = null; Object[] context = {new DebugDumpScope(getIdString(), true), codeCache, getMethod(), compResult}; try (DebugContext.Scope s = debug.scope("CodeInstall", context)) { ! HotSpotCompilationRequest request = getRequest(); ! installedCode = (HotSpotInstalledCode) backend.createInstalledCode(debug, ! request.getMethod(), ! request, ! compResult, ! null, ! installAsDefault, ! context); } catch (Throwable e) { throw debug.handle(e); } }
< prev index next >