Home
last modified time | relevance | path

Searched refs:LastMI (Results 1 – 8 of 8) 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()
48 if (!LastMI->isBarrier() && in getHazardType()
50 !(STI.isCortexA9() && (LastMI->mayLoad() || LastMI->mayStore())) && in getHazardType()
52 MachineBasicBlock::iterator I = LastMI; in getHazardType()
53 if (I != LastMI->getParent()->begin()) { in getHazardType()
74 LastMI = 0; in Reset()
82 LastMI = MI; in EmitInstruction()
92 LastMI = 0; in AdvanceCycle()
DARMHazardRecognizer.h35 MachineInstr *LastMI; variable
45 TRI(tri), STI(sti), LastMI(0) {} in ARMHazardRecognizer()
/external/llvm/lib/CodeGen/
DMachineInstrBundle.cpp102 MachineBasicBlock::instr_iterator LastMI) { in finalizeBundle() argument
103 assert(FirstMI != LastMI && "Empty bundle?"); in finalizeBundle()
121 for (; FirstMI != LastMI; ++FirstMI) { in finalizeBundle()
213 MachineBasicBlock::instr_iterator LastMI = llvm::next(FirstMI); in finalizeBundle() local
214 while (LastMI != E && LastMI->isInsideBundle()) in finalizeBundle()
215 ++LastMI; in finalizeBundle()
216 finalizeBundle(MBB, FirstMI, LastMI); in finalizeBundle()
217 return LastMI; in finalizeBundle()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinterInlineAsm.cpp397 if (LastMI != MI || LastFn != getFunctionNumber()) { in PrintSpecial()
399 LastMI = MI; in PrintSpecial()
DDwarfDebug.cpp1282 MachineBasicBlock::const_iterator LastMI = in beginFunction() local
1284 if (LastMI == PrevMBB->end()) { in beginFunction()
1292 History.push_back(LastMI); in beginFunction()
1355 MachineBasicBlock::const_iterator LastMI = in beginFunction() local
1357 if (LastMI == PrevMBB->end()) in beginFunction()
1362 History.push_back(LastMI); in beginFunction()
DAsmPrinter.cpp104 LastMI(0), LastFn(0), Counter(~0U), SetCounter(0) { in AsmPrinter()
666 const MachineInstr *LastMI = 0; in EmitFunctionBody() local
673 LastMI = II; in EmitFunctionBody()
738 bool RequiresNoop = LastMI && LastMI->isPrologLabel(); in EmitFunctionBody()
/external/llvm/include/llvm/CodeGen/
DMachineInstrBundle.h30 MachineBasicBlock::instr_iterator LastMI);
DAsmPrinter.h450 mutable const MachineInstr *LastMI;