diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-11-05 21:17:13 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-11-05 21:17:13 -0500 |
commit | f2881c752e29390dd99e5b685505494a72776f7e (patch) | |
tree | 989750c3e2715563daf4f5fd6d9c87013a965230 /sim | |
parent | b064b8a6fda1dd3f1bd174d742cc8e452f714efe (diff) | |
download | gem5-f2881c752e29390dd99e5b685505494a72776f7e.tar.xz |
Ok, actually call resetStats on all stats
minor gratuitous cleanup in printAllExtraOutput.
(only create one end iterator)
Fix average stats reset
base/statistics.hh:
Shouldn't reset average stats this way. The current stat value
should stay the same.
sim/sim_object.cc:
Ok, actually call resetStats on all stats
minor gratuitous cleanup in printAllExtraOutput.
(only create one end iterator)
--HG--
extra : convert_revision : 13090ebe490a93757b8eb7d7c6a9697983095e41
Diffstat (limited to 'sim')
-rw-r--r-- | sim/sim_object.cc | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/sim/sim_object.cc b/sim/sim_object.cc index 5c8e3eb9b..b524d6075 100644 --- a/sim/sim_object.cc +++ b/sim/sim_object.cc @@ -131,6 +131,13 @@ SimObject::regAllStats() void SimObject::resetAllStats() { + SimObjectList::iterator i = simObjectList.begin(); + SimObjectList::iterator end = simObjectList.end(); + + for (; i != end; ++i) { + SimObject *obj = *i; + obj->resetStats(); + } } // @@ -139,9 +146,11 @@ SimObject::resetAllStats() void SimObject::printAllExtraOutput(ostream &os) { - SimObjectList::iterator i; + SimObjectList::iterator i = simObjectList.begin(); + SimObjectList::iterator end = simObjectList.end(); - for (i = simObjectList.begin(); i != simObjectList.end(); ++i) { - (*i)->printExtraOutput(os); + for (; i != end; ++i) { + SimObject *obj = *i; + obj->printExtraOutput(os); } } |