Home
last modified time | relevance | path

Searched refs:LastMI (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/Target/ARM/
DARMHazardRecognizer.cpp44 if (LastMI && (MCID.TSFlags & ARMII::DomainMask) != ARMII::DomainGeneral) { in getHazardType()
45 MachineInstr *DefMI = LastMI; in getHazardType()
46 const MCInstrDesc &LastMCID = LastMI->getDesc(); in getHazardType()
52 if (!LastMI->isBarrier() && in getHazardType()
55 (LastMI->mayLoad() || LastMI->mayStore())) && in getHazardType()
57 MachineBasicBlock::iterator I = LastMI; in getHazardType()
58 if (I != LastMI->getParent()->begin()) { in getHazardType()
79 LastMI = nullptr; in Reset()
87 LastMI = MI; in EmitInstruction()
97 LastMI = nullptr; in AdvanceCycle()
DARMHazardRecognizer.h31 MachineInstr *LastMI; variable
38 LastMI(nullptr) {} in ARMHazardRecognizer()
/external/llvm/lib/CodeGen/
DMachineInstrBundle.cpp103 MachineBasicBlock::instr_iterator LastMI) { in finalizeBundle() argument
104 assert(FirstMI != LastMI && "Empty bundle?"); in finalizeBundle()
105 MIBundleBuilder Bundle(MBB, FirstMI, LastMI); in finalizeBundle()
124 for (; FirstMI != LastMI; ++FirstMI) { in finalizeBundle()
215 MachineBasicBlock::instr_iterator LastMI = std::next(FirstMI); in finalizeBundle() local
216 while (LastMI != E && LastMI->isInsideBundle()) in finalizeBundle()
217 ++LastMI; in finalizeBundle()
218 finalizeBundle(MBB, FirstMI, LastMI); in finalizeBundle()
219 return LastMI; in finalizeBundle()
DRegisterCoalescer.cpp2229 MachineInstr *LastMI = in resolveConflicts() local
2231 assert(LastMI && "Range must end at a proper instruction"); in resolveConflicts()
2240 if (&*MI == LastMI) { in resolveConflicts()
2243 LastMI = Indexes->getInstructionFromIndex(TaintExtent[TaintNum].first); in resolveConflicts()
2244 assert(LastMI && "Range must end at a proper instruction"); in resolveConflicts()
/external/llvm/lib/CodeGen/AsmPrinter/
DDbgValueHistoryCalculator.cpp148 auto LastMI = MBB.getLastNonDebugInstr(); in getFirstEpilogueInst() local
149 if (LastMI == MBB.end() || !LastMI->isReturn()) in getFirstEpilogueInst()
153 DebugLoc LastLoc = LastMI->getDebugLoc(); in getFirstEpilogueInst()
154 auto Res = LastMI; in getFirstEpilogueInst()
155 for (MachineBasicBlock::const_reverse_iterator I(std::next(LastMI)), in getFirstEpilogueInst()
DAsmPrinterInlineAsm.cpp517 if (LastMI != MI || LastFn != getFunctionNumber()) { in PrintSpecial()
519 LastMI = MI; in PrintSpecial()
DAsmPrinter.cpp106 LastMI(nullptr), LastFn(0), Counter(~0U) { in AsmPrinter()
/external/llvm/include/llvm/CodeGen/
DMachineInstrBundle.h30 MachineBasicBlock::instr_iterator LastMI);
DAsmPrinter.h491 mutable const MachineInstr *LastMI;