gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
NetDest.cc
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
30
31#include <algorithm>
32
34
35namespace gem5
36{
37
38namespace ruby
39{
40
44
46 : m_ruby_system(ruby_system)
47{
48 resize();
49}
50
51void
53{
54 assert(m_bits.size() > 0);
55 assert(bitIndex(newElement.num) < m_bits[vecIndex(newElement)].getSize());
56 m_bits[vecIndex(newElement)].add(bitIndex(newElement.num));
57}
58
59void
61{
62 assert(m_bits.size() > 0);
63 assert(m_bits.size() == netDest.getSize());
64 for (int i = 0; i < m_bits.size(); i++) {
65 m_bits[i].addSet(netDest.m_bits[i]);
66 }
67}
68
69void
70NetDest::setNetDest(MachineType machine, const Set& set)
71{
72 assert(m_ruby_system != nullptr);
73
74 // assure that there is only one set of destinations for this machine
75 assert(MachineType_base_level((MachineType)(machine + 1)) -
76 MachineType_base_level(machine) == 1);
77 m_bits[MachineType_base_level(machine)] = set;
78}
79
80void
82{
83 assert(m_bits.size() > 0);
84 m_bits[vecIndex(oldElement)].remove(bitIndex(oldElement.num));
85}
86
87void
89{
90 assert(m_bits.size() > 0);
91 assert(m_bits.size() == netDest.getSize());
92 for (int i = 0; i < m_bits.size(); i++) {
93 m_bits[i].removeSet(netDest.m_bits[i]);
94 }
95}
96
97void
99{
100 assert(m_bits.size() > 0);
101 for (int i = 0; i < m_bits.size(); i++) {
102 m_bits[i].clear();
103 }
104}
105
106void
108{
109 for (MachineType machine = MachineType_FIRST;
110 machine < MachineType_NUM; ++machine) {
111 broadcast(machine);
112 }
113}
114
115void
116NetDest::broadcast(MachineType machineType)
117{
118 assert(m_ruby_system != nullptr);
119
120 for (NodeID i = 0; i < MachineType_base_count(machineType); i++) {
121 MachineID mach = {machineType, i};
122 add(mach);
123 }
124}
125
126//For Princeton Network
129{
130 assert(m_ruby_system != nullptr);
131 assert(m_bits.size() > 0);
132
134 dest.clear();
135 for (int i = 0; i < m_bits.size(); i++) {
136 for (int j = 0; j < m_bits[i].getSize(); j++) {
137 if (m_bits[i].isElement(j)) {
138 int id = MachineType_base_number((MachineType)i) + j;
139 dest.push_back((NodeID)id);
140 }
141 }
142 }
143 return dest;
144}
145
146int
148{
149 assert(m_bits.size() > 0);
150
151 int counter = 0;
152 for (int i = 0; i < m_bits.size(); i++) {
153 counter += m_bits[i].count();
154 }
155 return counter;
156}
157
158NodeID
160{
161 assert(m_bits.size() > 0);
162 return m_bits[vecIndex(index)].elementAt(bitIndex(index.num));
163}
164
167{
168 assert(m_bits.size() > 0);
169 assert(count() > 0);
170 for (int i = 0; i < m_bits.size(); i++) {
171 for (NodeID j = 0; j < m_bits[i].getSize(); j++) {
172 if (m_bits[i].isElement(j)) {
173 MachineID mach = {MachineType_from_base_level(i), j};
174 return mach;
175 }
176 }
177 }
178 panic("No smallest element of an empty set.");
179}
180
182NetDest::smallestElement(MachineType machine) const
183{
184 assert(m_bits.size() > 0);
185 assert(m_ruby_system != nullptr);
186
187 int size = m_bits[MachineType_base_level(machine)].getSize();
188 for (NodeID j = 0; j < size; j++) {
189 if (m_bits[MachineType_base_level(machine)].isElement(j)) {
190 MachineID mach = {machine, j};
191 return mach;
192 }
193 }
194
195 panic("No smallest element of given MachineType.");
196}
197
198// Returns true iff all bits are set
199bool
201{
202 assert(m_bits.size() > 0);
203 for (int i = 0; i < m_bits.size(); i++) {
204 if (!m_bits[i].isBroadcast()) {
205 return false;
206 }
207 }
208 return true;
209}
210
211// Returns true iff no bits are set
212bool
214{
215 assert(m_bits.size() > 0);
216 for (int i = 0; i < m_bits.size(); i++) {
217 if (!m_bits[i].isEmpty()) {
218 return false;
219 }
220 }
221 return true;
222}
223
224// returns the logical OR of "this" set and orNetDest
226NetDest::OR(const NetDest& orNetDest) const
227{
228 assert(m_bits.size() > 0);
229 assert(m_bits.size() == orNetDest.getSize());
230 NetDest result(m_ruby_system);
231 for (int i = 0; i < m_bits.size(); i++) {
232 result.m_bits[i] = m_bits[i].OR(orNetDest.m_bits[i]);
233 }
234 return result;
235}
236
237// returns the logical AND of "this" set and andNetDest
239NetDest::AND(const NetDest& andNetDest) const
240{
241 assert(m_bits.size() > 0);
242 assert(m_bits.size() == andNetDest.getSize());
243 NetDest result(m_ruby_system);
244 for (int i = 0; i < m_bits.size(); i++) {
245 result.m_bits[i] = m_bits[i].AND(andNetDest.m_bits[i]);
246 }
247 return result;
248}
249
250// Returns true if the intersection of the two sets is non-empty
251bool
252NetDest::intersectionIsNotEmpty(const NetDest& other_netDest) const
253{
254 assert(m_bits.size() > 0);
255 assert(m_bits.size() == other_netDest.getSize());
256 for (int i = 0; i < m_bits.size(); i++) {
257 if (!m_bits[i].intersectionIsEmpty(other_netDest.m_bits[i])) {
258 return true;
259 }
260 }
261 return false;
262}
263
264bool
266{
267 assert(m_bits.size() > 0);
268 assert(m_bits.size() == test.getSize());
269
270 for (int i = 0; i < m_bits.size(); i++) {
271 if (!m_bits[i].isSuperset(test.m_bits[i])) {
272 return false;
273 }
274 }
275 return true;
276}
277
278bool
280{
281 assert(m_bits.size() > 0);
282 return ((m_bits[vecIndex(element)])).isElement(bitIndex(element.num));
283}
284
285void
287{
288 assert(m_ruby_system != nullptr);
289
290 m_bits.resize(MachineType_base_level(MachineType_NUM));
291 assert(m_bits.size() == MachineType_NUM);
292
293 for (int i = 0; i < m_bits.size(); i++) {
294 m_bits[i].setSize(MachineType_base_count((MachineType)i));
295 }
296}
297
298void
299NetDest::print(std::ostream& out) const
300{
301 assert(m_bits.size() > 0);
302 out << "[NetDest (" << m_bits.size() << ") ";
303
304 for (int i = 0; i < m_bits.size(); i++) {
305 for (int j = 0; j < m_bits[i].getSize(); j++) {
306 out << (bool) m_bits[i].isElement(j) << " ";
307 }
308 out << " - ";
309 }
310 out << "]";
311}
312
313bool
315{
316 assert(m_bits.size() > 0);
317 assert(m_bits.size() == n.m_bits.size());
318 for (unsigned int i = 0; i < m_bits.size(); ++i) {
319 if (!m_bits[i].isEqual(n.m_bits[i]))
320 return false;
321 }
322 return true;
323}
324
325int
326NetDest::MachineType_base_count(const MachineType& obj)
327{
328 assert(m_ruby_system != nullptr);
330}
331
332int
333NetDest::MachineType_base_number(const MachineType& obj)
334{
335 assert(m_ruby_system != nullptr);
337}
338
339} // namespace ruby
340} // namespace gem5
void add(MachineID newElement)
Definition NetDest.cc:52
void remove(MachineID oldElement)
Definition NetDest.cc:81
std::vector< NodeID > getAllDest()
Definition NetDest.cc:128
NetDest AND(const NetDest &andNetDest) const
Definition NetDest.cc:239
RubySystem * m_ruby_system
Definition NetDest.hh:122
NetDest OR(const NetDest &orNetDest) const
Definition NetDest.cc:226
int MachineType_base_count(const MachineType &obj)
Definition NetDest.cc:326
bool isElement(MachineID element) const
Definition NetDest.cc:279
bool isEqual(const NetDest &netDest) const
Definition NetDest.cc:314
std::vector< Set > m_bits
Definition NetDest.hh:119
void removeNetDest(const NetDest &netDest)
Definition NetDest.cc:88
NodeID elementAt(MachineID index)
Definition NetDest.cc:159
int count() const
Definition NetDest.cc:147
bool isBroadcast() const
Definition NetDest.cc:200
void addNetDest(const NetDest &netDest)
Definition NetDest.cc:60
void setNetDest(MachineType machine, const Set &set)
Definition NetDest.cc:70
MachineID smallestElement() const
Definition NetDest.cc:166
bool isEmpty() const
Definition NetDest.cc:213
bool intersectionIsNotEmpty(const NetDest &other_netDest) const
Definition NetDest.cc:252
bool intersectionIsEmpty(const NetDest &other_netDest) const
int vecIndex(MachineID m) const
Definition NetDest.hh:110
int getSize() const
Definition NetDest.hh:97
bool isSuperset(const NetDest &test) const
Definition NetDest.cc:265
int MachineType_base_number(const MachineType &obj)
Definition NetDest.cc:333
void print(std::ostream &out) const
Definition NetDest.cc:299
NodeID bitIndex(NodeID index) const
Definition NetDest.hh:117
int MachineType_base_number(const MachineType &obj)
int MachineType_base_count(const MachineType &obj)
STL vector class.
Definition stl.hh:37
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
Bitfield< 31 > n
Bitfield< 7 > i
Definition misc_types.hh:67
Bitfield< 12, 11 > set
Bitfield< 30, 0 > index
unsigned int NodeID
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
NodeID num
range: 0 ... number of this machine's components in system - 1
Definition MachineID.hh:64
Definition test.h:38

Generated on Mon Jan 13 2025 04:28:40 for gem5 by doxygen 1.9.8