systemc: Add support for deprecated integer report handler ids.
authorGabe Black <gabeblack@google.com>
Fri, 15 Jun 2018 22:14:54 +0000 (15:14 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 22 Aug 2018 00:55:25 +0000 (00:55 +0000)
These are deprecated but still used in the regression tests.

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

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

index 9ba2b334d50d961bac3afd6e8738e435f6cca5e7..f0ed14fb2ec9ede93c048435eebe145c5d3469b0 100644 (file)
@@ -74,6 +74,16 @@ class sc_report : public std::exception
     const char *get_process_name() const;
 
     virtual const char *what() const throw();
+
+    // Deprecated
+    static const char *get_message(int id);
+    static bool is_suppressed(int id);
+    static void make_warnings_errors(bool);
+    static void register_id(int id, const char *msg);
+    static void suppress_id(int id, bool); // Only for info or warning.
+    static void suppress_infos(bool);
+    static void suppress_warnings(bool);
+    int get_id() const;
 };
 
 // A non-standard function the Accellera datatypes rely on.
index d0eea77df8d07a922eda2e0074a4ebb452b1a239..6101e2b729b3bf7a035132af9384f8f6ab85d793 100644 (file)
@@ -68,6 +68,10 @@ class sc_report_handler
     static void report(sc_severity, const char *msg_type, const char *msg,
                        int verbosity, const char *file, int line);
 
+    // Deprecated
+    static void report(sc_severity, int id, const char *msg, const char *file,
+                       int line);
+
     static sc_actions set_actions(sc_severity, sc_actions=SC_UNSPECIFIED);
     static sc_actions set_actions(const char *msg_type,
                                   sc_actions=SC_UNSPECIFIED);
index 0e6b8b0bdf553ee6cf74334525e3e48a8978443a..6edbf2a05ad84963455fabd3ed052c9e4881661f 100644 (file)
@@ -110,6 +110,57 @@ sc_report::what() const throw()
     return "";
 }
 
+const char *
+sc_report::get_message(int id)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return "";
+}
+
+bool
+sc_report::is_suppressed(int id)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return false;
+}
+
+void
+sc_report::make_warnings_errors(bool)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+void
+sc_report::register_id(int id, const char *msg)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+void
+sc_report::suppress_id(int id, bool)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+void
+sc_report::suppress_infos(bool)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+void
+sc_report::suppress_warnings(bool)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+int
+sc_report::get_id() const
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return 0;
+}
+
 void
 sc_abort()
 {
index 3bb905044c515ce8c5b5c86aef0f6daaaadaae73..319851b2b3c2a4288a9965fa48ae0ab5bce635a7 100644 (file)
@@ -47,6 +47,13 @@ sc_report_handler::report(sc_severity, const char *msg_type, const char *msg,
     warn("%s not implemented.\n", __PRETTY_FUNCTION__);
 }
 
+void
+sc_report_handler::report(sc_severity, int id, const char *msg,
+                          const char *file, int line)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
 sc_actions
 sc_report_handler::set_actions(sc_severity, sc_actions)
 {