/// \file debug.cpp /// \brief Implementation of the debug framework // // This file is distributed under the MIT License. See LICENSE.md for details. // // Standard includes #include #include #include #include // LLVM includes #include "llvm/IR/Value.h" // Local libraries includes #include "revng/Support/Debug.h" size_t MaxLoggerNameLength = 0; LogTerminator DoLog; llvm::ManagedStatic Loggers; std::ostream &dbg(std::cerr); Logger<> PassesLog("passes"); Logger<> ReleaseLog("release"); template void Logger::emit() { if (X && Enabled) { std::string Pad = std::string(MaxLoggerNameLength - Name.size(), ' '); dbg << "[" << Name.data() << Pad << "] "; for (unsigned I = 0; I < IndentLevel; I++) dbg << " "; dbg << Buffer.str() << "\n"; Buffer.str(""); Buffer.clear(); } } template unsigned Logger::IndentLevel; // Force instantiation template class Logger; template class Logger;