Searched refs:DAGSize (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/CodeGen/
H A DScheduleDAG.cpp462 unsigned DAGSize = SUnits.size();
464 WorkList.reserve(DAGSize);
466 Index2Node.resize(DAGSize);
467 Node2Index.resize(DAGSize);
472 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
487 int Id = DAGSize;
491 if (SU->NodeNum < DAGSize)
496 if (SU->NodeNum < DAGSize && !--Node2Index[SU->NodeNum])
503 Visited.resize(DAGSize);
507 for (unsigned i = 0, e = DAGSize;
[all...]
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGISel.h175 /// DAGSize - Size of DAG being instruction selected.
177 unsigned DAGSize; member in class:llvm::SelectionDAGISel
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp722 unsigned DAGSize = 0; local
742 ++DAGSize;
762 Sequence.reserve(DAGSize);
H A DSelectionDAG.cpp6074 unsigned DAGSize = 0; local
6094 N->setNodeId(DAGSize++);
6121 P->setNodeId(DAGSize++);
6151 assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
6155 assert(DAGSize == allnodes_size() && "Node count mismatch!");
6156 return DAGSize;
H A DSelectionDAGISel.cpp344 DAGSize(0) {
839 // Number all nodes with a topological order and set DAGSize.
840 DAGSize = CurDAG->AssignTopologicalOrder();

Completed in 195 milliseconds