blob: 1d46de04ee6aff60dea3658110ec0edf9afa575f [file] [log] [blame]
Daniel Berlince3d348a2017-02-19 04:29:50 +00001#include "llvm/Support/DebugCounter.h"
2#include "llvm/Support/CommandLine.h"
3#include "llvm/Support/Format.h"
4#include "llvm/Support/ManagedStatic.h"
5#include "llvm/Support/Options.h"
6
7using namespace llvm;
8
Benjamin Kramerdebb3c32017-05-26 20:09:00 +00009namespace {
Daniel Berlince3d348a2017-02-19 04:29:50 +000010// This class overrides the default list implementation of printing so we
11// can pretty print the list of debug counter options. This type of
12// dynamic option is pretty rare (basically this and pass lists).
13class DebugCounterList : public cl::list<std::string, DebugCounter> {
14private:
15 using Base = cl::list<std::string, DebugCounter>;
16
17public:
18 template <class... Mods>
19 explicit DebugCounterList(Mods &&... Ms) : Base(std::forward<Mods>(Ms)...) {}
20
21private:
22 void printOptionInfo(size_t GlobalWidth) const override {
23 // This is a variant of from generic_parser_base::printOptionInfo. Sadly,
24 // it's not easy to make it more usable. We could get it to print these as
25 // options if we were a cl::opt and registered them, but lists don't have
26 // options, nor does the parser for std::string. The other mechanisms for
27 // options are global and would pollute the global namespace with our
28 // counters. Rather than go that route, we have just overridden the
29 // printing, which only a few things call anyway.
30 outs() << " -" << ArgStr;
31 // All of the other options in CommandLine.cpp use ArgStr.size() + 6 for
32 // width, so we do the same.
33 Option::printHelpStr(HelpStr, GlobalWidth, ArgStr.size() + 6);
34 const auto &CounterInstance = DebugCounter::instance();
35 for (auto Name : CounterInstance) {
36 const auto Info =
37 CounterInstance.getCounterInfo(CounterInstance.getCounterId(Name));
38 size_t NumSpaces = GlobalWidth - Info.first.size() - 8;
39 outs() << " =" << Info.first;
40 outs().indent(NumSpaces) << " - " << Info.second << '\n';
41 }
42 }
43};
Benjamin Kramerdebb3c32017-05-26 20:09:00 +000044} // namespace
Daniel Berlince3d348a2017-02-19 04:29:50 +000045
46// Create our command line option.
47static DebugCounterList DebugCounterOption(
48 "debug-counter",
49 cl::desc("Comma separated list of debug counter skip and count"),
50 cl::CommaSeparated, cl::ZeroOrMore, cl::location(DebugCounter::instance()));
51
52static ManagedStatic<DebugCounter> DC;
53
54DebugCounter &DebugCounter::instance() { return *DC; }
55
56// This is called by the command line parser when it sees a value for the
57// debug-counter option defined above.
58void DebugCounter::push_back(const std::string &Val) {
59 if (Val.empty())
60 return;
61 // The strings should come in as counter=value
62 auto CounterPair = StringRef(Val).split('=');
63 if (CounterPair.second.empty()) {
64 errs() << "DebugCounter Error: " << Val << " does not have an = in it\n";
65 return;
66 }
67 // Now we have counter=value.
68 // First, process value.
69 long CounterVal;
70 if (CounterPair.second.getAsInteger(0, CounterVal)) {
71 errs() << "DebugCounter Error: " << CounterPair.second
72 << " is not a number\n";
73 return;
74 }
75 // Now we need to see if this is the skip or the count, remove the suffix, and
76 // add it to the counter values.
77 if (CounterPair.first.endswith("-skip")) {
78 auto CounterName = CounterPair.first.drop_back(5);
79 unsigned CounterID = RegisteredCounters.idFor(CounterName);
80 if (!CounterID) {
81 errs() << "DebugCounter Error: " << CounterName
82 << " is not a registered counter\n";
83 return;
84 }
85
Daniel Berlinf0236fd2017-03-04 14:08:47 +000086 auto Res = Counters.insert({CounterID, {0, -1}});
Daniel Berlince3d348a2017-02-19 04:29:50 +000087 Res.first->second.first = CounterVal;
88 } else if (CounterPair.first.endswith("-count")) {
89 auto CounterName = CounterPair.first.drop_back(6);
90 unsigned CounterID = RegisteredCounters.idFor(CounterName);
91 if (!CounterID) {
92 errs() << "DebugCounter Error: " << CounterName
93 << " is not a registered counter\n";
94 return;
95 }
96
Daniel Berlinf0236fd2017-03-04 14:08:47 +000097 auto Res = Counters.insert({CounterID, {0, -1}});
Daniel Berlince3d348a2017-02-19 04:29:50 +000098 Res.first->second.second = CounterVal;
99 } else {
100 errs() << "DebugCounter Error: " << CounterPair.first
101 << " does not end with -skip or -count\n";
102 }
103}
104
Frederich Munchdceb6122017-06-14 19:16:22 +0000105void DebugCounter::print(raw_ostream &OS) const {
Daniel Berlince3d348a2017-02-19 04:29:50 +0000106 OS << "Counters and values:\n";
107 for (const auto &KV : Counters)
108 OS << left_justify(RegisteredCounters[KV.first], 32) << ": {"
109 << KV.second.first << "," << KV.second.second << "}\n";
110}
Frederich Munchdceb6122017-06-14 19:16:22 +0000111
112LLVM_DUMP_METHOD void DebugCounter::dump() const {
113 print(dbgs());
114}