use of org.graalvm.compiler.lir.framemap.FrameMap in project graal by oracle.
the class Instance method run.
public void run(LIRGenerationResult lirGenRes) {
LIR ir = lirGenRes.getLIR();
DebugContext debug = ir.getDebug();
FrameMap frameMap = lirGenRes.getFrameMap();
for (AbstractBlockBase<?> block : ir.linearScanOrder()) {
for (LIRInstruction op : ir.getLIRforBlock(block)) {
op.forEachState((instruction, state) -> doState(debug, frameMap, instruction, state));
}
}
}
Aggregations