ruby: replace Time with Cycles in Message class
authorNilay Vaish <nilay@cs.wisc.edu>
Mon, 11 Feb 2013 03:26:24 +0000 (21:26 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Mon, 11 Feb 2013 03:26:24 +0000 (21:26 -0600)
Concomitant changes are being committed as well, including the io operator<<
for the Cycles class.

src/base/SConscript
src/base/types.cc [new file with mode: 0644]
src/base/types.hh
src/mem/ruby/buffers/MessageBufferNode.hh
src/mem/ruby/network/garnet/fixed-pipeline/flit_d.hh
src/mem/ruby/network/garnet/flexible-pipeline/flit.hh
src/mem/ruby/slicc_interface/Message.hh
src/mem/ruby/slicc_interface/NetworkMessage.hh
src/mem/ruby/slicc_interface/RubyRequest.hh
src/mem/ruby/system/MemoryNode.hh
src/mem/slicc/symbols/Type.py

index ff6d696d4bfb2ee018973fca6095d0e218550865..2bd255162512188c9d85f627889f877245d72271 100644 (file)
@@ -59,6 +59,7 @@ Source('statistics.cc')
 Source('str.cc')
 Source('time.cc')
 Source('trace.cc')
+Source('types.cc')
 Source('userinfo.cc')
 
 Source('loader/aout_object.cc')
diff --git a/src/base/types.cc b/src/base/types.cc
new file mode 100644 (file)
index 0000000..38b6bf2
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * Copyright (c) 2013 Mark D. Hill and David A. Wood
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Nilay Vaish
+ */
+
+#include "base/types.hh"
+
+#ifndef SWIG // keep the operators away from SWIG
+
+std::ostream&
+operator<<(std::ostream &out, const Cycles & cycles)
+{
+    out << cycles.c;
+    return out;
+}
+
+#endif // SWIG not touching operators
+
index b4cb69a0c24bd0f414e2b51b053e09b1b6a186a5..ad9ac766e935943ecf7d63a4e8b3be808abf2788 100644 (file)
@@ -40,6 +40,7 @@
 #include <inttypes.h>
 
 #include <cassert>
+#include <ostream>
 
 /** uint64_t constant */
 #define ULL(N)          ((uint64_t)N##ULL)
@@ -125,6 +126,8 @@ class Cycles
     const Cycles operator >>(const int32_t shift)
     { return Cycles(c >> shift); }
 
+    friend std::ostream& operator<<(std::ostream &out, const Cycles & cycles);
+
 #endif // SWIG not touching operators
 
 };
index 57f09a91358fcf06b058ff8bf9d16ae4374db71c..11485a3b96f78b02cb75b3f0ad3542ffe86ac02f 100644 (file)
@@ -49,7 +49,7 @@ class MessageBufferNode
 
   public:
     Cycles m_time;
-    uint64 m_msg_counter; // FIXME, should this be a 64-bit value?
+    uint64_t m_msg_counter; // FIXME, should this be a 64-bit value?
     MsgPtr m_msgptr;
 };
 
index 549dd59d565f0ee4d99b3680aff7f6451d624815..9dd4af10e0eff08aa223a5344e1e3d5638a62f5a 100644 (file)
@@ -34,6 +34,7 @@
 #include <cassert>
 #include <iostream>
 
+#include "mem/ruby/common/TypeDefines.hh"
 #include "mem/ruby/network/garnet/NetworkHeader.hh"
 #include "mem/ruby/slicc_interface/Message.hh"
 
index 9e1168409eee55d6940e5efe6d6adb1cff00b3ac..4e5b2fb8b068df4957ef39c36149f589e79d1d28 100644 (file)
@@ -31,6 +31,7 @@
 #include <cassert>
 #include <iostream>
 
+#include "mem/ruby/common/TypeDefines.hh"
 #include "mem/ruby/network/garnet/NetworkHeader.hh"
 #include "mem/ruby/slicc_interface/Message.hh"
 
index 74b405312bcb0f5c0e3973f80eb4a65108ce3321..c99d66f5ca30f0cb55b9d5a17a88b84fff580a68 100644 (file)
@@ -32,7 +32,6 @@
 #include <iostream>
 
 #include "base/refcnt.hh"
-#include "mem/ruby/common/TypeDefines.hh"
 #include "mem/packet.hh"
 
 class Message;
