gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Switch.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) 2020 Inria
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 
42 /*
43  * The actual modelled switch. It use the perfect switch and a
44  * Throttle object to control and bandwidth and timing *only for the
45  * output port*. So here we have un-realistic modelling, since the
46  * order of PerfectSwitch and Throttle objects get woke up affect the
47  * message timing. A more accurate model would be having two set of
48  * system states, one for this cycle, one for next cycle. And on the
49  * cycle boundary swap the two set of states.
50  */
51 
52 #ifndef __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
53 #define __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
54 
55 #include <iostream>
56 #include <list>
57 #include <vector>
58 
59 #include "mem/packet.hh"
64 #include "mem/ruby/protocol/MessageSizeType.hh"
65 #include "params/Switch.hh"
66 
67 class MessageBuffer;
68 class NetDest;
69 class SimpleNetwork;
70 
71 class Switch : public BasicRouter
72 {
73  public:
74  typedef SwitchParams Params;
75  Switch(const Params &p);
76  ~Switch() = default;
77  void init();
78 
79  void addInPort(const std::vector<MessageBuffer*>& in);
81  const NetDest& routing_table_entry,
82  Cycles link_latency, int bw_multiplier);
83 
84  void resetStats();
85  void collateStats();
86  void regStats();
87  const Stats::Formula & getMsgCount(unsigned int type) const
88  { return *(switchStats.m_msg_counts[type]); }
89 
90  void print(std::ostream& out) const;
91  void init_net_ptr(SimpleNetwork* net_ptr) { m_network_ptr = net_ptr; }
92 
93  bool functionalRead(Packet *);
95  uint32_t functionalWrite(Packet *);
96 
97  private:
98  // Private copy constructor and assignment operator
99  Switch(const Switch& obj);
100  Switch& operator=(const Switch& obj);
101 
105 
108 
109 
110  public:
111  struct SwitchStats : public Stats::Group
112  {
113  SwitchStats(Stats::Group *parent);
114 
115  // Statistical variables
117  Stats::Formula* m_msg_counts[MessageSizeType_NUM];
118  Stats::Formula* m_msg_bytes[MessageSizeType_NUM];
119  } switchStats;
120 };
121 
122 inline std::ostream&
123 operator<<(std::ostream& out, const Switch& obj)
124 {
125  obj.print(out);
126  out << std::flush;
127  return out;
128 }
129 
130 #endif // __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
Switch::init_net_ptr
void init_net_ptr(SimpleNetwork *net_ptr)
Definition: Switch.hh:91
PerfectSwitch
Definition: PerfectSwitch.hh:59
PerfectSwitch.hh
Switch::SwitchStats::m_avg_utilization
Stats::Formula m_avg_utilization
Definition: Switch.hh:116
Switch::~Switch
~Switch()=default
operator<<
std::ostream & operator<<(std::ostream &out, const Switch &obj)
Definition: Switch.hh:123
Switch::addInPort
void addInPort(const std::vector< MessageBuffer * > &in)
Definition: Switch.cc:72
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
Switch
Definition: Switch.hh:71
Switch::operator=
Switch & operator=(const Switch &obj)
Switch::throttles
std::list< Throttle > throttles
Definition: Switch.hh:104
Throttle.hh
Switch::resetStats
void resetStats()
Callback to reset stats.
Definition: Switch.cc:145
packet.hh
Switch::m_port_buffers
std::vector< MessageBuffer * > m_port_buffers
Definition: Switch.hh:107
TypeDefines.hh
Switch::perfectSwitch
PerfectSwitch perfectSwitch
Definition: Switch.hh:102
SimpleNetwork
Definition: SimpleNetwork.hh:55
Switch::print
void print(std::ostream &out) const
Definition: Switch.cc:163
BasicRouter
Definition: BasicRouter.hh:39
Switch::functionalWrite
uint32_t functionalWrite(Packet *)
Definition: Switch.cc:191
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
Switch::SwitchStats
Definition: Switch.hh:111
Switch::addOutPort
void addOutPort(const std::vector< MessageBuffer * > &out, const NetDest &routing_table_entry, Cycles link_latency, int bw_multiplier)
Definition: Switch.cc:78
Switch::switchStats
Switch::SwitchStats switchStats
Switch::SwitchStats::m_msg_bytes
Stats::Formula * m_msg_bytes[MessageSizeType_NUM]
Definition: Switch.hh:118
Switch::Params
SwitchParams Params
Definition: Switch.hh:74
Switch::getMsgCount
const Stats::Formula & getMsgCount(unsigned int type) const
Definition: Switch.hh:87
BasicRouter.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
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
std::list< Throttle >
MessageBuffer
Definition: MessageBuffer.hh:68
WriteMask
Definition: WriteMask.hh:53
NetDest
Definition: NetDest.hh:39
Switch::SwitchStats::SwitchStats
SwitchStats(Stats::Group *parent)
Definition: Switch.cc:202
Switch::functionalRead
bool functionalRead(Packet *)
Definition: Switch.cc:170

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