sc_report.cc (12902:1db5abf06c24) sc_report.cc (12997:cfc14d8f4725)
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

--- 15 unchanged lines hidden (view full) ---

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"
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

--- 15 unchanged lines hidden (view full) ---

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"
32#include "systemc/ext/utils/sc_report_handler.hh"
32
33namespace sc_core
34{
35
33
34namespace sc_core
35{
36
36sc_report::sc_report(const sc_report &)
37sc_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)
37{
43{
38 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
44 _what = sc_report_compose_message(*this);
39}
40
45}
46
47sc_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
41sc_report &
52sc_report &
42sc_report::operator = (const sc_report &)
53sc_report::operator = (const sc_report &r)
43{
54{
44 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
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;
45 return *this;
46}
47
48sc_report::~sc_report() throw() {}
49
64 return *this;
65}
66
67sc_report::~sc_report() throw() {}
68
50sc_severity
51sc_report::get_severity() const
52{
53 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
54 return SC_FATAL;
55}
56
57const char *
69const char *
58sc_report::get_msg_type() const
59{
60 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
61 return "";
62}
63
64const char *
65sc_report::get_msg() const
66{
67 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
68 return "";
69}
70
71int
72sc_report::get_verbosity() const
73{
74 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
75 return SC_NONE;
76}
77
78const char *
79sc_report::get_file_name() const
80{
81 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
82 return "";
83}
84
85int
86sc_report::get_line_number() const
87{
88 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
89 return 0;
90}
91
92const sc_time &
93sc_report::get_time() const
94{
95 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
96 return *(const sc_time *)nullptr;
97}
98
99const char *
100sc_report::get_process_name() const
101{
102 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
103 return "";
104}
105
106const char *
107sc_report::what() const throw()
108{
70sc_report::what() const throw()
71{
109 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
110 return "";
72 return _what.c_str();
111}
112
113const char *
114sc_report::get_message(int id)
115{
116 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
117 return "";
118}

--- 30 unchanged lines hidden (view full) ---

149}
150
151void
152sc_report::suppress_warnings(bool)
153{
154 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
155}
156
73}
74
75const char *
76sc_report::get_message(int id)
77{
78 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
79 return "";
80}

--- 30 unchanged lines hidden (view full) ---

111}
112
113void
114sc_report::suppress_warnings(bool)
115{
116 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
117}
118
157int
158sc_report::get_id() const
159{
160 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
161 return 0;
162}
163
164void
165sc_abort()
166{
119void
120sc_abort()
121{
167 panic("%s not implemented.\n", __PRETTY_FUNCTION__);
122 panic("simulation aborted");
168}
169
170} // namespace sc_core
123}
124
125} // namespace sc_core