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.
587 SUnit *ExitSU, unsigned *Depth,
589 if (!SUa || !SUb || SUb == ExitSU)
623 iterateChainSucc(AA, MFI, DL, SUa, I->getSUnit(), ExitSU, Depth, Visited)
    [all...]
ScheduleDAG.cpp 41 MRI(mf.getRegInfo()), EntrySU(), ExitSU() {
53 ExitSU = SUnit();
469 if (ExitSU)
470 WorkList.push_back(ExitSU);
557 // Edges to non-SUnits are allowed but ignored (e.g. ExitSU).
639 ScheduleDAGTopologicalSort(std::vector<SUnit> &sunits, SUnit *exitsu)
640 : SUnits(sunits), ExitSU(exitsu) {}
MachineScheduler.cpp 519 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
523 if (SuccSU != &ExitSU) {
562 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
756 ExitSU.biasCriticalPath();
765 // Release all DAG roots for scheduling, not including EntrySU/ExitSU.
781 releasePredecessors(&ExitSU);
    [all...]
PostRASchedulerList.cpp 464 // to be scheduled. Ignore the special ExitSU node.
465 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 567 SUnit ExitSU; // Special node for the region exit.
694 SUnit *ExitSU;
716 ScheduleDAGTopologicalSort(std::vector<SUnit> &SUnits, SUnit *ExitSU);
MachineScheduler.h 186 /// that depend on EntrySU or ExitSU).
254 AA(C->AA), SchedImpl(std::move(S)), Topo(SUnits, &ExitSU), CurrentTop(),
320 /// Release ExitSU predecessors and setup scheduler queues.
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 134 // to be scheduled. Ignore the special ExitSU node.
135 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) {
ScheduleDAGFast.cpp 537 ReleasePredecessors(&ExitSU, CurCycle);
ScheduleDAGRRList.cpp     [all...]

Completed in 1708 milliseconds