HomeSort by relevance Sort by last modified time
    Searched refs:PredSU (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 345 SUnit *PredSU = PredEdge->getSUnit();
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)) {
    [all...]
ScheduleDAGFast.cpp 135 SUnit *PredSU = PredEdge->getSUnit();
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);
ResourcePriorityQueue.cpp 78 SUnit *PredSU = I->getSUnit();
79 const SDNode *ScegN = PredSU->getNode();
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 349 SUnit *PredSU = PredEdge->getSUnit();
352 if (PredSU->NumSuccsLeft == 0) {
354 PredSU->dump(this);
359 --PredSU->NumSuccsLeft;
360 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU)
361 SchedImpl->releaseBottomNode(PredSU);
ScheduleDAG.cpp 170 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);
CriticalAntiDepBreaker.cpp 166 const SUnit *PredSU = P->getSUnit();
168 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
AggressiveAntiDepBreaker.cpp 301 const SUnit *PredSU = P->getSUnit();
303 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
    [all...]

Completed in 450 milliseconds