Searched refs:TargetSU (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | ScheduleDAG.cpp | 602 bool ScheduleDAGTopologicalSort::WillCreateCycle(SUnit *TargetSU, SUnit *SU) { in WillCreateCycle() argument 604 if (IsReachable(SU, TargetSU)) in WillCreateCycle() 607 I = TargetSU->Preds.begin(), E = TargetSU->Preds.end(); I != E; ++I) in WillCreateCycle() 616 const SUnit *TargetSU) { in IsReachable() argument 620 LowerBound = Node2Index[TargetSU->NodeNum]; in IsReachable() 627 DFS(TargetSU, UpperBound, HasLoop); in IsReachable()
|
/external/llvm/include/llvm/CodeGen/ |
D | ScheduleDAG.h | 723 bool IsReachable(const SUnit *SU, const SUnit *TargetSU); 726 bool WillCreateCycle(SUnit *TargetSU, SUnit *SU);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGRRList.cpp | 186 bool IsReachable(const SUnit *SU, const SUnit *TargetSU) { in IsReachable() argument 187 return Topo.IsReachable(SU, TargetSU); in IsReachable() 192 bool WillCreateCycle(SUnit *SU, SUnit *TargetSU) { in WillCreateCycle() argument 193 return Topo.WillCreateCycle(SU, TargetSU); in WillCreateCycle()
|