Go to the documentation of this file.
41 #ifndef __BASE_LOGGING_HH__
42 #define __BASE_LOGGING_HH__
97 template<
typename ...Args>
void
100 std::stringstream
ss;
102 const std::string str =
ss.str();
104 std::stringstream ss_formatted;
105 ss_formatted <<
prefix << str;
106 if (str.length() && str.back() !=
'\n' && str.back() !=
'\r')
107 ss_formatted << std::endl;
110 log(loc, ss_formatted.str());
113 template<
typename ...Args>
void
133 std::cerr << loc.
file <<
":" << loc.
line <<
": " <<
s;
142 #define base_message(logger, ...) \
143 logger.print(::gem5::Logger::Loc(__FILE__, __LINE__), __VA_ARGS__)
153 #define base_message_once(...) do { \
154 static bool once = false; \
156 base_message(__VA_ARGS__); \
161 #define exit_message(logger, ...) \
163 base_message(logger, __VA_ARGS__); \
164 logger.exit_helper(); \
177 #define panic(...) exit_message(::gem5::Logger::getPanic(), __VA_ARGS__)
189 #define fatal(...) exit_message(::gem5::Logger::getFatal(), __VA_ARGS__)
203 #define panic_if(cond, ...) \
205 if (GEM5_UNLIKELY(cond)) { \
206 panic("panic condition " # cond " occurred: %s", \
207 ::gem5::csprintf(__VA_ARGS__)); \
225 #define fatal_if(cond, ...) \
227 if (GEM5_UNLIKELY(cond)) { \
228 fatal("fatal condition " # cond " occurred: %s", \
229 ::gem5::csprintf(__VA_ARGS__)); \
245 #define warn(...) base_message(::gem5::Logger::getWarn(), __VA_ARGS__)
246 #define inform(...) base_message(::gem5::Logger::getInfo(), __VA_ARGS__)
247 #define hack(...) base_message(::gem5::Logger::getHack(), __VA_ARGS__)
249 #define warn_once(...) \
250 base_message_once(::gem5::Logger::getWarn(), __VA_ARGS__)
251 #define inform_once(...) \
252 base_message_once(::gem5::Logger::getInfo(), __VA_ARGS__)
253 #define hack_once(...) \
254 base_message_once(::gem5::Logger::getHack(), __VA_ARGS__)
272 #define warn_if(cond, ...) \
274 if (GEM5_UNLIKELY(cond)) \
278 #define warn_if_once(cond, ...) \
280 if (GEM5_UNLIKELY(cond)) \
281 warn_once(__VA_ARGS__); \
299 #define chatty_assert(cond, ...)
301 #define chatty_assert(cond, ...) \
303 if (GEM5_UNLIKELY(!(cond))) \
304 panic("assert(" # cond ") failed: %s", \
305 ::gem5::csprintf(__VA_ARGS__)); \
312 #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
static Logger & getHack()
void ccprintf(cp::Print &print)
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 28 2021 12:10:22 for gem5 by doxygen 1.8.17