gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Switch.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 /*
30  * The actual modelled switch. It use the perfect switch and a
31  * Throttle object to control and bandwidth and timing *only for the
32  * output port*. So here we have un-realistic modelling, since the
33  * order of PerfectSwitch and Throttle objects get woke up affect the
34  * message timing. A more accurate model would be having two set of
35  * system states, one for this cycle, one for next cycle. And on the
36  * cycle boundary swap the two set of states.
37  */
38 
39 #ifndef __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
40 #define __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
41 
42 #include <iostream>
43 #include <vector>
44 
45 #include "mem/packet.hh"
46 #include "mem/protocol/MessageSizeType.hh"
49 #include "params/Switch.hh"
50 
51 class MessageBuffer;
52 class PerfectSwitch;
53 class NetDest;
54 class SimpleNetwork;
55 class Throttle;
56 
57 class Switch : public BasicRouter
58 {
59  public:
60  typedef SwitchParams Params;
61  Switch(const Params *p);
62  ~Switch();
63  void init();
64 
65  void addInPort(const std::vector<MessageBuffer*>& in);
67  const NetDest& routing_table_entry,
68  Cycles link_latency, int bw_multiplier);
69 
70  const Throttle* getThrottle(LinkID link_number) const;
71 
72  void resetStats();
73  void collateStats();
74  void regStats();
75  const Stats::Formula & getMsgCount(unsigned int type) const
76  { return m_msg_counts[type]; }
77 
78  void print(std::ostream& out) const;
79  void init_net_ptr(SimpleNetwork* net_ptr) { m_network_ptr = net_ptr; }
80 
81  bool functionalRead(Packet *);
82  uint32_t functionalWrite(Packet *);
83 
84  private:
85  // Private copy constructor and assignment operator
86  Switch(const Switch& obj);
87  Switch& operator=(const Switch& obj);
88 
94 
95  // Statistical variables
97  Stats::Formula m_msg_counts[MessageSizeType_NUM];
98  Stats::Formula m_msg_bytes[MessageSizeType_NUM];
99 };
100 
101 inline std::ostream&
102 operator<<(std::ostream& out, const Switch& obj)
103 {
104  obj.print(out);
105  out << std::flush;
106  return out;
107 }
108 
109 #endif // __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
void addInPort(const std::vector< MessageBuffer * > &in)
Definition: Switch.cc:70
BasicRouterParams Params
Definition: BasicRouter.hh:42
Switch & operator=(const Switch &obj)
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
const Throttle * getThrottle(LinkID link_number) const
Definition: Switch.cc:107
~Switch()
Definition: Switch.cc:51
std::vector< MessageBuffer * > m_port_buffers
Definition: Switch.hh:92
void resetStats()
Reset statistics associated with this object.
Definition: Switch.cc:150
bool functionalRead(Packet *)
Definition: Switch.cc:175
void init_net_ptr(SimpleNetwork *net_ptr)
Definition: Switch.hh:79
std::vector< Throttle * > m_throttles
Definition: Switch.hh:91
PerfectSwitch * m_perfect_switch
Definition: Switch.hh:89
uint32_t functionalWrite(Packet *)
Definition: Switch.cc:181
Definition: Switch.hh:57
Stats::Formula m_msg_bytes[MessageSizeType_NUM]
Definition: Switch.hh:98
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: Switch.cc:63
SimpleNetwork * m_network_ptr
Definition: Switch.hh:90
void regStats()
Register statistics for this object.
Definition: Switch.cc:114
void collateStats()
Definition: Switch.cc:159
const Stats::Formula & getMsgCount(unsigned int type) const
Definition: Switch.hh:75
SwitchParams Params
Definition: Switch.hh:60
void print(std::ostream &out) const
Definition: Switch.cc:168
unsigned m_num_connected_buffers
Definition: Switch.hh:93
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:245
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2895
Stats::Formula m_avg_utilization
Definition: Switch.hh:96
type
Definition: misc.hh:728
Stats::Formula m_msg_counts[MessageSizeType_NUM]
Definition: Switch.hh:97
Declaration of the Packet class.
void addOutPort(const std::vector< MessageBuffer * > &out, const NetDest &routing_table_entry, Cycles link_latency, int bw_multiplier)
Definition: Switch.cc:76
Bitfield< 0 > p
Switch(const Params *p)
Definition: Switch.cc:44
unsigned int LinkID
Definition: TypeDefines.hh:33
std::ostream & operator<<(std::ostream &out, const Switch &obj)
Definition: Switch.hh:102

Generated on Fri Jun 9 2017 13:03:50 for gem5 by doxygen 1.8.6