@@ -41,7 +40,7 @@ typedef RefCountingPtr<Message> MsgPtr;
 class Message : public RefCounted
 {
   public:
-    Message(Time curTime)
+    Message(Cycles curTime)
         : m_time(curTime),
           m_LastEnqueueTime(curTime),
           m_DelayedCycles(0)
@@ -72,19 +71,19 @@ class Message : public RefCounted
     virtual bool functionalWrite(Packet *pkt) = 0;
     //{ fatal("Write functional access not implemented!"); }
 
-    void setDelayedCycles(const Time cycles) { m_DelayedCycles = cycles; }
-    const Time getDelayedCycles() const {return m_DelayedCycles;}
+    void setDelayedCycles(const Cycles cycles) { m_DelayedCycles = cycles; }
+    const Cycles getDelayedCycles() const {return m_DelayedCycles;}
 
-    void setLastEnqueueTime(const Time& time) { m_LastEnqueueTime = time; }
-    const Time getLastEnqueueTime() const {return m_LastEnqueueTime;}
+    void setLastEnqueueTime(const Cycles& time) { m_LastEnqueueTime = time; }
+    const Cycles getLastEnqueueTime() const {return m_LastEnqueueTime;}
 
-    const Time& getTime() const { return m_time; }
-    void setTime(const Time& new_time) { m_time = new_time; }
+    const Cycles& getTime() const { return m_time; }
+    void setTime(const Cycles& new_time) { m_time = new_time; }
 
   private:
-    Time m_time;
-    Time m_LastEnqueueTime; // my last enqueue time
-    int m_DelayedCycles; // my delayed cycles
+    Cycles m_time;
+    Cycles m_LastEnqueueTime; // my last enqueue time
+    Cycles m_DelayedCycles; // my delayed cycles
 };
 
 inline std::ostream&
index e26612e0f7867c60dd294661247f2c1c6c765c7d..4d2968f417df8e4aba71ff47c8f5724a69733c22 100644 (file)
@@ -42,7 +42,7 @@ typedef RefCountingPtr<NetworkMessage> NetMsgPtr;
 class NetworkMessage : public Message
 {
   public:
-    NetworkMessage(Time curTime)
+    NetworkMessage(Cycles curTime)
         : Message(curTime), m_internal_dest_valid(false)
     { }
 
index 37b89dc8f63143aa6d1b8ad27323ca81c07dc43a..654656132a2d2e9063ab3bcf46c56ba47d0f285e 100644 (file)
@@ -51,7 +51,7 @@ class RubyRequest : public Message
     PacketPtr pkt;
     unsigned m_contextId;
 
-    RubyRequest(Time curTime, uint64_t _paddr, uint8_t* _data, int _len,
+    RubyRequest(Cycles curTime, uint64_t _paddr, uint8_t* _data, int _len,
         uint64_t _pc, RubyRequestType _type, RubyAccessMode _access_mode,
         PacketPtr _pkt, PrefetchBit _pb = PrefetchBit_No,
         unsigned _proc_id = 100)
@@ -70,7 +70,7 @@ class RubyRequest : public Message
       m_LineAddress.makeLineAddress();
     }
 
-    RubyRequest(Time curTime) : Message(curTime)
+    RubyRequest(Cycles curTime) : Message(curTime)
     {
     }
 
index 10648b715d4c983917f971ccf2708ebf364ef832..5bf98893556ff2c084ab586c122498b630431d99 100644 (file)
@@ -42,6 +42,7 @@
 
 #include "mem/protocol/MemoryRequestType.hh"
 #include "mem/ruby/common/Global.hh"
+#include "mem/ruby/common/TypeDefines.hh"
 #include "mem/ruby/slicc_interface/Message.hh"
 
 class MemoryNode
index ee1b8102a206da66085da449e806cbc9ca4b6bee..f40036e8ef70e4da225501dd64c0a391e2d6b9e2 100644 (file)
@@ -246,7 +246,7 @@ $klass ${{self.c_ident}}$parent
 ''', klass="class")
 
         if self.isMessage:
-            code('(Time curTime) : %s(curTime) {' % self["interface"])
+            code('(Cycles curTime) : %s(curTime) {' % self["interface"])
         else:
             code('()\n\t\t{')
 
@@ -291,7 +291,7 @@ $klass ${{self.c_ident}}$parent
             params = ', '.join(params)
 
             if self.isMessage:
-                params = "const Time curTime, " + params
+                params = "const Cycles curTime, " + params
 
             code('${{self.c_ident}}($params)')