Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DDebugCounter.cpp101 auto CounterName = CounterPair.first.drop_back(5); in push_back() local
102 unsigned CounterID = getCounterId(std::string(CounterName)); in push_back()
104 errs() << "DebugCounter Error: " << CounterName in push_back()
114 auto CounterName = CounterPair.first.drop_back(6); in push_back() local
115 unsigned CounterID = getCounterId(std::string(CounterName)); in push_back()
117 errs() << "DebugCounter Error: " << CounterName in push_back()
139 for (auto &CounterName : CounterNames) { in print() local
140 unsigned CounterID = getCounterId(std::string(CounterName)); in print()
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkRunner.cpp75 for (auto &CounterName : CounterNames) { in runAndSample() local
76 CounterName = CounterName.trim(); in runAndSample()
77 auto CounterOrError = ET.createCounter(CounterName, State); in runAndSample()
90 .concat(CounterName) in runAndSample()
H A DTarget.cpp33 ExegesisTarget::createCounter(StringRef CounterName, const LLVMState &) const { in createCounter() argument
34 pfm::PerfEvent Event(CounterName); in createCounter()
38 .concat(CounterName) in createCounter()
H A DLatencyBenchmarkRunner.cpp74 const char *CounterName = State.getPfmCounters().CycleCounter; in runMeasurements() local
78 auto ExpectedCounterValues = Executor.runAndSample(CounterName); in runMeasurements()
H A DTarget.h72 createCounter(StringRef CounterName, const LLVMState &State) const;
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DDebugCounter.h74 inline static bool shouldExecute(unsigned CounterName) { in shouldExecute() argument
79 auto Result = Us.Counters.find(CounterName); in shouldExecute()
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/X86/
H A DTarget.cpp667 createCounter(StringRef CounterName, const LLVMState &State) const override { in createCounter() argument
684 return ExegesisTarget::createCounter(CounterName, State); in createCounter()