Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp263 for (MachineInstr &OtherMI : llvm::make_range(std::next(OldPos), KillPos)) { in sink3AddrInstruction()
265 if (OtherMI.isDebugValue()) in sink3AddrInstruction()
270 for (unsigned i = 0, e = OtherMI.getNumOperands(); i != e; ++i) { in sink3AddrInstruction()
271 MachineOperand &MO = OtherMI.getOperand(i); in sink3AddrInstruction()
280 if (MO.isKill() || (LIS && isPlainlyKilled(&OtherMI, MOReg, LIS))) { in sink3AddrInstruction()
281 if (&OtherMI == KillMI && MOReg == SavedReg) in sink3AddrInstruction()
900 for (MachineInstr &OtherMI : llvm::make_range(End, KillPos)) { in rescheduleMIBelowKill()
902 if (OtherMI.isDebugValue()) in rescheduleMIBelowKill()
907 if (OtherMI.hasUnmodeledSideEffects() || OtherMI.isCall() || in rescheduleMIBelowKill()
908 OtherMI.isBranch() || OtherMI.isTerminator()) in rescheduleMIBelowKill()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DTwoAddressInstructionPass.cpp292 for (MachineInstr &OtherMI : make_range(std::next(OldPos), KillPos)) { in sink3AddrInstruction()
294 if (OtherMI.isDebugInstr()) in sink3AddrInstruction()
299 for (unsigned i = 0, e = OtherMI.getNumOperands(); i != e; ++i) { in sink3AddrInstruction()
300 MachineOperand &MO = OtherMI.getOperand(i); in sink3AddrInstruction()
309 if (MO.isKill() || (LIS && isPlainlyKilled(&OtherMI, MOReg, LIS))) { in sink3AddrInstruction()
310 if (&OtherMI == KillMI && MOReg == SavedReg) in sink3AddrInstruction()
942 for (MachineInstr &OtherMI : make_range(End, KillPos)) { in rescheduleMIBelowKill()
944 if (OtherMI.isDebugInstr()) in rescheduleMIBelowKill()
949 if (OtherMI.hasUnmodeledSideEffects() || OtherMI.isCall() || in rescheduleMIBelowKill()
950 OtherMI.isBranch() || OtherMI.isTerminator()) in rescheduleMIBelowKill()
[all …]
/external/clang/lib/Lex/
DPPDirectives.cpp2470 if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) { in HandleDefineDirective() local
2481 SourceMgr.getFileID(OtherMI->getDefinitionLoc()) in HandleDefineDirective()
2487 !MI->isIdenticalTo(*OtherMI, *this, in HandleDefineDirective()
2491 assert(!OtherMI->isWarnIfUnused()); in HandleDefineDirective()
2500 if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused()) in HandleDefineDirective()
2501 Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used); in HandleDefineDirective()
2505 if (OtherMI->isBuiltinMacro()) in HandleDefineDirective()
2509 else if (!OtherMI->isAllowRedefinitionsWithoutWarning() && in HandleDefineDirective()
2510 !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) { in HandleDefineDirective()
2513 Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition); in HandleDefineDirective()
[all …]
DPPMacroExpansion.cpp500 M.forAllDefinitions([&](const MacroInfo *OtherMI) { in HandleMacroExpandedIdentifier() argument
501 if (OtherMI != MI) in HandleMacroExpandedIdentifier()
502 Diag(OtherMI->getDefinitionLoc(), diag::note_pp_ambiguous_macro_other) in HandleMacroExpandedIdentifier()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DTwoAddressInstructionPass.cpp243 MachineInstr *OtherMI = I; in Sink3AddrInstruction() local
245 if (OtherMI->isDebugValue()) in Sink3AddrInstruction()
250 for (unsigned i = 0, e = OtherMI->getNumOperands(); i != e; ++i) { in Sink3AddrInstruction()
251 MachineOperand &MO = OtherMI->getOperand(i); in Sink3AddrInstruction()
261 if (OtherMI == KillMI && MOReg == SavedReg) in Sink3AddrInstruction()
DRegisterCoalescer.cpp1393 const MachineInstr *OtherMI = Other->getCopy(); in RegistersDefinedFromSameValue() local
1395 if (!OtherMI->isFullCopy()) in RegistersDefinedFromSameValue()
1398 unsigned OtherDst = OtherMI->getOperand(0).getReg(); in RegistersDefinedFromSameValue()
1399 unsigned OtherSrc = OtherMI->getOperand(1).getReg(); in RegistersDefinedFromSameValue()
/external/llvm/include/llvm/CodeGen/
DMachineInstrBuilder.h235 copyImplicitOps(const MachineInstr &OtherMI) const { in copyImplicitOps() argument
236 MI->copyImplicitOps(*MF, OtherMI); in copyImplicitOps()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DMachineInstrBuilder.h286 copyImplicitOps(const MachineInstr &OtherMI) const { in copyImplicitOps() argument
287 MI->copyImplicitOps(*MF, OtherMI); in copyImplicitOps()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
DCore.cpp1016 auto &OtherMI = OtherVSO.MaterializingInfos[OtherSymbol]; in addDependencies() local
1018 if (OtherMI.IsFinalized) in addDependencies()
1019 transferFinalizedNodeDependencies(MI, Name, OtherMI); in addDependencies()
1021 OtherMI.Dependants[this].insert(Name); in addDependencies()
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/X86/
DX86GenGlobalISel.inc2815 GIM_CheckIsSameOperand, /*MI*/2, /*OpIdx*/1, /*OtherMI*/1, /*OtherOpIdx*/1,
2842 GIM_CheckIsSameOperand, /*MI*/2, /*OpIdx*/1, /*OtherMI*/1, /*OtherOpIdx*/1,
2869 GIM_CheckIsSameOperand, /*MI*/2, /*OpIdx*/1, /*OtherMI*/1, /*OtherOpIdx*/1,
2896 GIM_CheckIsSameOperand, /*MI*/2, /*OpIdx*/1, /*OtherMI*/1, /*OtherOpIdx*/1,
2919 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/2, /*OtherMI*/1, /*OtherOpIdx*/1,
2940 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/2, /*OtherMI*/1, /*OtherOpIdx*/1,
2961 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/2, /*OtherMI*/1, /*OtherOpIdx*/2,
2981 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/1, /*OtherMI*/0, /*OtherOpIdx*/1,
3002 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/1, /*OtherMI*/0, /*OtherOpIdx*/1,
3024 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/2, /*OtherMI*/0, /*OtherOpIdx*/1,
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/TableGen/
DGlobalISelEmitter.td1036 // NOOPT-NEXT: GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/2, /*OtherMI*/0, /*OtherOpIdx*/1,
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/ARM/
DARMGenGlobalISel.inc5045 GIM_CheckIsSameOperand, /*MI*/4, /*OpIdx*/1, /*OtherMI*/2, /*OtherOpIdx*/1,
5085 GIM_CheckIsSameOperand, /*MI*/4, /*OpIdx*/1, /*OtherMI*/2, /*OtherOpIdx*/1,
5125 GIM_CheckIsSameOperand, /*MI*/4, /*OpIdx*/1, /*OtherMI*/2, /*OtherOpIdx*/1,
5165 GIM_CheckIsSameOperand, /*MI*/4, /*OpIdx*/1, /*OtherMI*/2, /*OtherOpIdx*/1,
10890 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/3, /*OtherMI*/1, /*OtherOpIdx*/2,
10919 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/3, /*OtherMI*/1, /*OtherOpIdx*/2,
11305 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/3, /*OtherMI*/1, /*OtherOpIdx*/2,
11334 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/3, /*OtherMI*/1, /*OtherOpIdx*/2,
11363 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/3, /*OtherMI*/1, /*OtherOpIdx*/2,
11392 GIM_CheckIsSameOperand, /*MI*/1, /*OpIdx*/3, /*OtherMI*/1, /*OtherOpIdx*/2,
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/Mips/
DMipsGenGlobalISel.inc13847 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/0, /*OtherMI*/0, /*OtherOpIdx*/2,
13869 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/0, /*OtherMI*/0, /*OtherOpIdx*/1,
13909 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/0, /*OtherMI*/0, /*OtherOpIdx*/2,
13931 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/0, /*OtherMI*/0, /*OtherOpIdx*/1,
14137 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/0, /*OtherMI*/0, /*OtherOpIdx*/1,
14177 GIM_CheckIsSameOperand, /*MI*/0, /*OpIdx*/0, /*OtherMI*/0, /*OtherOpIdx*/1,