gem5  v20.0.0.3
Public Member Functions | Private Attributes | List of all members
SatCounter Class Reference

Implements an n bit saturating counter and provides methods to increment, decrement, and read it. More...

#include <sat_counter.hh>

Public Member Functions

 SatCounter ()=delete
 The default constructor should never be used. More...
 
 SatCounter (unsigned bits, uint8_t initial_val=0)
 Constructor for the counter. More...
 
 SatCounter (const SatCounter &other)
 Copy constructor. More...
 
SatCounteroperator= (const SatCounter &other)
 Copy assignment. More...
 
 SatCounter (SatCounter &&other)
 Move constructor. More...
 
SatCounteroperator= (SatCounter &&other)
 Move assignment. More...
 
void swap (SatCounter &other)
 Swap the contents of every member of the class. More...
 
SatCounteroperator++ ()
 Pre-increment operator. More...
 
SatCounter operator++ (int)
 Post-increment operator. More...
 
SatCounteroperator-- ()
 Pre-decrement operator. More...
 
SatCounter operator-- (int)
 Post-decrement operator. More...
 
SatCounteroperator>>= (const int &shift)
 Shift-right-assignment. More...
 
SatCounteroperator<<= (const int &shift)
 Shift-left-assignment. More...
 
SatCounteroperator+= (const int &value)
 Add-assignment. More...
 
SatCounteroperator-= (const int &value)
 Subtract-assignment. More...
 
 operator uint8_t () const
 Read the counter's value. More...
 
void reset ()
 Reset the counter to its initial value. More...
 
double calcSaturation () const
 Calculate saturation percentile of the current counter's value with regard to its maximum possible value. More...
 
bool isSaturated () const
 Whether the counter has achieved its maximum value or not. More...
 
uint8_t saturate ()
 Saturate the counter. More...
 

Private Attributes

uint8_t initialVal
 
uint8_t maxVal
 
uint8_t counter
 

Detailed Description

Implements an n bit saturating counter and provides methods to increment, decrement, and read it.

Definition at line 54 of file sat_counter.hh.

Constructor & Destructor Documentation

◆ SatCounter() [1/4]

SatCounter::SatCounter ( )
delete

The default constructor should never be used.

◆ SatCounter() [2/4]

SatCounter::SatCounter ( unsigned  bits,
uint8_t  initial_val = 0 
)
inlineexplicit

Constructor for the counter.

The explicit keyword is used to make sure the user does not assign a number to the counter thinking it will be used as a counter value when it is in fact used as the number of bits.

Parameters
bitsHow many bits the counter will have.
initial_valStarting value for the counter.

Definition at line 69 of file sat_counter.hh.

References fatal_if, and maxVal.

◆ SatCounter() [3/4]

SatCounter::SatCounter ( const SatCounter other)
inline

Copy constructor.

Definition at line 80 of file sat_counter.hh.

◆ SatCounter() [4/4]

SatCounter::SatCounter ( SatCounter &&  other)
inline

Move constructor.

Definition at line 96 of file sat_counter.hh.

References counter, initialVal, and maxVal.

Member Function Documentation

◆ calcSaturation()

double SatCounter::calcSaturation ( ) const
inline

Calculate saturation percentile of the current counter's value with regard to its maximum possible value.

Returns
A value between 0.0 and 1.0 to indicate which percentile of the maximum value the current value is.

Definition at line 237 of file sat_counter.hh.

References counter, and maxVal.

Referenced by Prefetcher::SignaturePath::calculateLookaheadConfidence(), Prefetcher::Stride::calculatePrefetch(), Prefetcher::IndirectMemory::calculatePrefetch(), Prefetcher::SignaturePath::calculatePrefetchConfidence(), and TEST().

◆ isSaturated()

bool SatCounter::isSaturated ( ) const
inline

Whether the counter has achieved its maximum value or not.

Returns
True if the counter saturated.

Definition at line 244 of file sat_counter.hh.

References counter, and maxVal.

Referenced by Prefetcher::SignaturePathV2::increasePatternEntryCounter(), and TEST().

◆ operator uint8_t()

SatCounter::operator uint8_t ( ) const
inline

Read the counter's value.

Definition at line 225 of file sat_counter.hh.

References counter.

◆ operator++() [1/2]

SatCounter& SatCounter::operator++ ( )
inline

Pre-increment operator.

Definition at line 133 of file sat_counter.hh.

References counter, and maxVal.

◆ operator++() [2/2]

SatCounter SatCounter::operator++ ( int  )
inline

Post-increment operator.

Definition at line 143 of file sat_counter.hh.

◆ operator+=()

SatCounter& SatCounter::operator+= ( const int &  value)
inline

Add-assignment.

Definition at line 192 of file sat_counter.hh.

References counter, and maxVal.

◆ operator--() [1/2]

SatCounter& SatCounter::operator-- ( )
inline

Pre-decrement operator.

Definition at line 152 of file sat_counter.hh.

References counter.

◆ operator--() [2/2]

SatCounter SatCounter::operator-- ( int  )
inline

Post-decrement operator.

Definition at line 162 of file sat_counter.hh.

◆ operator-=()

SatCounter& SatCounter::operator-= ( const int &  value)
inline

Subtract-assignment.

Definition at line 208 of file sat_counter.hh.

References counter.

◆ operator<<=()

SatCounter& SatCounter::operator<<= ( const int &  shift)
inline

Shift-left-assignment.

Definition at line 180 of file sat_counter.hh.

References counter, maxVal, and ArmISA::shift.

◆ operator=() [1/2]

SatCounter& SatCounter::operator= ( const SatCounter other)
inline

Copy assignment.

Definition at line 87 of file sat_counter.hh.

References swap().

◆ operator=() [2/2]

SatCounter& SatCounter::operator= ( SatCounter &&  other)
inline

Move assignment.

Definition at line 106 of file sat_counter.hh.

References counter, initialVal, and maxVal.

◆ operator>>=()

SatCounter& SatCounter::operator>>= ( const int &  shift)
inline

Shift-right-assignment.

Definition at line 171 of file sat_counter.hh.

References counter, and ArmISA::shift.

◆ reset()

void SatCounter::reset ( )
inline

◆ saturate()

uint8_t SatCounter::saturate ( )
inline

Saturate the counter.

Returns
The value added to the counter to reach saturation.

Definition at line 251 of file sat_counter.hh.

References counter, and maxVal.

Referenced by BRRIPRP::reset(), and TEST().

◆ swap()

void SatCounter::swap ( SatCounter other)
inline

Swap the contents of every member of the class.

Used for the default copy-assignment created by the compiler.

Parameters
otherThe other object to swap contents with.

Definition at line 124 of file sat_counter.hh.

References counter, initialVal, and maxVal.

Referenced by operator=().

Member Data Documentation

◆ counter

uint8_t SatCounter::counter
private

◆ initialVal

uint8_t SatCounter::initialVal
private

Definition at line 259 of file sat_counter.hh.

Referenced by operator=(), reset(), SatCounter(), and swap().

◆ maxVal

uint8_t SatCounter::maxVal
private

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

Generated on Fri Jul 3 2020 15:53:19 for gem5 by doxygen 1.8.13