gem5 v24.0.0.0
Loading...
Searching...
No Matches
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"
35
36namespace sc_core
37{
38
39sc_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
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
81const char *
82sc_report::what() const throw()
83{
84 return _what.c_str();
85}
86
87const 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
97bool
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
111void
116
117void
118sc_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(
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
137void
138sc_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
157void
165
166void
176
177void
179{
180 panic("simulation aborted");
181}
182
183} // namespace sc_core
virtual ~sc_report()
Definition sc_report.cc:75
const char * _msg
Definition sc_report.hh:104
virtual const char * what() const
Definition sc_report.cc:82
sc_severity _severity
Definition sc_report.hh:102
sc_report(const sc_report &)
Definition sc_report.cc:53
static void register_id(int id, const char *msg)
Definition sc_report.cc:118
static const char * get_message(int id)
Definition sc_report.cc:88
static void make_warnings_errors(bool)
Definition sc_report.cc:112
const char * _msgType
Definition sc_report.hh:103
const char * _processName
Definition sc_report.hh:109
static bool is_suppressed(int id)
Definition sc_report.cc:98
sc_report & operator=(const sc_report &)
Definition sc_report.cc:59
static void suppress_id(int id, bool)
Definition sc_report.cc:138
static void suppress_infos(bool)
Definition sc_report.cc:158
static void suppress_warnings(bool)
Definition sc_report.cc:167
std::string _what
Definition sc_report.hh:111
const char * _fileName
Definition sc_report.hh:106
STL pair class.
Definition stl.hh:58
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
void sc_abort()
Definition sc_report.cc:178
@ SC_DEFAULT_WARNING_ACTIONS
const std::string sc_report_compose_message(const sc_report &)
@ SC_WARNING
Definition sc_report.hh:42
std::map< std::string, ReportMsgInfo > & reportMsgInfoMap()
Definition report.cc:49
std::map< int, std::string > & reportIdToMsgMap()
Definition report.cc:56
bool reportWarningsAsErrors
Definition report.cc:98
ReportSevInfo reportSevInfos[sc_core::SC_MAX_SEVERITY]
Definition report.cc:40
#define SC_REPORT_ERROR(msg_type, msg)
sc_core::sc_actions actions
Definition report.hh:88

Generated on Tue Jun 18 2024 16:24:07 for gem5 by doxygen 1.11.0