Lines Matching refs:OutMI
43 static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI);
167 MCInst &OutMI) const { in lower()
168 OutMI.setOpcode(MI->getOpcode()); in lower()
263 OutMI.addOperand(MCOp); in lower()
267 removeRegisterOperands(MI, OutMI); in lower()
269 OutMI.insert(OutMI.begin(), MCOperand::createImm(MI->getNumExplicitDefs())); in lower()
272 static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI) { in removeRegisterOperands() argument
290 auto RegOpcode = OutMI.getOpcode(); in removeRegisterOperands()
293 OutMI.setOpcode(StackOpcode); in removeRegisterOperands()
296 for (auto I = OutMI.getNumOperands(); I; --I) { in removeRegisterOperands()
297 auto &MO = OutMI.getOperand(I - 1); in removeRegisterOperands()
299 OutMI.erase(&MO); in removeRegisterOperands()