HomeSort by relevance Sort by last modified time
    Searched refs:DAGSize (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 461 unsigned DAGSize = SUnits.size();
463 WorkList.reserve(DAGSize);
465 Index2Node.resize(DAGSize);
466 Node2Index.resize(DAGSize);
471 for (unsigned i = 0, e = DAGSize; i != e; ++i) {
486 int Id = DAGSize;
490 if (SU->NodeNum < DAGSize)
495 if (SU->NodeNum < DAGSize && !--Node2Index[SU->NodeNum])
502 Visited.resize(DAGSize);
506 for (unsigned i = 0, e = DAGSize; i != e; ++i)
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGISel.h 173 /// DAGSize - Size of DAG being instruction selected.
175 unsigned DAGSize;
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 720 unsigned DAGSize = 0;
740 ++DAGSize;
760 Sequence.reserve(DAGSize);
SelectionDAG.cpp     [all...]
SelectionDAGISel.cpp 282 DAGSize(0) {
753 // Number all nodes with a topological order and set DAGSize.
754 DAGSize = CurDAG->AssignTopologicalOrder();
    [all...]

Completed in 867 milliseconds