projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac3b414
)
Add execution trace object to Root.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Thu, 6 Oct 2005 17:50:13 +0000
(13:50 -0400)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Thu, 6 Oct 2005 17:50:13 +0000
(13:50 -0400)
python/m5/objects/Root.py:
Add execution trace object.
--HG--
extra : convert_revision :
1d1ba18779fd4d0b5af921c5f34b7a2bfb4b75d9
python/m5/objects/Root.py
patch
|
blob
|
history
diff --git
a/python/m5/objects/Root.py
b/python/m5/objects/Root.py
index df8fc4bf861cd6e8c32a200e24a69e92b64e0b38..23b13fc675ba40fce4e4e083e1ae628d6939aaf6 100644
(file)
--- a/
python/m5/objects/Root.py
+++ b/
python/m5/objects/Root.py
@@
-3,6
+3,7
@@
from HierParams import HierParams
from Serialize import Serialize
from Statistics import Statistics
from Trace import Trace
+from ExeTrace import ExecutionTrace
class Root(SimObject):
type = 'Root'
@@
-20,4
+21,5
@@
class Root(SimObject):
hier = HierParams(do_data = False, do_events = True)
stats = Statistics()
trace = Trace()
+ exetrace = ExecutionTrace()
serialize = Serialize()