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

References

include/llvm/CodeGen/MachineScheduler.h
  870     void setBest(SchedCandidate &Best) {
  896   void traceCandidate(const SchedCandidate &Cand);
  906              GenericSchedulerBase::SchedCandidate &TryCand,
  907              GenericSchedulerBase::SchedCandidate &Cand,
  910                 GenericSchedulerBase::SchedCandidate &TryCand,
  911                 GenericSchedulerBase::SchedCandidate &Cand,
  913 bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
  914                 GenericSchedulerBase::SchedCandidate &Cand,
  918                  GenericSchedulerBase::SchedCandidate &TryCand,
  919                  GenericSchedulerBase::SchedCandidate &Cand,
  982   SchedCandidate TopCand;
  984   SchedCandidate BotCand;
  988   void initCandidate(SchedCandidate &Cand, SUnit *SU, bool AtTop,
  992   virtual void tryCandidate(SchedCandidate &Cand, SchedCandidate &TryCand,
  992   virtual void tryCandidate(SchedCandidate &Cand, SchedCandidate &TryCand,
 1000                          SchedCandidate &Candidate);
 1055   void tryCandidate(SchedCandidate &Cand, SchedCandidate &TryCand);
 1055   void tryCandidate(SchedCandidate &Cand, SchedCandidate &TryCand);
 1057   void pickNodeFromQueue(SchedCandidate &Cand);
lib/CodeGen/MachineScheduler.cpp
 2592 void GenericSchedulerBase::traceCandidate(const SchedCandidate &Cand) {
 2648              GenericSchedulerBase::SchedCandidate &TryCand,
 2649              GenericSchedulerBase::SchedCandidate &Cand,
 2664                 GenericSchedulerBase::SchedCandidate &TryCand,
 2665                 GenericSchedulerBase::SchedCandidate &Cand,
 2679 bool tryLatency(GenericSchedulerBase::SchedCandidate &TryCand,
 2680                 GenericSchedulerBase::SchedCandidate &Cand,
 2710 static void tracePick(const GenericSchedulerBase::SchedCandidate &Cand) {
 2863                  GenericSchedulerBase::SchedCandidate &TryCand,
 2864                  GenericSchedulerBase::SchedCandidate &Cand,
 2948 void GenericScheduler::initCandidate(SchedCandidate &Cand, SUnit *SU,
 2995 void GenericScheduler::tryCandidate(SchedCandidate &Cand,
 2996                                     SchedCandidate &TryCand,
 3106                                          SchedCandidate &Cand) {
 3113     SchedCandidate TryCand(ZonePolicy);
 3162       SchedCandidate TCand;
 3182       SchedCandidate TCand;
 3194   SchedCandidate Cand = BotCand;
 3361 void PostGenericScheduler::tryCandidate(SchedCandidate &Cand,
 3362                                         SchedCandidate &TryCand) {
 3399 void PostGenericScheduler::pickNodeFromQueue(SchedCandidate &Cand) {
 3402     SchedCandidate TryCand(Cand.Policy);
 3427       SchedCandidate TopCand(NoPolicy);
lib/Target/AMDGPU/GCNSchedStrategy.cpp
   61 void GCNMaxOccupancySchedStrategy::initCandidate(SchedCandidate &Cand, SUnit *SU,
  144                                          SchedCandidate &Cand) {
  152     SchedCandidate TryCand(ZonePolicy);
  201       SchedCandidate TCand;
  221       SchedCandidate TCand;
  233   SchedCandidate Cand;
lib/Target/AMDGPU/GCNSchedStrategy.h
   36                          SchedCandidate &Cand);
   38   void initCandidate(SchedCandidate &Cand, SUnit *SU,
lib/Target/PowerPC/PPCMachineScheduler.cpp
   19 bool PPCPreRASchedStrategy::biasAddiLoadCandidate(SchedCandidate &Cand,
   20                                                   SchedCandidate &TryCand,
   29   SchedCandidate &FirstCand = Zone.isTop() ? TryCand : Cand;
   30   SchedCandidate &SecondCand = Zone.isTop() ? Cand : TryCand;
   45 void PPCPreRASchedStrategy::tryCandidate(SchedCandidate &Cand,
   46                                          SchedCandidate &TryCand,
lib/Target/PowerPC/PPCMachineScheduler.h
   26   void tryCandidate(SchedCandidate &Cand, SchedCandidate &TryCand,
   26   void tryCandidate(SchedCandidate &Cand, SchedCandidate &TryCand,
   29   bool biasAddiLoadCandidate(SchedCandidate &Cand,
   30                              SchedCandidate &TryCand,