gem5  v20.1.0.0
sc_report.cc
Go to the documentation of this file.
1 /*
2  * Copyright 2018 Google, Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #include <cstring>
29 
30 #include "base/logging.hh"
34 #include "systemc/utils/report.hh"
35 
36 namespace sc_core
37 {
38 
39 sc_report::sc_report(sc_severity _severity, const char *msg_type,
40  const char *msg, int _verbosity, const char *_fileName,
41  int _lineNumber, sc_time _time, const char *_processName, int _id) :
42  _severity(_severity), _msgType(msg_type), _msg(msg),
43  _verbosity(_verbosity), _fileName(_fileName), _lineNumber(_lineNumber),
44  _time(_time), _processName(_processName), _id(_id)
45 {
46  if (_msgType)
47  _msgType = strdup(_msgType);
48  if (_msg)
49  _msg = strdup(_msg);
51 }
52 
54  sc_report(r._severity, r._msgType, r._msg, r._verbosity, r._fileName,
55  r._lineNumber, r._time, r._processName, r._id)
56 {}
57 
58 sc_report &
60 {
61  _severity = r._severity;
62  free((void *)_msgType);
63  _msgType = r._msgType ? strdup(r._msgType) : nullptr;
64  free((void *)_msg);
65  _msg = r._msg ? strdup(r._msg) : nullptr;
66  _verbosity = r._verbosity;
67  _fileName = r._fileName;
68  _lineNumber = r._lineNumber;
69  _time = r._time;
70  _processName = r._processName;
71  _id = r._id;
72  return *this;
73 }
74 
76 {
77  free((void *)_msgType);
78  free((void *)_msg);
79 }
80 
81 const char *
82 sc_report::what() const throw()
83 {
84  return _what.c_str();
85 }
86 
87 const char *
89 {
90  auto it = sc_gem5::reportIdToMsgMap().find(id);
91  if (it == sc_gem5::reportIdToMsgMap().end())
92  return "unknown id";
93  else
94  return it->second.c_str();
95 }
96 
97 bool
99 {
100  auto it = sc_gem5::reportIdToMsgMap().find(id);
101  if (it == sc_gem5::reportIdToMsgMap().end())
102  return false;
103 
104  auto &msgInfo = sc_gem5::reportMsgInfoMap()[it->second];
105 
106  return (msgInfo.actions == SC_DO_NOTHING ||
107  (msgInfo.sevActions[SC_INFO] == SC_DO_NOTHING &&
108  msgInfo.sevActions[SC_WARNING] == SC_DO_NOTHING));
109 }
110 
111 void
113 {
115 }
116 
117 void
118 sc_report::register_id(int id, const char *msg)
119 {
120  if (id < 0) {
121  SC_REPORT_ERROR(SC_ID_REGISTER_ID_FAILED_, "invalid report id");
122  return;
123  }
124  if (!msg) {
125  SC_REPORT_ERROR(SC_ID_REGISTER_ID_FAILED_, "invalid report message");
126  return;
127  }
128  auto p = sc_gem5::reportIdToMsgMap().insert(
129  std::pair<int, std::string>(id, msg));
130  if (!p.second) {
131  SC_REPORT_ERROR(SC_ID_REGISTER_ID_FAILED_, "report id already exists");
132  } else {
133  sc_gem5::reportMsgInfoMap()[msg].id = id;
134  }
135 }
136 
137 void
138 sc_report::suppress_id(int id, bool suppress)
139 {
140  auto it = sc_gem5::reportIdToMsgMap().find(id);
141  if (it == sc_gem5::reportIdToMsgMap().end())
142  return;
143 
144  if (suppress) {
145  sc_gem5::reportMsgInfoMap()[it->second].
146  sevActions[SC_INFO] = SC_DO_NOTHING;
147  sc_gem5::reportMsgInfoMap()[it->second].
148  sevActions[SC_WARNING] = SC_DO_NOTHING;
149  } else {
150  sc_gem5::reportMsgInfoMap()[it->second].
151  sevActions[SC_INFO] = SC_UNSPECIFIED;
152  sc_gem5::reportMsgInfoMap()[it->second].
153  sevActions[SC_WARNING] = SC_UNSPECIFIED;
154  }
155 }
156 
157 void
159 {
160  if (suppress)
162  else
164 }
165 
166 void
168 {
169  if (suppress) {
171  } else {
174  }
175 }
176 
177 void
179 {
180  panic("simulation aborted");
181 }
182 
183 } // namespace sc_core
sc_core::SC_INFO
@ SC_INFO
Definition: sc_report.hh:41
sc_core::SC_ID_REGISTER_ID_FAILED_
const char SC_ID_REGISTER_ID_FAILED_[]
Definition: messages.cc:34
messages.hh
sc_core::SC_WARNING
@ SC_WARNING
Definition: sc_report.hh:42
sc_core::sc_report::~sc_report
virtual ~sc_report()
Definition: sc_report.cc:75
sc_core::sc_severity
sc_severity
Definition: sc_report.hh:39
sc_core::sc_report::_msgType
const char * _msgType
Definition: sc_report.hh:103
sc_core::sc_report::_fileName
const char * _fileName
Definition: sc_report.hh:106
sc_core::sc_report::suppress_warnings
static void suppress_warnings(bool)
Definition: sc_report.cc:167
sc_core::sc_report_compose_message
const std::string sc_report_compose_message(const sc_report &)
Definition: sc_report_handler.cc:370
sc_core::sc_report::_msg
const char * _msg
Definition: sc_report.hh:104
sc_core::SC_UNSPECIFIED
@ SC_UNSPECIFIED
Definition: sc_report_handler.hh:43
sc_core
Definition: messages.cc:31
report.hh
sc_core::sc_report::_processName
const char * _processName
Definition: sc_report.hh:109
sc_gem5::ReportSevInfo::actions
sc_core::sc_actions actions
Definition: report.hh:87
sc_gem5::reportSevInfos
ReportSevInfo reportSevInfos[sc_core::SC_MAX_SEVERITY]
Definition: report.cc:40
SC_REPORT_ERROR
#define SC_REPORT_ERROR(msg_type, msg)
Definition: sc_report_handler.hh:127
sc_core::sc_report::is_suppressed
static bool is_suppressed(int id)
Definition: sc_report.cc:98
sc_core::sc_report::get_message
static const char * get_message(int id)
Definition: sc_report.cc:88
MipsISA::r
r
Definition: pra_constants.hh:95
sc_core::sc_time
Definition: sc_time.hh:49
sc_core::SC_DEFAULT_INFO_ACTIONS
@ SC_DEFAULT_INFO_ACTIONS
Definition: sc_report_handler.hh:56
sc_core::sc_report::sc_report
sc_report(const sc_report &)
Definition: sc_report.cc:53
sc_gem5::reportMsgInfoMap
std::map< std::string, ReportMsgInfo > & reportMsgInfoMap()
Definition: report.cc:49
std::pair
STL pair class.
Definition: stl.hh:58
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
sc_core::sc_report::register_id
static void register_id(int id, const char *msg)
Definition: sc_report.cc:118
sc_core::sc_report
Definition: sc_report.hh:60
sc_gem5::reportWarningsAsErrors
bool reportWarningsAsErrors
Definition: report.cc:73
sc_core::sc_report::suppress_infos
static void suppress_infos(bool)
Definition: sc_report.cc:158
sc_core::sc_report::_what
std::string _what
Definition: sc_report.hh:111
sc_core::sc_report::_severity
sc_severity _severity
Definition: sc_report.hh:102
sc_report_handler.hh
sc_core::sc_report::_lineNumber
int _lineNumber
Definition: sc_report.hh:107
sc_gem5::reportIdToMsgMap
std::map< int, std::string > & reportIdToMsgMap()
Definition: report.cc:56
sc_report.hh
sc_core::sc_report::what
virtual const char * what() const
Definition: sc_report.cc:82
logging.hh
sc_core::sc_abort
void sc_abort()
Definition: sc_report.cc:178
sc_core::sc_report::_verbosity
int _verbosity
Definition: sc_report.hh:105
sc_core::sc_report::_time
sc_time _time
Definition: sc_report.hh:108
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
sc_core::sc_report::make_warnings_errors
static void make_warnings_errors(bool)
Definition: sc_report.cc:112
sc_core::SC_DEFAULT_WARNING_ACTIONS
@ SC_DEFAULT_WARNING_ACTIONS
Definition: sc_report_handler.hh:57
sc_core::sc_report::operator=
sc_report & operator=(const sc_report &)
Definition: sc_report.cc:59
sc_core::sc_report::suppress_id
static void suppress_id(int id, bool)
Definition: sc_report.cc:138
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
sc_core::sc_report::_id
int _id
Definition: sc_report.hh:110
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
sc_core::SC_DO_NOTHING
@ SC_DO_NOTHING
Definition: sc_report_handler.hh:44

Generated on Wed Sep 30 2020 14:02:18 for gem5 by doxygen 1.8.17