Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp808 for (MachineInstr &OtherMI : make_range(End, KillPos)) { in rescheduleMIBelowKill()
810 if (OtherMI.isDebugOrPseudoInstr()) in rescheduleMIBelowKill()
815 if (OtherMI.hasUnmodeledSideEffects() || OtherMI.isCall() || in rescheduleMIBelowKill()
816 OtherMI.isBranch() || OtherMI.isTerminator()) in rescheduleMIBelowKill()
819 for (const MachineOperand &MO : OtherMI.operands()) { in rescheduleMIBelowKill()
838 MO.isKill() || (LIS && isPlainlyKilled(&OtherMI, MOReg, LIS)); in rescheduleMIBelowKill()
847 assert((MOReg != Reg || &OtherMI == KillMI) && in rescheduleMIBelowKill()
980 for (MachineInstr &OtherMI : in rescheduleKillAboveMI()
983 if (OtherMI.isDebugOrPseudoInstr()) in rescheduleKillAboveMI()
988 if (OtherMI.hasUnmodeledSideEffects() || OtherMI.isCall() || in rescheduleKillAboveMI()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
DPPDirectives.cpp2887 const MacroInfo *OtherMI = getMacroInfo(MacroNameTok.getIdentifierInfo()); in HandleDefineDirective() local
2888 if (!OtherMI || !MI->isIdenticalTo(*OtherMI, *this, in HandleDefineDirective()
2899 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) { in HandleDefineDirective() local
2910 SourceMgr.getFileID(OtherMI->getDefinitionLoc()) in HandleDefineDirective()
2916 !MI->isIdenticalTo(*OtherMI, *this, in HandleDefineDirective()
2920 assert(!OtherMI->isWarnIfUnused()); in HandleDefineDirective()
2929 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused()) in HandleDefineDirective()
2930 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used); in HandleDefineDirective()
2934 if (OtherMI->isBuiltinMacro()) in HandleDefineDirective()
2938 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() && in HandleDefineDirective()
[all …]
DPPMacroExpansion.cpp555 M.forAllDefinitions([&](const MacroInfo *OtherMI) { in HandleMacroExpandedIdentifier() argument
556 if (OtherMI != MI) in HandleMacroExpandedIdentifier()
557 Diag(OtherMI->getDefinitionLoc(), diag::note_pp_ambiguous_macro_other) in HandleMacroExpandedIdentifier()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DMachineInstrBuilder.h213 const MachineInstrBuilder &cloneMemRefs(const MachineInstr &OtherMI) const { in cloneMemRefs() argument
214 MI->cloneMemRefs(*MF, OtherMI); in cloneMemRefs()
315 copyImplicitOps(const MachineInstr &OtherMI) const { in copyImplicitOps() argument
316 MI->copyImplicitOps(*MF, OtherMI); in copyImplicitOps()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
DCombinerHelper.h162 bool matchCombineDivRem(MachineInstr &MI, MachineInstr *&OtherMI);
163 void applyCombineDivRem(MachineInstr &MI, MachineInstr *&OtherMI);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
DCombinerHelper.cpp944 MachineInstr *&OtherMI) { in matchCombineDivRem() argument
997 OtherMI = &UseMI; in matchCombineDivRem()
1006 MachineInstr *&OtherMI) { in applyCombineDivRem() argument
1008 assert(OtherMI && "OtherMI shouldn't be empty."); in applyCombineDivRem()
1013 DestRemReg = OtherMI->getOperand(0).getReg(); in applyCombineDivRem()
1015 DestDivReg = OtherMI->getOperand(0).getReg(); in applyCombineDivRem()
1024 if (dominates(MI, *OtherMI)) in applyCombineDivRem()
1027 Builder.setInstrAndDebugLoc(*OtherMI); in applyCombineDivRem()
1034 OtherMI->eraseFromParent(); in applyCombineDivRem()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
DCore.cpp876 auto &OtherMI = OtherJITDylib.MaterializingInfos[OtherSymbol]; in addDependencies() local
879 transferEmittedNodeDependencies(MI, Name, OtherMI); in addDependencies()
881 OtherMI.Dependants[this].insert(Name); in addDependencies()