OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InstrDepth
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h
150
unsigned
InstrDepth
;
158
InstrDepth
(~0u), InstrHeight(~0u),
163
bool hasValidDepth() const { return
InstrDepth
!= ~0u; }
170
void invalidateDepth() {
InstrDepth
= ~0u; HasValidInstrDepths = false; }
193
return HasValidInstrDepths &&
InstrDepth
<= TBI.
InstrDepth
;
248
return TBI.
InstrDepth
+ TBI.InstrHeight;
/external/llvm/lib/CodeGen/
MachineCombiner.cpp
126
SmallVector<unsigned, 16>
InstrDepth
;
132
// are tracked in the InstrIdxForVirtReg map depth is looked up in
InstrDepth
148
assert(II->second <
InstrDepth
.size() && "Bad Index");
152
DepthOp =
InstrDepth
[II->second];
167
InstrDepth
.push_back(IDepth);
170
return
InstrDepth
[NewRootIdx];
MachineTraceMetrics.cpp
171
TBI->
InstrDepth
= 0;
184
TBI->
InstrDepth
= PredTBI->
InstrDepth
+ PredFBI->InstrCount;
251
/// Compare TraceBlockInfo::
InstrDepth
.
329
// Pick the predecessor that would give this block the smallest
InstrDepth
.
330
unsigned Depth = PredTBI->
InstrDepth
+ CurCount;
807
dbgs() << format("%7u Instructions\n", TBI.
InstrDepth
);
[
all
...]
Completed in 742 milliseconds