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

  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 118 MachineBasicBlock::iterator RegionBegin;
123 /// Instructions in this region (distance(RegionBegin, RegionEnd)).
186 MachineBasicBlock::iterator begin() const { return RegionBegin; }
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 384 AntiDepBreak->BreakAntiDependencies(SUnits, RegionBegin, RegionEnd,
654 RegionBegin = RegionEnd;
671 RegionBegin = std::prev(RegionEnd);
MachineScheduler.cpp 312 /// scheduler must update the RegionBegin and RegionEnd positions cached by
421 // RegionBegin). If the current block has no terminator then RegionEnd ==
634 // Advance RegionBegin if the first instruction moves down.
635 if (&*RegionBegin == MI)
636 ++RegionBegin;
645 // Recede RegionBegin if an instruction moves above the first.
646 if (RegionBegin == InsertPos)
647 RegionBegin = MI;
796 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
815 BB->splice(RegionBegin, BB, FirstDbgValue)
    [all...]
ScheduleDAGInstrs.cpp 194 RegionBegin = begin;
755 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
    [all...]

Completed in 33 milliseconds