Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRegAllocLinearScan.cpp356 SmallVector<unsigned, 256> &inactiveCounts,
1422 SmallVector<unsigned, 256> &inactiveCounts, in getFreePhysReg() argument
1453 if (FreeReg < inactiveCounts.size()) in getFreePhysReg()
1454 FreeRegInactiveCount = inactiveCounts[FreeReg]; in getFreePhysReg()
1481 if (isRegAvail(Reg) && Reg < inactiveCounts.size() && in getFreePhysReg()
1482 FreeRegInactiveCount < inactiveCounts[Reg] && in getFreePhysReg()
1485 FreeRegInactiveCount = inactiveCounts[Reg]; in getFreePhysReg()
1500 SmallVector<unsigned, 256> inactiveCounts; in getFreePhysReg() local
1517 if (inactiveCounts.size() <= reg) in getFreePhysReg()
1518 inactiveCounts.resize(reg+1); in getFreePhysReg()
[all …]