Switch.hh (9858:f2417ecf5cc9) Switch.hh (9863:9483739f83ee)
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;

--- 53 unchanged lines hidden (view full) ---

62
63 void init();
64 void addInPort(const std::vector<MessageBuffer*>& in);
65 void addOutPort(const std::vector<MessageBuffer*>& out,
66 const NetDest& routing_table_entry, Cycles link_latency,
67 int bw_multiplier);
68 const Throttle* getThrottle(LinkID link_number) const;
69 const std::vector<Throttle*>* getThrottles() const;
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;

--- 53 unchanged lines hidden (view full) ---

62
63 void init();
64 void addInPort(const std::vector<MessageBuffer*>& in);
65 void addOutPort(const std::vector<MessageBuffer*>& out,
66 const NetDest& routing_table_entry, Cycles link_latency,
67 int bw_multiplier);
68 const Throttle* getThrottle(LinkID link_number) const;
69 const std::vector<Throttle*>* getThrottles() const;
70 void clearRoutingTables();
71 void clearBuffers();
72 void reconfigureOutPort(const NetDest& routing_table_entry);
73
70
74 void printStats(std::ostream& out) const;
75 void clearStats();
71 void resetStats();
72 void collateStats();
73 void regStats();
74 const Stats::Formula & getMsgCount(unsigned int type) const
75 { return m_msg_counts[type]; }
76
76 void print(std::ostream& out) const;
77 void init_net_ptr(SimpleNetwork* net_ptr) { m_network_ptr = net_ptr; }
78
79 bool functionalRead(Packet *);
80 uint32_t functionalWrite(Packet *);
81
82 private:
83 // Private copy constructor and assignment operator
84 Switch(const Switch& obj);
85 Switch& operator=(const Switch& obj);
86
87 PerfectSwitch* m_perfect_switch;
88 SimpleNetwork* m_network_ptr;
89 std::vector<Throttle*> m_throttles;
90 std::vector<MessageBuffer*> m_buffers_to_free;
77 void print(std::ostream& out) const;
78 void init_net_ptr(SimpleNetwork* net_ptr) { m_network_ptr = net_ptr; }
79
80 bool functionalRead(Packet *);
81 uint32_t functionalWrite(Packet *);
82
83 private:
84 // Private copy constructor and assignment operator
85 Switch(const Switch& obj);
86 Switch& operator=(const Switch& obj);
87
88 PerfectSwitch* m_perfect_switch;
89 SimpleNetwork* m_network_ptr;
90 std::vector<Throttle*> m_throttles;
91 std::vector<MessageBuffer*> m_buffers_to_free;
92
93 // Statistical variables
94 Stats::Formula m_avg_utilization;
95 std::vector<Stats::Formula> m_msg_counts;
96 std::vector<Stats::Formula> m_msg_bytes;
91};
92
93inline std::ostream&
94operator<<(std::ostream& out, const Switch& obj)
95{
96 obj.print(out);
97 out << std::flush;
98 return out;
99}
100
101#endif // __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
97};
98
99inline std::ostream&
100operator<<(std::ostream& out, const Switch& obj)
101{
102 obj.print(out);
103 out << std::flush;
104 return out;
105}
106
107#endif // __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__