libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::mem::MapFlags Class Reference

Flags used in MapSettings. More...

#include <mman.hxx>

+ Inheritance diagram for cosmos::mem::MapFlags:

Public Member Functions

void setTLBPageSize (size_t page_size)
 Sets the TLB page size if MapFlag::HUGETLB is set.
 
- Public Member Functions inherited from cosmos::BitMask< MapFlag >
constexpr BitMask ()
 Sets all bits to zero.
 
 BitMask (const All a)
 Sets all bits to one.
 
constexpr BitMask (const std::initializer_list< MapFlag > &init_list)
 Sets only the flags found in the given initializer list.
 
constexpr BitMask (const MapFlag val)
 Sets exactly the given value to one.
 
constexpr BitMask (const EnumBaseType value)
 Sets exactly the given primitive type bitmask.
 
EnumBaseType raw () const
 Returns the raw bitfield integer.
 
 operator std::string () const
 Return a string representation of the bit mask.
 
bool operator[] (const MapFlag flag) const
 Returns a boolean value for the given value,.
 
std::string toString () const
 
BitMaskset (const All)
 Sets all bits it the set.
 
BitMaskset (const MapFlag val, bool on_off=true)
 Set or unset the given value.
 
BitMaskset (const std::initializer_list< MapFlag > &flags)
 
BitMaskset (const BitMask other)
 Sets all the bits that are also set in other.
 
BitMaskreset ()
 Sets all bits to zero.
 
BitMaskreset (const MapFlag val)
 Zeroes the given value.
 
BitMaskreset (const std::initializer_list< MapFlag > &flags)
 Zeroes all of the given values.
 
BitMaskreset (const BitMask other)
 
BitMask reset (const BitMask other) const
 
BitMasklimit (const std::initializer_list< MapFlag > &flags)
 Sets all bits to zero except the given flags.
 
BitMasklimit (const MapFlag flag)
 Sets all bits to zero except the given flag.
 
BitMasklimit (const BitMask other)
 Sets all bits to zero except the bits in the given mask.
 
BitMask limit (const BitMask other) const
 
BitMaskflip ()
 Flip every bit in the bit mask.
 
BitMaskflip (const MapFlag val)
 Flips the given value.
 
size_t count () const
 Returns the number of set bits.
 
constexpr size_t size () const
 Returns the maximum number of bits that can be stored in the bit mask.
 
bool test (const MapFlag val) const
 Returns whether the given value is set.
 
bool testAny (const MapFlag val) const
 Returns whether any of the bits of val are set.
 
bool only (const MapFlag val) const
 Returns whether this is the only value set.
 
bool any () const
 Returns whether any bit in the bitset is set.
 
bool allOf (const std::initializer_list< MapFlag > &flags) const
 Tests whether all of the given values are set.
 
bool allOf (const BitMask other) const
 
bool anyOf (const std::initializer_list< MapFlag > &flags) const
 Returns whether any of the given values is set.
 
bool anyOf (const BitMask other) const
 
bool none () const
 Returns whether no bit in the bitset is set.
 
bool operator== (const BitMask &other) const
 
bool operator!= (const BitMask &other) const
 
bool operator& (const MapFlag val) const
 Checks whether any bit of the given value is set,.
 
MapFlag operator& (const BitMask &other) const
 returns an ENUM value containing only the values found in both masks.
 
BitMask operator~ () const
 

Additional Inherited Members

- Public Types inherited from cosmos::BitMask< MapFlag >
using EnumBaseType
 
- Static Public Attributes inherited from cosmos::BitMask< MapFlag >
static constexpr All all
 
- Protected Attributes inherited from cosmos::BitMask< MapFlag >
EnumBaseType m_flags
 

Detailed Description

Flags used in MapSettings.

Definition at line 107 of file mman.hxx.

Member Function Documentation

◆ setTLBPageSize()

void cosmos::mem::MapFlags::setTLBPageSize ( size_t page_size)

Sets the TLB page size if MapFlag::HUGETLB is set.

The given page_size needs to be a power-of-two. The supported TLB sizes depend on the CPU architecture.

Definition at line 86 of file mman.cxx.

86 {
87 if (!page_size || (page_size & (page_size-1)) != 0) {
88 // it's not a power of 2
89 cosmos_throw (UsageError("non-log2 TLB page size encountered"));
90 }
91
92 EnumBaseType log2 = 1;
93
94 while ((page_size & 0x1) != 1) {
95 log2++;
96 page_size >>= 1;
97 }
98
99 constexpr auto MAX_TLB_LOG2 = 0x3F;
100
101 if (log2 > MAX_TLB_LOG2) {
102 // a maximum of 6 bits can be used for specifying the log2 for
103 // the page size
104 cosmos_throw (UsageError("requested TLB page size is too large"));
105 }
106
107 // set all TLB page bits to zero first
108 this->reset(MapFlags{MAX_TLB_LOG2});
109 // now set the required bits for the selected TLB page size
110 this->set(MapFlags{log2 << MAP_HUGE_SHIFT});
111}
BitMask & set(const All)
Definition BitMask.hxx:77

The documentation for this class was generated from the following files: