Searched refs:PredSU (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp345 SUnit *PredSU = PredEdge->getSUnit(); local
348 if (PredSU->NumSuccsLeft == 0) {
350 PredSU->dump(this);
355 --PredSU->NumSuccsLeft;
360 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
365 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
366 PredSU->isAvailable = true;
368 unsigned Height = PredSU->getHeight();
372 if (isReady(PredSU)) {
767 SUnit *PredSU = PredEdge->getSUnit(); local
[all...]
H A DScheduleDAGFast.cpp135 SUnit *PredSU = PredEdge->getSUnit(); local
138 if (PredSU->NumSuccsLeft == 0) {
140 PredSU->dump(this);
145 --PredSU->NumSuccsLeft;
149 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
150 PredSU->isAvailable = true;
151 AvailableQueue.push(PredSU);
H A DResourcePriorityQueue.cpp78 SUnit *PredSU = I->getSUnit(); local
79 const SDNode *ScegN = PredSU->getNode();
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp349 SUnit *PredSU = PredEdge->getSUnit(); local
352 if (PredSU->NumSuccsLeft == 0) {
354 PredSU->dump(this);
359 --PredSU->NumSuccsLeft;
360 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
361 SchedImpl->releaseBottomNode(PredSU);
H A DScheduleDAG.cpp170 SUnit *PredSU = I->getSUnit();
171 if (PredSU->isHeightCurrent)
172 WorkList.push_back(PredSU);
211 SUnit *PredSU = I->getSUnit();
212 if (PredSU->isDepthCurrent)
214 PredSU->Depth + I->getLatency());
217 WorkList.push_back(PredSU);
H A DCriticalAntiDepBreaker.cpp166 const SUnit *PredSU = P->getSUnit(); local
168 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
H A DAggressiveAntiDepBreaker.cpp301 const SUnit *PredSU = P->getSUnit();
303 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;

Completed in 3033 milliseconds