stats: create an enable phase, and a prepare phase.

Enable more or less takes the place of check, but also allows stats to
do some other configuration.  Prepare moves all of the code that readies
a stat for dumping into a separate function in preparation for supporting
serialization of certain pieces of statistics data.
While we're at it, clean up the visitor code and some of the python code.
This commit is contained in:
Nathan Binkert
2009-03-05 19:09:53 -08:00
parent 9f45fbaaa6
commit 6f787e3d36
7 changed files with 214 additions and 161 deletions

View File

@@ -28,9 +28,6 @@
import internal
from internal.stats import dump
from internal.stats import initSimStats
from internal.stats import reset
from internal.stats import StatEvent as event
def initText(filename, desc=True, compat=True):
@@ -44,3 +41,19 @@ def initMySQL(host, database, user='', passwd='', project='test', name='test',
internal.stats.initMySQL(host, database, user, passwd, project, name,
sample)
def initSimStats():
internal.stats.initSimStats()
def enable():
internal.stats.enable()
def dump():
# Currently prepare happens in the dump, but we should maybe move
# that out.
#internal.stats.prepare()
internal.stats.dump()
def reset():
internal.stats.reset()