systemc: Add the nonstandard sc_hierarchical_name_exists function.
authorGabe Black <gabeblack@google.com>
Sat, 16 Jun 2018 05:42:26 +0000 (22:42 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 28 Aug 2018 21:20:59 +0000 (21:20 +0000)
Change-Id: I1340bb6cb0ae29d81b5d73b3dd39ebb11c14802c
Reviewed-on: https://gem5-review.googlesource.com/11280
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/core/sc_module.cc
src/systemc/ext/core/_using.hh
src/systemc/ext/core/sc_module.hh

index 0954ce9c28c78153ffbf07f922345ad24b4cdcfd..ffcff9ece6b825751d409f2a32a1e00fe576b6b9 100644 (file)
@@ -614,6 +614,13 @@ sc_gen_unique_name(const char *)
     return "";
 }
 
+bool
+sc_hierarchical_name_exists(const char *name)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return false;
+}
+
 bool
 sc_start_of_simulation_invoked()
 {
index 8f00949b2d135c4894879d8b84a0a9437564c841..efc6341cd309a53ff4f34eec921f007f8eff4582 100644 (file)
@@ -93,6 +93,7 @@ using sc_core::next_trigger;
 using sc_core::wait;
 using sc_core::halt;
 using sc_core::sc_gen_unique_name;
+using sc_core::sc_hierarchical_name_exists;
 using sc_core::sc_behavior;
 using sc_core::sc_channel;
 using sc_core::sc_start_of_simulation_invoked;
index 78919613e16aa0b268d91183764d95cdb712de98..82b48ab1618bdef313b0e29a4d2ff06b3b6ebf8f 100644 (file)
@@ -272,6 +272,9 @@ void at_negedge(const sc_signal_in_if<sc_dt::sc_logic> &);
 
 const char *sc_gen_unique_name(const char *);
 
+// Nonstandard
+bool sc_hierarchical_name_exists(const char *name);
+
 typedef sc_module sc_behavior;
 typedef sc_module sc_channel;