Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 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 "base/logging.hh" |
| 31 | #include "systemc/ext/utils/sc_report.hh" |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 32 | #include "systemc/ext/utils/sc_report_handler.hh" |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 33 | |
| 34 | namespace sc_core |
| 35 | { |
| 36 | |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 37 | sc_report::sc_report(sc_severity _severity, const char *_msgType, |
| 38 | const char *_msg, int _verbosity, const char *_fileName, |
| 39 | int _lineNumber, sc_time _time, const char *_processName, int _id) : |
| 40 | _severity(_severity), _msgType(_msgType), _msg(_msg), |
| 41 | _verbosity(_verbosity), _fileName(_fileName), _lineNumber(_lineNumber), |
| 42 | _time(_time), _processName(_processName), _id(_id) |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 43 | { |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 44 | _what = sc_report_compose_message(*this); |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 47 | sc_report::sc_report(const sc_report &r) : |
| 48 | sc_report(r._severity, r._msgType, r._msg, r._verbosity, r._fileName, |
| 49 | r._lineNumber, r._time, r._processName, r._id) |
| 50 | {} |
| 51 | |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 52 | sc_report & |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 53 | sc_report::operator = (const sc_report &r) |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 54 | { |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 55 | _severity = r._severity; |
| 56 | _msgType = r._msgType; |
| 57 | _msg = r._msg; |
| 58 | _verbosity = r._verbosity; |
| 59 | _fileName = r._fileName; |
| 60 | _lineNumber = r._lineNumber; |
| 61 | _time = r._time; |
| 62 | _processName = r._processName; |
| 63 | _id = r._id; |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 64 | return *this; |
| 65 | } |
| 66 | |
| 67 | sc_report::~sc_report() throw() {} |
| 68 | |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 69 | const char * |
| 70 | sc_report::what() const throw() |
| 71 | { |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 72 | return _what.c_str(); |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Gabe Black | 84c1b3b | 2018-06-15 15:14:54 -0700 | [diff] [blame] | 75 | const char * |
| 76 | sc_report::get_message(int id) |
| 77 | { |
| 78 | warn("%s not implemented.\n", __PRETTY_FUNCTION__); |
| 79 | return ""; |
| 80 | } |
| 81 | |
| 82 | bool |
| 83 | sc_report::is_suppressed(int id) |
| 84 | { |
| 85 | warn("%s not implemented.\n", __PRETTY_FUNCTION__); |
| 86 | return false; |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | sc_report::make_warnings_errors(bool) |
| 91 | { |
| 92 | warn("%s not implemented.\n", __PRETTY_FUNCTION__); |
| 93 | } |
| 94 | |
| 95 | void |
| 96 | sc_report::register_id(int id, const char *msg) |
| 97 | { |
| 98 | warn("%s not implemented.\n", __PRETTY_FUNCTION__); |
| 99 | } |
| 100 | |
| 101 | void |
| 102 | sc_report::suppress_id(int id, bool) |
| 103 | { |
| 104 | warn("%s not implemented.\n", __PRETTY_FUNCTION__); |
| 105 | } |
| 106 | |
| 107 | void |
| 108 | sc_report::suppress_infos(bool) |
| 109 | { |
| 110 | warn("%s not implemented.\n", __PRETTY_FUNCTION__); |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | sc_report::suppress_warnings(bool) |
| 115 | { |
| 116 | warn("%s not implemented.\n", __PRETTY_FUNCTION__); |
| 117 | } |
| 118 | |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 119 | void |
| 120 | sc_abort() |
| 121 | { |
Gabe Black | ea6b370 | 2018-07-25 19:30:30 -0700 | [diff] [blame^] | 122 | panic("simulation aborted"); |
Gabe Black | 7adb1b2 | 2018-05-18 02:12:34 -0700 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | } // namespace sc_core |