systemc: Add some nonstandard, undocumented sc_report_* functions.
authorGabe Black <gabeblack@google.com>
Sat, 16 Jun 2018 03:02:06 +0000 (20:02 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 28 Aug 2018 21:16:00 +0000 (21:16 +0000)
The tests use these functions.

Change-Id: I3cdc10d433d9388742a20fb3a97a1a3efa699e11
Reviewed-on: https://gem5-review.googlesource.com/11271
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/ext/utils/_using.hh
src/systemc/ext/utils/sc_report_handler.hh
src/systemc/utils/sc_report_handler.cc

index 16b3e40310e6013220342f297fb2faa156534b03..721f40383efea900595c2f458a1c01ade235a3b6 100644 (file)
@@ -61,6 +61,8 @@ using sc_core::sc_report_handler_proc;
 using sc_core::sc_report_handler;
 using sc_core::sc_interrupt_here;
 using sc_core::sc_stop_here;
+using sc_core::sc_report_compose_message;
+using sc_core::sc_report_close_default_log;
 using sc_core::SC_DEFAULT_INFO_ACTIONS;
 using sc_core::SC_DEFAULT_WARNING_ACTIONS;
 using sc_core::SC_DEFAULT_ERROR_ACTIONS;
index aa0b1c99df99ac277251d7ba0df2b701f501528c..f6e32b9adc58827096de9e9e826e04d4c75a6278 100644 (file)
@@ -30,6 +30,8 @@
 #ifndef __SYSTEMC_EXT_UTIL_SC_REPORT_HANDLER_HH__
 #define __SYSTEMC_EXT_UTIL_SC_REPORT_HANDLER_HH__
 
+#include <string>
+
 #include "sc_report.hh" // for sc_severity
 
 namespace sc_core
@@ -135,6 +137,11 @@ class sc_report_handler
 void sc_interrupt_here(const char *msg_type, sc_severity);
 void sc_stop_here(const char *msg_type, sc_severity);
 
+// Nonstandard
+// From Accellera, "not documented, but available".
+const std::string sc_report_compose_message(const sc_report &);
+bool sc_report_close_default_log();
+
 } // namespace sc_core
 
 #endif  //__SYSTEMC_EXT_UTIL_SC_REPORT_HANDLER_HH__
index 0faf995f570cab6a2d1046f55570965263d81074..1a0e0d49153bf6e6f7b609a73b522e0783d6894d 100644 (file)
@@ -234,4 +234,18 @@ sc_stop_here(const char *msg_type, sc_severity)
     warn("%s not implemented.\n", __PRETTY_FUNCTION__);
 }
 
+const std::string
+sc_report_compose_message(const sc_report &)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return "";
+}
+
+bool
+sc_report_close_default_log()
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return false;
+}
+
 } // namespace sc_core