gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Message.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 ARM Limited
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __MEM_RUBY_SLICC_INTERFACE_MESSAGE_HH__
42 #define __MEM_RUBY_SLICC_INTERFACE_MESSAGE_HH__
43 
44 #include <iostream>
45 #include <memory>
46 #include <stack>
47 
48 #include "mem/packet.hh"
51 #include "mem/ruby/protocol/MessageSizeType.hh"
52 
53 class Message;
54 typedef std::shared_ptr<Message> MsgPtr;
55 
56 class Message
57 {
58  public:
59  Message(Tick curTime)
60  : m_time(curTime),
61  m_LastEnqueueTime(curTime),
63  { }
64 
65  Message(const Message &other) = default;
66 
67  virtual ~Message() { }
68 
69  virtual MsgPtr clone() const = 0;
70  virtual void print(std::ostream& out) const = 0;
71 
72  virtual const MessageSizeType& getMessageSize() const
73  { panic("MessageSizeType() called on wrong message!"); }
74  virtual MessageSizeType& getMessageSize()
75  { panic("MessageSizeType() called on wrong message!"); }
76 
84  virtual bool functionalRead(Packet *pkt)
85  { panic("functionalRead(Packet) not implemented"); }
86  virtual bool functionalRead(Packet *pkt, WriteMask &mask)
87  { panic("functionalRead(Packet,WriteMask) not implemented"); }
88  virtual bool functionalWrite(Packet *pkt)
89  { panic("functionalWrite(Packet) not implemented"); }
90 
92  void updateDelayedTicks(Tick curTime)
93  {
94  assert(m_LastEnqueueTime <= curTime);
95  Tick delta = curTime - m_LastEnqueueTime;
96  m_DelayedTicks += delta;
97  }
99 
100  void setLastEnqueueTime(const Tick& time) { m_LastEnqueueTime = time; }
102 
103  Tick getTime() const { return m_time; }
104  void setMsgCounter(uint64_t c) { m_msg_counter = c; }
105  uint64_t getMsgCounter() const { return m_msg_counter; }
106 
107  // Functions related to network traversal
108  virtual const NetDest& getDestination() const
109  { panic("getDestination() called on wrong message!"); }
111  { panic("getDestination() called on wrong message!"); }
112 
113  int getIncomingLink() const { return incoming_link; }
114  void setIncomingLink(int link) { incoming_link = link; }
115  int getVnet() const { return vnet; }
116  void setVnet(int net) { vnet = net; }
117 
118  private:
120  Tick m_LastEnqueueTime; // my last enqueue time
121  Tick m_DelayedTicks; // my delayed cycles
122  uint64_t m_msg_counter; // FIXME, should this be a 64-bit value?
123 
124  // Variables for required network traversal
126  int vnet;
127 };
128 
129 inline bool
130 operator>(const MsgPtr &lhs, const MsgPtr &rhs)
131 {
132  const Message *l = lhs.get();
133  const Message *r = rhs.get();
134 
135  if (l->getLastEnqueueTime() == r->getLastEnqueueTime()) {
136  return l->getMsgCounter() > r->getMsgCounter();
137  }
138  return l->getLastEnqueueTime() > r->getLastEnqueueTime();
139 }
140 
141 inline std::ostream&
142 operator<<(std::ostream& out, const Message& obj)
143 {
144  obj.print(out);
145  out << std::flush;
146  return out;
147 }
148 
149 #endif // __MEM_RUBY_SLICC_INTERFACE_MESSAGE_HH__
Message::functionalRead
virtual bool functionalRead(Packet *pkt)
The two functions below are used for reading / writing the message functionally.
Definition: Message.hh:84
Message::getDelayedTicks
Tick getDelayedTicks() const
Definition: Message.hh:98
Message::getMessageSize
virtual MessageSizeType & getMessageSize()
Definition: Message.hh:74
Message::getDestination
virtual const NetDest & getDestination() const
Definition: Message.hh:108
Message::getLastEnqueueTime
Tick getLastEnqueueTime() const
Definition: Message.hh:101
Message::~Message
virtual ~Message()
Definition: Message.hh:67
Message::m_DelayedTicks
Tick m_DelayedTicks
Definition: Message.hh:121
Message::getVnet
int getVnet() const
Definition: Message.hh:115
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
Message::functionalWrite
virtual bool functionalWrite(Packet *pkt)
Definition: Message.hh:88
Message::getMessageSize
virtual const MessageSizeType & getMessageSize() const
Definition: Message.hh:72
Message::print
virtual void print(std::ostream &out) const =0
Message::getIncomingLink
int getIncomingLink() const
Definition: Message.hh:113
packet.hh
Message::clone
virtual MsgPtr clone() const =0
Message::m_LastEnqueueTime
Tick m_LastEnqueueTime
Definition: Message.hh:120
Message::updateDelayedTicks
void updateDelayedTicks(Tick curTime)
Update the delay this message has experienced so far.
Definition: Message.hh:92
Message::getDestination
virtual NetDest & getDestination()
Definition: Message.hh:110
Message::vnet
int vnet
Definition: Message.hh:126
Message::getTime
Tick getTime() const
Definition: Message.hh:103
Message::functionalRead
virtual bool functionalRead(Packet *pkt, WriteMask &mask)
Definition: Message.hh:86
WriteMask.hh
MipsISA::r
r
Definition: pra_constants.hh:95
Message::m_msg_counter
uint64_t m_msg_counter
Definition: Message.hh:122
MsgPtr
std::shared_ptr< Message > MsgPtr
Definition: Message.hh:53
Message::m_time
Tick m_time
Definition: Message.hh:119
Message::Message
Message(Tick curTime)
Definition: Message.hh:59
Message::setLastEnqueueTime
void setLastEnqueueTime(const Tick &time)
Definition: Message.hh:100
operator>
bool operator>(const MsgPtr &lhs, const MsgPtr &rhs)
Definition: Message.hh:130
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Message::getMsgCounter
uint64_t getMsgCounter() const
Definition: Message.hh:105
operator<<
std::ostream & operator<<(std::ostream &out, const Message &obj)
Definition: Message.hh:142
Message
Definition: Message.hh:56
ArmISA::c
Bitfield< 29 > c
Definition: miscregs_types.hh:50
MipsISA::l
Bitfield< 5 > l
Definition: pra_constants.hh:320
Message::setVnet
void setVnet(int net)
Definition: Message.hh:116
Message::setIncomingLink
void setIncomingLink(int link)
Definition: Message.hh:114
WriteMask
Definition: WriteMask.hh:53
NetDest
Definition: NetDest.hh:39
Message::incoming_link
int incoming_link
Definition: Message.hh:125
NetDest.hh
Message::setMsgCounter
void setMsgCounter(uint64_t c)
Definition: Message.hh:104
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17