Convert type of max_time and progress_interval parameters
authorSteve Reinhardt <stever@eecs.umich.edu>
Thu, 1 Sep 2005 15:32:58 +0000 (11:32 -0400)
committerSteve Reinhardt <stever@eecs.umich.edu>
Thu, 1 Sep 2005 15:32:58 +0000 (11:32 -0400)
from Latency to Tick, and rename max_time to max_tick.

python/m5/objects/Root.py:
sim/root.cc:
    Convert type of max_time and progress_interval
    from Latency to Tick, and rename max_time to max_tick.

--HG--
extra : convert_revision : 2f2aacf6321c3003a0ce834acd8fb726abf27ce3

python/m5/objects/Root.py
sim/root.cc

index a5aaadd8c90677a37b14c159465d20096380befe..df8fc4bf861cd6e8c32a200e24a69e92b64e0b38 100644 (file)
@@ -7,9 +7,9 @@ from Trace import Trace
 class Root(SimObject):
     type = 'Root'
     clock = Param.RootClock('200MHz', "tick frequency")
-    max_time = Param.Latency('0ns', "maximum simulation time (0 = infinite)")
-    progress_interval = Param.Latency('0ns',
-        "print a progress message at a regular interval (0 = never)")
+    max_tick = Param.Tick('0', "maximum simulation ticks (0 = infinite)")
+    progress_interval = Param.Tick('0',
+        "print a progress message every n ticks (0 = never)")
     output_file = Param.String('cout', "file to dump simulator output to")
     checkpoint = Param.String('', "checkpoint file to load")
 #    hier = Param.HierParams(HierParams(do_data = False, do_events = True),
index 17438cf2c1dc27fabe20ed19b6547deecfe7b871..6348ec1041cb3dc027ae1ee0a4d0b6d0100d49fc 100644 (file)
@@ -81,12 +81,12 @@ Tick ps;
 class Root : public SimObject
 {
   private:
-    Tick max_time;
+    Tick max_tick;
     Tick progress_interval;
 
   public:
-    Root(const std::string &name, Tick maxtime, Tick pi)
-        : SimObject(name), max_time(maxtime), progress_interval(pi)
+    Root(const std::string &name, Tick maxtick, Tick pi)
+        : SimObject(name), max_tick(maxtick), progress_interval(pi)
     {}
 
     virtual void startup();
@@ -95,8 +95,8 @@ class Root : public SimObject
 void
 Root::startup()
 {
-    if (max_time != 0)
-        new SimExitEvent(curTick + max_time, "reached maximum cycle count");
+    if (max_tick != 0)
+        new SimExitEvent(curTick + max_tick, "reached maximum cycle count");
 
     if (progress_interval != 0)
         new ProgressEvent(&mainEventQueue, progress_interval);
@@ -105,7 +105,7 @@ Root::startup()
 BEGIN_DECLARE_SIM_OBJECT_PARAMS(Root)
 
     Param<Tick> clock;
-    Param<Tick> max_time;
+    Param<Tick> max_tick;
     Param<Tick> progress_interval;
     Param<string> output_file;
 
@@ -114,7 +114,7 @@ END_DECLARE_SIM_OBJECT_PARAMS(Root)
 BEGIN_INIT_SIM_OBJECT_PARAMS(Root)
 
     INIT_PARAM(clock, "tick frequency"),
-    INIT_PARAM(max_time, "maximum simulation time"),
+    INIT_PARAM(max_tick, "maximum simulation time"),
     INIT_PARAM(progress_interval, "print a progress message"),
     INIT_PARAM(output_file, "file to dump simulator output to")
 
@@ -129,7 +129,7 @@ CREATE_SIM_OBJECT(Root)
     created = true;
 
     outputStream = simout.find(output_file);
-    Root *root = new Root(getInstanceName(), max_time, progress_interval);
+    Root *root = new Root(getInstanceName(), max_tick, progress_interval);
 
     using namespace Clock;
     Frequency = clock;