diff options
author | Gabe Black <gabeblack@google.com> | 2018-06-15 16:43:42 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-08-22 01:00:49 +0000 |
commit | 29d3ebd5bae89bc710c68f07c88126c376b6cef5 (patch) | |
tree | 85af47418a86db0d56026de6865ba26ea0b2fd92 /src/systemc/utils | |
parent | b29a2d00b85f4c51b9abe6651a8145a0e1eb5484 (diff) | |
download | gem5-29d3ebd5bae89bc710c68f07c88126c376b6cef5.tar.xz |
systemc: Add nonstandard sc_trace-s for sc_event and sc_time.
These are not in the standard but are defined by Accellera and are
used in the regression tests.
Change-Id: Idb8358530b1135526c52733e628461a17308e216
Reviewed-on: https://gem5-review.googlesource.com/11259
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/utils')
-rw-r--r-- | src/systemc/utils/sc_trace_file.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/systemc/utils/sc_trace_file.cc b/src/systemc/utils/sc_trace_file.cc index 66f7fef06..9cae922e3 100644 --- a/src/systemc/utils/sc_trace_file.cc +++ b/src/systemc/utils/sc_trace_file.cc @@ -221,6 +221,30 @@ sc_trace(sc_trace_file *, const sc_dt::sc_fxnum_fast *, const std::string &) } void +sc_trace(sc_trace_file *, const sc_event &, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void +sc_trace(sc_trace_file *, const sc_event *, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void +sc_trace(sc_trace_file *, const sc_time &, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void +sc_trace(sc_trace_file *, const sc_time *, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void sc_trace(sc_trace_file *, const unsigned char &, const std::string &, int width) { |