Searched defs:PredSU (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp166 const SUnit *PredSU = P->getSUnit(); local
168 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
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);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DResourcePriorityQueue.cpp78 SUnit *PredSU = I->getSUnit(); local
79 const SDNode *ScegN = PredSU->getNode();
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 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...]

Completed in 422 milliseconds