From 098aa356cf42047def22bb90e0bae4f5b09bb363 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 15 Jun 2018 22:42:26 -0700 Subject: systemc: Add the nonstandard sc_hierarchical_name_exists function. Change-Id: I1340bb6cb0ae29d81b5d73b3dd39ebb11c14802c Reviewed-on: https://gem5-review.googlesource.com/11280 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/systemc/core/sc_module.cc | 7 +++++++ src/systemc/ext/core/_using.hh | 1 + src/systemc/ext/core/sc_module.hh | 3 +++ 3 files changed, 11 insertions(+) diff --git a/src/systemc/core/sc_module.cc b/src/systemc/core/sc_module.cc index 0954ce9c2..ffcff9ece 100644 --- a/src/systemc/core/sc_module.cc +++ b/src/systemc/core/sc_module.cc @@ -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() { diff --git a/src/systemc/ext/core/_using.hh b/src/systemc/ext/core/_using.hh index 8f00949b2..efc6341cd 100644 --- a/src/systemc/ext/core/_using.hh +++ b/src/systemc/ext/core/_using.hh @@ -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; diff --git a/src/systemc/ext/core/sc_module.hh b/src/systemc/ext/core/sc_module.hh index 78919613e..82b48ab16 100644 --- a/src/systemc/ext/core/sc_module.hh +++ b/src/systemc/ext/core/sc_module.hh @@ -272,6 +272,9 @@ void at_negedge(const sc_signal_in_if &); 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; -- cgit v1.2.3