use of org.graalvm.compiler.truffle.common.hotspot.HotSpotTruffleInstalledCode in project graal by oracle.
the class HotSpotTruffleCompilerImpl method afterCodeInstallation.
@Override
protected void afterCodeInstallation(InstalledCode installedCode) {
if (installedCode instanceof HotSpotTruffleInstalledCode) {
HotSpotTruffleCompilerRuntime runtime = (HotSpotTruffleCompilerRuntime) TruffleCompilerRuntime.getRuntime();
HotSpotTruffleInstalledCode hotspotTruffleInstalledCode = (HotSpotTruffleInstalledCode) installedCode;
runtime.onCodeInstallation(hotspotTruffleInstalledCode);
}
}
Aggregations