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 108 MachineBasicBlock::iterator RegionBegin;
113 /// Instructions in this region (distance(RegionBegin, RegionEnd)).
179 MachineBasicBlock::iterator begin() const { return RegionBegin; }
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 385 AntiDepBreak->BreakAntiDependencies(SUnits, RegionBegin, RegionEnd,
651 RegionBegin = RegionEnd;
668 RegionBegin = std::prev(RegionEnd);
MachineScheduler.cpp 307 /// scheduler must update the RegionBegin and RegionEnd positions cached by
417 // RegionBegin). If the current block has no terminator then RegionEnd ==
631 // Advance RegionBegin if the first instruction moves down.
632 if (&*RegionBegin == MI)
633 ++RegionBegin;
642 // Recede RegionBegin if an instruction moves above the first.
643 if (RegionBegin == InsertPos)
644 RegionBegin = MI;
786 CurrentTop = nextIfDebug(RegionBegin, RegionEnd);
805 BB->splice(RegionBegin, BB, FirstDbgValue)
    [all...]
ScheduleDAGInstrs.cpp 194 RegionBegin = begin;
701 for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) {
798 for (MachineBasicBlock::iterator MII = RegionEnd, MIE = RegionBegin;
    [all...]

Completed in 60 milliseconds