diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-10-06 13:50:13 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-10-06 13:50:13 -0400 |
commit | af2a600f99ce2989d8aa888efa62795123e89dae (patch) | |
tree | 710fc45b79592d25b253f56832d7caf5e8cc0f73 /python | |
parent | ac3b4149eacd994e62721dc9e6cc9f2f3c07c59b (diff) | |
download | gem5-af2a600f99ce2989d8aa888efa62795123e89dae.tar.xz |
Add execution trace object to Root.
python/m5/objects/Root.py:
Add execution trace object.
--HG--
extra : convert_revision : 1d1ba18779fd4d0b5af921c5f34b7a2bfb4b75d9
Diffstat (limited to 'python')
-rw-r--r-- | python/m5/objects/Root.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/m5/objects/Root.py b/python/m5/objects/Root.py index df8fc4bf8..23b13fc67 100644 --- 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() |