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

/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h278 unsigned NodeQueueId; // Queue id of node. variable
321 NodeNum(nodenum), NodeQueueId(0), NumPreds(0), NumSuccs(0),
337 NodeNum(nodenum), NodeQueueId(0), NumPreds(0), NumSuccs(0),
352 NodeNum(BoundaryID), NodeQueueId(0), NumPreds(0), NumSuccs(0),
H A DMachineScheduler.h471 /// by an ID. SUnit::NodeQueueId is a mask of the ReadyQueues the SUnit is in.
488 bool isInQueue(SUnit *SU) const { return (SU->NodeQueueId & ID); }
510 SU->NodeQueueId |= ID;
514 (*I)->NodeQueueId &= ~ID;
556 /// SUnit::NodeQueueId: 0 (none), 1 (top), 2 (bot), 3 (both)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp1344 if (SU->isAvailable && !SU->NodeQueueId) {
1695 assert(!U->NodeQueueId && "Node in the queue already");
1696 U->NodeQueueId = ++CurQueueId;
1702 assert(SU->NodeQueueId != 0 && "Not in queue!");
1708 SU->NodeQueueId = 0;
1783 V->NodeQueueId = 0;
2469 return (left->NodeQueueId > right->NodeQueueId);
2486 assert(left->NodeQueueId && right->NodeQueueId
[all...]
H A DResourcePriorityQueue.cpp177 SU->NodeQueueId = 0;

Completed in 417 milliseconds