ruby: removed dead functions from the sequencer
authorDerek Hower <drh5@cs.wisc.edu>
Mon, 11 May 2009 17:38:46 +0000 (10:38 -0700)
committerDerek Hower <drh5@cs.wisc.edu>
Mon, 11 May 2009 17:38:46 +0000 (10:38 -0700)
src/mem/ruby/system/Sequencer.cc
src/mem/ruby/system/Sequencer.hh

index 87fbc66b5809093f4108606d6e65ff7193741922..fa5b75eb38e2b79c7bc236c9d115a976654fefa4 100644 (file)
@@ -627,26 +627,6 @@ void Sequencer::hitCallback(const CacheMsg& request, DataBlock& data, GenericMac
   }
 }
 
-void Sequencer::readConflictCallback(const Address& address) {
-  std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
-}
-
-void Sequencer::readConflictCallback(const Address& address, GenericMachineType respondingMach, int thread) {
-  std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
-}
-
-void Sequencer::writeConflictCallback(const Address& address) {
-  std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
-}
-
-void Sequencer::writeConflictCallback(const Address& address, GenericMachineType respondingMach, int thread) {
-  std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
-}
-
-void Sequencer::conflictCallback(const CacheMsg& request, GenericMachineType respondingMach, int thread) {
-  std::cout << __FILE__ << "(" << __LINE__ << "): Not implemented. " << std::endl;
-}
-
 void Sequencer::printDebug(){
   //notify driver of debug
   g_system_ptr->getDriver()->printDebug();
index 63e02817f63a7449c4c8563a0b78f9de69d1cee9..f4cc03131cf9f28f59cfc3263453d85db368a802 100644 (file)
@@ -83,13 +83,6 @@ public:
   CacheMsg & getReadRequest( const Address & addr, int thread );
   CacheMsg & getWriteRequest( const Address & addr, int thread );
 
-  // called by Ruby when transaction completes
-  void writeConflictCallback(const Address& address);
-  void readConflictCallback(const Address& address);
-  void writeConflictCallback(const Address& address, GenericMachineType respondingMach, int thread);
-  void readConflictCallback(const Address& address, GenericMachineType respondingMach, int thread);
-  void conflictCallback(const CacheMsg& request, GenericMachineType respondingMach, int thread);
-
   void writeCallback(const Address& address, DataBlock& data);
   void readCallback(const Address& address, DataBlock& data);
   void writeCallback(const Address& address);