diff options
Diffstat (limited to 'tools/standalone_miri/debug.hpp')
-rw-r--r-- | tools/standalone_miri/debug.hpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/standalone_miri/debug.hpp b/tools/standalone_miri/debug.hpp new file mode 100644 index 00000000..77295aa2 --- /dev/null +++ b/tools/standalone_miri/debug.hpp @@ -0,0 +1,38 @@ +// +// +// +#pragma once + +#include <iostream> + +enum class DebugLevel { + Trace, + Debug, + Notice, + Warn, + Error, + Fatal, + Bug, +}; + +class DebugSink +{ + ::std::ostream& m_inner; + DebugSink(::std::ostream& inner); +public: + ~DebugSink(); + + template<typename T> + ::std::ostream& operator<<(const T& v) { return m_inner << v; } + + static bool enabled(const char* fcn_name); + static DebugSink get(const char* fcn_name, const char* file, unsigned line, DebugLevel lvl); +}; + +#define LOG_TRACE(strm) do { if(DebugSink::enabled(__FUNCTION__)) DebugSink::get(__FUNCTION__,__FILE__,__LINE__,DebugLevel::Trace) << strm; } while(0) +#define LOG_DEBUG(strm) do { if(DebugSink::enabled(__FUNCTION__)) DebugSink::get(__FUNCTION__,__FILE__,__LINE__,DebugLevel::Debug) << strm; } while(0) +#define LOG_ERROR(strm) do { DebugSink::get(__FUNCTION__,__FILE__,__LINE__,DebugLevel::Error) << strm; exit(1); } while(0) +#define LOG_FATAL(strm) do { DebugSink::get(__FUNCTION__,__FILE__,__LINE__,DebugLevel::Fatal) << strm; exit(1); } while(0) +#define LOG_TODO(strm) do { DebugSink::get(__FUNCTION__,__FILE__,__LINE__,DebugLevel::Bug) << "TODO: " << strm; abort(); } while(0) +#define LOG_BUG(strm) do { DebugSink::get(__FUNCTION__,__FILE__,__LINE__,DebugLevel::Bug) << "BUG: " << strm; abort(); } while(0) +#define LOG_ASSERT(cnd) do { if( !(cnd) ) { LOG_BUG("Assertion failure: " #cnd); } } while(0) |