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

  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 76 SUnit *PredSU = I->getSUnit();
80 for (SmallVectorImpl<SDep>::iterator II = PredSU->Succs.begin(),
81 EE = PredSU->Succs.end(); II != EE; ++II) {
203 SUnit *PredSU = I->getSUnit();
204 if (PredSU->isHeightCurrent)
205 WorkList.push_back(PredSU);
244 SUnit *PredSU = I->getSUnit();
245 if (PredSU->isDepthCurrent)
247 PredSU->Depth + I->getLatency());
250 WorkList.push_back(PredSU);
    [all...]
CriticalAntiDepBreaker.cpp 135 const SUnit *PredSU = P->getSUnit();
137 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
ScheduleDAGInstrs.cpp     [all...]
MachineScheduler.cpp 521 bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
522 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
580 /// FIXME: Adjust PredSU height based on MinLatency.
582 SUnit *PredSU = PredEdge->getSUnit();
585 --PredSU->WeakSuccsLeft;
587 NextClusterPred = PredSU;
591 if (PredSU->NumSuccsLeft == 0) {
593 PredSU->dump(this);
600 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
601 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 77 SUnit *PredSU = I->getSUnit();
78 const SDNode *ScegN = PredSU->getNode();
ScheduleDAGFast.cpp 141 SUnit *PredSU = PredEdge->getSUnit();
144 if (PredSU->NumSuccsLeft == 0) {
146 PredSU->dump(this);
151 --PredSU->NumSuccsLeft;
155 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
156 PredSU->isAvailable = true;
157 AvailableQueue.push(PredSU);
ScheduleDAGRRList.cpp 366 SUnit *PredSU = PredEdge->getSUnit();
369 if (PredSU->NumSuccsLeft == 0) {
371 PredSU->dump(this);
376 --PredSU->NumSuccsLeft;
381 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
386 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
387 PredSU->isAvailable = true;
389 unsigned Height = PredSU->getHeight();
393 if (isReady(PredSU)) {
    [all...]

Completed in 114 milliseconds