Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:BotCand

2562   BotCand.SU = nullptr;
2959 // See if BotCand is still valid (because we previously scheduled from Top).
2961 if (!BotCand.isValid() || BotCand.SU->isScheduled ||
2962 BotCand.Policy != BotPolicy) {
2963 BotCand.reset(CandPolicy());
2964 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), BotCand);
2965 assert(BotCand.Reason != NoCand && "failed to find the first candidate");
2967 DEBUG(traceCandidate(BotCand));
2973 assert(TCand.SU == BotCand.SU &&
2999 // Pick best from BotCand and TopCand.
3000 assert(BotCand.isValid());
3002 SchedCandidate Cand = BotCand;
3039 BotCand.reset(NoPolicy);
3040 pickNodeFromQueue(Bot, NoPolicy, DAG->getBotRPTracker(), BotCand);
3041 assert(BotCand.Reason != NoCand && "failed to find a candidate");
3042 tracePick(BotCand);
3043 SU = BotCand.SU;