Home
last modified time | relevance | path

Searched refs:DFSResult (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineScheduler.cpp944 delete DFSResult; in ~ScheduleDAGMILive()
1248 if (DFSResult) { in schedule()
1252 DFSResult->scheduleTree(SubtreeID); in schedule()
1299 if (!DFSResult) in computeDFSResult()
1301 DFSResult->clear(); in computeDFSResult()
1303 DFSResult->resize(SUnits.size()); in computeDFSResult()
1304 DFSResult->compute(SUnits); in computeDFSResult()
3658 const SchedDFSResult *DFSResult = nullptr; member
3683 return DFSResult->getILP(A) < DFSResult->getILP(B); in operator ()()
3685 return DFSResult->getILP(A) > DFSResult->getILP(B); in operator ()()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h398 SchedDFSResult *DFSResult = nullptr; variable
472 const SchedDFSResult *getDFSResult() const { return DFSResult; } in getDFSResult()