#include "llvm/Support/DebugCounter.h"
#include "DebugOptions.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Format.h"
usingnamespacellvm;
namespace llvm {
void DebugCounter::Chunk::print(llvm::raw_ostream &OS) { … }
void DebugCounter::printChunks(raw_ostream &OS, ArrayRef<Chunk> Chunks) { … }
bool DebugCounter::parseChunks(StringRef Str, SmallVector<Chunk> &Chunks) { … }
}
namespace {
class DebugCounterList : public cl::list<std::string, DebugCounter> { … };
struct DebugCounterOwner : DebugCounter { … };
}
void llvm::initDebugCounterOptions() { … }
DebugCounter &DebugCounter::instance() { … }
void DebugCounter::push_back(const std::string &Val) { … }
void DebugCounter::print(raw_ostream &OS) const { … }
bool DebugCounter::shouldExecuteImpl(unsigned CounterName) { … }
LLVM_DUMP_METHOD void DebugCounter::dump() const { … }