Home
last modified time | relevance | path

Searched refs:OtherMI (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp260 MachineInstr *OtherMI = I; in sink3AddrInstruction() local
262 if (OtherMI->isDebugValue()) in sink3AddrInstruction()
267 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) { in sink3AddrInstruction()
268 MachineOperand &MO = OtherMI->getOperand(i); in sink3AddrInstruction()
277 if (MO.isKill() || (LIS && isPlainlyKilled(OtherMI, MOReg, LIS))) { in sink3AddrInstruction()
278 if (OtherMI == KillMI && MOReg == SavedReg) in sink3AddrInstruction()
831 MachineInstr *OtherMI = I; in rescheduleMIBelowKill() local
833 if (OtherMI->isDebugValue()) in rescheduleMIBelowKill()
838 if (OtherMI->hasUnmodeledSideEffects() || OtherMI->isCall() || in rescheduleMIBelowKill()
839 OtherMI->isBranch() || OtherMI->isTerminator()) in rescheduleMIBelowKill()
[all …]
/external/clang/lib/Lex/
DPPDirectives.cpp2092 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) { in HandleDefineDirective() local
2098 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused()) in HandleDefineDirective()
2099 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used); in HandleDefineDirective()
2103 if (OtherMI->isBuiltinMacro()) in HandleDefineDirective()
2107 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() && in HandleDefineDirective()
2108 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) { in HandleDefineDirective()
2111 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition); in HandleDefineDirective()
2114 if (OtherMI->isWarnIfUnused()) in HandleDefineDirective()
2115 WarnUnusedMacroLocs.erase(OtherMI->getDefinitionLoc()); in HandleDefineDirective()
/external/llvm/include/llvm/CodeGen/
DMachineInstrBuilder.h219 const MachineInstrBuilder &copyImplicitOps(const MachineInstr *OtherMI) { in copyImplicitOps() argument
220 MI->copyImplicitOps(*MF, OtherMI); in copyImplicitOps()