From: Gabe Black Date: Wed, 29 Aug 2018 03:58:37 +0000 (-0700) Subject: systemc: Make sure children of processes are recorded as such. X-Git-Tag: v19.0.0.0~1693 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ae373556b71e4d4c5c2022110e7a4b00c55666a9;p=gem5.git systemc: Make sure children of processes are recorded as such. The process was treated as the parent of the object, but the object wasn't being installed as a child of the process. Change-Id: I6710f34734835cbeceb3d33e5e37b6f5897c5e30 Reviewed-on: https://gem5-review.googlesource.com/c/12438 Reviewed-by: Gabe Black Maintainer: Gabe Black --- diff --git a/src/systemc/core/object.cc b/src/systemc/core/object.cc index 1fb1d4591..b97fd900a 100644 --- a/src/systemc/core/object.cc +++ b/src/systemc/core/object.cc @@ -91,10 +91,12 @@ Object::Object(sc_core::sc_object *_sc_obj, const char *obj_name) : // We're "within" a parent module, ie we're being created while its // constructor or end_of_elaboration callback is running. parent = p->obj()->_sc_obj; - addObject(&parent->_gem5_object->children, _sc_obj); } else if (scheduler.current()) { // Our parent is the currently running process. parent = scheduler.current(); + } + if (parent) { + addObject(&parent->_gem5_object->children, _sc_obj); } else { // We're a top level object. addObject(&topLevelObjects, _sc_obj);