reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/CodeGen/MachineScheduler.h
  591     CriticalPath = 0;
lib/CodeGen/MachineScheduler.cpp
 2498   if (CurrZone.getCurrCycle() > Rem.CriticalPath)
 2508   return RemLatency + CurrZone.getCurrCycle() > Rem.CriticalPath;
 2545                       << Rem.CriticalPath << "\n");
 2814   if (Rem.CyclicCritPath == 0 || Rem.CyclicCritPath >= Rem.CriticalPath)
 2822   unsigned AcyclicCount = Rem.CriticalPath * SchedModel->getLatencyFactor();
 2842   Rem.CriticalPath = DAG->ExitSU.getDepth();
 2846     if (SU->getDepth() > Rem.CriticalPath)
 2847       Rem.CriticalPath = SU->getDepth();
 2849   LLVM_DEBUG(dbgs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << '\n');
 2851     errs() << "Critical Path(GS-RR ): " << Rem.CriticalPath << " \n";
 3344   Rem.CriticalPath = DAG->ExitSU.getDepth();
 3348     if (SU->getDepth() > Rem.CriticalPath)
 3349       Rem.CriticalPath = SU->getDepth();
 3351   LLVM_DEBUG(dbgs() << "Critical Path: (PGS-RR) " << Rem.CriticalPath << '\n');
 3353     errs() << "Critical Path(PGS-RR ): " << Rem.CriticalPath << " \n";