gem5  v20.0.0.3
logging.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014, 2017, 2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2002-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __BASE_LOGGING_HH__
42 #define __BASE_LOGGING_HH__
43 
44 #include <cassert>
45 #include <sstream>
46 #include <utility>
47 
48 #include "base/compiler.hh"
49 #include "base/cprintf.hh"
50 
51 class Logger
52 {
53  public:
54 
55  // Get a Logger for the specified type of message.
56  static Logger &getPanic();
57  static Logger &getFatal();
58  static Logger &getWarn();
59  static Logger &getInfo();
60  static Logger &getHack();
61 
62  enum LogLevel {
65  };
66 
67  static void
69  {
70  getPanic().enabled = (ll >= PANIC);
71  getFatal().enabled = (ll >= FATAL);
72  getWarn().enabled = (ll >= WARN);
73  getInfo().enabled = (ll >= INFO);
74  getHack().enabled = (ll >= HACK);
75  }
76 
77  struct Loc
78  {
79  Loc(const char *file, int line) : file(file), line(line) {}
80  const char *file;
81  int line;
82  };
83 
84  Logger(const char *prefix) : enabled(true), prefix(prefix)
85  {
86  assert(prefix);
87  }
88 
89  virtual ~Logger() {};
90 
91  void
92  print(const Loc &loc, const std::string &str)
93  {
94  std::stringstream ss;
95  ss << prefix << str;
96  if (str.length() && str.back() != '\n' && str.back() != '\r')
97  ss << std::endl;
98  if (!enabled)
99  return;
100  log(loc, ss.str());
101  }
102 
103  template<typename ...Args> void
104  print(const Loc &loc, const char *format, const Args &...args)
105  {
106  std::stringstream ss;
107  ccprintf(ss, format, args...);
108  print(loc, ss.str());
109  }
110 
111  template<typename ...Args> void
112  print(const Loc &loc, const std::string &format, const Args &...args)
113  {
114  print(loc, format.c_str(), args...);
115  }
116 
117  // This helper is necessary since noreturn isn't inherited by virtual
118  // functions, and gcc will get mad if a function calls panic and then
119  // doesn't return.
120  void exit_helper() M5_ATTR_NORETURN { exit(); ::abort(); }
121 
122  protected:
123  bool enabled;
124 
125  virtual void log(const Loc &loc, std::string s) = 0;
126  virtual void exit() { /* Fall through to the abort in exit_helper. */ }
127 
128  const char *prefix;
129 };
130 
131 
132 #define base_message(logger, ...) \
133  logger.print(::Logger::Loc(__FILE__, __LINE__), __VA_ARGS__)
134 
135 /*
136  * Only print the message the first time this expression is
137  * encountered. i.e. This doesn't check the string itself and
138  * prevent duplicate strings, this prevents the statement from
139  * happening more than once. So, even if the arguments change and that
140  * would have resulted in a different message thoes messages would be
141  * supressed.
142  */
143 #define base_message_once(...) do { \
144  static bool once = false; \
145  if (!once) { \
146  base_message(__VA_ARGS__); \
147  once = true; \
148  } \
149  } while (0)
150 
151 #define exit_message(logger, ...) \
152  do { \
153  base_message(logger, __VA_ARGS__); \
154  logger.exit_helper(); \
155  } while (0)
156 
163 #define panic(...) exit_message(::Logger::getPanic(), __VA_ARGS__)
164 
171 #define fatal(...) exit_message(::Logger::getFatal(), __VA_ARGS__)
172 
181 #define panic_if(cond, ...) \
182  do { \
183  if ((cond)) { \
184  panic("panic condition " # cond " occurred: %s", \
185  csprintf(__VA_ARGS__)); \
186  } \
187  } while (0)
188 
189 
199 #define fatal_if(cond, ...) \
200  do { \
201  if ((cond)) { \
202  fatal("fatal condition " # cond " occurred: %s", \
203  csprintf(__VA_ARGS__)); \
204  } \
205  } while (0)
206 
207 
208 #define warn(...) base_message(::Logger::getWarn(), __VA_ARGS__)
209 #define inform(...) base_message(::Logger::getInfo(), __VA_ARGS__)
210 #define hack(...) base_message(::Logger::getHack(), __VA_ARGS__)
211 
212 #define warn_once(...) base_message_once(::Logger::getWarn(), __VA_ARGS__)
213 #define inform_once(...) base_message_once(::Logger::getInfo(), __VA_ARGS__)
214 #define hack_once(...) base_message_once(::Logger::getHack(), __VA_ARGS__)
215 
224 #define warn_if(cond, ...) \
225  do { \
226  if ((cond)) \
227  warn(__VA_ARGS__); \
228  } while (0)
229 
230 #define warn_if_once(cond, ...) \
231  do { \
232  if ((cond)) \
233  warn_once(__VA_ARGS__); \
234  } while (0)
235 
245 #ifdef NDEBUG
246 #define chatty_assert(cond, ...)
247 #else
248 #define chatty_assert(cond, ...) \
249  do { \
250  if (!(cond)) \
251  panic("assert(" # cond ") failed: %s", csprintf(__VA_ARGS__)); \
252  } while (0)
253 #endif // NDEBUG
254 #endif // __BASE_LOGGING_HH__
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
virtual void exit()
Definition: logging.hh:126
const char * prefix
Definition: logging.hh:128
virtual ~Logger()
Definition: logging.hh:89
bool enabled
Definition: logging.hh:123
LogLevel
Definition: logging.hh:62
const char * file
Definition: logging.hh:80
static Logger & getPanic()
Definition: logging.cc:78
static void setLevel(LogLevel ll)
Definition: logging.hh:68
Loc(const char *file, int line)
Definition: logging.hh:79
void exit_helper() M5_ATTR_NORETURN
Definition: logging.hh:120
Logger(const char *prefix)
Definition: logging.hh:84
Bitfield< 4 > s
Bitfield< 21 > ss
static Logger & getInfo()
Definition: logging.cc:81
void print(const Loc &loc, const std::string &str)
Definition: logging.hh:92
static Logger & getWarn()
Definition: logging.cc:80
static Logger & getHack()
Definition: logging.cc:82
static Logger & getFatal()
Definition: logging.cc:79
int line
Definition: logging.hh:81
Bitfield< 31, 29 > format
void print(const Loc &loc, const std::string &format, const Args &...args)
Definition: logging.hh:112
void print(const Loc &loc, const char *format, const Args &...args)
Definition: logging.hh:104
virtual void log(const Loc &loc, std::string s)=0

Generated on Fri Jul 3 2020 15:52:59 for gem5 by doxygen 1.8.13