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

  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 210 /// Information about DAG subtrees. If DFSResult is NULL, then SchedulerTrees
212 SchedDFSResult *DFSResult;
256 AA(C->AA), RegClassInfo(C->RegClassInfo), SchedImpl(S), DFSResult(0),
326 /// Compute a DFSResult after DAG building is complete, and before any
331 const SchedDFSResult *getDFSResult() const { return DFSResult; }
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 322 delete DFSResult;
554 // This may initialize a DFSResult to be used for queue priority.
611 if (!DFSResult)
612 DFSResult = new SchedDFSResult(/*BottomU*/true, MinSubtreeSize);
613 DFSResult->clear();
615 DFSResult->resize(SUnits.size());
616 DFSResult->compute(SUnits);
617 ScheduledTrees.resize(DFSResult->getNumSubtrees());
627 // Order predecessors so DFSResult follows the critical path.
724 if (DFSResult) {
    [all...]

Completed in 32 milliseconds