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

Generated on Mon Jan 13 2025 04:28:40 for gem5 by doxygen 1.9.8