Home
last modified time | relevance | path

Searched refs:CounterID (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DDebugCounter.cpp102 unsigned CounterID = getCounterId(std::string(CounterName)); in push_back() local
103 if (!CounterID) { in push_back()
110 CounterInfo &Counter = Counters[CounterID]; in push_back()
115 unsigned CounterID = getCounterId(std::string(CounterName)); in push_back() local
116 if (!CounterID) { in push_back()
123 CounterInfo &Counter = Counters[CounterID]; in push_back()
140 unsigned CounterID = getCounterId(std::string(CounterName)); in print() local
141 OS << left_justify(RegisteredCounters[CounterID], 32) << ": {" in print()
142 << Us.Counters[CounterID].Count << "," << Us.Counters[CounterID].Skip in print()
143 << "," << Us.Counters[CounterID].StopAfter << "}\n"; in print()
/llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp85 return LHS.CounterID < RHS.CounterID; in simplify()
91 if (I->CounterID == Prev->CounterID) { in simplify()
108 C = Counter::getCounter(T.CounterID); in simplify()
111 Counter::getCounter(T.CounterID))); in simplify()
120 Counter::getCounter(T.CounterID))); in simplify()
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h176 unsigned CounterID; member
179 Term(unsigned CounterID, int Factor) in Term()
180 : CounterID(CounterID), Factor(Factor) {} in Term()