gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
report.hh
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  * Authors: Gabe Black
28  */
29 
30 #ifndef __SYSTEMC_UTILS_REPORT_HH__
31 #define __SYSTEMC_UTILS_REPORT_HH__
32 
33 #include <initializer_list>
34 #include <map>
35 #include <memory>
36 #include <string>
37 #include <utility>
38 
41 
42 namespace sc_gem5
43 {
44 
46 {
47  explicit ReportMsgInfo() :
50  sc_core::SC_UNSPECIFIED, sc_core::SC_UNSPECIFIED },
51  sevCounts{0, 0, 0, 0}, sevLimits{-1, -1, -1, -1}, id(-1)
52  {}
53 
54  void
56  {
57  int sevLimit = sevLimits[severity];
58  int sevCount = sevCounts[severity];
59  if ((limit != -1 && limit >= count) ||
60  (sevLimit != 1 && sevLimit >= sevCount)) {
61  actions |= sc_core::SC_STOP;
62  }
63  }
64 
66  int count;
67  int limit;
68 
72 
73  int id;
74 };
75 
77 {
79  actions(actions), count(0), limit(-1)
80  {}
81 
82  void
84  {
85  if (limit != -1 && limit >= count)
86  actions |= sc_core::SC_STOP;
87  }
88 
90  int count;
91  int limit;
92 };
93 
96 
97 std::map<std::string, ReportMsgInfo> &reportMsgInfoMap();
98 std::map<int, std::string> &reportIdToMsgMap();
99 
100 extern int reportVerbosityLevel;
101 
105 
107 
108 extern std::unique_ptr<sc_core::sc_report> globalReportCache;
109 
110 extern bool reportWarningsAsErrors;
111 
113 {
114  public:
115  DefaultReportMessages(std::initializer_list<std::pair<int, const char *>>);
116 };
117 
118 } // namespace sc_gem5
119 
120 #endif // __SYSTEMC_UTILS_REPORT_HH__
unsigned sc_actions
std::map< std::string, ReportMsgInfo > & reportMsgInfoMap()
Definition: report.cc:51
std::unique_ptr< sc_core::sc_report > globalReportCache
Definition: report.cc:73
sc_core::sc_actions reportSuppressedActions
Definition: report.cc:66
STL pair class.
Definition: stl.hh:61
int reportVerbosityLevel
Definition: report.cc:64
sc_core::sc_actions sevActions[sc_core::SC_MAX_SEVERITY]
Definition: report.hh:69
std::map< int, std::string > & reportIdToMsgMap()
Definition: report.cc:58
sc_core::sc_actions reportCatchActions
Definition: report.cc:68
sc_core::sc_actions actions
Definition: report.hh:89
void(* sc_report_handler_proc)(const sc_report &, const sc_actions &)
const char * reportSeverityNames[]
Definition: report.cc:35
sc_core::sc_report_handler_proc reportHandlerProc
Definition: report.cc:70
ReportSevInfo reportSevInfos[sc_core::SC_MAX_SEVERITY]
Definition: report.cc:42
sc_core::sc_actions reportForcedActions
Definition: report.cc:67
void checkLimit(sc_core::sc_actions &actions)
Definition: report.hh:83
bool reportWarningsAsErrors
Definition: report.cc:75
int sevCounts[sc_core::SC_MAX_SEVERITY]
Definition: report.hh:70
void checkLimits(sc_core::sc_severity severity, sc_core::sc_actions &actions)
Definition: report.hh:55
ReportSevInfo(sc_core::sc_actions actions)
Definition: report.hh:78
int sevLimits[sc_core::SC_MAX_SEVERITY]
Definition: report.hh:71
sc_core::sc_actions actions
Definition: report.hh:65

Generated on Fri Feb 28 2020 16:27:06 for gem5 by doxygen 1.8.13