use of org.graalvm.compiler.lir.LIRInsertionBuffer in project graal by oracle.
the class PhiResolver method create.
public static PhiResolver create(LIRGeneratorTool gen) {
AbstractBlockBase<?> block = gen.getCurrentBlock();
assert block != null;
ArrayList<LIRInstruction> instructions = gen.getResult().getLIR().getLIRforBlock(block);
return new PhiResolver(gen, new LIRInsertionBuffer(), instructions, instructions.size());
}
Aggregations