Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DMachineScheduler.h536 SmallVector<unsigned, 16> RemainingCounts; member
543 RemainingCounts.clear(); in reset()
/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1601 RemainingCounts.resize(SchedModel->getNumProcResourceKinds()); in init()
1612 RemainingCounts[PIdx] += (Factor * PI->Cycles); in init()
1739 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx]; in getOtherResourceCount()
1854 assert(Rem->RemainingCounts[PIdx] >= Count && "resource double counted"); in countResource()
1855 Rem->RemainingCounts[PIdx] -= Count; in countResource()