Lines Matching refs:inactiveCounts
356 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()
1519 ++inactiveCounts[reg]; in getFreePhysReg()
1520 MaxInactiveCount = std::max(MaxInactiveCount, inactiveCounts[reg]); in getFreePhysReg()
1534 unsigned FreeReg = getFreePhysReg(cur, RC, MaxInactiveCount, inactiveCounts, in getFreePhysReg()
1538 return getFreePhysReg(cur, RC, MaxInactiveCount, inactiveCounts, false); in getFreePhysReg()