Home
last modified time | relevance | path

Searched refs:TargetSU (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/
DScheduleDAG.cpp603 bool ScheduleDAGTopologicalSort::WillCreateCycle(SUnit *TargetSU, SUnit *SU) { in WillCreateCycle() argument
605 if (IsReachable(SU, TargetSU)) in WillCreateCycle()
608 I = TargetSU->Preds.begin(), E = TargetSU->Preds.end(); I != E; ++I) in WillCreateCycle()
617 const SUnit *TargetSU) { in IsReachable() argument
621 LowerBound = Node2Index[TargetSU->NodeNum]; in IsReachable()
628 DFS(TargetSU, UpperBound, HasLoop); in IsReachable()
/external/llvm/include/llvm/CodeGen/
DScheduleDAG.h723 bool IsReachable(const SUnit *SU, const SUnit *TargetSU);
726 bool WillCreateCycle(SUnit *TargetSU, SUnit *SU);
/external/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGRRList.cpp187 bool IsReachable(const SUnit *SU, const SUnit *TargetSU) { in IsReachable() argument
188 return Topo.IsReachable(SU, TargetSU); in IsReachable()
193 bool WillCreateCycle(SUnit *SU, SUnit *TargetSU) { in WillCreateCycle() argument
194 return Topo.WillCreateCycle(SU, TargetSU); in WillCreateCycle()