Lines Matching refs:PRCycles
110 SmallVector<unsigned, 32> PRCycles(PRKinds); in getResources() local
130 PRCycles[PI->ProcResourceIdx] += PI->Cycles; in getResources()
139 PRCycles[K] * SchedModel.getResourceFactor(K); in getResources()
216 ArrayRef<unsigned> PRCycles = MTM.getProcResourceCycles(MBB->getNumber()); in computeHeightResources() local
221 llvm::copy(PRCycles, ProcResourceHeights.begin() + PROffset); in computeHeightResources()
236 ProcResourceHeights[PROffset + K] = SuccPRHeights[K] + PRCycles[K]; in computeHeightResources()
1202 ArrayRef<unsigned> PRCycles = TE.MTM.getProcResourceCycles(getBlockNum()); in getResourceDepth() local
1204 PRMax = std::max(PRMax, PRDepths[K] + PRCycles[K]); in getResourceDepth()
1254 unsigned PRCycles = PRDepths[K] + PRHeights[K]; in getResourceLength() local
1256 PRCycles += TE.MTM.getProcResourceCycles(MBB->getNumber())[K]; in getResourceLength()
1257 PRCycles += extraCycles(ExtraInstrs, K); in getResourceLength()
1258 PRCycles -= extraCycles(RemoveInstrs, K); in getResourceLength()
1259 PRMax = std::max(PRMax, PRCycles); in getResourceLength()