Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DGCNSchedStrategy.cpp193 if (!BotCand.isValid() || BotCand.SU->isScheduled || in pickNodeBidirectional()
194 BotCand.Policy != BotPolicy) { in pickNodeBidirectional()
195 BotCand.reset(CandPolicy()); in pickNodeBidirectional()
196 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), BotCand); in pickNodeBidirectional()
197 assert(BotCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional()
199 LLVM_DEBUG(traceCandidate(BotCand)); in pickNodeBidirectional()
205 assert(TCand.SU == BotCand.SU && in pickNodeBidirectional()
233 dbgs() << "Bot Cand: "; traceCandidate(BotCand);); in pickNodeBidirectional()
234 SchedCandidate Cand = BotCand; in pickNodeBidirectional()
270 BotCand.reset(NoPolicy); in pickNode()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp892 SchedCandidate BotCand; in pickNodeBidrectional() local
895 DAG->getBotRPTracker(), BotCand); in pickNodeBidrectional()
908 return BotCand.SU; in pickNodeBidrectional()
926 return BotCand.SU; in pickNodeBidrectional()
933 if (TopCand.SCost > BotCand.SCost) { in pickNodeBidrectional()
941 return BotCand.SU; in pickNodeBidrectional()
966 SchedCandidate BotCand; in pickNode() local
968 pickNodeFromQueue(Bot, DAG->getBotRPTracker(), BotCand); in pickNode()
971 SU = BotCand.SU; in pickNode()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2926 BotCand.SU = nullptr; in initialize()
3338 if (!BotCand.isValid() || BotCand.SU->isScheduled || in pickNodeBidirectional()
3339 BotCand.Policy != BotPolicy) { in pickNodeBidirectional()
3340 BotCand.reset(CandPolicy()); in pickNodeBidirectional()
3341 pickNodeFromQueue(Bot, BotPolicy, DAG->getBotRPTracker(), BotCand); in pickNodeBidirectional()
3342 assert(BotCand.Reason != NoCand && "failed to find the first candidate"); in pickNodeBidirectional()
3344 LLVM_DEBUG(traceCandidate(BotCand)); in pickNodeBidirectional()
3350 assert(TCand.SU == BotCand.SU && in pickNodeBidirectional()
3377 assert(BotCand.isValid()); in pickNodeBidirectional()
3379 SchedCandidate Cand = BotCand; in pickNodeBidirectional()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h990 BotCand.SU = nullptr; in releaseBottomNode()
1007 SchedCandidate BotCand; variable