From d737358ac643ff5bdc3984138cc3ae08c7b57ff7 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 14 Sep 2018 18:33:16 -0700 Subject: 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 Maintainer: Gabe Black --- src/systemc/core/SConscript | 1 + 1 file changed, 1 insertion(+) (limited to 'src/systemc/core/SConscript') diff --git a/src/systemc/core/SConscript b/src/systemc/core/SConscript index 1d291ef4d..0aa59944d 100644 --- a/src/systemc/core/SConscript +++ b/src/systemc/core/SConscript @@ -35,6 +35,7 @@ if env['USE_SYSTEMC']: Source('kernel.cc') Source('module.cc') Source('object.cc') + Source('port.cc') Source('process.cc') Source('process_types.cc') Source('python.cc') -- cgit v1.2.3