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 77 SUnit *PredSU = I->getSUnit();
81 for (SmallVectorImpl<SDep>::iterator II = PredSU->Succs.begin(),
82 EE = PredSU->Succs.end(); II != EE; ++II) {
204 SUnit *PredSU = I->getSUnit();
205 if (PredSU->isHeightCurrent)
206 WorkList.push_back(PredSU);
245 SUnit *PredSU = I->getSUnit();
246 if (PredSU->isDepthCurrent)
248 PredSU->Depth + I->getLatency());
251 WorkList.push_back(PredSU);
    [all...]
CriticalAntiDepBreaker.cpp 140 const SUnit *PredSU = P->getSUnit();
142 unsigned PredTotalLatency = PredSU->getDepth() + PredLatency;
ScheduleDAGInstrs.cpp     [all...]
MachineScheduler.cpp 499 bool ScheduleDAGMI::canAddEdge(SUnit *SuccSU, SUnit *PredSU) {
500 return SuccSU == &ExitSU || !Topo.IsReachable(PredSU, SuccSU);
558 /// FIXME: Adjust PredSU height based on MinLatency.
560 SUnit *PredSU = PredEdge->getSUnit();
563 --PredSU->WeakSuccsLeft;
565 NextClusterPred = PredSU;
569 if (PredSU->NumSuccsLeft == 0) {
571 PredSU->dump(this);
578 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
579 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 79 SUnit *PredSU = I->getSUnit();
80 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 367 SUnit *PredSU = PredEdge->getSUnit();
370 if (PredSU->NumSuccsLeft == 0) {
372 PredSU->dump(this);
377 --PredSU->NumSuccsLeft;
382 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
387 if (PredSU->NumSuccsLeft == 0 && PredSU != &EntrySU) {
388 PredSU->isAvailable = true;
390 unsigned Height = PredSU->getHeight();
394 if (isReady(PredSU)) {
    [all...]

Completed in 144 milliseconds