Home
last modified time | relevance | path

Searched refs:PredSU (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGRRList.cpp366 SUnit *PredSU = PredEdge->getSUnit(); in ReleasePred() local
369 if (PredSU->NumSuccsLeft == 0) { in ReleasePred()
371 PredSU->dump(this); in ReleasePred()
376 --PredSU->NumSuccsLeft; in ReleasePred()
381 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency()); in ReleasePred()
386 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) { in ReleasePred()
387 PredSU->isAvailable = true; in ReleasePred()
389 unsigned Height = PredSU->getHeight(); in ReleasePred()
393 if (isReady(PredSU)) { in ReleasePred()
394 AvailableQueue->push(PredSU); in ReleasePred()
[all …]
DScheduleDAGFast.cpp141 SUnit *PredSU = PredEdge->getSUnit(); in ReleasePred() local
144 if (PredSU->NumSuccsLeft == 0) { in ReleasePred()
146 PredSU->dump(this); in ReleasePred()
151 --PredSU->NumSuccsLeft; in ReleasePred()
155 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) { in ReleasePred()
156 PredSU->isAvailable = true; in ReleasePred()
157 AvailableQueue.push(PredSU); in ReleasePred()
DResourcePriorityQueue.cpp77 SUnit *PredSU = I->getSUnit(); in numberRCValPredInSU() local
78 const SDNode *ScegN = PredSU->getNode(); in numberRCValPredInSU()
/external/llvm/lib/CodeGen/
DScheduleDAG.cpp76 SUnit *PredSU = I->getSUnit(); in addPred() local
80 for (SmallVectorImpl<SDep>::iterator II = PredSU->Succs.begin(), in addPred()
81 EE = PredSU->Succs.end(); II != EE; ++II) { in addPred()
203 SUnit *PredSU = I->getSUnit(); in setHeightDirty() local
204 if (PredSU->isHeightCurrent) in setHeightDirty()
205 WorkList.push_back(PredSU); in setHeightDirty()
244 SUnit *PredSU = I->getSUnit(); in ComputeDepth() local
245 if (PredSU->isDepthCurrent) in ComputeDepth()
247 PredSU->Depth + I->getLatency()); in ComputeDepth()
250 WorkList.push_back(PredSU); in ComputeDepth()
DMachineScheduler.cpp521 bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) { in canAddEdge() argument
522 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU); in canAddEdge()
582 SUnit *PredSU = PredEdge->getSUnit(); in releasePred() local
585 --PredSU->WeakSuccsLeft; in releasePred()
587 NextClusterPred = PredSU; in releasePred()
591 if (PredSU->NumSuccsLeft == 0) { in releasePred()
593 PredSU->dump(this); in releasePred()
600 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency()) in releasePred()
601 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency(); in releasePred()
603 --PredSU->NumSuccsLeft; in releasePred()
[all …]
DCriticalAntiDepBreaker.cpp135 const SUnit *PredSU = P->getSUnit(); in CriticalPathStep() local
137 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency; in CriticalPathStep()
DScheduleDAGInstrs.cpp1523 const SUnit *PredSU = PredDep.getSUnit(); in joinPredSubtree() local
1524 unsigned PredNum = PredSU->NodeNum; in joinPredSubtree()
1531 for (SUnit::const_succ_iterator SI = PredSU->Succs.begin(), in joinPredSubtree()
1532 SE = PredSU->Succs.end(); SI != SE; ++SI) { in joinPredSubtree()
DAggressiveAntiDepBreaker.cpp273 const SUnit *PredSU = P->getSUnit(); in CriticalPathStep() local
275 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency; in CriticalPathStep()
/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h288 bool canAddEdge(SUnit *SuccSU, SUnit *PredSU);