SimObject.py (8596:e6e22fa77883) SimObject.py (8597:45c9f664a365)
1# Copyright (c) 2004-2006 The Regents of The University of Michigan
2# Copyright (c) 2010 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;
9# redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution;
12# neither the name of the copyright holders nor the names of its
13# contributors may be used to endorse or promote products derived from
14# this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# Authors: Steve Reinhardt
29# Nathan Binkert
30
31import sys
32from types import FunctionType, MethodType, ModuleType
33
34try:
35 import pydot
36except:
37 pydot = False
38
39import m5
40from m5.util import *
41
42# Have to import params up top since Param is referenced on initial
43# load (when SimObject class references Param to create a class
44# variable, the 'name' param)...
45from m5.params import *
46# There are a few things we need that aren't in params.__all__ since
47# normal users don't need them
48from m5.params import ParamDesc, VectorParamDesc, \
49 isNullPointer, SimObjectVector
50
51from m5.proxy import *
52from m5.proxy import isproxy
53
54#####################################################################
55#
56# M5 Python Configuration Utility
57#
58# The basic idea is to write simple Python programs that build Python
59# objects corresponding to M5 SimObjects for the desired simulation
60# configuration. For now, the Python emits a .ini file that can be
61# parsed by M5. In the future, some tighter integration between M5
62# and the Python interpreter may allow bypassing the .ini file.
63#
64# Each SimObject class in M5 is represented by a Python class with the
65# same name. The Python inheritance tree mirrors the M5 C++ tree
66# (e.g., SimpleCPU derives from BaseCPU in both cases, and all
67# SimObjects inherit from a single SimObject base class). To specify
68# an instance of an M5 SimObject in a configuration, the user simply
69# instantiates the corresponding Python object. The parameters for
70# that SimObject are given by assigning to attributes of the Python
71# object, either using keyword assignment in the constructor or in
72# separate assignment statements. For example:
73#
74# cache = BaseCache(size='64KB')
75# cache.hit_latency = 3
76# cache.assoc = 8
77#
78# The magic lies in the mapping of the Python attributes for SimObject
79# classes to the actual SimObject parameter specifications. This
80# allows parameter validity checking in the Python code. Continuing
81# the example above, the statements "cache.blurfl=3" or
82# "cache.assoc='hello'" would both result in runtime errors in Python,
83# since the BaseCache object has no 'blurfl' parameter and the 'assoc'
84# parameter requires an integer, respectively. This magic is done
85# primarily by overriding the special __setattr__ method that controls
86# assignment to object attributes.
87#
88# Once a set of Python objects have been instantiated in a hierarchy,
89# calling 'instantiate(obj)' (where obj is the root of the hierarchy)
90# will generate a .ini file.
91#
92#####################################################################
93
94# list of all SimObject classes
95allClasses = {}
96
97# dict to look up SimObjects based on path
98instanceDict = {}
99
100def public_value(key, value):
101 return key.startswith('_') or \
102 isinstance(value, (FunctionType, MethodType, ModuleType,
103 classmethod, type))
104
105# The metaclass for SimObject. This class controls how new classes
106# that derive from SimObject are instantiated, and provides inherited
107# class behavior (just like a class controls how instances of that
108# class are instantiated, and provides inherited instance behavior).
109class MetaSimObject(type):
110 # Attributes that can be set only at initialization time
111 init_keywords = { 'abstract' : bool,
112 'cxx_class' : str,
113 'cxx_type' : str,
114 'type' : str }
115 # Attributes that can be set any time
116 keywords = { 'check' : FunctionType }
117
118 # __new__ is called before __init__, and is where the statements
119 # in the body of the class definition get loaded into the class's
120 # __dict__. We intercept this to filter out parameter & port assignments
121 # and only allow "private" attributes to be passed to the base
122 # __new__ (starting with underscore).
123 def __new__(mcls, name, bases, dict):
124 assert name not in allClasses, "SimObject %s already present" % name
125
126 # Copy "private" attributes, functions, and classes to the
127 # official dict. Everything else goes in _init_dict to be
128 # filtered in __init__.
129 cls_dict = {}
130 value_dict = {}
131 for key,val in dict.items():
132 if public_value(key, val):
133 cls_dict[key] = val
134 else:
135 # must be a param/port setting
136 value_dict[key] = val
137 if 'abstract' not in value_dict:
138 value_dict['abstract'] = False
139 cls_dict['_value_dict'] = value_dict
140 cls = super(MetaSimObject, mcls).__new__(mcls, name, bases, cls_dict)
141 if 'type' in value_dict:
142 allClasses[name] = cls
143 return cls
144
145 # subclass initialization
146 def __init__(cls, name, bases, dict):
147 # calls type.__init__()... I think that's a no-op, but leave
148 # it here just in case it's not.
149 super(MetaSimObject, cls).__init__(name, bases, dict)
150
151 # initialize required attributes
152
153 # class-only attributes
154 cls._params = multidict() # param descriptions
155 cls._ports = multidict() # port descriptions
156
157 # class or instance attributes
158 cls._values = multidict() # param values
159 cls._children = multidict() # SimObject children
160 cls._port_refs = multidict() # port ref objects
161 cls._instantiated = False # really instantiated, cloned, or subclassed
162
163 # We don't support multiple inheritance. If you want to, you
164 # must fix multidict to deal with it properly.
165 if len(bases) > 1:
166 raise TypeError, "SimObjects do not support multiple inheritance"
167
168 base = bases[0]
169
170 # Set up general inheritance via multidicts. A subclass will
171 # inherit all its settings from the base class. The only time
172 # the following is not true is when we define the SimObject
173 # class itself (in which case the multidicts have no parent).
174 if isinstance(base, MetaSimObject):
175 cls._base = base
176 cls._params.parent = base._params
177 cls._ports.parent = base._ports
178 cls._values.parent = base._values
179 cls._children.parent = base._children
180 cls._port_refs.parent = base._port_refs
181 # mark base as having been subclassed
182 base._instantiated = True
183 else:
184 cls._base = None
185
186 # default keyword values
187 if 'type' in cls._value_dict:
188 if 'cxx_class' not in cls._value_dict:
189 cls._value_dict['cxx_class'] = cls._value_dict['type']
190
191 cls._value_dict['cxx_type'] = '%s *' % cls._value_dict['cxx_class']
192
1# Copyright (c) 2004-2006 The Regents of The University of Michigan
2# Copyright (c) 2010 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;
9# redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution;
12# neither the name of the copyright holders nor the names of its
13# contributors may be used to endorse or promote products derived from
14# this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# Authors: Steve Reinhardt
29# Nathan Binkert
30
31import sys
32from types import FunctionType, MethodType, ModuleType
33
34try:
35 import pydot
36except:
37 pydot = False
38
39import m5
40from m5.util import *
41
42# Have to import params up top since Param is referenced on initial
43# load (when SimObject class references Param to create a class
44# variable, the 'name' param)...
45from m5.params import *
46# There are a few things we need that aren't in params.__all__ since
47# normal users don't need them
48from m5.params import ParamDesc, VectorParamDesc, \
49 isNullPointer, SimObjectVector
50
51from m5.proxy import *
52from m5.proxy import isproxy
53
54#####################################################################
55#
56# M5 Python Configuration Utility
57#
58# The basic idea is to write simple Python programs that build Python
59# objects corresponding to M5 SimObjects for the desired simulation
60# configuration. For now, the Python emits a .ini file that can be
61# parsed by M5. In the future, some tighter integration between M5
62# and the Python interpreter may allow bypassing the .ini file.
63#
64# Each SimObject class in M5 is represented by a Python class with the
65# same name. The Python inheritance tree mirrors the M5 C++ tree
66# (e.g., SimpleCPU derives from BaseCPU in both cases, and all
67# SimObjects inherit from a single SimObject base class). To specify
68# an instance of an M5 SimObject in a configuration, the user simply
69# instantiates the corresponding Python object. The parameters for
70# that SimObject are given by assigning to attributes of the Python
71# object, either using keyword assignment in the constructor or in
72# separate assignment statements. For example:
73#
74# cache = BaseCache(size='64KB')
75# cache.hit_latency = 3
76# cache.assoc = 8
77#
78# The magic lies in the mapping of the Python attributes for SimObject
79# classes to the actual SimObject parameter specifications. This
80# allows parameter validity checking in the Python code. Continuing
81# the example above, the statements "cache.blurfl=3" or
82# "cache.assoc='hello'" would both result in runtime errors in Python,
83# since the BaseCache object has no 'blurfl' parameter and the 'assoc'
84# parameter requires an integer, respectively. This magic is done
85# primarily by overriding the special __setattr__ method that controls
86# assignment to object attributes.
87#
88# Once a set of Python objects have been instantiated in a hierarchy,
89# calling 'instantiate(obj)' (where obj is the root of the hierarchy)
90# will generate a .ini file.
91#
92#####################################################################
93
94# list of all SimObject classes
95allClasses = {}
96
97# dict to look up SimObjects based on path
98instanceDict = {}
99
100def public_value(key, value):
101 return key.startswith('_') or \
102 isinstance(value, (FunctionType, MethodType, ModuleType,
103 classmethod, type))
104
105# The metaclass for SimObject. This class controls how new classes
106# that derive from SimObject are instantiated, and provides inherited
107# class behavior (just like a class controls how instances of that
108# class are instantiated, and provides inherited instance behavior).
109class MetaSimObject(type):
110 # Attributes that can be set only at initialization time
111 init_keywords = { 'abstract' : bool,
112 'cxx_class' : str,
113 'cxx_type' : str,
114 'type' : str }
115 # Attributes that can be set any time
116 keywords = { 'check' : FunctionType }
117
118 # __new__ is called before __init__, and is where the statements
119 # in the body of the class definition get loaded into the class's
120 # __dict__. We intercept this to filter out parameter & port assignments
121 # and only allow "private" attributes to be passed to the base
122 # __new__ (starting with underscore).
123 def __new__(mcls, name, bases, dict):
124 assert name not in allClasses, "SimObject %s already present" % name
125
126 # Copy "private" attributes, functions, and classes to the
127 # official dict. Everything else goes in _init_dict to be
128 # filtered in __init__.
129 cls_dict = {}
130 value_dict = {}
131 for key,val in dict.items():
132 if public_value(key, val):
133 cls_dict[key] = val
134 else:
135 # must be a param/port setting
136 value_dict[key] = val
137 if 'abstract' not in value_dict:
138 value_dict['abstract'] = False
139 cls_dict['_value_dict'] = value_dict
140 cls = super(MetaSimObject, mcls).__new__(mcls, name, bases, cls_dict)
141 if 'type' in value_dict:
142 allClasses[name] = cls
143 return cls
144
145 # subclass initialization
146 def __init__(cls, name, bases, dict):
147 # calls type.__init__()... I think that's a no-op, but leave
148 # it here just in case it's not.
149 super(MetaSimObject, cls).__init__(name, bases, dict)
150
151 # initialize required attributes
152
153 # class-only attributes
154 cls._params = multidict() # param descriptions
155 cls._ports = multidict() # port descriptions
156
157 # class or instance attributes
158 cls._values = multidict() # param values
159 cls._children = multidict() # SimObject children
160 cls._port_refs = multidict() # port ref objects
161 cls._instantiated = False # really instantiated, cloned, or subclassed
162
163 # We don't support multiple inheritance. If you want to, you
164 # must fix multidict to deal with it properly.
165 if len(bases) > 1:
166 raise TypeError, "SimObjects do not support multiple inheritance"
167
168 base = bases[0]
169
170 # Set up general inheritance via multidicts. A subclass will
171 # inherit all its settings from the base class. The only time
172 # the following is not true is when we define the SimObject
173 # class itself (in which case the multidicts have no parent).
174 if isinstance(base, MetaSimObject):
175 cls._base = base
176 cls._params.parent = base._params
177 cls._ports.parent = base._ports
178 cls._values.parent = base._values
179 cls._children.parent = base._children
180 cls._port_refs.parent = base._port_refs
181 # mark base as having been subclassed
182 base._instantiated = True
183 else:
184 cls._base = None
185
186 # default keyword values
187 if 'type' in cls._value_dict:
188 if 'cxx_class' not in cls._value_dict:
189 cls._value_dict['cxx_class'] = cls._value_dict['type']
190
191 cls._value_dict['cxx_type'] = '%s *' % cls._value_dict['cxx_class']
192
193 # Export methods are automatically inherited via C++, so we
194 # don't want the method declarations to get inherited on the
195 # python side (and thus end up getting repeated in the wrapped
196 # versions of derived classes). The code below basicallly
197 # suppresses inheritance by substituting in the base (null)
198 # versions of these methods unless a different version is
199 # explicitly supplied.
200 for method_name in ('export_methods', 'export_method_cxx_predecls',
201 'export_method_swig_predecls'):
202 if method_name not in cls.__dict__:
203 base_method = getattr(MetaSimObject, method_name)
204 m = MethodType(base_method, cls, MetaSimObject)
205 setattr(cls, method_name, m)
206
193 # Now process the _value_dict items. They could be defining
194 # new (or overriding existing) parameters or ports, setting
195 # class keywords (e.g., 'abstract'), or setting parameter
196 # values or port bindings. The first 3 can only be set when
197 # the class is defined, so we handle them here. The others
198 # can be set later too, so just emulate that by calling
199 # setattr().
200 for key,val in cls._value_dict.items():
201 # param descriptions
202 if isinstance(val, ParamDesc):
203 cls._new_param(key, val)
204
205 # port objects
206 elif isinstance(val, Port):
207 cls._new_port(key, val)
208
209 # init-time-only keywords
210 elif cls.init_keywords.has_key(key):
211 cls._set_keyword(key, val, cls.init_keywords[key])
212
213 # default: use normal path (ends up in __setattr__)
214 else:
215 setattr(cls, key, val)
216
217 def _set_keyword(cls, keyword, val, kwtype):
218 if not isinstance(val, kwtype):
219 raise TypeError, 'keyword %s has bad type %s (expecting %s)' % \
220 (keyword, type(val), kwtype)
221 if isinstance(val, FunctionType):
222 val = classmethod(val)
223 type.__setattr__(cls, keyword, val)
224
225 def _new_param(cls, name, pdesc):
226 # each param desc should be uniquely assigned to one variable
227 assert(not hasattr(pdesc, 'name'))
228 pdesc.name = name
229 cls._params[name] = pdesc
230 if hasattr(pdesc, 'default'):
231 cls._set_param(name, pdesc.default, pdesc)
232
233 def _set_param(cls, name, value, param):
234 assert(param.name == name)
235 try:
236 value = param.convert(value)
237 except Exception, e:
238 msg = "%s\nError setting param %s.%s to %s\n" % \
239 (e, cls.__name__, name, value)
240 e.args = (msg, )
241 raise
242 cls._values[name] = value
243 # if param value is a SimObject, make it a child too, so that
244 # it gets cloned properly when the class is instantiated
245 if isSimObjectOrVector(value) and not value.has_parent():
246 cls._add_cls_child(name, value)
247
248 def _add_cls_child(cls, name, child):
249 # It's a little funky to have a class as a parent, but these
250 # objects should never be instantiated (only cloned, which
251 # clears the parent pointer), and this makes it clear that the
252 # object is not an orphan and can provide better error
253 # messages.
254 child.set_parent(cls, name)
255 cls._children[name] = child
256
257 def _new_port(cls, name, port):
258 # each port should be uniquely assigned to one variable
259 assert(not hasattr(port, 'name'))
260 port.name = name
261 cls._ports[name] = port
262 if hasattr(port, 'default'):
263 cls._cls_get_port_ref(name).connect(port.default)
264
265 # same as _get_port_ref, effectively, but for classes
266 def _cls_get_port_ref(cls, attr):
267 # Return reference that can be assigned to another port
268 # via __setattr__. There is only ever one reference
269 # object per port, but we create them lazily here.
270 ref = cls._port_refs.get(attr)
271 if not ref:
272 ref = cls._ports[attr].makeRef(cls)
273 cls._port_refs[attr] = ref
274 return ref
275
276 # Set attribute (called on foo.attr = value when foo is an
277 # instance of class cls).
278 def __setattr__(cls, attr, value):
279 # normal processing for private attributes
280 if public_value(attr, value):
281 type.__setattr__(cls, attr, value)
282 return
283
284 if cls.keywords.has_key(attr):
285 cls._set_keyword(attr, value, cls.keywords[attr])
286 return
287
288 if cls._ports.has_key(attr):
289 cls._cls_get_port_ref(attr).connect(value)
290 return
291
292 if isSimObjectOrSequence(value) and cls._instantiated:
293 raise RuntimeError, \
294 "cannot set SimObject parameter '%s' after\n" \
295 " class %s has been instantiated or subclassed" \
296 % (attr, cls.__name__)
297
298 # check for param
299 param = cls._params.get(attr)
300 if param:
301 cls._set_param(attr, value, param)
302 return
303
304 if isSimObjectOrSequence(value):
305 # If RHS is a SimObject, it's an implicit child assignment.
306 cls._add_cls_child(attr, coerceSimObjectOrVector(value))
307 return
308
309 # no valid assignment... raise exception
310 raise AttributeError, \
311 "Class %s has no parameter \'%s\'" % (cls.__name__, attr)
312
313 def __getattr__(cls, attr):
314 if attr == 'cxx_class_path':
315 return cls.cxx_class.split('::')
316
317 if attr == 'cxx_class_name':
318 return cls.cxx_class_path[-1]
319
320 if attr == 'cxx_namespaces':
321 return cls.cxx_class_path[:-1]
322
323 if cls._values.has_key(attr):
324 return cls._values[attr]
325
326 if cls._children.has_key(attr):
327 return cls._children[attr]
328
329 raise AttributeError, \
330 "object '%s' has no attribute '%s'" % (cls.__name__, attr)
331
332 def __str__(cls):
333 return cls.__name__
334
335 # See ParamValue.cxx_predecls for description.
336 def cxx_predecls(cls, code):
337 code('#include "params/$cls.hh"')
338
339 # See ParamValue.swig_predecls for description.
340 def swig_predecls(cls, code):
341 code('%import "python/m5/internal/param_$cls.i"')
342
207 # Now process the _value_dict items. They could be defining
208 # new (or overriding existing) parameters or ports, setting
209 # class keywords (e.g., 'abstract'), or setting parameter
210 # values or port bindings. The first 3 can only be set when
211 # the class is defined, so we handle them here. The others
212 # can be set later too, so just emulate that by calling
213 # setattr().
214 for key,val in cls._value_dict.items():
215 # param descriptions
216 if isinstance(val, ParamDesc):
217 cls._new_param(key, val)
218
219 # port objects
220 elif isinstance(val, Port):
221 cls._new_port(key, val)
222
223 # init-time-only keywords
224 elif cls.init_keywords.has_key(key):
225 cls._set_keyword(key, val, cls.init_keywords[key])
226
227 # default: use normal path (ends up in __setattr__)
228 else:
229 setattr(cls, key, val)
230
231 def _set_keyword(cls, keyword, val, kwtype):
232 if not isinstance(val, kwtype):
233 raise TypeError, 'keyword %s has bad type %s (expecting %s)' % \
234 (keyword, type(val), kwtype)
235 if isinstance(val, FunctionType):
236 val = classmethod(val)
237 type.__setattr__(cls, keyword, val)
238
239 def _new_param(cls, name, pdesc):
240 # each param desc should be uniquely assigned to one variable
241 assert(not hasattr(pdesc, 'name'))
242 pdesc.name = name
243 cls._params[name] = pdesc
244 if hasattr(pdesc, 'default'):
245 cls._set_param(name, pdesc.default, pdesc)
246
247 def _set_param(cls, name, value, param):
248 assert(param.name == name)
249 try:
250 value = param.convert(value)
251 except Exception, e:
252 msg = "%s\nError setting param %s.%s to %s\n" % \
253 (e, cls.__name__, name, value)
254 e.args = (msg, )
255 raise
256 cls._values[name] = value
257 # if param value is a SimObject, make it a child too, so that
258 # it gets cloned properly when the class is instantiated
259 if isSimObjectOrVector(value) and not value.has_parent():
260 cls._add_cls_child(name, value)
261
262 def _add_cls_child(cls, name, child):
263 # It's a little funky to have a class as a parent, but these
264 # objects should never be instantiated (only cloned, which
265 # clears the parent pointer), and this makes it clear that the
266 # object is not an orphan and can provide better error
267 # messages.
268 child.set_parent(cls, name)
269 cls._children[name] = child
270
271 def _new_port(cls, name, port):
272 # each port should be uniquely assigned to one variable
273 assert(not hasattr(port, 'name'))
274 port.name = name
275 cls._ports[name] = port
276 if hasattr(port, 'default'):
277 cls._cls_get_port_ref(name).connect(port.default)
278
279 # same as _get_port_ref, effectively, but for classes
280 def _cls_get_port_ref(cls, attr):
281 # Return reference that can be assigned to another port
282 # via __setattr__. There is only ever one reference
283 # object per port, but we create them lazily here.
284 ref = cls._port_refs.get(attr)
285 if not ref:
286 ref = cls._ports[attr].makeRef(cls)
287 cls._port_refs[attr] = ref
288 return ref
289
290 # Set attribute (called on foo.attr = value when foo is an
291 # instance of class cls).
292 def __setattr__(cls, attr, value):
293 # normal processing for private attributes
294 if public_value(attr, value):
295 type.__setattr__(cls, attr, value)
296 return
297
298 if cls.keywords.has_key(attr):
299 cls._set_keyword(attr, value, cls.keywords[attr])
300 return
301
302 if cls._ports.has_key(attr):
303 cls._cls_get_port_ref(attr).connect(value)
304 return
305
306 if isSimObjectOrSequence(value) and cls._instantiated:
307 raise RuntimeError, \
308 "cannot set SimObject parameter '%s' after\n" \
309 " class %s has been instantiated or subclassed" \
310 % (attr, cls.__name__)
311
312 # check for param
313 param = cls._params.get(attr)
314 if param:
315 cls._set_param(attr, value, param)
316 return
317
318 if isSimObjectOrSequence(value):
319 # If RHS is a SimObject, it's an implicit child assignment.
320 cls._add_cls_child(attr, coerceSimObjectOrVector(value))
321 return
322
323 # no valid assignment... raise exception
324 raise AttributeError, \
325 "Class %s has no parameter \'%s\'" % (cls.__name__, attr)
326
327 def __getattr__(cls, attr):
328 if attr == 'cxx_class_path':
329 return cls.cxx_class.split('::')
330
331 if attr == 'cxx_class_name':
332 return cls.cxx_class_path[-1]
333
334 if attr == 'cxx_namespaces':
335 return cls.cxx_class_path[:-1]
336
337 if cls._values.has_key(attr):
338 return cls._values[attr]
339
340 if cls._children.has_key(attr):
341 return cls._children[attr]
342
343 raise AttributeError, \
344 "object '%s' has no attribute '%s'" % (cls.__name__, attr)
345
346 def __str__(cls):
347 return cls.__name__
348
349 # See ParamValue.cxx_predecls for description.
350 def cxx_predecls(cls, code):
351 code('#include "params/$cls.hh"')
352
353 # See ParamValue.swig_predecls for description.
354 def swig_predecls(cls, code):
355 code('%import "python/m5/internal/param_$cls.i"')
356
357 # Hook for exporting additional C++ methods to Python via SWIG.
358 # Default is none, override using @classmethod in class definition.
359 def export_methods(cls, code):
360 pass
361
362 # Generate the code needed as a prerequisite for the C++ methods
363 # exported via export_methods() to be compiled in the _wrap.cc
364 # file. Typically generates one or more #include statements. If
365 # any methods are exported, typically at least the C++ header
366 # declaring the relevant SimObject class must be included.
367 def export_method_cxx_predecls(cls, code):
368 pass
369
370 # Generate the code needed as a prerequisite for the C++ methods
371 # exported via export_methods() to be processed by SWIG.
372 # Typically generates one or more %include or %import statements.
373 # If any methods are exported, typically at least the C++ header
374 # declaring the relevant SimObject class must be included.
375 def export_method_swig_predecls(cls, code):
376 pass
377
343 # Generate the declaration for this object for wrapping with SWIG.
344 # Generates code that goes into a SWIG .i file. Called from
345 # src/SConscript.
346 def swig_decl(cls, code):
347 class_path = cls.cxx_class.split('::')
348 classname = class_path[-1]
349 namespaces = class_path[:-1]
350
351 # The 'local' attribute restricts us to the params declared in
352 # the object itself, not including inherited params (which
353 # will also be inherited from the base class's param struct
354 # here).
355 params = cls._params.local.values()
356
357 code('%module(package="m5.internal") param_$cls')
358 code()
359 code('%{')
360 code('#include "params/$cls.hh"')
361 for param in params:
362 param.cxx_predecls(code)
378 # Generate the declaration for this object for wrapping with SWIG.
379 # Generates code that goes into a SWIG .i file. Called from
380 # src/SConscript.
381 def swig_decl(cls, code):
382 class_path = cls.cxx_class.split('::')
383 classname = class_path[-1]
384 namespaces = class_path[:-1]
385
386 # The 'local' attribute restricts us to the params declared in
387 # the object itself, not including inherited params (which
388 # will also be inherited from the base class's param struct
389 # here).
390 params = cls._params.local.values()
391
392 code('%module(package="m5.internal") param_$cls')
393 code()
394 code('%{')
395 code('#include "params/$cls.hh"')
396 for param in params:
397 param.cxx_predecls(code)
398 cls.export_method_cxx_predecls(code)
363 code('%}')
364 code()
365
366 for param in params:
367 param.swig_predecls(code)
399 code('%}')
400 code()
401
402 for param in params:
403 param.swig_predecls(code)
404 cls.export_method_swig_predecls(code)
368
369 code()
370 if cls._base:
371 code('%import "python/m5/internal/param_${{cls._base}}.i"')
372 code()
373
374 for ns in namespaces:
375 code('namespace $ns {')
376
377 if namespaces:
378 code('// avoid name conflicts')
379 sep_string = '_COLONS_'
380 flat_name = sep_string.join(class_path)
381 code('%rename($flat_name) $classname;')
382
405
406 code()
407 if cls._base:
408 code('%import "python/m5/internal/param_${{cls._base}}.i"')
409 code()
410
411 for ns in namespaces:
412 code('namespace $ns {')
413
414 if namespaces:
415 code('// avoid name conflicts')
416 sep_string = '_COLONS_'
417 flat_name = sep_string.join(class_path)
418 code('%rename($flat_name) $classname;')
419
383 if cls == SimObject:
384 code('%include "python/swig/sim_object.i"')
385 else:
386 code()
387 code('// stop swig from creating/wrapping default ctor/dtor')
388 code('%nodefault $classname;')
389 code('class $classname')
390 if cls._base:
391 code(' : public ${{cls._base.cxx_class}}')
392 code('{};')
420 code()
421 code('// stop swig from creating/wrapping default ctor/dtor')
422 code('%nodefault $classname;')
423 code('class $classname')
424 if cls._base:
425 code(' : public ${{cls._base.cxx_class}}')
426 code('{')
427 code(' public:')
428 cls.export_methods(code)
429 code('};')
393
394 for ns in reversed(namespaces):
395 code('} // namespace $ns')
396
397 code()
398 code('%include "params/$cls.hh"')
399
400
401 # Generate the C++ declaration (.hh file) for this SimObject's
402 # param struct. Called from src/SConscript.
403 def cxx_param_decl(cls, code):
404 # The 'local' attribute restricts us to the params declared in
405 # the object itself, not including inherited params (which
406 # will also be inherited from the base class's param struct
407 # here).
408 params = cls._params.local.values()
409 try:
410 ptypes = [p.ptype for p in params]
411 except:
412 print cls, p, p.ptype_str
413 print params
414 raise
415
416 class_path = cls._value_dict['cxx_class'].split('::')
417
418 code('''\
419#ifndef __PARAMS__${cls}__
420#define __PARAMS__${cls}__
421
422''')
423
424 # A forward class declaration is sufficient since we are just
425 # declaring a pointer.
426 for ns in class_path[:-1]:
427 code('namespace $ns {')
428 code('class $0;', class_path[-1])
429 for ns in reversed(class_path[:-1]):
430 code('} // namespace $ns')
431 code()
432
430
431 for ns in reversed(namespaces):
432 code('} // namespace $ns')
433
434 code()
435 code('%include "params/$cls.hh"')
436
437
438 # Generate the C++ declaration (.hh file) for this SimObject's
439 # param struct. Called from src/SConscript.
440 def cxx_param_decl(cls, code):
441 # The 'local' attribute restricts us to the params declared in
442 # the object itself, not including inherited params (which
443 # will also be inherited from the base class's param struct
444 # here).
445 params = cls._params.local.values()
446 try:
447 ptypes = [p.ptype for p in params]
448 except:
449 print cls, p, p.ptype_str
450 print params
451 raise
452
453 class_path = cls._value_dict['cxx_class'].split('::')
454
455 code('''\
456#ifndef __PARAMS__${cls}__
457#define __PARAMS__${cls}__
458
459''')
460
461 # A forward class declaration is sufficient since we are just
462 # declaring a pointer.
463 for ns in class_path[:-1]:
464 code('namespace $ns {')
465 code('class $0;', class_path[-1])
466 for ns in reversed(class_path[:-1]):
467 code('} // namespace $ns')
468 code()
469
470 # The base SimObject has a couple of params that get
471 # automatically set from Python without being declared through
472 # the normal Param mechanism; we slip them in here (needed
473 # predecls now, actual declarations below)
474 if cls == SimObject:
475 code('''
476#ifndef PY_VERSION
477struct PyObject;
478#endif
479
480#include <string>
481
482struct EventQueue;
483''')
433 for param in params:
434 param.cxx_predecls(code)
435 code()
436
437 if cls._base:
438 code('#include "params/${{cls._base.type}}.hh"')
439 code()
440
441 for ptype in ptypes:
442 if issubclass(ptype, Enum):
443 code('#include "enums/${{ptype.__name__}}.hh"')
444 code()
445
446 # now generate the actual param struct
484 for param in params:
485 param.cxx_predecls(code)
486 code()
487
488 if cls._base:
489 code('#include "params/${{cls._base.type}}.hh"')
490 code()
491
492 for ptype in ptypes:
493 if issubclass(ptype, Enum):
494 code('#include "enums/${{ptype.__name__}}.hh"')
495 code()
496
497 # now generate the actual param struct
498 code("struct ${cls}Params")
499 if cls._base:
500 code(" : public ${{cls._base.type}}Params")
501 code("{")
502 if not hasattr(cls, 'abstract') or not cls.abstract:
503 if 'type' in cls.__dict__:
504 code(" ${{cls.cxx_type}} create();")
505
506 code.indent()
447 if cls == SimObject:
507 if cls == SimObject:
448 code('#include "sim/sim_object_params.hh"')
449 else:
450 code("struct ${cls}Params")
451 if cls._base:
452 code(" : public ${{cls._base.type}}Params")
453 code("{")
454 if not hasattr(cls, 'abstract') or not cls.abstract:
455 if 'type' in cls.__dict__:
456 code(" ${{cls.cxx_type}} create();")
508 code('''
509 SimObjectParams()
510 {
511 extern EventQueue mainEventQueue;
512 eventq = &mainEventQueue;
513 }
514 virtual ~SimObjectParams() {}
457
515
458 code.indent()
459 for param in params:
460 param.cxx_decl(code)
461 code.dedent()
462 code('};')
516 std::string name;
517 PyObject *pyobj;
518 EventQueue *eventq;
519 ''')
520 for param in params:
521 param.cxx_decl(code)
522 code.dedent()
523 code('};')
463
464 code()
465 code('#endif // __PARAMS__${cls}__')
466 return code
467
468
469
470# The SimObject class is the root of the special hierarchy. Most of
471# the code in this class deals with the configuration hierarchy itself
472# (parent/child node relationships).
473class SimObject(object):
474 # Specify metaclass. Any class inheriting from SimObject will
475 # get this metaclass.
476 __metaclass__ = MetaSimObject
477 type = 'SimObject'
478 abstract = True
479
524
525 code()
526 code('#endif // __PARAMS__${cls}__')
527 return code
528
529
530
531# The SimObject class is the root of the special hierarchy. Most of
532# the code in this class deals with the configuration hierarchy itself
533# (parent/child node relationships).
534class SimObject(object):
535 # Specify metaclass. Any class inheriting from SimObject will
536 # get this metaclass.
537 __metaclass__ = MetaSimObject
538 type = 'SimObject'
539 abstract = True
540
541 @classmethod
542 def export_method_cxx_predecls(cls, code):
543 code('''
544#include <Python.h>
545
546#include "sim/serialize.hh"
547#include "sim/sim_object.hh"
548''')
549
550 @classmethod
551 def export_method_swig_predecls(cls, code):
552 code('''
553%include <std_string.i>
554''')
555
556 @classmethod
557 def export_methods(cls, code):
558 code('''
559 enum State {
560 Running,
561 Draining,
562 Drained
563 };
564
565 void init();
566 void loadState(Checkpoint *cp);
567 void initState();
568 void regStats();
569 void regFormulas();
570 void resetStats();
571 void startup();
572
573 unsigned int drain(Event *drain_event);
574 void resume();
575 void switchOut();
576 void takeOverFrom(BaseCPU *cpu);
577''')
578
480 # Initialize new instance. For objects with SimObject-valued
481 # children, we need to recursively clone the classes represented
482 # by those param values as well in a consistent "deep copy"-style
483 # fashion. That is, we want to make sure that each instance is
484 # cloned only once, and that if there are multiple references to
485 # the same original object, we end up with the corresponding
486 # cloned references all pointing to the same cloned instance.
487 def __init__(self, **kwargs):
488 ancestor = kwargs.get('_ancestor')
489 memo_dict = kwargs.get('_memo')
490 if memo_dict is None:
491 # prepare to memoize any recursively instantiated objects
492 memo_dict = {}
493 elif ancestor:
494 # memoize me now to avoid problems with recursive calls
495 memo_dict[ancestor] = self
496
497 if not ancestor:
498 ancestor = self.__class__
499 ancestor._instantiated = True
500
501 # initialize required attributes
502 self._parent = None
503 self._name = None
504 self._ccObject = None # pointer to C++ object
505 self._ccParams = None
506 self._instantiated = False # really "cloned"
507
508 # Clone children specified at class level. No need for a
509 # multidict here since we will be cloning everything.
510 # Do children before parameter values so that children that
511 # are also param values get cloned properly.
512 self._children = {}
513 for key,val in ancestor._children.iteritems():
514 self.add_child(key, val(_memo=memo_dict))
515
516 # Inherit parameter values from class using multidict so
517 # individual value settings can be overridden but we still
518 # inherit late changes to non-overridden class values.
519 self._values = multidict(ancestor._values)
520 # clone SimObject-valued parameters
521 for key,val in ancestor._values.iteritems():
522 val = tryAsSimObjectOrVector(val)
523 if val is not None:
524 self._values[key] = val(_memo=memo_dict)
525
526 # clone port references. no need to use a multidict here
527 # since we will be creating new references for all ports.
528 self._port_refs = {}
529 for key,val in ancestor._port_refs.iteritems():
530 self._port_refs[key] = val.clone(self, memo_dict)
531 # apply attribute assignments from keyword args, if any
532 for key,val in kwargs.iteritems():
533 setattr(self, key, val)
534
535 # "Clone" the current instance by creating another instance of
536 # this instance's class, but that inherits its parameter values
537 # and port mappings from the current instance. If we're in a
538 # "deep copy" recursive clone, check the _memo dict to see if
539 # we've already cloned this instance.
540 def __call__(self, **kwargs):
541 memo_dict = kwargs.get('_memo')
542 if memo_dict is None:
543 # no memo_dict: must be top-level clone operation.
544 # this is only allowed at the root of a hierarchy
545 if self._parent:
546 raise RuntimeError, "attempt to clone object %s " \
547 "not at the root of a tree (parent = %s)" \
548 % (self, self._parent)
549 # create a new dict and use that.
550 memo_dict = {}
551 kwargs['_memo'] = memo_dict
552 elif memo_dict.has_key(self):
553 # clone already done & memoized
554 return memo_dict[self]
555 return self.__class__(_ancestor = self, **kwargs)
556
557 def _get_port_ref(self, attr):
558 # Return reference that can be assigned to another port
559 # via __setattr__. There is only ever one reference
560 # object per port, but we create them lazily here.
561 ref = self._port_refs.get(attr)
562 if not ref:
563 ref = self._ports[attr].makeRef(self)
564 self._port_refs[attr] = ref
565 return ref
566
567 def __getattr__(self, attr):
568 if self._ports.has_key(attr):
569 return self._get_port_ref(attr)
570
571 if self._values.has_key(attr):
572 return self._values[attr]
573
574 if self._children.has_key(attr):
575 return self._children[attr]
576
577 # If the attribute exists on the C++ object, transparently
578 # forward the reference there. This is typically used for
579 # SWIG-wrapped methods such as init(), regStats(),
580 # regFormulas(), resetStats(), startup(), drain(), and
581 # resume().
582 if self._ccObject and hasattr(self._ccObject, attr):
583 return getattr(self._ccObject, attr)
584
585 raise AttributeError, "object '%s' has no attribute '%s'" \
586 % (self.__class__.__name__, attr)
587
588 # Set attribute (called on foo.attr = value when foo is an
589 # instance of class cls).
590 def __setattr__(self, attr, value):
591 # normal processing for private attributes
592 if attr.startswith('_'):
593 object.__setattr__(self, attr, value)
594 return
595
596 if self._ports.has_key(attr):
597 # set up port connection
598 self._get_port_ref(attr).connect(value)
599 return
600
601 if isSimObjectOrSequence(value) and self._instantiated:
602 raise RuntimeError, \
603 "cannot set SimObject parameter '%s' after\n" \
604 " instance been cloned %s" % (attr, `self`)
605
606 param = self._params.get(attr)
607 if param:
608 try:
609 value = param.convert(value)
610 except Exception, e:
611 msg = "%s\nError setting param %s.%s to %s\n" % \
612 (e, self.__class__.__name__, attr, value)
613 e.args = (msg, )
614 raise
615 self._values[attr] = value
616 # implicitly parent unparented objects assigned as params
617 if isSimObjectOrVector(value) and not value.has_parent():
618 self.add_child(attr, value)
619 return
620
621 # if RHS is a SimObject, it's an implicit child assignment
622 if isSimObjectOrSequence(value):
623 self.add_child(attr, value)
624 return
625
626 # no valid assignment... raise exception
627 raise AttributeError, "Class %s has no parameter %s" \
628 % (self.__class__.__name__, attr)
629
630
631 # this hack allows tacking a '[0]' onto parameters that may or may
632 # not be vectors, and always getting the first element (e.g. cpus)
633 def __getitem__(self, key):
634 if key == 0:
635 return self
636 raise TypeError, "Non-zero index '%s' to SimObject" % key
637
638 # Also implemented by SimObjectVector
639 def clear_parent(self, old_parent):
640 assert self._parent is old_parent
641 self._parent = None
642
643 # Also implemented by SimObjectVector
644 def set_parent(self, parent, name):
645 self._parent = parent
646 self._name = name
647
648 # Also implemented by SimObjectVector
649 def get_name(self):
650 return self._name
651
652 # Also implemented by SimObjectVector
653 def has_parent(self):
654 return self._parent is not None
655
656 # clear out child with given name. This code is not likely to be exercised.
657 # See comment in add_child.
658 def clear_child(self, name):
659 child = self._children[name]
660 child.clear_parent(self)
661 del self._children[name]
662
663 # Add a new child to this object.
664 def add_child(self, name, child):
665 child = coerceSimObjectOrVector(child)
666 if child.has_parent():
667 print "warning: add_child('%s'): child '%s' already has parent" % \
668 (name, child.get_name())
669 if self._children.has_key(name):
670 # This code path had an undiscovered bug that would make it fail
671 # at runtime. It had been here for a long time and was only
672 # exposed by a buggy script. Changes here will probably not be
673 # exercised without specialized testing.
674 self.clear_child(name)
675 child.set_parent(self, name)
676 self._children[name] = child
677
678 # Take SimObject-valued parameters that haven't been explicitly
679 # assigned as children and make them children of the object that
680 # they were assigned to as a parameter value. This guarantees
681 # that when we instantiate all the parameter objects we're still
682 # inside the configuration hierarchy.
683 def adoptOrphanParams(self):
684 for key,val in self._values.iteritems():
685 if not isSimObjectVector(val) and isSimObjectSequence(val):
686 # need to convert raw SimObject sequences to
687 # SimObjectVector class so we can call has_parent()
688 val = SimObjectVector(val)
689 self._values[key] = val
690 if isSimObjectOrVector(val) and not val.has_parent():
691 print "warning: %s adopting orphan SimObject param '%s'" \
692 % (self, key)
693 self.add_child(key, val)
694
695 def path(self):
696 if not self._parent:
697 return '<orphan %s>' % self.__class__
698 ppath = self._parent.path()
699 if ppath == 'root':
700 return self._name
701 return ppath + "." + self._name
702
703 def __str__(self):
704 return self.path()
705
706 def ini_str(self):
707 return self.path()
708
709 def find_any(self, ptype):
710 if isinstance(self, ptype):
711 return self, True
712
713 found_obj = None
714 for child in self._children.itervalues():
715 if isinstance(child, ptype):
716 if found_obj != None and child != found_obj:
717 raise AttributeError, \
718 'parent.any matched more than one: %s %s' % \
719 (found_obj.path, child.path)
720 found_obj = child
721 # search param space
722 for pname,pdesc in self._params.iteritems():
723 if issubclass(pdesc.ptype, ptype):
724 match_obj = self._values[pname]
725 if found_obj != None and found_obj != match_obj:
726 raise AttributeError, \
727 'parent.any matched more than one: %s and %s' % (found_obj.path, match_obj.path)
728 found_obj = match_obj
729 return found_obj, found_obj != None
730
731 def find_all(self, ptype):
732 all = {}
733 # search children
734 for child in self._children.itervalues():
735 if isinstance(child, ptype) and not isproxy(child) and \
736 not isNullPointer(child):
737 all[child] = True
738 # search param space
739 for pname,pdesc in self._params.iteritems():
740 if issubclass(pdesc.ptype, ptype):
741 match_obj = self._values[pname]
742 if not isproxy(match_obj) and not isNullPointer(match_obj):
743 all[match_obj] = True
744 return all.keys(), True
745
746 def unproxy(self, base):
747 return self
748
749 def unproxyParams(self):
750 for param in self._params.iterkeys():
751 value = self._values.get(param)
752 if value != None and isproxy(value):
753 try:
754 value = value.unproxy(self)
755 except:
756 print "Error in unproxying param '%s' of %s" % \
757 (param, self.path())
758 raise
759 setattr(self, param, value)
760
761 # Unproxy ports in sorted order so that 'append' operations on
762 # vector ports are done in a deterministic fashion.
763 port_names = self._ports.keys()
764 port_names.sort()
765 for port_name in port_names:
766 port = self._port_refs.get(port_name)
767 if port != None:
768 port.unproxy(self)
769
770 def print_ini(self, ini_file):
771 print >>ini_file, '[' + self.path() + ']' # .ini section header
772
773 instanceDict[self.path()] = self
774
775 if hasattr(self, 'type'):
776 print >>ini_file, 'type=%s' % self.type
777
778 child_names = self._children.keys()
779 child_names.sort()
780 if len(child_names):
781 print >>ini_file, 'children=%s' % \
782 ' '.join(self._children[n].get_name() for n in child_names)
783
784 param_names = self._params.keys()
785 param_names.sort()
786 for param in param_names:
787 value = self._values.get(param)
788 if value != None:
789 print >>ini_file, '%s=%s' % (param,
790 self._values[param].ini_str())
791
792 port_names = self._ports.keys()
793 port_names.sort()
794 for port_name in port_names:
795 port = self._port_refs.get(port_name, None)
796 if port != None:
797 print >>ini_file, '%s=%s' % (port_name, port.ini_str())
798
799 print >>ini_file # blank line between objects
800
801 def getCCParams(self):
802 if self._ccParams:
803 return self._ccParams
804
805 cc_params_struct = getattr(m5.internal.params, '%sParams' % self.type)
806 cc_params = cc_params_struct()
807 cc_params.pyobj = self
808 cc_params.name = str(self)
809
810 param_names = self._params.keys()
811 param_names.sort()
812 for param in param_names:
813 value = self._values.get(param)
814 if value is None:
815 fatal("%s.%s without default or user set value",
816 self.path(), param)
817
818 value = value.getValue()
819 if isinstance(self._params[param], VectorParamDesc):
820 assert isinstance(value, list)
821 vec = getattr(cc_params, param)
822 assert not len(vec)
823 for v in value:
824 vec.append(v)
825 else:
826 setattr(cc_params, param, value)
827
828 port_names = self._ports.keys()
829 port_names.sort()
830 for port_name in port_names:
831 port = self._port_refs.get(port_name, None)
832 if port != None:
833 setattr(cc_params, port_name, port)
834 self._ccParams = cc_params
835 return self._ccParams
836
837 # Get C++ object corresponding to this object, calling C++ if
838 # necessary to construct it. Does *not* recursively create
839 # children.
840 def getCCObject(self):
841 if not self._ccObject:
842 # Make sure this object is in the configuration hierarchy
843 if not self._parent and not isRoot(self):
844 raise RuntimeError, "Attempt to instantiate orphan node"
845 # Cycles in the configuration hierarchy are not supported. This
846 # will catch the resulting recursion and stop.
847 self._ccObject = -1
848 params = self.getCCParams()
849 self._ccObject = params.create()
850 elif self._ccObject == -1:
851 raise RuntimeError, "%s: Cycle found in configuration hierarchy." \
852 % self.path()
853 return self._ccObject
854
855 def descendants(self):
856 yield self
857 for child in self._children.itervalues():
858 for obj in child.descendants():
859 yield obj
860
861 # Call C++ to create C++ object corresponding to this object
862 def createCCObject(self):
863 self.getCCParams()
864 self.getCCObject() # force creation
865
866 def getValue(self):
867 return self.getCCObject()
868
869 # Create C++ port connections corresponding to the connections in
870 # _port_refs
871 def connectPorts(self):
872 for portRef in self._port_refs.itervalues():
873 portRef.ccConnect()
874
875 def getMemoryMode(self):
876 if not isinstance(self, m5.objects.System):
877 return None
878
879 return self._ccObject.getMemoryMode()
880
881 def changeTiming(self, mode):
882 if isinstance(self, m5.objects.System):
883 # i don't know if there's a better way to do this - calling
884 # setMemoryMode directly from self._ccObject results in calling
885 # SimObject::setMemoryMode, not the System::setMemoryMode
886 self._ccObject.setMemoryMode(mode)
887
888 def takeOverFrom(self, old_cpu):
889 self._ccObject.takeOverFrom(old_cpu._ccObject)
890
891 # generate output file for 'dot' to display as a pretty graph.
892 # this code is currently broken.
893 def outputDot(self, dot):
894 label = "{%s|" % self.path
895 if isSimObject(self.realtype):
896 label += '%s|' % self.type
897
898 if self.children:
899 # instantiate children in same order they were added for
900 # backward compatibility (else we can end up with cpu1
901 # before cpu0).
902 for c in self.children:
903 dot.add_edge(pydot.Edge(self.path,c.path, style="bold"))
904
905 simobjs = []
906 for param in self.params:
907 try:
908 if param.value is None:
909 raise AttributeError, 'Parameter with no value'
910
911 value = param.value
912 string = param.string(value)
913 except Exception, e:
914 msg = 'exception in %s:%s\n%s' % (self.name, param.name, e)
915 e.args = (msg, )
916 raise
917
918 if isSimObject(param.ptype) and string != "Null":
919 simobjs.append(string)
920 else:
921 label += '%s = %s\\n' % (param.name, string)
922
923 for so in simobjs:
924 label += "|<%s> %s" % (so, so)
925 dot.add_edge(pydot.Edge("%s:%s" % (self.path, so), so,
926 tailport="w"))
927 label += '}'
928 dot.add_node(pydot.Node(self.path,shape="Mrecord",label=label))
929
930 # recursively dump out children
931 for c in self.children:
932 c.outputDot(dot)
933
934# Function to provide to C++ so it can look up instances based on paths
935def resolveSimObject(name):
936 obj = instanceDict[name]
937 return obj.getCCObject()
938
939def isSimObject(value):
940 return isinstance(value, SimObject)
941
942def isSimObjectClass(value):
943 return issubclass(value, SimObject)
944
945def isSimObjectVector(value):
946 return isinstance(value, SimObjectVector)
947
948def isSimObjectSequence(value):
949 if not isinstance(value, (list, tuple)) or len(value) == 0:
950 return False
951
952 for val in value:
953 if not isNullPointer(val) and not isSimObject(val):
954 return False
955
956 return True
957
958def isSimObjectOrSequence(value):
959 return isSimObject(value) or isSimObjectSequence(value)
960
961def isRoot(obj):
962 from m5.objects import Root
963 return obj and obj is Root.getInstance()
964
965def isSimObjectOrVector(value):
966 return isSimObject(value) or isSimObjectVector(value)
967
968def tryAsSimObjectOrVector(value):
969 if isSimObjectOrVector(value):
970 return value
971 if isSimObjectSequence(value):
972 return SimObjectVector(value)
973 return None
974
975def coerceSimObjectOrVector(value):
976 value = tryAsSimObjectOrVector(value)
977 if value is None:
978 raise TypeError, "SimObject or SimObjectVector expected"
979 return value
980
981baseClasses = allClasses.copy()
982baseInstances = instanceDict.copy()
983
984def clear():
985 global allClasses, instanceDict
986
987 allClasses = baseClasses.copy()
988 instanceDict = baseInstances.copy()
989
990# __all__ defines the list of symbols that get exported when
991# 'from config import *' is invoked. Try to keep this reasonably
992# short to avoid polluting other namespaces.
993__all__ = [ 'SimObject' ]
579 # Initialize new instance. For objects with SimObject-valued
580 # children, we need to recursively clone the classes represented
581 # by those param values as well in a consistent "deep copy"-style
582 # fashion. That is, we want to make sure that each instance is
583 # cloned only once, and that if there are multiple references to
584 # the same original object, we end up with the corresponding
585 # cloned references all pointing to the same cloned instance.
586 def __init__(self, **kwargs):
587 ancestor = kwargs.get('_ancestor')
588 memo_dict = kwargs.get('_memo')
589 if memo_dict is None:
590 # prepare to memoize any recursively instantiated objects
591 memo_dict = {}
592 elif ancestor:
593 # memoize me now to avoid problems with recursive calls
594 memo_dict[ancestor] = self
595
596 if not ancestor:
597 ancestor = self.__class__
598 ancestor._instantiated = True
599
600 # initialize required attributes
601 self._parent = None
602 self._name = None
603 self._ccObject = None # pointer to C++ object
604 self._ccParams = None
605 self._instantiated = False # really "cloned"
606
607 # Clone children specified at class level. No need for a
608 # multidict here since we will be cloning everything.
609 # Do children before parameter values so that children that
610 # are also param values get cloned properly.
611 self._children = {}
612 for key,val in ancestor._children.iteritems():
613 self.add_child(key, val(_memo=memo_dict))
614
615 # Inherit parameter values from class using multidict so
616 # individual value settings can be overridden but we still
617 # inherit late changes to non-overridden class values.
618 self._values = multidict(ancestor._values)
619 # clone SimObject-valued parameters
620 for key,val in ancestor._values.iteritems():
621 val = tryAsSimObjectOrVector(val)
622 if val is not None:
623 self._values[key] = val(_memo=memo_dict)
624
625 # clone port references. no need to use a multidict here
626 # since we will be creating new references for all ports.
627 self._port_refs = {}
628 for key,val in ancestor._port_refs.iteritems():
629 self._port_refs[key] = val.clone(self, memo_dict)
630 # apply attribute assignments from keyword args, if any
631 for key,val in kwargs.iteritems():
632 setattr(self, key, val)
633
634 # "Clone" the current instance by creating another instance of
635 # this instance's class, but that inherits its parameter values
636 # and port mappings from the current instance. If we're in a
637 # "deep copy" recursive clone, check the _memo dict to see if
638 # we've already cloned this instance.
639 def __call__(self, **kwargs):
640 memo_dict = kwargs.get('_memo')
641 if memo_dict is None:
642 # no memo_dict: must be top-level clone operation.
643 # this is only allowed at the root of a hierarchy
644 if self._parent:
645 raise RuntimeError, "attempt to clone object %s " \
646 "not at the root of a tree (parent = %s)" \
647 % (self, self._parent)
648 # create a new dict and use that.
649 memo_dict = {}
650 kwargs['_memo'] = memo_dict
651 elif memo_dict.has_key(self):
652 # clone already done & memoized
653 return memo_dict[self]
654 return self.__class__(_ancestor = self, **kwargs)
655
656 def _get_port_ref(self, attr):
657 # Return reference that can be assigned to another port
658 # via __setattr__. There is only ever one reference
659 # object per port, but we create them lazily here.
660 ref = self._port_refs.get(attr)
661 if not ref:
662 ref = self._ports[attr].makeRef(self)
663 self._port_refs[attr] = ref
664 return ref
665
666 def __getattr__(self, attr):
667 if self._ports.has_key(attr):
668 return self._get_port_ref(attr)
669
670 if self._values.has_key(attr):
671 return self._values[attr]
672
673 if self._children.has_key(attr):
674 return self._children[attr]
675
676 # If the attribute exists on the C++ object, transparently
677 # forward the reference there. This is typically used for
678 # SWIG-wrapped methods such as init(), regStats(),
679 # regFormulas(), resetStats(), startup(), drain(), and
680 # resume().
681 if self._ccObject and hasattr(self._ccObject, attr):
682 return getattr(self._ccObject, attr)
683
684 raise AttributeError, "object '%s' has no attribute '%s'" \
685 % (self.__class__.__name__, attr)
686
687 # Set attribute (called on foo.attr = value when foo is an
688 # instance of class cls).
689 def __setattr__(self, attr, value):
690 # normal processing for private attributes
691 if attr.startswith('_'):
692 object.__setattr__(self, attr, value)
693 return
694
695 if self._ports.has_key(attr):
696 # set up port connection
697 self._get_port_ref(attr).connect(value)
698 return
699
700 if isSimObjectOrSequence(value) and self._instantiated:
701 raise RuntimeError, \
702 "cannot set SimObject parameter '%s' after\n" \
703 " instance been cloned %s" % (attr, `self`)
704
705 param = self._params.get(attr)
706 if param:
707 try:
708 value = param.convert(value)
709 except Exception, e:
710 msg = "%s\nError setting param %s.%s to %s\n" % \
711 (e, self.__class__.__name__, attr, value)
712 e.args = (msg, )
713 raise
714 self._values[attr] = value
715 # implicitly parent unparented objects assigned as params
716 if isSimObjectOrVector(value) and not value.has_parent():
717 self.add_child(attr, value)
718 return
719
720 # if RHS is a SimObject, it's an implicit child assignment
721 if isSimObjectOrSequence(value):
722 self.add_child(attr, value)
723 return
724
725 # no valid assignment... raise exception
726 raise AttributeError, "Class %s has no parameter %s" \
727 % (self.__class__.__name__, attr)
728
729
730 # this hack allows tacking a '[0]' onto parameters that may or may
731 # not be vectors, and always getting the first element (e.g. cpus)
732 def __getitem__(self, key):
733 if key == 0:
734 return self
735 raise TypeError, "Non-zero index '%s' to SimObject" % key
736
737 # Also implemented by SimObjectVector
738 def clear_parent(self, old_parent):
739 assert self._parent is old_parent
740 self._parent = None
741
742 # Also implemented by SimObjectVector
743 def set_parent(self, parent, name):
744 self._parent = parent
745 self._name = name
746
747 # Also implemented by SimObjectVector
748 def get_name(self):
749 return self._name
750
751 # Also implemented by SimObjectVector
752 def has_parent(self):
753 return self._parent is not None
754
755 # clear out child with given name. This code is not likely to be exercised.
756 # See comment in add_child.
757 def clear_child(self, name):
758 child = self._children[name]
759 child.clear_parent(self)
760 del self._children[name]
761
762 # Add a new child to this object.
763 def add_child(self, name, child):
764 child = coerceSimObjectOrVector(child)
765 if child.has_parent():
766 print "warning: add_child('%s'): child '%s' already has parent" % \
767 (name, child.get_name())
768 if self._children.has_key(name):
769 # This code path had an undiscovered bug that would make it fail
770 # at runtime. It had been here for a long time and was only
771 # exposed by a buggy script. Changes here will probably not be
772 # exercised without specialized testing.
773 self.clear_child(name)
774 child.set_parent(self, name)
775 self._children[name] = child
776
777 # Take SimObject-valued parameters that haven't been explicitly
778 # assigned as children and make them children of the object that
779 # they were assigned to as a parameter value. This guarantees
780 # that when we instantiate all the parameter objects we're still
781 # inside the configuration hierarchy.
782 def adoptOrphanParams(self):
783 for key,val in self._values.iteritems():
784 if not isSimObjectVector(val) and isSimObjectSequence(val):
785 # need to convert raw SimObject sequences to
786 # SimObjectVector class so we can call has_parent()
787 val = SimObjectVector(val)
788 self._values[key] = val
789 if isSimObjectOrVector(val) and not val.has_parent():
790 print "warning: %s adopting orphan SimObject param '%s'" \
791 % (self, key)
792 self.add_child(key, val)
793
794 def path(self):
795 if not self._parent:
796 return '<orphan %s>' % self.__class__
797 ppath = self._parent.path()
798 if ppath == 'root':
799 return self._name
800 return ppath + "." + self._name
801
802 def __str__(self):
803 return self.path()
804
805 def ini_str(self):
806 return self.path()
807
808 def find_any(self, ptype):
809 if isinstance(self, ptype):
810 return self, True
811
812 found_obj = None
813 for child in self._children.itervalues():
814 if isinstance(child, ptype):
815 if found_obj != None and child != found_obj:
816 raise AttributeError, \
817 'parent.any matched more than one: %s %s' % \
818 (found_obj.path, child.path)
819 found_obj = child
820 # search param space
821 for pname,pdesc in self._params.iteritems():
822 if issubclass(pdesc.ptype, ptype):
823 match_obj = self._values[pname]
824 if found_obj != None and found_obj != match_obj:
825 raise AttributeError, \
826 'parent.any matched more than one: %s and %s' % (found_obj.path, match_obj.path)
827 found_obj = match_obj
828 return found_obj, found_obj != None
829
830 def find_all(self, ptype):
831 all = {}
832 # search children
833 for child in self._children.itervalues():
834 if isinstance(child, ptype) and not isproxy(child) and \
835 not isNullPointer(child):
836 all[child] = True
837 # search param space
838 for pname,pdesc in self._params.iteritems():
839 if issubclass(pdesc.ptype, ptype):
840 match_obj = self._values[pname]
841 if not isproxy(match_obj) and not isNullPointer(match_obj):
842 all[match_obj] = True
843 return all.keys(), True
844
845 def unproxy(self, base):
846 return self
847
848 def unproxyParams(self):
849 for param in self._params.iterkeys():
850 value = self._values.get(param)
851 if value != None and isproxy(value):
852 try:
853 value = value.unproxy(self)
854 except:
855 print "Error in unproxying param '%s' of %s" % \
856 (param, self.path())
857 raise
858 setattr(self, param, value)
859
860 # Unproxy ports in sorted order so that 'append' operations on
861 # vector ports are done in a deterministic fashion.
862 port_names = self._ports.keys()
863 port_names.sort()
864 for port_name in port_names:
865 port = self._port_refs.get(port_name)
866 if port != None:
867 port.unproxy(self)
868
869 def print_ini(self, ini_file):
870 print >>ini_file, '[' + self.path() + ']' # .ini section header
871
872 instanceDict[self.path()] = self
873
874 if hasattr(self, 'type'):
875 print >>ini_file, 'type=%s' % self.type
876
877 child_names = self._children.keys()
878 child_names.sort()
879 if len(child_names):
880 print >>ini_file, 'children=%s' % \
881 ' '.join(self._children[n].get_name() for n in child_names)
882
883 param_names = self._params.keys()
884 param_names.sort()
885 for param in param_names:
886 value = self._values.get(param)
887 if value != None:
888 print >>ini_file, '%s=%s' % (param,
889 self._values[param].ini_str())
890
891 port_names = self._ports.keys()
892 port_names.sort()
893 for port_name in port_names:
894 port = self._port_refs.get(port_name, None)
895 if port != None:
896 print >>ini_file, '%s=%s' % (port_name, port.ini_str())
897
898 print >>ini_file # blank line between objects
899
900 def getCCParams(self):
901 if self._ccParams:
902 return self._ccParams
903
904 cc_params_struct = getattr(m5.internal.params, '%sParams' % self.type)
905 cc_params = cc_params_struct()
906 cc_params.pyobj = self
907 cc_params.name = str(self)
908
909 param_names = self._params.keys()
910 param_names.sort()
911 for param in param_names:
912 value = self._values.get(param)
913 if value is None:
914 fatal("%s.%s without default or user set value",
915 self.path(), param)
916
917 value = value.getValue()
918 if isinstance(self._params[param], VectorParamDesc):
919 assert isinstance(value, list)
920 vec = getattr(cc_params, param)
921 assert not len(vec)
922 for v in value:
923 vec.append(v)
924 else:
925 setattr(cc_params, param, value)
926
927 port_names = self._ports.keys()
928 port_names.sort()
929 for port_name in port_names:
930 port = self._port_refs.get(port_name, None)
931 if port != None:
932 setattr(cc_params, port_name, port)
933 self._ccParams = cc_params
934 return self._ccParams
935
936 # Get C++ object corresponding to this object, calling C++ if
937 # necessary to construct it. Does *not* recursively create
938 # children.
939 def getCCObject(self):
940 if not self._ccObject:
941 # Make sure this object is in the configuration hierarchy
942 if not self._parent and not isRoot(self):
943 raise RuntimeError, "Attempt to instantiate orphan node"
944 # Cycles in the configuration hierarchy are not supported. This
945 # will catch the resulting recursion and stop.
946 self._ccObject = -1
947 params = self.getCCParams()
948 self._ccObject = params.create()
949 elif self._ccObject == -1:
950 raise RuntimeError, "%s: Cycle found in configuration hierarchy." \
951 % self.path()
952 return self._ccObject
953
954 def descendants(self):
955 yield self
956 for child in self._children.itervalues():
957 for obj in child.descendants():
958 yield obj
959
960 # Call C++ to create C++ object corresponding to this object
961 def createCCObject(self):
962 self.getCCParams()
963 self.getCCObject() # force creation
964
965 def getValue(self):
966 return self.getCCObject()
967
968 # Create C++ port connections corresponding to the connections in
969 # _port_refs
970 def connectPorts(self):
971 for portRef in self._port_refs.itervalues():
972 portRef.ccConnect()
973
974 def getMemoryMode(self):
975 if not isinstance(self, m5.objects.System):
976 return None
977
978 return self._ccObject.getMemoryMode()
979
980 def changeTiming(self, mode):
981 if isinstance(self, m5.objects.System):
982 # i don't know if there's a better way to do this - calling
983 # setMemoryMode directly from self._ccObject results in calling
984 # SimObject::setMemoryMode, not the System::setMemoryMode
985 self._ccObject.setMemoryMode(mode)
986
987 def takeOverFrom(self, old_cpu):
988 self._ccObject.takeOverFrom(old_cpu._ccObject)
989
990 # generate output file for 'dot' to display as a pretty graph.
991 # this code is currently broken.
992 def outputDot(self, dot):
993 label = "{%s|" % self.path
994 if isSimObject(self.realtype):
995 label += '%s|' % self.type
996
997 if self.children:
998 # instantiate children in same order they were added for
999 # backward compatibility (else we can end up with cpu1
1000 # before cpu0).
1001 for c in self.children:
1002 dot.add_edge(pydot.Edge(self.path,c.path, style="bold"))
1003
1004 simobjs = []
1005 for param in self.params:
1006 try:
1007 if param.value is None:
1008 raise AttributeError, 'Parameter with no value'
1009
1010 value = param.value
1011 string = param.string(value)
1012 except Exception, e:
1013 msg = 'exception in %s:%s\n%s' % (self.name, param.name, e)
1014 e.args = (msg, )
1015 raise
1016
1017 if isSimObject(param.ptype) and string != "Null":
1018 simobjs.append(string)
1019 else:
1020 label += '%s = %s\\n' % (param.name, string)
1021
1022 for so in simobjs:
1023 label += "|<%s> %s" % (so, so)
1024 dot.add_edge(pydot.Edge("%s:%s" % (self.path, so), so,
1025 tailport="w"))
1026 label += '}'
1027 dot.add_node(pydot.Node(self.path,shape="Mrecord",label=label))
1028
1029 # recursively dump out children
1030 for c in self.children:
1031 c.outputDot(dot)
1032
1033# Function to provide to C++ so it can look up instances based on paths
1034def resolveSimObject(name):
1035 obj = instanceDict[name]
1036 return obj.getCCObject()
1037
1038def isSimObject(value):
1039 return isinstance(value, SimObject)
1040
1041def isSimObjectClass(value):
1042 return issubclass(value, SimObject)
1043
1044def isSimObjectVector(value):
1045 return isinstance(value, SimObjectVector)
1046
1047def isSimObjectSequence(value):
1048 if not isinstance(value, (list, tuple)) or len(value) == 0:
1049 return False
1050
1051 for val in value:
1052 if not isNullPointer(val) and not isSimObject(val):
1053 return False
1054
1055 return True
1056
1057def isSimObjectOrSequence(value):
1058 return isSimObject(value) or isSimObjectSequence(value)
1059
1060def isRoot(obj):
1061 from m5.objects import Root
1062 return obj and obj is Root.getInstance()
1063
1064def isSimObjectOrVector(value):
1065 return isSimObject(value) or isSimObjectVector(value)
1066
1067def tryAsSimObjectOrVector(value):
1068 if isSimObjectOrVector(value):
1069 return value
1070 if isSimObjectSequence(value):
1071 return SimObjectVector(value)
1072 return None
1073
1074def coerceSimObjectOrVector(value):
1075 value = tryAsSimObjectOrVector(value)
1076 if value is None:
1077 raise TypeError, "SimObject or SimObjectVector expected"
1078 return value
1079
1080baseClasses = allClasses.copy()
1081baseInstances = instanceDict.copy()
1082
1083def clear():
1084 global allClasses, instanceDict
1085
1086 allClasses = baseClasses.copy()
1087 instanceDict = baseInstances.copy()
1088
1089# __all__ defines the list of symbols that get exported when
1090# 'from config import *' is invoked. Try to keep this reasonably
1091# short to avoid polluting other namespaces.
1092__all__ = [ 'SimObject' ]