Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h590 SmallVector<unsigned, 16> RemainingCounts; member
599 RemainingCounts.clear(); in reset()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2024 RemainingCounts.resize(SchedModel->getNumProcResourceKinds()); in init()
2034 RemainingCounts[PIdx] += (Factor * PI->Cycles); in init()
2244 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx]; in getOtherResourceCount()
2353 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted"); in countResource()
2354 Rem->RemainingCounts[PIdx] -= Count; in countResource()