Searched refs:AvailableQueue (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp52 /// AvailableQueue - The priority queue to use for the available SUnits.
54 SchedulingPriorityQueue *AvailableQueue; member in class:__anon2189::ScheduleDAGVLIW
59 /// added to the AvailableQueue.
72 : ScheduleDAGSDNodes(mf), AvailableQueue(availqueue), AA(aa) {
80 delete AvailableQueue;
102 AvailableQueue->initNodes(SUnits);
106 AvailableQueue->releaseState();
163 AvailableQueue->scheduledNode(SU);
174 // All leaves to AvailableQueue.
178 AvailableQueue
[all...]
H A DScheduleDAGRRList.cpp117 /// AvailableQueue - The priority queue to use for the available SUnits.
118 SchedulingPriorityQueue *AvailableQueue; member in class:__anon2188::ScheduleDAGRRList
123 /// added to the AvailableQueue.
165 NeedLatency(needlatency), AvailableQueue(availqueue), CurCycle(0),
177 delete AvailableQueue;
213 return DisableSchedCycles || !AvailableQueue->hasReadyFilter() ||
214 AvailableQueue->isReady(SU);
342 AvailableQueue->initNodes(SUnits);
349 AvailableQueue->releaseState();
363 /// the AvailableQueue i
[all...]
H A DScheduleDAGFast.cpp69 /// AvailableQueue - The priority queue to use for the available SUnits.
70 FastPriorityQueue AvailableQueue; member in class:__anon2185::ScheduleDAGFast
138 /// the AvailableQueue if the count reaches zero. Also update its cycle bound.
156 AvailableQueue.push(PredSU);
537 AvailableQueue.push(RootSU);
545 while (!AvailableQueue.empty()) {
548 SUnit *CurSU = AvailableQueue.pop();
556 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
558 CurSU = AvailableQueue.pop();
621 AvailableQueue
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DPostRASchedulerList.cpp105 /// AvailableQueue - The priority queue to use for the available SUnits.
107 LatencyPriorityQueue AvailableQueue; member in class:__anon2162::SchedulePostRATDList
112 /// added to the AvailableQueue.
403 AvailableQueue.initNodes(SUnits);
405 AvailableQueue.releaseState();
630 AvailableQueue.scheduledNode(SU);
651 AvailableQueue.push(&SUnits[i]);
664 while (!AvailableQueue.empty() || !PendingQueue.empty()) {
670 AvailableQueue.push(PendingQueue[i]);
679 DEBUG(dbgs() << "\n*** Examining Available\n"; AvailableQueue
[all...]

Completed in 104 milliseconds