diff -r f681719e2e99 -r 28dd4a447948 src/python/m5/SimObject.py --- a/src/python/m5/SimObject.py Thu May 10 18:04:29 2012 -0500 +++ b/src/python/m5/SimObject.py Wed May 16 15:45:39 2012 +0100 @@ -931,6 +931,10 @@ d.type = self.type if hasattr(self, 'cxx_class'): d.cxx_class = self.cxx_class + # Add the name and path of this object to be able to link to + # the stats + d.name = self.get_name() + d.path = self.path() for param in sorted(self._params.keys()): value = self._values.get(param) @@ -949,15 +953,18 @@ pass for n in sorted(self._children.keys()): - d[self._children[n].get_name()] = self._children[n].get_config_as_dict() + child = self._children[n] + # Use the name of the attribute (and not get_name()) as + # the key in the JSON dictionary to capture the hierarchy + # in the Python code that assembled this system + d[n] = child.get_config_as_dict() for port_name in sorted(self._ports.keys()): port = self._port_refs.get(port_name, None) if port != None: - # Might want to actually make this reference the object - # in the future, although execing the string problem would - # get some of the way there - d[port_name] = port.ini_str() + # Represent each port with a dictionary containing the + # prominent attributes + d[port_name] = port.get_config_as_dict() return d diff -r f681719e2e99 -r 28dd4a447948 src/python/m5/params.py --- a/src/python/m5/params.py Thu May 10 18:04:29 2012 -0500 +++ b/src/python/m5/params.py Wed May 16 15:45:39 2012 +0100 @@ -1363,6 +1363,10 @@ def ini_str(self): return str(self.peer) + # for config.json + def get_config_as_dict(self): + return {'role' : self.role, 'peer' : str(self.peer)} + def __getattr__(self, attr): if attr == 'peerObj': # shorthand for proxies @@ -1481,6 +1485,11 @@ def ini_str(self): return ' '.join([el.ini_str() for el in self.elements]) + # for config.json + def get_config_as_dict(self): + return {'role' : self.role, + 'peer' : [el.ini_str() for el in self.elements]} + def __getitem__(self, key): if not isinstance(key, int): raise TypeError, "VectorPort index must be integer"