use of org.jikesrvm.compilers.opt.mir2mc.ConvertMIRtoMC in project JikesRVM by JikesRVM.
the class MIROptimizationPlanner method MIR2MC.
/**
* This method defines the optimization plan elements that
* are to be performed to convert PowerPC MIR into
* ready-to-execute machinecode (and associated mapping tables).
*
* @param p the plan under construction
*/
private static void MIR2MC(ArrayList<OptimizationPlanElement> p) {
// MANDATORY: Final assembly
addComponent(p, new IRPrinter("Final MIR") {
@Override
public boolean shouldPerform(OptOptions options) {
return options.PRINT_FINAL_MIR;
}
});
addComponent(p, new ConvertMIRtoMC());
}
Aggregations