systemc: Use an std::list to track all modules.
authorGabe Black <gabeblack@google.com>
Wed, 8 Aug 2018 09:03:30 +0000 (02:03 -0700)
committerGabe Black <gabeblack@google.com>
Thu, 20 Sep 2018 01:43:26 +0000 (01:43 +0000)
commit081af5ec9c6dff33081ccd00f4ec1d494fa6af3c
tree8c131f6cba419bb711f5b034212e865ea590d7fb
parentde45562a8abae66ada57a3fc06078fadbd9f625b
systemc: Use an std::list to track all modules.

This is less efficient when modules are destroyed since the list isn't
sorted, and each module needs to find its own entry to remove. The
benefit is that entries added to the end of the list while the list is
being iterated over will still be included, and that the order the
modules are added will be preserved so that it matches what the order
in the regression tests.

Change-Id: I5af5d15f316fa58561e8fd9ca77f667ddc8b2c5e
Reviewed-on: https://gem5-review.googlesource.com/12077
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
src/systemc/core/module.cc
src/systemc/core/module.hh