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

Declarations

include/llvm/Support/DebugCounter.h
   60   static DebugCounter &instance();

References

include/llvm/Support/DebugCounter.h
   71     return instance().addCounter(Name, Desc);
   77     auto &Us = instance();
  102     return instance().Counters[ID].IsSet;
  107     auto &Us = instance();
  115     auto &Us = instance();
  149   static void enableAllCounters() { instance().Enabled = true; }
  157     return instance().Enabled;
lib/Support/DebugCounter.cpp
   34     const auto &CounterInstance = DebugCounter::instance();
   50     cl::CommaSeparated, cl::ZeroOrMore, cl::location(DebugCounter::instance()));
  124   auto &Us = instance();
unittests/Support/DebugCounterTest.cpp
   21   auto DC = &DebugCounter::instance();