OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProcResourceDepths
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h
304
SmallVector<unsigned, 0>
ProcResourceDepths
;
/external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp
149
ProcResourceDepths
.resize(MTM.BlockInfo.size() * PRKinds);
173
std::fill(
ProcResourceDepths
.begin() + PROffset,
174
ProcResourceDepths
.begin() + PROffset + PRKinds, 0);
191
ProcResourceDepths
[PROffset + K] = PredPRDepths[K] + PredPRCycles[K];
256
assert((MBBNum+1) * PRKinds <=
ProcResourceDepths
.size());
257
return makeArrayRef(
ProcResourceDepths
.data() + MBBNum * PRKinds, PRKinds);
[
all
...]
Completed in 634 milliseconds