ruby: Removed RubySystem::getNumberOfSequencers
[gem5.git] / src / mem / ruby / common / NetDest.cc
1
2 /*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30 /*
31 * NetDest.C
32 *
33 * Description: See NetDest.hh
34 *
35 * $Id$
36 *
37 */
38
39 #include "mem/ruby/common/NetDest.hh"
40 #include "mem/protocol/Protocol.hh"
41
42 NetDest::NetDest()
43 {
44 setSize();
45 }
46
47 void NetDest::add(MachineID newElement)
48 {
49 m_bits[vecIndex(newElement)].add(bitIndex(newElement.num));
50 }
51
52 void NetDest::addNetDest(const NetDest& netDest)
53 {
54 assert(m_bits.size() == netDest.getSize());
55 for (int i = 0; i < m_bits.size(); i++) {
56 m_bits[i].addSet(netDest.m_bits[i]);
57 }
58 }
59
60 void NetDest::addRandom()
61 {
62 int i = random()%m_bits.size();
63 m_bits[i].addRandom();
64 }
65
66 void NetDest::setNetDest(MachineType machine, const Set& set)
67 {
68 // assure that there is only one set of destinations for this machine
69 assert(MachineType_base_level((MachineType)(machine+1)) - MachineType_base_level(machine) == 1);
70 m_bits[MachineType_base_level(machine)] = set;
71 }
72
73 void NetDest::remove(MachineID oldElement)
74 {
75 m_bits[vecIndex(oldElement)].remove(bitIndex(oldElement.num));
76 }
77
78 void NetDest::removeNetDest(const NetDest& netDest)
79 {
80 assert(m_bits.size() == netDest.getSize());
81 for (int i = 0; i < m_bits.size(); i++) {
82 m_bits[i].removeSet(netDest.m_bits[i]);
83
84 }
85 }
86
87 void NetDest::clear()
88 {
89 for (int i = 0; i < m_bits.size(); i++) {
90 m_bits[i].clear();
91 }
92 }
93
94 void NetDest::broadcast()
95 {
96 for (MachineType machine = MachineType_FIRST; machine < MachineType_NUM; ++machine) {
97 broadcast(machine);
98 }
99 }
100
101 void NetDest::broadcast(MachineType machineType) {
102
103 for (int i = 0; i < MachineType_base_count(machineType); i++) {
104 MachineID mach = {machineType, i};
105 add(mach);
106 }
107 }
108
109 //For Princeton Network
110 Vector<NodeID> NetDest::getAllDest() {
111 Vector<NodeID> dest;
112 dest.clear();
113 for (int i=0; i<m_bits.size(); i++) {
114 for (int j=0; j<m_bits[i].getSize(); j++) {
115 if (m_bits[i].isElement(j)) {
116 dest.insertAtBottom((NodeID) (MachineType_base_number((MachineType) i) + j));
117 }
118 }
119 }
120 return dest;
121 }
122
123 int NetDest::count() const
124 {
125 int counter = 0;
126 for (int i=0; i<m_bits.size(); i++) {
127 counter += m_bits[i].count();
128 }
129 return counter;
130 }
131
132 NodeID NetDest::elementAt(MachineID index) {
133 return m_bits[vecIndex(index)].elementAt(bitIndex(index.num));
134 }
135
136 MachineID NetDest::smallestElement() const
137 {
138 assert(count() > 0);
139 for (int i=0; i<m_bits.size(); i++) {
140 for (int j=0; j<m_bits[i].getSize(); j++) {
141 if (m_bits[i].isElement(j)) {
142 MachineID mach = {MachineType_from_base_level(i), j};
143 return mach;
144 }
145 }
146 }
147 ERROR_MSG("No smallest element of an empty set.");
148 }
149
150 MachineID NetDest::smallestElement(MachineType machine) const
151 {
152 for (int j = 0; j < m_bits[MachineType_base_level(machine)].getSize(); j++) {
153 if (m_bits[MachineType_base_level(machine)].isElement(j)) {
154 MachineID mach = {machine, j};
155 return mach;
156 }
157 }
158
159 ERROR_MSG("No smallest element of given MachineType.");
160 }
161
162
163 // Returns true iff all bits are set
164 bool NetDest::isBroadcast() const
165 {
166 for (int i=0; i<m_bits.size(); i++) {
167 if (!m_bits[i].isBroadcast()) {
168 return false;
169 }
170 }
171 return true;
172 }
173
174 // Returns true iff no bits are set
175 bool NetDest::isEmpty() const
176 {
177 for (int i=0; i<m_bits.size(); i++) {
178 if (!m_bits[i].isEmpty()) {
179 return false;
180 }
181 }
182 return true;
183 }
184
185 // returns the logical OR of "this" set and orNetDest
186 NetDest NetDest::OR(const NetDest& orNetDest) const
187 {
188 assert(m_bits.size() == orNetDest.getSize());
189 NetDest result;
190 for (int i=0; i<m_bits.size(); i++) {
191 result.m_bits[i] = m_bits[i].OR(orNetDest.m_bits[i]);
192 }
193 return result;
194 }
195
196
197 // returns the logical AND of "this" set and andNetDest
198 NetDest NetDest::AND(const NetDest& andNetDest) const
199 {
200 assert(m_bits.size() == andNetDest.getSize());
201 NetDest result;
202 for (int i=0; i<m_bits.size(); i++) {
203 result.m_bits[i] = m_bits[i].AND(andNetDest.m_bits[i]);
204 }
205 return result;
206 }
207
208 // Returns true if the intersection of the two sets is non-empty
209 bool NetDest::intersectionIsNotEmpty(const NetDest& other_netDest) const
210 {
211 assert(m_bits.size() == other_netDest.getSize());
212 for (int i=0; i<m_bits.size(); i++) {
213 if (m_bits[i].intersectionIsNotEmpty(other_netDest.m_bits[i])) {
214 return true;
215 }
216 }
217 return false;
218 }
219
220 bool NetDest::isSuperset(const NetDest& test) const
221 {
222 assert(m_bits.size() == test.getSize());
223
224 for (int i=0; i<m_bits.size(); i++) {
225 if (!m_bits[i].isSuperset(test.m_bits[i])) {
226 return false;
227 }
228 }
229 return true;
230 }
231
232 bool NetDest::isElement(MachineID element) const
233 {
234 return ((m_bits[vecIndex(element)])).isElement(bitIndex(element.num));
235 }
236
237 void NetDest::setSize()
238 {
239 m_bits.setSize(MachineType_base_level(MachineType_NUM));
240 assert(m_bits.size() == MachineType_NUM);
241
242 for (int i = 0; i < m_bits.size(); i++) {
243 m_bits[i].setSize(MachineType_base_count((MachineType)i));
244 }
245 }
246
247 void NetDest::print(ostream& out) const
248 {
249 out << "[NetDest (" << m_bits.size() << ") ";
250
251 for (int i=0; i<m_bits.size(); i++) {
252 for (int j=0; j<m_bits[i].getSize(); j++) {
253 out << (bool) m_bits[i].isElement(j) << " ";
254 }
255 out << " - ";
256 }
257 out << "]";
258 }
259