HomeSort by relevance Sort by last modified time
    Searched refs:LastMI (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.cpp 44 if (LastMI && (MCID.TSFlags & ARMII::DomainMask) != ARMII::DomainGeneral) {
45 MachineInstr *DefMI = LastMI;
46 const MCInstrDesc &LastMCID = LastMI->getDesc();
52 if (!LastMI->isBarrier() &&
54 !(TII.getSubtarget().isLikeA9() && LastMI->mayLoadOrStore()) &&
56 MachineBasicBlock::iterator I = LastMI;
57 if (I != LastMI->getParent()->begin()) {
78 LastMI = nullptr;
86 LastMI = MI;
96 LastMI = nullptr
    [all...]
ARMHazardRecognizer.h 31 MachineInstr *LastMI;
38 LastMI(nullptr) {}
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineInstrBundle.cpp 107 /// a sequence of instructions starting from FirstMI to LastMI (exclusive).
114 MachineBasicBlock::instr_iterator LastMI) {
115 assert(FirstMI != LastMI && "Empty bundle?");
116 MIBundleBuilder Bundle(MBB, FirstMI, LastMI);
135 for (; FirstMI != LastMI; ++FirstMI) {
226 MachineBasicBlock::instr_iterator LastMI = std::next(FirstMI);
227 while (LastMI != E && LastMI->isInsideBundle())
228 ++LastMI;
229 finalizeBundle(MBB, FirstMI, LastMI);
    [all...]
RegisterCoalescer.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DbgValueHistoryCalculator.cpp 148 auto LastMI = MBB.getLastNonDebugInstr();
149 if (LastMI == MBB.end() || !LastMI->isReturn())
153 DebugLoc LastLoc = LastMI->getDebugLoc();
154 auto Res = LastMI;
155 for (MachineBasicBlock::const_reverse_iterator I(std::next(LastMI)),
AsmPrinterInlineAsm.cpp 519 if (LastMI != MI || LastFn != getFunctionNumber()) {
521 LastMI = MI;
AsmPrinter.cpp 105 LastMI(nullptr), LastFn(0), Counter(~0U) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstrBundle.h 23 /// a sequence of instructions starting from FirstMI to LastMI (exclusive).
30 MachineBasicBlock::instr_iterator LastMI);
AsmPrinter.h 512 mutable const MachineInstr *LastMI;

Completed in 96 milliseconds