Home
last modified time | relevance | path

Searched refs:BotCand (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DGCNSchedStrategy.cpp210 if (!BotCand.isValid() || BotCand.SU->isScheduled || in pickNodeBidirectional()
211 BotCand.Policy != BotPolicy) { in pickNodeBidirectional()
212 BotCand.reset(CandPolicy()); in pickNodeBidirectional()
213 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), BotCand); in pickNodeBidirectional()
216 LLVM_DEBUG(traceCandidate(BotCand)); in pickNodeBidirectional()
222 assert(TCand.SU == BotCand.SU && in pickNodeBidirectional()
250 dbgs() << "Bot Cand: "; traceCandidate(BotCand);); in pickNodeBidirectional()
251 SchedCandidate Cand = BotCand; in pickNodeBidirectional()
287 BotCand.reset(NoPolicy); in pickNode()
289 assert(BotCand.Reason != NoCand && "failed to find a candidate"); in pickNode()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DVLIWMachineScheduler.cpp897 SchedCandidate BotCand; in pickNodeBidrectional() local
900 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand); in pickNodeBidrectional()
913 return BotCand.SU; in pickNodeBidrectional()
931 return BotCand.SU; in pickNodeBidrectional()
938 if (TopCand.SCost > BotCand.SCost) { in pickNodeBidrectional()
946 return BotCand.SU; in pickNodeBidrectional()
971 SchedCandidate BotCand; in pickNode() local
973 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand); in pickNode()
976 SU = BotCand.SU; in pickNode()
H A DMachineScheduler.cpp2927 BotCand.SU = nullptr; in initialize()
3342 if (!BotCand.isValid() || BotCand.SU->isScheduled || in pickNodeBidirectional()
3343 BotCand.Policy != BotPolicy) { in pickNodeBidirectional()
3344 BotCand.reset(CandPolicy()); in pickNodeBidirectional()
3348 LLVM_DEBUG(traceCandidate(BotCand)); in pickNodeBidirectional()
3354 assert(TCand.SU == BotCand.SU && in pickNodeBidirectional()
3381 assert(BotCand.isValid()); in pickNodeBidirectional()
3383 SchedCandidate Cand = BotCand; in pickNodeBidirectional()
3419 BotCand.reset(NoPolicy); in pickNode()
3422 tracePick(BotCand); in pickNode()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h993 BotCand.SU = nullptr; in releaseBottomNode()
1010 SchedCandidate BotCand; variable