HomeSort by relevance Sort by last modified time
    Searched refs:InstrDepth (Results 1 - 2 of 2) 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/
MachineTraceMetrics.cpp 173 TBI->InstrDepth = 0;
186 TBI->InstrDepth = PredTBI->InstrDepth + PredFBI->InstrCount;
253 /// Compare TraceBlockInfo::InstrDepth.
335 // Pick the predecessor that would give this block the smallest InstrDepth.
336 unsigned Depth = PredTBI->InstrDepth + CurCount;
815 dbgs() << format("%7u Instructions\n", TBI.InstrDepth);
    [all...]

Completed in 123 milliseconds