systemc: Rework how delayed sensitivities are handled.
authorGabe Black <gabeblack@google.com>
Sat, 15 Sep 2018 01:33:16 +0000 (18:33 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 9 Oct 2018 21:50:01 +0000 (21:50 +0000)
commitd737358ac643ff5bdc3984138cc3ae08c7b57ff7
tree885d850e9740065a8a2ef4731024d4ca081606a0
parent7bc110ce5c12f47105e851a1a54c26a83eba6b87
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>
16 files changed:
src/systemc/core/SConscript
src/systemc/core/bindinfo.hh [deleted file]
src/systemc/core/kernel.cc
src/systemc/core/module.cc
src/systemc/core/port.cc [new file with mode: 0644]
src/systemc/core/port.hh [new file with mode: 0644]
src/systemc/core/process.cc
src/systemc/core/process.hh
src/systemc/core/sc_module.cc
src/systemc/core/sc_port.cc
src/systemc/core/sc_sensitive.cc
src/systemc/core/sc_spawn.cc
src/systemc/core/scheduler.cc
src/systemc/core/sensitivity.cc
src/systemc/core/sensitivity.hh
src/systemc/ext/core/sc_port.hh