gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Switch.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Inria
3  * Copyright (c) 2019,2021 ARM Limited
4  * All rights reserved.
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
43 
44 #include <numeric>
45 
46 #include "base/cast.hh"
47 #include "base/stl_helpers.hh"
50 
51 using m5::stl_helpers::operator<<;
52 
54  : BasicRouter(p),
55  perfectSwitch(m_id, this, p.virt_nets), m_num_connected_buffers(0),
56  switchStats(this)
57 {
58  m_port_buffers.reserve(p.port_buffers.size());
59  for (auto& buffer : p.port_buffers) {
60  m_port_buffers.emplace_back(buffer);
61  }
62 }
63 
64 void
66 {
69 }
70 
71 void
73 {
75 }
76 
77 void
79  const NetDest& routing_table_entry,
80  Cycles link_latency, int bw_multiplier)
81 {
82  // Create a throttle
83  throttles.emplace_back(m_id, m_network_ptr->params().ruby_system,
84  throttles.size(), link_latency, bw_multiplier,
86 
87  // Create one buffer per vnet (these are intermediaryQueues)
88  std::vector<MessageBuffer*> intermediateBuffers;
89 
90  for (int i = 0; i < out.size(); ++i) {
91  assert(m_num_connected_buffers < m_port_buffers.size());
92  MessageBuffer* buffer_ptr =
95  intermediateBuffers.push_back(buffer_ptr);
96  }
97 
98  // Hook the queues to the PerfectSwitch
99  perfectSwitch.addOutPort(intermediateBuffers, routing_table_entry);
100 
101  // Hook the queues to the Throttle
102  throttles.back().addLinks(intermediateBuffers, out);
103 }
104 
105 void
107 {
109 
110  for (auto& throttle : throttles) {
111  throttle.regStats();
112  }
113 
114  for (const auto& throttle : throttles) {
115  switchStats.m_avg_utilization += throttle.getUtilization();
116  }
118 
119  for (unsigned int type = MessageSizeType_FIRST;
120  type < MessageSizeType_NUM; ++type) {
122  csprintf("msg_count.%s",
123  MessageSizeType_to_string(MessageSizeType(type))).c_str());
126  ;
127 
129  csprintf("msg_bytes.%s",
130  MessageSizeType_to_string(MessageSizeType(type))).c_str());
133  ;
134 
135  for (const auto& throttle : throttles) {
136  *(switchStats.m_msg_counts[type]) += throttle.getMsgCount(type);
137  }
140  Network::MessageSizeType_to_int(MessageSizeType(type)));
141  }
142 }
143 
144 void
146 {
148  for (auto& throttle : throttles) {
149  throttle.clearStats();
150  }
151 }
152 
153 void
155 {
157  for (auto& throttle : throttles) {
158  throttle.collateStats();
159  }
160 }
161 
162 void
163 Switch::print(std::ostream& out) const
164 {
165  // FIXME printing
166  out << "[Switch]";
167 }
168 
169 bool
171 {
172  for (unsigned int i = 0; i < m_port_buffers.size(); ++i) {
173  if (m_port_buffers[i]->functionalRead(pkt))
174  return true;
175  }
176  return false;
177 }
178 
179 bool
181 {
182  bool read = false;
183  for (unsigned int i = 0; i < m_port_buffers.size(); ++i) {
184  if (m_port_buffers[i]->functionalRead(pkt, mask))
185  read = true;
186  }
187  return read;
188 }
189 
190 uint32_t
192 {
193  // Access the buffers in the switch for performing a functional write
194  uint32_t num_functional_writes = 0;
195  for (unsigned int i = 0; i < m_port_buffers.size(); ++i) {
196  num_functional_writes += m_port_buffers[i]->functionalWrite(pkt);
197  }
198  return num_functional_writes;
199 }
200 
201 Switch::
203  : Stats::Group(parent),
204  m_avg_utilization(this, "percent_links_utilized")
205 {
206 
207 }
BasicRouter::init
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: BasicRouter.cc:39
Stats::Group::regStats
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:63
Switch::SwitchStats::m_avg_utilization
Stats::Formula m_avg_utilization
Definition: Switch.hh:116
PerfectSwitch::collateStats
void collateStats()
Definition: PerfectSwitch.cc:319
PerfectSwitch::addOutPort
void addOutPort(const std::vector< MessageBuffer * > &out, const NetDest &routing_table_entry)
Definition: PerfectSwitch.cc:85
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
BasicRouter::m_id
uint32_t m_id
Definition: BasicRouter.hh:52
Switch::addInPort
void addInPort(const std::vector< MessageBuffer * > &in)
Definition: Switch.cc:72
SimpleNetwork.hh
cast.hh
Switch::m_network_ptr
SimpleNetwork * m_network_ptr
Definition: Switch.hh:103
std::vector< MessageBuffer * >
Switch::SwitchStats::m_msg_counts
Stats::Formula * m_msg_counts[MessageSizeType_NUM]
Definition: Switch.hh:117
Switch::Switch
Switch(const Params &p)
Definition: Switch.cc:53
PerfectSwitch::clearStats
void clearStats()
Definition: PerfectSwitch.cc:315
Switch::throttles
std::list< Throttle > throttles
Definition: Switch.hh:104
Switch::resetStats
void resetStats()
Callback to reset stats.
Definition: Switch.cc:145
Stats::DataWrap::flags
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Definition: statistics.hh:339
Switch::m_port_buffers
std::vector< MessageBuffer * > m_port_buffers
Definition: Switch.hh:107
PerfectSwitch::addInPort
void addInPort(const std::vector< MessageBuffer * > &in)
Definition: PerfectSwitch.cc:70
Switch::perfectSwitch
PerfectSwitch perfectSwitch
Definition: Switch.hh:102
Switch::print
void print(std::ostream &out) const
Definition: Switch.cc:163
PerfectSwitch::init
void init(SimpleNetwork *)
Definition: PerfectSwitch.cc:60
BasicRouter
Definition: BasicRouter.hh:39
Switch::functionalWrite
uint32_t functionalWrite(Packet *)
Definition: Switch.cc:191
Network::MessageSizeType_to_int
static uint32_t MessageSizeType_to_int(MessageSizeType size_type)
Definition: Network.cc:158
Switch::regStats
void regStats()
Callback to set stat parameters.
Definition: Switch.cc:106
Switch::init
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: Switch.cc:65
Switch::collateStats
void collateStats()
Definition: Switch.cc:154
Stats::nozero
const FlagsType nozero
Don't print if this is zero.
Definition: info.hh:58
Switch::addOutPort
void addOutPort(const std::vector< MessageBuffer * > &out, const NetDest &routing_table_entry, Cycles link_latency, int bw_multiplier)
Definition: Switch.cc:78
SimpleNetwork::getEndpointBandwidth
int getEndpointBandwidth()
Definition: SimpleNetwork.hh:65
Switch::switchStats
Switch::SwitchStats switchStats
Switch::SwitchStats::m_msg_bytes
Stats::Formula * m_msg_bytes[MessageSizeType_NUM]
Definition: Switch.hh:118
MessageBuffer.hh
Switch::Params
SwitchParams Params
Definition: Switch.hh:74
Switch.hh
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Stats::Group
Statistics container.
Definition: group.hh:87
Switch::m_num_connected_buffers
unsigned m_num_connected_buffers
Definition: Switch.hh:106
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
X86ISA::type
type
Definition: misc.hh:727
Stats
Definition: statistics.cc:53
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
MessageBuffer
Definition: MessageBuffer.hh:68
stl_helpers.hh
WriteMask
Definition: WriteMask.hh:53
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
NetDest
Definition: NetDest.hh:39
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
Stats::constant
Temp constant(T val)
Definition: statistics.hh:2864
Switch::SwitchStats::SwitchStats
SwitchStats(Stats::Group *parent)
Definition: Switch.cc:202
Switch::functionalRead
bool functionalRead(Packet *)
Definition: Switch.cc:170

Generated on Tue Jun 22 2021 15:28:30 for gem5 by doxygen 1.8.17