gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Network.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 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 
42 
43 #include "base/logging.hh"
47 
51 
53  : ClockedObject(p)
54 {
55  m_virtual_networks = p.number_of_virtual_networks;
56  m_control_msg_size = p.control_msg_size;
57 
58  fatal_if(p.data_msg_size > p.ruby_system->getBlockSizeBytes(),
59  "%s: data message size > cache line size", name());
60  m_data_msg_size = p.data_msg_size + m_control_msg_size;
61 
62  params().ruby_system->registerNetwork(this);
63 
64  // Populate localNodeVersions with the version of each MachineType in
65  // this network. This will be used to compute a global to local ID.
66  // Do this by looking at the ext_node for each ext_link. There is one
67  // ext_node per ext_link and it points to an AbstractController.
68  // For RubySystems with one network global and local ID are the same.
69  std::unordered_map<MachineType, std::vector<NodeID>> localNodeVersions;
70  for (auto &it : params().ext_links) {
71  AbstractController *cntrl = it->params().ext_node;
72  localNodeVersions[cntrl->getType()].push_back(cntrl->getVersion());
73  params().ruby_system->registerMachineID(cntrl->getMachineID(), this);
74  }
75 
76  // Compute a local ID for each MachineType using the same order as SLICC
77  NodeID local_node_id = 0;
78  for (int i = 0; i < MachineType_base_level(MachineType_NUM); ++i) {
79  MachineType mach = static_cast<MachineType>(i);
80  if (localNodeVersions.count(mach)) {
81  for (auto &ver : localNodeVersions.at(mach)) {
82  // Get the global ID Ruby will pass around
83  NodeID global_node_id = MachineType_base_number(mach) + ver;
84  globalToLocalMap.emplace(global_node_id, local_node_id);
85  ++local_node_id;
86  }
87  }
88  }
89 
90  // Total nodes/controllers in network is equal to the local node count
91  // Must make sure this is called after the State Machine constructors
92  m_nodes = local_node_id;
93 
94  assert(m_nodes != 0);
95  assert(m_virtual_networks != 0);
96 
97  m_topology_ptr = new Topology(m_nodes, p.routers.size(),
99  p.ext_links, p.int_links);
100 
101  // Allocate to and from queues
102  // Queues that are getting messages from protocol
103  m_toNetQueues.resize(m_nodes);
104 
105  // Queues that are feeding the protocol
106  m_fromNetQueues.resize(m_nodes);
107 
110 
111  for (int i = 0; i < m_virtual_networks; i++) {
112  m_ordered[i] = false;
113  }
114 
115  // Initialize the controller's network pointers
116  for (std::vector<BasicExtLink*>::const_iterator i = p.ext_links.begin();
117  i != p.ext_links.end(); ++i) {
118  BasicExtLink *ext_link = (*i);
119  AbstractController *abs_cntrl = ext_link->params().ext_node;
120  abs_cntrl->initNetworkPtr(this);
121  const AddrRangeList &ranges = abs_cntrl->getAddrRanges();
122  if (!ranges.empty()) {
123  MachineID mid = abs_cntrl->getMachineID();
124  AddrMapNode addr_map_node = {
125  .id = mid.getNum(),
126  .ranges = ranges
127  };
128  addrMap.emplace(mid.getType(), addr_map_node);
129  }
130  }
131 
132  // Register a callback function for combining the statistics
133  Stats::registerDumpCallback([this]() { collateStats(); });
134 
135  for (auto &it : dynamic_cast<Network *>(this)->params().ext_links) {
136  it->params().ext_node->initNetQueues();
137  }
138 }
139 
141 {
142  for (int node = 0; node < m_nodes; node++) {
143 
144  // Delete the Message Buffers
145  for (auto& it : m_toNetQueues[node]) {
146  delete it;
147  }
148 
149  for (auto& it : m_fromNetQueues[node]) {
150  delete it;
151  }
152  }
153 
154  delete m_topology_ptr;
155 }
156 
157 uint32_t
159 {
160  switch(size_type) {
161  case MessageSizeType_Control:
162  case MessageSizeType_Request_Control:
163  case MessageSizeType_Reissue_Control:
164  case MessageSizeType_Response_Control:
165  case MessageSizeType_Writeback_Control:
166  case MessageSizeType_Broadcast_Control:
167  case MessageSizeType_Multicast_Control:
168  case MessageSizeType_Forwarded_Control:
169  case MessageSizeType_Invalidate_Control:
170  case MessageSizeType_Unblock_Control:
171  case MessageSizeType_Persistent_Control:
172  case MessageSizeType_Completion_Control:
173  return m_control_msg_size;
174  case MessageSizeType_Data:
175  case MessageSizeType_Response_Data:
176  case MessageSizeType_ResponseLocal_Data:
177  case MessageSizeType_ResponseL2hit_Data:
178  case MessageSizeType_Writeback_Data:
179  return m_data_msg_size;
180  default:
181  panic("Invalid range for type MessageSizeType");
182  break;
183  }
184 }
185 
186 void
188  int network_num,
189  std::string vnet_type)
190 {
191  fatal_if(local_id >= m_nodes, "Node ID is out of range");
192  fatal_if(network_num >= m_virtual_networks, "Network id is out of range");
193 
194  if (ordered) {
195  m_ordered[network_num] = true;
196  }
197 
198  m_vnet_type_names[network_num] = vnet_type;
199 }
200 
201 
202 void
203 Network::setToNetQueue(NodeID global_id, bool ordered, int network_num,
204  std::string vnet_type, MessageBuffer *b)
205 {
206  NodeID local_id = getLocalNodeID(global_id);
207  checkNetworkAllocation(local_id, ordered, network_num, vnet_type);
208 
209  while (m_toNetQueues[local_id].size() <= network_num) {
210  m_toNetQueues[local_id].push_back(nullptr);
211  }
212  m_toNetQueues[local_id][network_num] = b;
213 }
214 
215 void
216 Network::setFromNetQueue(NodeID global_id, bool ordered, int network_num,
217  std::string vnet_type, MessageBuffer *b)
218 {
219  NodeID local_id = getLocalNodeID(global_id);
220  checkNetworkAllocation(local_id, ordered, network_num, vnet_type);
221 
222  while (m_fromNetQueues[local_id].size() <= network_num) {
223  m_fromNetQueues[local_id].push_back(nullptr);
224  }
225  m_fromNetQueues[local_id][network_num] = b;
226 }
227 
228 NodeID
229 Network::addressToNodeID(Addr addr, MachineType mtype)
230 {
231  // Look through the address maps for entries with matching machine
232  // type to get the responsible node for this address.
233  const auto &matching_ranges = addrMap.equal_range(mtype);
234  for (auto it = matching_ranges.first; it != matching_ranges.second; it++) {
235  AddrMapNode &node = it->second;
236  auto &ranges = node.ranges;
237  for (AddrRange &range: ranges) {
238  if (range.contains(addr)) {
239  return node.id;
240  }
241  }
242  }
243  return MachineType_base_count(mtype);
244 }
245 
246 NodeID
248 {
249  assert(globalToLocalMap.count(global_id));
250  return globalToLocalMap.at(global_id);
251 }
MachineID.hh
Network::m_vnet_type_names
std::vector< std::string > m_vnet_type_names
Definition: Network.hh:151
Network::setFromNetQueue
virtual void setFromNetQueue(NodeID global_id, bool ordered, int netNumber, std::string vnet_type, MessageBuffer *b)
Definition: Network.cc:216
Network::Network
Network(const Params &p)
Definition: Network.cc:52
AbstractController::getVersion
NodeID getVersion() const
Definition: AbstractController.hh:83
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
MachineID::getType
MachineType getType() const
Definition: MachineID.hh:60
Network::collateStats
virtual void collateStats()=0
AbstractController::initNetworkPtr
void initNetworkPtr(Network *net_ptr)
Definition: AbstractController.hh:86
Network::m_toNetQueues
std::vector< std::vector< MessageBuffer * > > m_toNetQueues
Definition: Network.hh:157
Network::addressToNodeID
NodeID addressToNodeID(Addr addr, MachineType mtype)
Map an address to the correct NodeID.
Definition: Network.cc:229
Stats::registerDumpCallback
void registerDumpCallback(const std::function< void()> &callback)
Register a callback that should be called whenever statistics are about to be dumped.
Definition: statistics.cc:319
Network::AddrMapNode::ranges
AddrRangeList ranges
Definition: Network.hh:165
AbstractController::getAddrRanges
const AddrRangeList & getAddrRanges() const
Definition: AbstractController.hh:165
std::vector
STL vector class.
Definition: stl.hh:37
Network::m_virtual_networks
static uint32_t m_virtual_networks
Definition: Network.hh:150
Network::AddrMapNode
Definition: Network.hh:163
AbstractController
Definition: AbstractController.hh:76
MachineID
Definition: MachineID.hh:50
MachineID::getNum
NodeID getNum() const
Definition: MachineID.hh:61
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
Network::globalToLocalMap
std::unordered_map< NodeID, NodeID > globalToLocalMap
Definition: Network.hh:171
ClockedObject::Params
ClockedObjectParams Params
Parameters of ClockedObject.
Definition: clocked_object.hh:237
Network::getLocalNodeID
NodeID getLocalNodeID(NodeID global_id) const
Definition: Network.cc:247
AddrRange
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
Network::m_control_msg_size
static uint32_t m_control_msg_size
Definition: Network.hh:153
Network::addrMap
std::unordered_multimap< MachineType, AddrMapNode > addrMap
Definition: Network.hh:167
Network::m_ordered
std::vector< bool > m_ordered
Definition: Network.hh:159
Network::MessageSizeType_to_int
static uint32_t MessageSizeType_to_int(MessageSizeType size_type)
Definition: Network.cc:158
RubySystem.hh
Network::setToNetQueue
void setToNetQueue(NodeID global_id, bool ordered, int netNumber, std::string vnet_type, MessageBuffer *b)
Definition: Network.cc:203
Network::~Network
virtual ~Network()
Definition: Network.cc:140
Network::m_data_msg_size
static uint32_t m_data_msg_size
Definition: Network.hh:154
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Network
Definition: Network.hh:76
Network::m_fromNetQueues
std::vector< std::vector< MessageBuffer * > > m_fromNetQueues
Definition: Network.hh:158
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
Network.hh
ArmISA::b
Bitfield< 7 > b
Definition: miscregs_types.hh:376
AbstractController::getType
MachineType getType() const
Definition: AbstractController.hh:84
logging.hh
NodeID
unsigned int NodeID
Definition: TypeDefines.hh:34
Network::checkNetworkAllocation
virtual void checkNetworkAllocation(NodeID local_id, bool ordered, int network_num, std::string vnet_type)
Definition: Network.cc:187
Stats::size_type
unsigned int size_type
Definition: types.hh:54
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Topology
Definition: Topology.hh:74
std::list< AddrRange >
MessageBuffer
Definition: MessageBuffer.hh:68
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:219
Network::m_nodes
uint32_t m_nodes
Definition: Network.hh:149
Network::AddrMapNode::id
NodeID id
Definition: Network.hh:164
AbstractController::getMachineID
MachineID getMachineID() const
Definition: AbstractController.hh:168
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
Network::m_topology_ptr
Topology * m_topology_ptr
Definition: Network.hh:152

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