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> & 51reportMsgInfoMap() 52{ 53 static std::map<std::string, ReportMsgInfo> m; 54 return m; 55} 56 57std::map<int, std::string> & 58reportIdToMsgMap() 59{ 60 static std::map<int, std::string> m; 61 return m; 62} 63 64int reportVerbosityLevel = sc_core::SC_MEDIUM; 65 66sc_core::sc_actions reportSuppressedActions = sc_core::SC_UNSPECIFIED; 67sc_core::sc_actions reportForcedActions = sc_core::SC_UNSPECIFIED; 68sc_core::sc_actions reportCatchActions = sc_core::SC_DISPLAY; 69 70sc_core::sc_report_handler_proc reportHandlerProc = 71 &sc_core::sc_report_handler::default_handler; 72 73std::unique_ptr<sc_core::sc_report> globalReportCache; 74 75bool reportWarningsAsErrors = false; 76 77DefaultReportMessages::DefaultReportMessages( 78 std::initializer_list<std::pair<int, const char *>> msgs) 79{ 80 for (auto &p: msgs) 81 sc_core::sc_report::register_id(p.first, p.second); 82} 83 84} // namespace sc_gem5 85