systemc: Hook up gem5_getPort to the gem5 getPort mechanism.
authorGabe Black <gabeblack@google.com>
Tue, 12 Mar 2019 07:33:52 +0000 (00:33 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 19 Mar 2019 10:23:12 +0000 (10:23 +0000)
Change-Id: I771607c4436f4c1ca9d355d1da52924308cfc3b3
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/17229
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Gabe Black <gabeblack@google.com>

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

index 649d6d3672d7c86073c7d72fe3627d05755edf94..74b7cec14ab80f5fe3b35dc312239704635e4111 100644 (file)
@@ -25,7 +25,7 @@
 #
 # Authors: Gabe Black
 
-from m5.SimObject import SimObject
+from m5.SimObject import SimObject, cxxMethod
 
 # This class represents the systemc kernel. There should be exactly one in the
 # simulation. It receives gem5 SimObject lifecycle callbacks (init, regStats,
@@ -62,6 +62,10 @@ class SystemC_ScModule(SystemC_ScObject):
     cxx_class = 'sc_core::sc_module'
     cxx_header = 'systemc/ext/core/sc_module.hh'
 
+    @cxxMethod(return_value_policy="reference", cxx_name="gem5_getPort")
+    def getPort(self, if_name, iex):
+        return None
+
 try:
     import _m5
 except:
index fc98aa3a0056bbd19eb195ef7ccb9feaee889278..ba9c76a0e2bb2a103058514707b7b3c672b476cf 100644 (file)
@@ -31,6 +31,7 @@
 #include <string>
 #include <vector>
 
+#include "base/logging.hh"
 #include "systemc/core/event.hh"
 #include "systemc/core/kernel.hh"
 #include "systemc/core/module.hh"
@@ -114,6 +115,12 @@ sc_bind_proxy::sc_bind_proxy(sc_port_base &_port) :
 
 const sc_bind_proxy SC_BIND_PROXY_NIL;
 
+::Port &
+sc_module::gem5_getPort(const std::string &if_name, int idx)
+{
+    fatal("%s does not have any port named %s\n", name(), if_name);
+}
+
 sc_module::~sc_module() { delete _gem5_module; }
 
 void
index 0c8bd9f6c7a1528db500f4f214cc6d317576c154..24a1aea04ad62d6e9abcc6127b3e99b47c681a7b 100644 (file)
@@ -30,6 +30,7 @@
 #ifndef __SYSTEMC_CORE_EXT_SC_MODULE_HH__
 #define __SYSTEMC_CORE_EXT_SC_MODULE_HH__
 
+#include <string>
 #include <vector>
 
 #include "sc_object.hh"
@@ -58,6 +59,9 @@ Process *newCThreadProcess(const char *name, ProcessFuncWrapper *func);
 
 } // namespace sc_gem5
 
+// Gem5 prototype
+class Port;
+
 namespace sc_core
 {
 
@@ -94,6 +98,10 @@ extern const sc_bind_proxy SC_BIND_PROXY_NIL;
 
 class sc_module : public sc_object
 {
+  public:
+    // Gem5 specific extensions
+    virtual ::Port &gem5_getPort(const std::string &if_name, int idx=-1);
+
   public:
     friend class ::sc_gem5::Kernel;
     friend class ::sc_gem5::Module;