stats: rename print to display so it work in python
authorNathan Binkert <nate@binkert.org>
Tue, 15 Jun 2010 15:34:19 +0000 (08:34 -0700)
committerNathan Binkert <nate@binkert.org>
Tue, 15 Jun 2010 15:34:19 +0000 (08:34 -0700)
src/base/statistics.cc
src/base/statistics.hh
src/base/stats/info.hh
src/base/stats/text.cc

index ab351567c75c417c86f7c54b3733a5f312cde3aa..853f3a58d2c56706afa282de34fb6c33ac02852d 100644 (file)
@@ -192,7 +192,7 @@ Info::baseCheck() const
         return false;
     }
 
-    if ((flags & print) && name.empty()) {
+    if ((flags & display) && name.empty()) {
         panic("all printable stats must be named");
         return false;
     }
@@ -331,7 +331,7 @@ enable()
     off_t j = 0;
     for (i = statsList().begin(); i != end; ++i) {
         Info *info = *i;
-        if (!(info->flags & print))
+        if (!(info->flags & display))
             info->name = "__Stat" + to_string(j++);
     }
 
index f7625779a141b758232f913c194d92dd049f7647..37bb1b90b8215793c0811404085025f85f7266d5 100644 (file)
@@ -245,7 +245,7 @@ class DataWrap : public InfoAccess
     {
         Info *info = this->info();
         info->setName(name);
-        info->flags.set(print);
+        info->flags.set(display);
         return this->self();
     }
     const std::string &name() const { return this->info()->name; }
index 85a0df4473bb1a72e7473b86c4fa8a354b41adce..4987fa81040984d3188760c9d5224ae6c458f14b 100644 (file)
@@ -44,7 +44,7 @@ const FlagsType none =          0x0000;
 /** This Stat is Initialized */
 const FlagsType init =          0x0001;
 /** Print this stat. */
-const FlagsType print =         0x0002;
+const FlagsType display =       0x0002;
 /** Print the total. */
 const FlagsType total =         0x0010;
 /** Print the percent of the total that this entry represents. */
@@ -59,7 +59,7 @@ const FlagsType nozero =        0x0100;
 const FlagsType nonan =         0x0200;
 
 /** Mask of flags that can't be set directly */
-const FlagsType __reserved =    init | print;
+const FlagsType __reserved =    init | display;
 
 struct StorageParams
 {
index 090ddff7d3480884f350872d36eb5432e98a0c82..f3c4d1c58bc9b61463f8cf1e3db9ef3bc1a23382 100644 (file)
@@ -151,7 +151,7 @@ Text::output()
 bool
 Text::noOutput(const Info &info)
 {
-    if (!info.flags.isSet(print))
+    if (!info.flags.isSet(display))
         return true;
 
     if (info.prereq && info.prereq->zero())