ruby: sequencer: remove commented out function printProgress()
authorNilay Vaish <nilay@cs.wisc.edu>
Wed, 16 Sep 2015 16:59:55 +0000 (11:59 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Wed, 16 Sep 2015 16:59:55 +0000 (11:59 -0500)
src/mem/ruby/system/Sequencer.cc
src/mem/ruby/system/Sequencer.hh

index 8e41204b72ec735fa51ac8c269c4298490b11deb..48e6c5163917380602b95ebd33f9634a6a94a32a 100644 (file)
@@ -157,57 +157,6 @@ void Sequencer::resetStats()
     }
 }
 
-void
-Sequencer::printProgress(ostream& out) const
-{
-#if 0
-    int total_demand = 0;
-    out << "Sequencer Stats Version " << m_version << endl;
-    out << "Current time = " << m_ruby_system->getTime() << endl;
-    out << "---------------" << endl;
-    out << "outstanding requests" << endl;
-
-    out << "proc " << m_Read
-        << " version Requests = " << m_readRequestTable.size() << endl;
-
-    // print the request table
-    RequestTable::iterator read = m_readRequestTable.begin();
-    RequestTable::iterator read_end = m_readRequestTable.end();
-    for (; read != read_end; ++read) {
-        SequencerRequest* request = read->second;
-        out << "\tRequest[ " << i << " ] = " << request->type
-            << " Address " << rkeys[i]
-            << " Posted " << request->issue_time
-            << " PF " << PrefetchBit_No << endl;
-        total_demand++;
-    }
-
-    out << "proc " << m_version
-        << " Write Requests = " << m_writeRequestTable.size << endl;
-
-    // print the request table
-    RequestTable::iterator write = m_writeRequestTable.begin();
-    RequestTable::iterator write_end = m_writeRequestTable.end();
-    for (; write != write_end; ++write) {
-        SequencerRequest* request = write->second;
-        out << "\tRequest[ " << i << " ] = " << request.getType()
-            << " Address " << wkeys[i]
-            << " Posted " << request.getTime()
-            << " PF " << request.getPrefetch() << endl;
-        if (request.getPrefetch() == PrefetchBit_No) {
-            total_demand++;
-        }
-    }
-
-    out << endl;
-
-    out << "Total Number Outstanding: " << m_outstanding_count << endl
-        << "Total Number Demand     : " << total_demand << endl
-        << "Total Number Prefetches : " << m_outstanding_count - total_demand
-        << endl << endl << endl;
-#endif
-}
-
 // Insert the request on the correct request table.  Return true if
 // the entry was already present.
 RequestStatus
index c4ed6f21ec638a75ac54b4cd9bd3aafc9af20a02..319c5cf2195ded553b5bdc0d055a90078f91d8a7 100644 (file)
@@ -63,7 +63,6 @@ class Sequencer : public RubyPort
 
     // Public Methods
     void wakeup(); // Used only for deadlock detection
-    void printProgress(std::ostream& out) const;
     void resetStats();
     void collateStats();
     void regStats();