gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
flags.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Daniel R. Carvalho
3  * Copyright (c) 2008 The Hewlett-Packard Development Company
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 #ifndef __BASE_FLAGS_HH__
31 #define __BASE_FLAGS_HH__
32 
33 #include <type_traits>
34 
40 template <typename T>
41 class Flags
42 {
43  private:
44  static_assert(std::is_unsigned<T>::value, "Flag type must be unsigned");
45 
47  T _flags;
48 
49  public:
50  typedef T Type;
51 
63  Flags(Type flags=0) : _flags(flags) {}
64 
65  operator const Type() const { return _flags; }
66 
67  const Flags<T> &
68  operator=(T flags)
69  {
70  _flags = flags;
71  return *this;
72  }
73 
80  bool isSet(Type mask) const { return (_flags & mask); }
81 
88  bool allSet(Type mask) const { return (_flags & mask) == mask; }
89 
96  bool noneSet(Type mask) const { return (_flags & mask) == 0; }
97 
99  void clear() { _flags = 0; }
100 
106  void clear(Type mask) { _flags &= ~mask; }
107 
113  void set(Type mask) { _flags |= mask; }
114 
121  void
122  set(Type mask, bool condition)
123  {
124  condition ? set(mask) : clear(mask);
125  }
126 
137  void
139  {
140  _flags = (_flags & ~mask) | (flags & mask);
141  } // end of api_flags
143 };
144 
145 #endif // __BASE_FLAGS_HH__
Flags
Wrapper that groups a few flag bits under the same undelying container.
Definition: flags.hh:41
Flags< FlagsType >::Type
FlagsType Type
Definition: flags.hh:50
Flags< FlagsType >::noneSet
bool noneSet(Type mask) const
Verifies whether no bits matching the given mask are set.
Definition: flags.hh:96
Flags< FlagsType >::operator=
const Flags< FlagsType > & operator=(FlagsType flags)
Definition: flags.hh:68
Flags< FlagsType >::clear
void clear()
Clear all flag's bits.
Definition: flags.hh:99
Flags< FlagsType >::set
void set(Type mask, bool condition)
Conditionally set or clear some bits of the flag, given a mask.
Definition: flags.hh:122
Flags< FlagsType >::set
void set(Type mask)
Set all flag's bits matching the given mask.
Definition: flags.hh:113
Flags< FlagsType >::isSet
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
Definition: flags.hh:80
Flags< FlagsType >::allSet
bool allSet(Type mask) const
Verifies whether no bits matching the given mask are set.
Definition: flags.hh:88
Flags< FlagsType >::replace
void replace(Type flags, Type mask)
Replace the contents of the bits matching the mask with the corresponding bits in the provided flags.
Definition: flags.hh:138
Flags< FlagsType >::Flags
Flags(Type flags=0)
Initialize flags with a given value.
Definition: flags.hh:63
Flags< FlagsType >::clear
void clear(Type mask)
Clear all flag's bits matching the given mask.
Definition: flags.hh:106
Flags< FlagsType >::_flags
FlagsType _flags
The undelying container of the flags' bits.
Definition: flags.hh:44
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17