report.cc revision 13316:0423798f1a05
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#include "systemc/utils/report.hh"
31
32namespace sc_gem5
33{
34
35const char *reportSeverityNames[] = {
36    [sc_core::SC_INFO] = "Info",
37    [sc_core::SC_WARNING] = "Warning",
38    [sc_core::SC_ERROR] = "Error",
39    [sc_core::SC_FATAL] = "Fatal"
40};
41
42ReportSevInfo reportSevInfos[sc_core::SC_MAX_SEVERITY] =
43{
44    [sc_core::SC_INFO] = ReportSevInfo(sc_core::SC_DEFAULT_INFO_ACTIONS),
45    [sc_core::SC_WARNING] = ReportSevInfo(sc_core::SC_DEFAULT_WARNING_ACTIONS),
46    [sc_core::SC_ERROR] = ReportSevInfo(sc_core::SC_DEFAULT_ERROR_ACTIONS),
47    [sc_core::SC_FATAL] = ReportSevInfo(sc_core::SC_DEFAULT_FATAL_ACTIONS)
48};
49
50std::map<std::string, ReportMsgInfo> reportMsgInfoMap;
51std::map<int, std::string> reportIdToMsgMap;
52
53int reportVerbosityLevel = sc_core::SC_MEDIUM;
54
55sc_core::sc_actions reportSuppressedActions = sc_core::SC_UNSPECIFIED;
56sc_core::sc_actions reportForcedActions = sc_core::SC_UNSPECIFIED;
57sc_core::sc_actions reportCatchActions = sc_core::SC_DISPLAY;
58
59sc_core::sc_report_handler_proc reportHandlerProc =
60    &sc_core::sc_report_handler::default_handler;
61
62std::unique_ptr<sc_core::sc_report> globalReportCache;
63
64bool reportWarningsAsErrors = false;
65
66DefaultReportMessages::DefaultReportMessages(
67        std::initializer_list<std::pair<int, const char *>> msgs)
68{
69    for (auto &p: msgs)
70        sc_core::sc_report::register_id(p.first, p.second);
71}
72
73} // namespace sc_gem5
74