Go to the documentation of this file.
41 #ifndef __BASE_LOGGING_HH__
42 #define __BASE_LOGGING_HH__
98 template<
typename ...Args>
void
101 std::stringstream
ss;
103 const std::string str =
ss.str();
105 std::stringstream ss_formatted;
106 ss_formatted <<
prefix << str;
107 if (str.length() && str.back() !=
'\n' && str.back() !=
'\r')
108 ss_formatted << std::endl;
111 log(loc, ss_formatted.str());
114 template<
typename ...Args>
void
134 std::cerr << loc.
file <<
":" << loc.
line <<
": " <<
s;
143 #define base_message(logger, ...) \
144 logger.print(::gem5::Logger::Loc(__FILE__, __LINE__), __VA_ARGS__)
154 #define base_message_once(...) do { \
155 static bool once = false; \
157 base_message(__VA_ARGS__); \
162 #define exit_message(logger, ...) \
164 base_message(logger, __VA_ARGS__); \
165 logger.exit_helper(); \
178 #define panic(...) exit_message(::gem5::Logger::getPanic(), __VA_ARGS__)
190 #define fatal(...) exit_message(::gem5::Logger::getFatal(), __VA_ARGS__)
204 #define panic_if(cond, ...) \
206 if (GEM5_UNLIKELY(cond)) { \
207 panic("panic condition " # cond " occurred: %s", \
208 ::gem5::csprintf(__VA_ARGS__)); \
226 #define fatal_if(cond, ...) \
228 if (GEM5_UNLIKELY(cond)) { \
229 fatal("fatal condition " # cond " occurred: %s", \
230 ::gem5::csprintf(__VA_ARGS__)); \
246 #define warn(...) base_message(::gem5::Logger::getWarn(), __VA_ARGS__)
247 #define inform(...) base_message(::gem5::Logger::getInfo(), __VA_ARGS__)
248 #define hack(...) base_message(::gem5::Logger::getHack(), __VA_ARGS__)
250 #define warn_once(...) \
251 base_message_once(::gem5::Logger::getWarn(), __VA_ARGS__)
252 #define inform_once(...) \
253 base_message_once(::gem5::Logger::getInfo(), __VA_ARGS__)
254 #define hack_once(...) \
255 base_message_once(::gem5::Logger::getHack(), __VA_ARGS__)
273 #define warn_if(cond, ...) \
275 if (GEM5_UNLIKELY(cond)) \
279 #define warn_if_once(cond, ...) \
281 if (GEM5_UNLIKELY(cond)) \
282 warn_once(__VA_ARGS__); \
287 #define NDEBUG_DEFINED 1
289 #define NDEBUG_DEFINED 0
292 template <
typename ...Args>
318 #define gem5_assert(cond, ...) \
320 if (GEM5_UNLIKELY(!NDEBUG_DEFINED && !static_cast<bool>(cond))) { \
321 panic("assert(" #cond ") failed%s", _assertMsg(__VA_ARGS__)); \
326 #define chatty_assert(...) \
328 gem5_assert(__VA_ARGS__); \
329 GEM5_DEPRECATED_MACRO(chatty_assert, {}, "Please use gem5_assert()"); \
333 #endif // __BASE_LOGGING_HH__
void exit_helper()
This helper is necessary since noreturn isn't inherited by virtual functions, and gcc will get mad if...
static Logger & getPanic()
Get a Logger for the specified type of message.
Bitfield< 31, 29 > format
std::string csprintf(const char *format, const Args &...args)
static Logger & getHack()
void ccprintf(cp::Print &print)
std::string _assertMsg(const std::string &format, Args... args)
static Logger & getInfo()
void print(const Loc &loc, const std::string &format, const Args &...args)
static Logger & getFatal()
Loc(const char *file, int line)
static Logger & getWarn()
virtual void log(const Loc &loc, std::string s)
Generates the log message.
static void setLevel(LogLevel ll)
Logger(const char *prefix)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void print(const Loc &loc, const char *format, const Args &...args)
Generated on Wed Jul 13 2022 10:39:14 for gem5 by doxygen 1.8.17