1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
#include "llvm/Support/DebugCounter.h"
#include "DebugOptions.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Format.h"
using namespace llvm;
namespace llvm {
void DebugCounter::Chunk::print(llvm::raw_ostream &OS) {
if (Begin == End)
OS << Begin;
else
OS << Begin << "-" << End;
}
void DebugCounter::printChunks(raw_ostream &OS, ArrayRef<Chunk> Chunks) {
if (Chunks.empty()) {
OS << "empty";
} else {
bool IsFirst = true;
for (auto E : Chunks) {
if (!IsFirst)
OS << ':';
else
IsFirst = false;
E.print(OS);
}
}
}
bool DebugCounter::parseChunks(StringRef Str, SmallVector<Chunk> &Chunks) {
StringRef Remaining = Str;
auto ConsumeInt = [&]() -> int64_t {
StringRef Number =
Remaining.take_until([](char c) { return c < '0' || c > '9'; });
int64_t Res;
if (Number.getAsInteger(10, Res)) {
errs() << "Failed to parse int at : " << Remaining << "\n";
return -1;
}
Remaining = Remaining.drop_front(Number.size());
return Res;
};
while (1) {
int64_t Num = ConsumeInt();
if (Num == -1)
return true;
if (!Chunks.empty() && Num <= Chunks[Chunks.size() - 1].End) {
errs() << "Expected Chunks to be in increasing order " << Num
<< " <= " << Chunks[Chunks.size() - 1].End << "\n";
return true;
}
if (Remaining.starts_with("-")) {
Remaining = Remaining.drop_front();
int64_t Num2 = ConsumeInt();
if (Num2 == -1)
return true;
if (Num >= Num2) {
errs() << "Expected " << Num << " < " << Num2 << " in " << Num << "-"
<< Num2 << "\n";
return true;
}
Chunks.push_back({Num, Num2});
} else {
Chunks.push_back({Num, Num});
}
if (Remaining.starts_with(":")) {
Remaining = Remaining.drop_front();
continue;
}
if (Remaining.empty())
break;
errs() << "Failed to parse at : " << Remaining;
return true;
}
return false;
}
} // namespace llvm
namespace {
// This class overrides the default list implementation of printing so we
// can pretty print the list of debug counter options. This type of
// dynamic option is pretty rare (basically this and pass lists).
class DebugCounterList : public cl::list<std::string, DebugCounter> {
private:
using Base = cl::list<std::string, DebugCounter>;
public:
template <class... Mods>
explicit DebugCounterList(Mods &&... Ms) : Base(std::forward<Mods>(Ms)...) {}
private:
void printOptionInfo(size_t GlobalWidth) const override {
// This is a variant of from generic_parser_base::printOptionInfo. Sadly,
// it's not easy to make it more usable. We could get it to print these as
// options if we were a cl::opt and registered them, but lists don't have
// options, nor does the parser for std::string. The other mechanisms for
// options are global and would pollute the global namespace with our
// counters. Rather than go that route, we have just overridden the
// printing, which only a few things call anyway.
outs() << " -" << ArgStr;
// All of the other options in CommandLine.cpp use ArgStr.size() + 6 for
// width, so we do the same.
Option::printHelpStr(HelpStr, GlobalWidth, ArgStr.size() + 6);
const auto &CounterInstance = DebugCounter::instance();
for (const auto &Name : CounterInstance) {
const auto Info =
CounterInstance.getCounterInfo(CounterInstance.getCounterId(Name));
size_t NumSpaces = GlobalWidth - Info.first.size() - 8;
outs() << " =" << Info.first;
outs().indent(NumSpaces) << " - " << Info.second << '\n';
}
}
};
// All global objects associated to the DebugCounter, including the DebugCounter
// itself, are owned by a single global instance of the DebugCounterOwner
// struct. This makes it easier to control the order in which constructors and
// destructors are run.
struct DebugCounterOwner : DebugCounter {
DebugCounterList DebugCounterOption{
"debug-counter", cl::Hidden,
cl::desc("Comma separated list of debug counter skip and count"),
cl::CommaSeparated, cl::location<DebugCounter>(*this)};
cl::opt<bool, true> PrintDebugCounter{
"print-debug-counter",
cl::Hidden,
cl::Optional,
cl::location(this->ShouldPrintCounter),
cl::init(false),
cl::desc("Print out debug counter info after all counters accumulated")};
cl::opt<bool, true> BreakOnLastCount{
"debug-counter-break-on-last",
cl::Hidden,
cl::Optional,
cl::location(this->BreakOnLast),
cl::init(false),
cl::desc("Insert a break point on the last enabled count of a "
"chunks list")};
DebugCounterOwner() {
// Our destructor uses the debug stream. By referencing it here, we
// ensure that its destructor runs after our destructor.
(void)dbgs();
}
// Print information when destroyed, iff command line option is specified.
~DebugCounterOwner() {
if (ShouldPrintCounter)
print(dbgs());
}
};
} // anonymous namespace
void llvm::initDebugCounterOptions() { (void)DebugCounter::instance(); }
DebugCounter &DebugCounter::instance() {
static DebugCounterOwner O;
return O;
}
// This is called by the command line parser when it sees a value for the
// debug-counter option defined above.
void DebugCounter::push_back(const std::string &Val) {
if (Val.empty())
return;
// The strings should come in as counter=chunk_list
auto CounterPair = StringRef(Val).split('=');
if (CounterPair.second.empty()) {
errs() << "DebugCounter Error: " << Val << " does not have an = in it\n";
return;
}
StringRef CounterName = CounterPair.first;
SmallVector<Chunk> Chunks;
if (parseChunks(CounterPair.second, Chunks)) {
return;
}
unsigned CounterID = getCounterId(std::string(CounterName));
if (!CounterID) {
errs() << "DebugCounter Error: " << CounterName
<< " is not a registered counter\n";
return;
}
enableAllCounters();
CounterInfo &Counter = Counters[CounterID];
Counter.IsSet = true;
Counter.Chunks = std::move(Chunks);
}
void DebugCounter::print(raw_ostream &OS) const {
SmallVector<StringRef, 16> CounterNames(RegisteredCounters.begin(),
RegisteredCounters.end());
sort(CounterNames);
auto &Us = instance();
OS << "Counters and values:\n";
for (auto &CounterName : CounterNames) {
unsigned CounterID = getCounterId(std::string(CounterName));
OS << left_justify(RegisteredCounters[CounterID], 32) << ": {"
<< Us.Counters[CounterID].Count << ",";
printChunks(OS, Us.Counters[CounterID].Chunks);
OS << "}\n";
}
}
bool DebugCounter::shouldExecuteImpl(unsigned CounterName) {
auto &Us = instance();
auto Result = Us.Counters.find(CounterName);
if (Result != Us.Counters.end()) {
auto &CounterInfo = Result->second;
int64_t CurrCount = CounterInfo.Count++;
uint64_t CurrIdx = CounterInfo.CurrChunkIdx;
if (CounterInfo.Chunks.empty())
return true;
if (CurrIdx >= CounterInfo.Chunks.size())
return false;
bool Res = CounterInfo.Chunks[CurrIdx].contains(CurrCount);
if (Us.BreakOnLast && CurrIdx == (CounterInfo.Chunks.size() - 1) &&
CurrCount == CounterInfo.Chunks[CurrIdx].End) {
LLVM_BUILTIN_DEBUGTRAP;
}
if (CurrCount > CounterInfo.Chunks[CurrIdx].End) {
CounterInfo.CurrChunkIdx++;
/// Handle consecutive blocks.
if (CounterInfo.CurrChunkIdx < CounterInfo.Chunks.size() &&
CurrCount == CounterInfo.Chunks[CounterInfo.CurrChunkIdx].Begin)
return true;
}
return Res;
}
// Didn't find the counter, should we warn?
return true;
}
LLVM_DUMP_METHOD void DebugCounter::dump() const {
print(dbgs());
}
|