use of org.graalvm.compiler.core.LIRGenerationPhase in project graal by oracle.
the class GraalCompilerState method lirGeneration.
/**
* Executes the {@link LIRGenerationPhase}.
*/
protected final void lirGeneration() {
LIRGenerationContext context = new LIRGenerationContext(lirGenTool, nodeLirGen, request.graph, schedule);
new LIRGenerationPhase().apply(request.backend.getTarget(), lirGenRes, context);
}
Aggregations