systemc: Add the nonstandard macro SC_NEW.
authorGabe Black <gabeblack@google.com>
Fri, 15 Jun 2018 21:56:10 +0000 (14:56 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 22 Aug 2018 00:52:39 +0000 (00:52 +0000)
This is in the Accellera implementation and in the regression tests.
The implementation here is a bit different than theirs in that it uses
std::unique_ptrs.

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

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

index 6bbb9dca6a80f0633cfa9ba14f4304e542adddb0..646916fac8b2df5ce99f20d6ed5d2037d20f4f9d 100644 (file)
@@ -27,6 +27,9 @@
  * Authors: Gabe Black
  */
 
+#include <memory>
+#include <vector>
+
 #include "base/logging.hh"
 #include "systemc/ext/core/sc_module.hh"
 
@@ -539,4 +542,12 @@ sc_end_of_simulation_invoked()
     return false;
 }
 
+sc_module *
+sc_module_sc_new(sc_module *mod)
+{
+    static std::vector<std::unique_ptr<sc_module> > modules;
+    modules.emplace_back(mod);
+    return mod;
+}
+
 } // namespace sc_core
index 0600aa6e63d8a7e3487250a210bffb6afd35a0fa..68d2174b32c52f2312b2d797e107ed45eae19f0f 100644 (file)
@@ -244,6 +244,12 @@ typedef sc_module sc_channel;
 bool sc_start_of_simulation_invoked();
 bool sc_end_of_simulation_invoked();
 
+// Nonstandard
+// Allocates a module of type x and records a pointer to it so that it gets
+// destructed automatically at the end of the simulation.
+sc_module *sc_module_sc_new(sc_module *);
+#define SC_NEW(x) ::sc_core::sc_module_sc_new(new x);
+
 } // namespace sc_core
 
 #endif  //__SYSTEMC_EXT_CORE_SC_MODULE_HH__