gem5  v22.1.0.0
logging.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014, 2017 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 #include "base/logging.hh"
42 
43 #include <sstream>
44 
45 #include "base/hostinfo.hh"
46 
47 namespace gem5
48 {
49 
50 namespace {
51 
52 class ExitLogger : public Logger
53 {
54  public:
55  using Logger::Logger;
56 
57  protected:
58  void
59  log(const Loc &loc, std::string s) override
60  {
61  std::stringstream ss;
62  ccprintf(ss, "Memory Usage: %ld KBytes\n", memUsage());
63  Logger::log(loc, s + ss.str());
64  }
65 };
66 
67 class FatalLogger : public ExitLogger
68 {
69  public:
70  using ExitLogger::ExitLogger;
71 
72  protected:
73  void exit() override { ::exit(1); }
74 };
75 
76 } // anonymous namespace
77 
78 // We intentionally put all the loggers on the heap to prevent them from being
79 // destructed at the end of the program. This make them safe to be used inside
80 // destructor of other global objects. Also, we make them function static
81 // veriables to ensure they are initialized ondemand, so it is also safe to use
82 // them inside constructor of other global objects.
83 
84 Logger&
86  static ExitLogger* panic_logger = new ExitLogger("panic: ");
87  return *panic_logger;
88 }
89 
90 Logger&
92  static FatalLogger* fatal_logger = new FatalLogger("fatal: ");
93  return *fatal_logger;
94 }
95 
96 Logger&
98  static Logger* warn_logger = new Logger("warn: ");
99  return *warn_logger;
100 }
101 
102 Logger&
103 Logger::getInfo() {
104  static Logger* info_logger = new Logger("info: ");
105  return *info_logger;
106 }
107 
108 Logger&
109 Logger::getHack() {
110  static Logger* hack_logger = new Logger("hack: ");
111  return *hack_logger;
112 }
113 
114 } // namespace gem5
virtual void log(const Loc &loc, std::string s)
Generates the log message.
Definition: logging.hh:132
static Logger & getWarn()
Definition: logging_mock.cc:98
Logger(const char *prefix)
Definition: logging.hh:91
static Logger & getInfo()
static Logger & getHack()
static Logger & getPanic()
Get a Logger for the specified type of message.
Definition: logging_mock.cc:86
static Logger & getFatal()
Definition: logging_mock.cc:92
Bitfield< 1 > s
Definition: pagetable.hh:64
Bitfield< 3 > exit
Definition: misc.hh:855
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t memUsage()
Determine the simulator process' total virtual memory usage.
Definition: hostinfo.cc:76
void ccprintf(cp::Print &print)
Definition: cprintf.hh:130
std::stringstream ss
Definition: trace.test.cc:45

Generated on Wed Dec 21 2022 10:22:29 for gem5 by doxygen 1.9.1