Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp160 ProcResourceDepths.resize(MTM.BlockInfo.size() * PRKinds); in Ensemble()
184 std::fill(ProcResourceDepths.begin() + PROffset, in computeDepthResources()
185 ProcResourceDepths.begin() + PROffset + PRKinds, 0); in computeDepthResources()
202 ProcResourceDepths[PROffset + K] = PredPRDepths[K] + PredPRCycles[K]; in computeDepthResources()
266 assert((MBBNum+1) * PRKinds <= ProcResourceDepths.size()); in getProcResourceDepths()
267 return ArrayRef(ProcResourceDepths.data() + MBBNum * PRKinds, PRKinds); in getProcResourceDepths()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h325 SmallVector<unsigned, 0> ProcResourceDepths; variable