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

  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 116 SUnit *SuccSU = D.getSUnit();
119 if (SuccSU->NumPredsLeft == 0) {
121 SuccSU->dump(this);
128 --SuccSU->NumPredsLeft;
130 SuccSU->setDepthToAtLeast(SU->getDepth() + D.getLatency());
134 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU) {
135 PendingQueue.push_back(SuccSU);
ScheduleDAGRRList.cpp     [all...]
ScheduleDAGFast.cpp 369 SUnit *SuccSU = I->getSUnit();
370 if (SuccSU->isScheduled) {
373 AddPred(SuccSU, D);
375 DelDeps.push_back(std::make_pair(SuccSU, D));
406 SUnit *SuccSU = I->getSUnit();
407 if (SuccSU->isScheduled) {
410 AddPred(SuccSU, D);
411 DelDeps.push_back(std::make_pair(SuccSU, *I));
ResourcePriorityQueue.cpp 116 SUnit *SuccSU = I->getSUnit();
117 const SDNode *ScegN = SuccSU->getNode();
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 566 SUnit *SuccSU = SuccEdge->getSUnit();
569 --SuccSU->WeakPredsLeft;
573 if (SuccSU->NumPredsLeft == 0) {
575 SuccSU->dump(this);
580 --SuccSU->NumPredsLeft;
584 // SuccSU->setDepthToAtLeast(SU->getDepth() + SuccEdge->getLatency());
595 if (SuccSU->NumPredsLeft == 0 && SuccSU != &ExitSU)
596 PendingQueue.push_back(SuccSU);
ScheduleDAG.cpp 187 SUnit *SuccSU = I->getSUnit();
188 if (SuccSU->isDepthCurrent)
189 WorkList.push_back(SuccSU);
277 SUnit *SuccSU = I->getSUnit();
278 if (SuccSU->isHeightCurrent)
280 SuccSU->Height + I->getLatency());
283 WorkList.push_back(SuccSU);
MachineScheduler.cpp 326 bool ScheduleDAGMI::addEdge(SUnit *SuccSU, const SDep &PredDep) {
327 if (SuccSU != &ExitSU) {
330 if (Topo.IsReachable(PredDep.getSUnit(), SuccSU))
332 Topo.AddPred(SuccSU, PredDep.getSUnit());
334 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
342 /// FIXME: Adjust SuccSU height based on MinLatency.
344 SUnit *SuccSU = SuccEdge->getSUnit();
347 --SuccSU->WeakPredsLeft;
349 NextClusterSucc = SuccSU;
353 if (SuccSU->NumPredsLeft == 0)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 282 bool addEdge(SUnit *SuccSU, const SDep &PredDep);

Completed in 171 milliseconds