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

  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 215 ExitSU.setInstr(ExitMI);
228 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
232 addVRegUseDeps(&ExitSU, i);
245 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
312 if (DefSU == &ExitSU)
398 if (DefSU != SU && DefSU != &ExitSU) {
413 /// TODO: Handle ExitSU "uses" properly.
577 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth,
579 if (!SUa || !SUb || SUb == ExitSU)
613 iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited)
    [all...]
ScheduleDAG.cpp 42 EntrySU(), ExitSU() {
54 ExitSU = SUnit();
470 if (ExitSU)
471 WorkList.push_back(ExitSU);
558 // Edges to non-SUnits are allowed but ignored (e.g. ExitSU).
640 ScheduleDAGTopologicalSort(std::vector<SUnit> &sunits, SUnit *exitsu)
641 : SUnits(sunits), ExitSU(exitsu) {}
MachineScheduler.cpp 500 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
504 if (SuccSU != &ExitSU) {
543 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
737 ExitSU.biasCriticalPath();
746 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
762 releasePredecessors(&ExitSU);
    [all...]
PostRASchedulerList.cpp 450 // to be scheduled. Ignore the special ExitSU node.
451 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 561 SUnit ExitSU; // Special node for the region exit.
694 SUnit *ExitSU;
716 ScheduleDAGTopologicalSort(std::vector<SUnit> &SUnits, SUnit *ExitSU);
MachineScheduler.h 187 /// that depend on EntrySU or ExitSU).
255 AA(C->AA), SchedImpl(std::move(S)), Topo(SUnits, &ExitSU), CurrentTop(),
321 /// Release ExitSU predecessors and setup scheduler queues.
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 135 // to be scheduled. Ignore the special ExitSU node.
136 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) {
ScheduleDAGFast.cpp 531 ReleasePredecessors(&ExitSU, CurCycle);
ScheduleDAGRRList.cpp     [all...]

Completed in 60 milliseconds