gem5  v20.0.0.3
intmath.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2001, 2003-2005 The Regents of The University of Michigan
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 
29 #ifndef __BASE_INTMATH_HH__
30 #define __BASE_INTMATH_HH__
31 
32 #include <cassert>
33 #include <cstdint>
34 #include <type_traits>
35 
36 #include "base/logging.hh"
37 #include "base/types.hh"
38 
39 inline uint64_t
40 power(uint32_t n, uint32_t e)
41 {
42  uint64_t result = 1;
43  uint64_t component = n;
44  while (e) {
45  uint64_t last = result;
46  if (e & 0x1)
47  result *= component;
48  warn_if(result < last, "power() overflowed!");
49  e >>= 1;
50  component *= component;
51  }
52  return result;
53 }
54 
55 template <class T>
56 inline typename std::enable_if<std::is_integral<T>::value, int>::type
58 {
59  assert(x > 0);
60 
61  // A guaranteed unsigned version of x.
62  uint64_t ux = (typename std::make_unsigned<T>::type)x;
63 
64  int y = 0;
65  constexpr auto ts = sizeof(T);
66 
67  if (ts >= 8 && (ux & ULL(0xffffffff00000000))) { y += 32; ux >>= 32; }
68  if (ts >= 4 && (ux & ULL(0x00000000ffff0000))) { y += 16; ux >>= 16; }
69  if (ts >= 2 && (ux & ULL(0x000000000000ff00))) { y += 8; ux >>= 8; }
70  if (ux & ULL(0x00000000000000f0)) { y += 4; ux >>= 4; }
71  if (ux & ULL(0x000000000000000c)) { y += 2; ux >>= 2; }
72  if (ux & ULL(0x0000000000000002)) { y += 1; }
73 
74  return y;
75 }
76 
77 template <class T>
78 inline int
79 ceilLog2(const T& n)
80 {
81  assert(n > 0);
82  if (n == 1)
83  return 0;
84 
85  return floorLog2(n - (T)1) + 1;
86 }
87 
88 template <class T>
89 inline bool
90 isPowerOf2(const T& n)
91 {
92  // If n is non-zero, and subtracting one borrows all the way to the MSB
93  // and flips all bits, then this is a power of 2.
94  return n && !(n & (n - 1));
95 }
96 
97 template <class T, class U>
98 inline T
99 divCeil(const T& a, const U& b)
100 {
101  return (a + b - 1) / b;
102 }
103 
112 template <class T, class U>
113 inline T
114 roundUp(const T& val, const U& align)
115 {
116  assert(isPowerOf2(align));
117  T mask = (T)align - 1;
118  return (val + mask) & ~mask;
119 }
120 
129 template <class T, class U>
130 inline T
131 roundDown(const T& val, const U& align)
132 {
133  assert(isPowerOf2(align));
134  T mask = (T)align - 1;
135  return val & ~mask;
136 }
137 
138 #endif // __BASE_INTMATH_HH__
Bitfield< 55, 52 > ts
Bitfield< 8 > a
int ceilLog2(const T &n)
Definition: intmath.hh:79
T roundUp(const T &val, const U &align)
This function is used to align addresses in memory.
Definition: intmath.hh:114
Bitfield< 63 > val
Definition: misc.hh:769
Bitfield< 31 > n
std::enable_if< std::is_integral< T >::value, int >::type floorLog2(T x)
Definition: intmath.hh:57
Bitfield< 3 > x
Definition: pagetable.hh:69
Bitfield< 7 > b
uint8_t type
Definition: inet.hh:328
void align(const scfx_rep &lhs, const scfx_rep &rhs, int &new_wp, int &len_mant, scfx_mant_ref &lhs_mant, scfx_mant_ref &rhs_mant)
Definition: scfx_rep.cc:2051
uint64_t power(uint32_t n, uint32_t e)
Definition: intmath.hh:40
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
Definition: logging.hh:224
bool isPowerOf2(const T &n)
Definition: intmath.hh:90
T roundDown(const T &val, const U &align)
This function is used to align addresses in memory.
Definition: intmath.hh:131
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
#define ULL(N)
uint64_t constant
Definition: types.hh:48
Bitfield< 9 > e
Bitfield< 5 > ux
T divCeil(const T &a, const U &b)
Definition: intmath.hh:99
Bitfield< 3, 0 > mask
Definition: types.hh:62

Generated on Fri Jul 3 2020 15:52:59 for gem5 by doxygen 1.8.13