gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
WriteMask.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020,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) 2012-15 Advanced Micro Devices, Inc.
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
40
41#ifndef __MEM_RUBY_COMMON_WRITEMASK_HH__
42#define __MEM_RUBY_COMMON_WRITEMASK_HH__
43
44#include <cassert>
45#include <iomanip>
46#include <iostream>
47#include <vector>
48
49#include "base/amo.hh"
52
53namespace gem5
54{
55
56namespace ruby
57{
58
60{
61 public:
63
64 WriteMask();
65
66 WriteMask(int size)
67 : mSize(size), mMask(size, false), mAtomic(false)
68 {}
69
71 : mSize(size), mMask(mask), mAtomic(false)
72 {}
73
75 : mSize(size), mMask(mask), mAtomic(true), mAtomicOp(atomicOp)
76 {}
77
79 {}
80
81 int getBlockSize() const { return mSize; }
82 void
83 setBlockSize(int size)
84 {
85 // This should only be used once if the default ctor was used. Probably
86 // by src/mem/ruby/protocol/RubySlicc_MemControl.sm.
87 assert(mSize == 0);
88 assert(size > 0);
89 mSize = size;
90 clear();
91 }
92
93 void
95 {
97 }
98
99 bool
100 test(int offset) const
101 {
102 assert(mSize > 0);
103 assert(offset < mSize);
104 return mMask[offset];
105 }
106
107 void
108 setMask(int offset, int len, bool val = true)
109 {
110 assert(mSize > 0);
111 assert(mSize >= (offset + len));
112 for (int i = 0; i < len; i++) {
113 mMask[offset + i] = val;
114 }
115 }
116 void
118 {
119 assert(mSize > 0);
120 for (int i = 0; i < mSize; i++) {
121 mMask[i] = true;
122 }
123 }
124
125 bool
126 getMask(int offset, int len) const
127 {
128 bool tmp = true;
129 assert(mSize > 0);
130 assert(mSize >= (offset + len));
131 for (int i = 0; i < len; i++) {
132 tmp = tmp & mMask.at(offset + i);
133 }
134 return tmp;
135 }
136
137 bool
138 isOverlap(const WriteMask &readMask) const
139 {
140 bool tmp = false;
141 assert(mSize > 0);
142 assert(mSize == readMask.mSize);
143 for (int i = 0; i < mSize; i++) {
144 if (readMask.mMask.at(i)) {
145 tmp = tmp | mMask.at(i);
146 }
147 }
148 return tmp;
149 }
150
151 bool
152 containsMask(const WriteMask &readMask) const
153 {
154 bool tmp = true;
155 assert(mSize > 0);
156 assert(mSize == readMask.mSize);
157 for (int i = 0; i < mSize; i++) {
158 if (readMask.mMask.at(i)) {
159 tmp = tmp & mMask.at(i);
160 }
161 }
162 return tmp;
163 }
164
165 bool isEmpty() const
166 {
167 assert(mSize > 0);
168 for (int i = 0; i < mSize; i++) {
169 if (mMask.at(i)) {
170 return false;
171 }
172 }
173 return true;
174 }
175
176 bool
177 isFull() const
178 {
179 assert(mSize > 0);
180 for (int i = 0; i < mSize; i++) {
181 if (!mMask.at(i)) {
182 return false;
183 }
184 }
185 return true;
186 }
187
188 void
189 andMask(const WriteMask & writeMask)
190 {
191 assert(mSize > 0);
192 assert(mSize == writeMask.mSize);
193 for (int i = 0; i < mSize; i++) {
194 mMask[i] = (mMask.at(i)) && (writeMask.mMask.at(i));
195 }
196
197 if (writeMask.mAtomic) {
198 mAtomic = true;
199 mAtomicOp = writeMask.mAtomicOp;
200 }
201 }
202
203 void
204 orMask(const WriteMask & writeMask)
205 {
206 assert(mSize > 0);
207 assert(mSize == writeMask.mSize);
208 for (int i = 0; i < mSize; i++) {
209 mMask[i] = (mMask.at(i)) || (writeMask.mMask.at(i));
210 }
211
212 if (writeMask.mAtomic) {
213 mAtomic = true;
214 mAtomicOp = writeMask.mAtomicOp;
215 }
216 }
217
218 void
219 setInvertedMask(const WriteMask & writeMask)
220 {
221 assert(mSize > 0);
222 assert(mSize == writeMask.mSize);
223 for (int i = 0; i < mSize; i++) {
224 mMask[i] = !writeMask.mMask.at(i);
225 }
226 }
227
228 int
229 firstBitSet(bool val, int offset = 0) const
230 {
231 assert(mSize > 0);
232 for (int i = offset; i < mSize; ++i)
233 if (mMask[i] == val)
234 return i;
235 return mSize;
236 }
237
238 int
239 count(int offset = 0) const
240 {
241 assert(mSize > 0);
242 int count = 0;
243 for (int i = offset; i < mSize; ++i)
244 count += mMask[i];
245 return count;
246 }
247
248 void print(std::ostream& out) const;
249
250 /*
251 * Performs atomic operations on the data block pointed to by p. The
252 * atomic operations to perform are in the vector mAtomicOp. The
253 * effect of each atomic operation is pushed to the atomicChangeLog
254 * so that each individual atomic requestor may see the results of their
255 * specific atomic operation.
256 */
257 void performAtomic(uint8_t * p,
258 std::deque<uint8_t*>& atomicChangeLog,
259 bool isAtomicNoReturn=true) const;
260
261 const AtomicOpVector&
263 {
264 return mAtomicOp;
265 }
266
267 void
268 setAtomicOps(const AtomicOpVector& atomicOps)
269 {
270 mAtomic = true;
271 mAtomicOp = std::move(atomicOps);
272 }
273
274 private:
275 int mSize;
279};
280
281inline std::ostream&
282operator<<(std::ostream& out, const WriteMask& obj)
283{
284 obj.print(out);
285 out << std::flush;
286 return out;
287}
288
289} // namespace ruby
290} // namespace gem5
291
292#endif // __MEM_RUBY_COMMON_WRITEMASK_HH__
bool isFull() const
Definition WriteMask.hh:177
bool isEmpty() const
Definition WriteMask.hh:165
void performAtomic(uint8_t *p, std::deque< uint8_t * > &atomicChangeLog, bool isAtomicNoReturn=true) const
Definition WriteMask.cc:59
bool getMask(int offset, int len) const
Definition WriteMask.hh:126
bool isOverlap(const WriteMask &readMask) const
Definition WriteMask.hh:138
AtomicOpVector mAtomicOp
Definition WriteMask.hh:278
std::vector< std::pair< int, AtomicOpFunctor * > > AtomicOpVector
Definition WriteMask.hh:62
bool containsMask(const WriteMask &readMask) const
Definition WriteMask.hh:152
int count(int offset=0) const
Definition WriteMask.hh:239
void setMask(int offset, int len, bool val=true)
Definition WriteMask.hh:108
std::vector< bool > mMask
Definition WriteMask.hh:276
WriteMask(int size, std::vector< bool > &mask, AtomicOpVector atomicOp)
Definition WriteMask.hh:74
void setInvertedMask(const WriteMask &writeMask)
Definition WriteMask.hh:219
bool test(int offset) const
Definition WriteMask.hh:100
void orMask(const WriteMask &writeMask)
Definition WriteMask.hh:204
const AtomicOpVector & getAtomicOps() const
Definition WriteMask.hh:262
int getBlockSize() const
Definition WriteMask.hh:81
WriteMask(int size, std::vector< bool > &mask)
Definition WriteMask.hh:70
void print(std::ostream &out) const
Definition WriteMask.cc:46
void setBlockSize(int size)
Definition WriteMask.hh:83
void andMask(const WriteMask &writeMask)
Definition WriteMask.hh:189
void setAtomicOps(const AtomicOpVector &atomicOps)
Definition WriteMask.hh:268
int firstBitSet(bool val, int offset=0) const
Definition WriteMask.hh:229
STL deque class.
Definition stl.hh:44
STL vector class.
Definition stl.hh:37
Bitfield< 3, 0 > mask
Definition pcstate.hh:63
Bitfield< 18, 16 > len
Bitfield< 7 > i
Definition misc_types.hh:67
Bitfield< 23, 0 > offset
Definition types.hh:144
Bitfield< 0 > p
Bitfield< 63 > val
Definition misc.hh:804
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
std::ostream & operator<<(std::ostream &os, const BaseSemihosting::InPlaceArg &ipa)

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