Home
last modified time | relevance | path

Searched refs:CurrentTop (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/CodeGen/
DMachineScheduler.cpp665 CurrentTop = CurrentBottom; in checkSchedLimit()
715 if (&*CurrentTop == MI) in schedule()
716 CurrentTop = nextIfDebug(++CurrentTop, CurrentBottom); in schedule()
718 moveInstruction(MI, CurrentTop); in schedule()
722 priorNonDebug(CurrentBottom, CurrentTop); in schedule()
726 if (&*CurrentTop == MI) in schedule()
727 CurrentTop = nextIfDebug(++CurrentTop, priorII); in schedule()
740 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); in schedule()
807 CurrentTop = nextIfDebug(RegionBegin, RegionEnd); in initQueues()
1130 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); in schedule()
[all …]
DSafeStack.cpp483 Value *CurrentTop = DynamicTop ? IRB.CreateLoad(DynamicTop) : StaticTop; in createStackRestorePoints() local
484 IRB.CreateStore(CurrentTop, UnsafeStackPtr); in createStackRestorePoints()
/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h240 MachineBasicBlock::iterator CurrentTop; variable
259 CurrentTop(), CurrentBottom(), NextClusterPred(nullptr), in ScheduleDAGMI()
295 MachineBasicBlock::iterator top() const { return CurrentTop; } in top()
/external/llvm/lib/Target/AMDGPU/
DSIMachineScheduler.h448 MachineBasicBlock::iterator getCurrentTop() { return CurrentTop; }; in getCurrentTop()
DSIMachineScheduler.cpp1881 TopRPTracker.setPos(CurrentTop); in schedule()
1893 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); in schedule()
/external/llvm/test/CodeGen/Hexagon/
Dmisched-top-rptracker-sync.ll6 ; Assertion `TopRPTracker.getPos() == CurrentTop && "out of sync"' failed.
/external/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp197 assert(CurrentTop == CurrentBottom && "Nonempty unscheduled zone."); in schedule()