reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/CodeGen/MachineTraceMetrics.h
  182     bool hasValidDepth() const { return InstrDepth != ~0u; }
  189     void invalidateDepth() { InstrDepth = ~0u; HasValidInstrDepths = false; }
  212       return HasValidInstrDepths && InstrDepth <= TBI.InstrDepth;
  212       return HasValidInstrDepths && InstrDepth <= TBI.InstrDepth;
  268       return TBI.InstrDepth + TBI.InstrHeight;
lib/CodeGen/MachineTraceMetrics.cpp
  182     TBI->InstrDepth = 0;
  195   TBI->InstrDepth = PredTBI->InstrDepth + PredFBI->InstrCount;
  195   TBI->InstrDepth = PredTBI->InstrDepth + PredFBI->InstrCount;
  342     unsigned Depth = PredTBI->InstrDepth + CurCount;
  868       dbgs() << format("%7u Instructions\n", TBI.InstrDepth);
 1213   unsigned Instrs = TBI.InstrDepth;
 1265   unsigned Instrs = TBI.InstrDepth + TBI.InstrHeight;
 1299     OS << "depth=" << InstrDepth;