Lines Matching defs:OutMI
43 static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI);
167 MCInst &OutMI) const {
168 OutMI.setOpcode(MI->getOpcode());
285 OutMI.addOperand(MCOp);
289 removeRegisterOperands(MI, OutMI);
291 OutMI.insert(OutMI.begin(), MCOperand::createImm(MI->getNumExplicitDefs()));
294 static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI) {
312 auto RegOpcode = OutMI.getOpcode();
315 OutMI.setOpcode(StackOpcode);
318 for (auto I = OutMI.getNumOperands(); I; --I) {
319 auto &MO = OutMI.getOperand(I - 1);
321 OutMI.erase(&MO);