Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp174 ProcResourceDepths.resize(MTM.BlockInfo.size() * PRKinds); in Ensemble()
198 std::fill(ProcResourceDepths.begin() + PROffset, in computeDepthResources()
199 ProcResourceDepths.begin() + PROffset + PRKinds, 0); in computeDepthResources()
216 ProcResourceDepths[PROffset + K] = PredPRDepths[K] + PredPRCycles[K]; in computeDepthResources()
280 assert((MBBNum+1) * PRKinds <= ProcResourceDepths.size()); in getProcResourceDepths()
281 return ArrayRef(ProcResourceDepths.data() + MBBNum * PRKinds, PRKinds); in getProcResourceDepths()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h344 SmallVector<unsigned, 0> ProcResourceDepths; variable