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

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp259 MachineInstr *OtherMI = I; local
261 if (OtherMI->isDebugValue())
266 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) {
267 MachineOperand &MO = OtherMI->getOperand(i);
276 if (MO.isKill() || (LIS && isPlainlyKilled(OtherMI, MOReg, LIS))) {
277 if (OtherMI == KillMI && MOReg == SavedReg)
832 MachineInstr *OtherMI = I; local
834 if (OtherMI->isDebugValue())
839 if (OtherMI->hasUnmodeledSideEffects() || OtherMI
1013 MachineInstr *OtherMI = I; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPDirectives.cpp1943 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) {
1949 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused())
1950 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
1954 if (OtherMI->isBuiltinMacro())
1958 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() &&
1959 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) {
1962 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition);
1965 if (OtherMI->isWarnIfUnused())
1966 WarnUnusedMacroLocs.erase(OtherMI
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h213 /// Copy all the implicit operands from OtherMI onto this one.
214 const MachineInstrBuilder &copyImplicitOps(const MachineInstr *OtherMI) { argument
215 MI->copyImplicitOps(*MF, OtherMI);

Completed in 175 milliseconds