Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:BotCand

2831   SchedCandidate BotCand(NoPolicy);
2835 setPolicy(BotCand.Policy, /*IsPostRA=*/false, Bot, &Top);
2841 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2842 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
2851 if ((BotCand.Reason == RegExcess && !BotCand.isRepeat(RegExcess))
2852 || (BotCand.Reason == RegCritical
2853 && !BotCand.isRepeat(RegCritical)))
2856 tracePick(BotCand, IsTopNode);
2857 return BotCand.SU;
2864 if (TopCand.Reason < BotCand.Reason) {
2871 tracePick(BotCand, IsTopNode);
2872 return BotCand.SU;
2900 SchedCandidate BotCand(NoPolicy);
2901 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand);
2902 assert(BotCand.Reason != NoCand && "failed to find a candidate");
2903 tracePick(BotCand, false);
2904 SU = BotCand.SU;