use of com.oracle.svm.graal.isolated.IsolatedSpeculationLog in project graal by oracle.
the class IsolatedCompilableTruffleAST method getCompilationSpeculationLog.
@Override
public SpeculationLog getCompilationSpeculationLog() {
if (cachedSpeculationLog == null) {
ClientHandle<SpeculationLog> logHandle = getCompilationSpeculationLog0(IsolatedCompileContext.get().getClient(), handle);
cachedSpeculationLog = new IsolatedSpeculationLog(logHandle);
}
return cachedSpeculationLog;
}
Aggregations