diff options
author | Gabe Black <gabeblack@google.com> | 2018-09-14 18:33:16 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-10-09 21:50:01 +0000 |
commit | d737358ac643ff5bdc3984138cc3ae08c7b57ff7 (patch) | |
tree | 885d850e9740065a8a2ef4731024d4ca081606a0 /src/systemc/core/process.hh | |
parent | 7bc110ce5c12f47105e851a1a54c26a83eba6b87 (diff) | |
download | gem5-d737358ac643ff5bdc3984138cc3ae08c7b57ff7.tar.xz |
systemc: Rework how delayed sensitivities are handled.
Make BindInfo into a more general purpose Port class which mirrors
sc_module and Module, sc_object and Object, etc. This tracks multiple
bindings internally, and also pending sensitivities. Keep a global
list of ports which are added in reverse order to match Accellera, and
which is iterated over to finalize binding and for phase callbacks.
This is as opposed to doing it one module at a time, and is to better
match Accellera's ordering for the regressions.
Also the sensitivity classes are now built with factory functions,
which gets around problems calling virtual functions from their
constructors or forgetting to having to have extra boilerplate each
place they're constructed.
The port class also now finalizes port or event finder sensitivities
when its binding is completed, unless it's already complete in which
case it does so immediately.
Change-Id: I1b01689715c425b94e0f68cf0271f5c1565d8c61
Reviewed-on: https://gem5-review.googlesource.com/c/12806
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/core/process.hh')
-rw-r--r-- | src/systemc/core/process.hh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/systemc/core/process.hh b/src/systemc/core/process.hh index 0a312e28e..4266c2d7d 100644 --- a/src/systemc/core/process.hh +++ b/src/systemc/core/process.hh @@ -35,7 +35,6 @@ #include <vector> #include "base/fiber.hh" -#include "systemc/core/bindinfo.hh" #include "systemc/core/list.hh" #include "systemc/core/object.hh" #include "systemc/core/sched_event.hh" @@ -96,8 +95,6 @@ class Process : public ::sc_core::sc_process_b, public ListNode void setStackSize(size_t size) { stackSize = size; } - void finalize(); - void run(); void addStatic(StaticSensitivity *); |