gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
bitfield.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017, 2019 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) 2003-2005 The Regents of The University of Michigan
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 __BASE_BITFIELD_HH__
42 #define __BASE_BITFIELD_HH__
43 
44 #include <cassert>
45 #include <cstddef>
46 #include <cstdint>
47 #include <type_traits>
48 
49 extern const uint8_t reverseBitsLookUpTable[];
50 
59 constexpr inline uint64_t
60 mask(unsigned nbits)
61 {
62  return (nbits >= 64) ? (uint64_t)-1LL : (1ULL << nbits) - 1;
63 }
64 
71 template <class T>
72 constexpr inline T
73 bits(T val, unsigned first, unsigned last)
74 {
75  assert(first >= last);
76  int nbits = first - last + 1;
77  return (val >> last) & mask(nbits);
78 }
79 
85 template <class T>
86 constexpr inline T
87 bits(T val, unsigned bit)
88 {
89  return bits(val, bit, bit);
90 }
91 
98 template <class T>
99 constexpr inline T
100 mbits(T val, unsigned first, unsigned last)
101 {
102  return val & (mask(first + 1) & ~mask(last));
103 }
104 
108 constexpr inline uint64_t
109 mask(unsigned first, unsigned last)
110 {
111  return mbits((uint64_t)-1LL, first, last);
112 }
113 
119 template <int N>
120 constexpr inline uint64_t
121 sext(uint64_t val)
122 {
123  bool sign_bit = bits(val, N - 1);
124  if (sign_bit)
125  val |= ~mask(N);
126  return val;
127 }
128 
141 template <class T, class B>
142 constexpr inline T
143 insertBits(T val, unsigned first, unsigned last, B bit_val)
144 {
145  assert(first >= last);
146  T bmask = mask(first, last);
147  val &= ~bmask;
148  val |= ((T)bit_val << last) & bmask;
149  return val;
150 }
151 
157 template <class T, class B>
158 constexpr inline T
159 insertBits(T val, unsigned bit, B bit_val)
160 {
161  return insertBits(val, bit, bit, bit_val);
162 }
163 
172 template <class T, class B>
173 constexpr inline void
174 replaceBits(T& val, unsigned first, unsigned last, B bit_val)
175 {
176  val = insertBits(val, first, last, bit_val);
177 }
178 
184 template <class T, class B>
185 constexpr inline void
186 replaceBits(T& val, unsigned bit, B bit_val)
187 {
188  val = insertBits(val, bit, bit, bit_val);
189 }
190 
211 template <class T>
212 std::enable_if_t<std::is_integral<T>::value && sizeof(T) != 1, T>
213 reverseBits(T val, size_t size=sizeof(T))
214 {
215  assert(size <= sizeof(T));
216 
217  T output = {};
218  for (size_t byte = 0; byte < size; byte++) {
219  output = (output << 8) | reverseBitsLookUpTable[val & mask(8)];
220  val >>= 8;
221  }
222 
223  return output;
224 }
225 
226 template <class T>
227 std::enable_if_t<std::is_integral<T>::value && sizeof(T) == 1, T>
228 reverseBits(T val, size_t size=sizeof(T))
229 {
230  assert(size == 1);
231  return reverseBitsLookUpTable[val];
232 }
233 
239 constexpr inline int
240 findMsbSet(uint64_t val)
241 {
242  int msb = 0;
243  if (!val)
244  return 0;
245  if (bits(val, 63, 32)) {
246  msb += 32;
247  val >>= 32;
248  }
249  if (bits(val, 31, 16)) {
250  msb += 16;
251  val >>= 16;
252  }
253  if (bits(val, 15, 8)) {
254  msb += 8;
255  val >>= 8;
256  }
257  if (bits(val, 7, 4)) {
258  msb += 4;
259  val >>= 4;
260  }
261  if (bits(val, 3, 2)) {
262  msb += 2;
263  val >>= 2;
264  }
265  if (bits(val, 1, 1))
266  msb += 1;
267  return msb;
268 }
269 
275 constexpr inline int
276 findLsbSet(uint64_t val)
277 {
278  int lsb = 0;
279  if (!val)
280  return sizeof(val) * 8;
281  if (!bits(val, 31, 0)) {
282  lsb += 32;
283  val >>= 32;
284  }
285  if (!bits(val, 15, 0)) {
286  lsb += 16;
287  val >>= 16;
288  }
289  if (!bits(val, 7, 0)) {
290  lsb += 8;
291  val >>= 8;
292  }
293  if (!bits(val, 3, 0)) {
294  lsb += 4;
295  val >>= 4;
296  }
297  if (!bits(val, 1, 0)) {
298  lsb += 2;
299  val >>= 2;
300  }
301  if (!bits(val, 0, 0))
302  lsb += 1;
303  return lsb;
304 }
305 
313 constexpr inline int
314 popCount(uint64_t val)
315 {
316 #ifndef __has_builtin
317 # define __has_builtin(foo) 0
318 #endif
319 #if defined(__GNUC__) || \
320  (defined(__clang__) && __has_builtin(__builtin_popcountl))
321  return __builtin_popcountl(val);
322 #else
323  const uint64_t m1 = 0x5555555555555555ULL; // ..010101b
324  const uint64_t m2 = 0x3333333333333333ULL; // ..110011b
325  const uint64_t m4 = 0x0f0f0f0f0f0f0f0fULL; // ..001111b
326  const uint64_t sum = 0x0101010101010101ULL;
327 
328  val -= (val >> 1) & m1; // 2 bits count -> 2 bits
329  val = (val & m2) + ((val >> 2) & m2); // 4 bits count -> 4 bits
330  val = (val + (val >> 4)) & m4; // 8 bits count -> 8 bits
331  return (val * sum) >> 56; // horizontal sum
332 #endif // defined(__GNUC__) ||
333  //(defined(__clang__) && __has_builtin(__builtin_popcountl))
334 }
335 
348 constexpr inline uint64_t
350 {
351  val--;
352  val |= val >> 1;
353  val |= val >> 2;
354  val |= val >> 4;
355  val |= val >> 8;
356  val |= val >> 16;
357  val |= val >> 32;
358  val++;
359 
360  return val;
361 };
362 
371 constexpr inline int
372 ctz32(uint32_t value)
373 {
374  return value ? __builtin_ctzl(value) : 32;
375 }
376 
385 constexpr inline int
386 ctz64(uint64_t value)
387 {
388  return value ? __builtin_ctzll(value) : 64;
389 }
390 
391 #endif // __BASE_BITFIELD_HH__
output
static void output(const char *filename)
Definition: debug.cc:60
insertBits
constexpr T insertBits(T val, unsigned first, unsigned last, B bit_val)
Returns val with bits first to last set to the LSBs of bit_val.
Definition: bitfield.hh:143
LL
#define LL(N)
int64_t constant
Definition: types.hh:48
popCount
constexpr int popCount(uint64_t val)
Returns the number of set ones in the provided value.
Definition: bitfield.hh:314
RiscvISA::sum
Bitfield< 18 > sum
Definition: registers.hh:634
reverseBits
std::enable_if_t< std::is_integral< T >::value &&sizeof(T) !=1, T > reverseBits(T val, size_t size=sizeof(T))
Takes a value and returns the bit reversed version.
Definition: bitfield.hh:213
sext
constexpr uint64_t sext(uint64_t val)
Sign-extend an N-bit value to 64 bits.
Definition: bitfield.hh:121
ctz32
constexpr int ctz32(uint32_t value)
Count trailing zeros in a 32-bit value.
Definition: bitfield.hh:372
reverseBitsLookUpTable
const uint8_t reverseBitsLookUpTable[]
Lookup table used for High Speed bit reversing.
Definition: bitfield.cc:41
mbits
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
Definition: bitfield.hh:100
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
alignToPowerOfTwo
constexpr uint64_t alignToPowerOfTwo(uint64_t val)
Align to the next highest power of two.
Definition: bitfield.hh:349
findMsbSet
constexpr int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
Definition: bitfield.hh:240
ctz64
constexpr int ctz64(uint64_t value)
Count trailing zeros in a 64-bit value.
Definition: bitfield.hh:386
bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:73
findLsbSet
constexpr int findLsbSet(uint64_t val)
Returns the bit position of the LSB that is set in the input.
Definition: bitfield.hh:276
mask
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
Definition: bitfield.hh:60
ULL
#define ULL(N)
uint64_t constant
Definition: types.hh:46
replaceBits
constexpr void replaceBits(T &val, unsigned first, unsigned last, B bit_val)
A convenience function to replace bits first to last of val with bit_val in place.
Definition: bitfield.hh:174

Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17