HomeSort by relevance Sort by last modified time
    Searched refs:PredSU (Results 1 - 9 of 9) 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...]
MachineScheduler.cpp 518 bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
519 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
577 /// FIXME: Adjust PredSU height based on MinLatency.
579 SUnit *PredSU = PredEdge->getSUnit();
582 --PredSU->WeakSuccsLeft;
584 NextClusterPred = PredSU;
588 if (PredSU->NumSuccsLeft == 0) {
590 PredSU->dump(this);
597 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
598 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency()
    [all...]
CriticalAntiDepBreaker.cpp 136 const SUnit *PredSU = P->getSUnit();
138 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
ScheduleDAGInstrs.cpp     [all...]
AggressiveAntiDepBreaker.cpp 274 const SUnit *PredSU = P->getSUnit();
276 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
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...]
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);
ResourcePriorityQueue.cpp 77 SUnit *PredSU = I->getSUnit();
78 const SDNode *ScegN = PredSU->getNode();
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 276 /// \brief True if an edge can be added from PredSU to SuccSU without creating
278 bool canAddEdge(SUnit *SuccSU, SUnit *PredSU);

Completed in 1436 milliseconds