Home
last modified time | relevance | path

Searched refs:CounterName (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDebugCounter.cpp187 StringRef CounterName = CounterPair.first; in push_back() local
194 unsigned CounterID = getCounterId(std::string(CounterName)); in push_back()
196 errs() << "DebugCounter Error: " << CounterName in push_back()
214 for (auto &CounterName : CounterNames) { in print() local
215 unsigned CounterID = getCounterId(std::string(CounterName)); in print()
224 bool DebugCounter::shouldExecuteImpl(unsigned CounterName) { in shouldExecuteImpl() argument
226 auto Result = Us.Counters.find(CounterName); in shouldExecuteImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DDebugCounter.h86 LLVM_ABI static bool shouldExecuteImpl(unsigned CounterName);
88 inline static bool shouldExecute(unsigned CounterName) { in shouldExecute() argument
91 return shouldExecuteImpl(CounterName); in shouldExecute()