Files
gem5/src/base/sat_counter.hh
Daniel R. Carvalho 974a47dfb9 misc: Adopt the gem5 namespace
Apply the gem5 namespace to the codebase.

Some anonymous namespaces could theoretically be removed,
but since this change's main goal was to keep conflicts
at a minimum, it was decided not to modify much the
general shape of the files.

A few missing comments of the form "// namespace X" that
occurred before the newly added "} // namespace gem5"
have been added for consistency.

std out should not be included in the gem5 namespace, so
they weren't.

ProtoMessage has not been included in the gem5 namespace,
since I'm not familiar with how proto works.

Regarding the SystemC files, although they belong to gem5,
they actually perform integration between gem5 and SystemC;
therefore, it deserved its own separate namespace.

Files that are automatically generated have been included
in the gem5 namespace.

The .isa files currently are limited to a single namespace.
This limitation should be later removed to make it easier
to accomodate a better API.

Regarding the files in util, gem5:: was prepended where
suitable. Notice that this patch was tested as much as
possible given that most of these were already not
previously compiling.

Change-Id: Ia53d404ec79c46edaa98f654e23bc3b0e179fe2d
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/46323
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Reviewed-by: Matthew Poremba <matthew.poremba@amd.com>
Tested-by: kokoro <noreply+kokoro@google.com>
2021-07-01 19:08:24 +00:00

349 lines
8.9 KiB
C++

/*
* Copyright (c) 2019, 2020 Inria
* All rights reserved.
*
* The license below extends only to copyright in the software and shall
* not be construed as granting a license to any other intellectual
* property including but not limited to intellectual property relating
* to a hardware implementation of the functionality of the software
* licensed hereunder. You may use the software subject to the license
* terms below provided that you ensure that this notice is replicated
* unmodified and in its entirety in all distributions of the software,
* modified or unmodified, in source code or in binary form.
*
* Copyright (c) 2005-2006 The Regents of The University of Michigan
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution;
* neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __BASE_SAT_COUNTER_HH__
#define __BASE_SAT_COUNTER_HH__
#include <cassert>
#include <cstdint>
#include "base/logging.hh"
#include "base/types.hh"
namespace gem5
{
/**
* Implements an n bit saturating counter and provides methods to
* increment, decrement, and read it.
*
* @tparam T The type of the underlying counter container.
*/
template <class T>
class GenericSatCounter
{
public:
/** The default constructor should never be used. */
GenericSatCounter() = delete;
/**
* 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.
*
* @param bits How many bits the counter will have.
* @param initial_val Starting value for the counter.
*
* @ingroup api_sat_counter
*/
explicit GenericSatCounter(unsigned bits, T initial_val = 0)
: initialVal(initial_val), maxVal((1ULL << bits) - 1),
counter(initial_val)
{
fatal_if(bits > 8*sizeof(T),
"Number of bits exceeds counter size");
fatal_if(initial_val > maxVal,
"Saturating counter's initial value exceeds max value.");
}
/**
* Copy constructor.
*
* @ingroup api_sat_counter
*/
GenericSatCounter(const GenericSatCounter& other)
: initialVal(other.initialVal), maxVal(other.maxVal),
counter(other.counter)
{
}
/**
* Copy assignment.
*
* @ingroup api_sat_counter
*/
GenericSatCounter& operator=(const GenericSatCounter& other) {
if (this != &other) {
GenericSatCounter temp(other);
this->swap(temp);
}
return *this;
}
/**
* Move constructor.
*
* @ingroup api_sat_counter
*/
GenericSatCounter(GenericSatCounter&& other)
{
initialVal = other.initialVal;
maxVal = other.maxVal;
counter = other.counter;
GenericSatCounter temp(0);
other.swap(temp);
}
/**
* Move assignment.
*
* @ingroup api_sat_counter
*/
GenericSatCounter& operator=(GenericSatCounter&& other) {
if (this != &other) {
initialVal = other.initialVal;
maxVal = other.maxVal;
counter = other.counter;
GenericSatCounter temp(0);
other.swap(temp);
}
return *this;
}
/**
* Swap the contents of every member of the class. Used for the default
* copy-assignment created by the compiler.
*
* @param other The other object to swap contents with.
*
* @ingroup api_sat_counter
*/
void
swap(GenericSatCounter& other)
{
std::swap(initialVal, other.initialVal);
std::swap(maxVal, other.maxVal);
std::swap(counter, other.counter);
}
/**
* Pre-increment operator.
*
* @ingroup api_sat_counter
*/
GenericSatCounter&
operator++()
{
if (counter < maxVal) {
++counter;
}
return *this;
}
/**
* Post-increment operator.
*
* @ingroup api_sat_counter
*/
GenericSatCounter
operator++(int)
{
GenericSatCounter old_counter = *this;
++*this;
return old_counter;
}
/**
* Pre-decrement operator.
*
* @ingroup api_sat_counter
*/
GenericSatCounter&
operator--()
{
if (counter > 0) {
--counter;
}
return *this;
}
/**
* Post-decrement operator.
*
* @ingroup api_sat_counter
*/
GenericSatCounter
operator--(int)
{
GenericSatCounter old_counter = *this;
--*this;
return old_counter;
}
/**
* Shift-right-assignment.
*
* @ingroup api_sat_counter
*/
GenericSatCounter&
operator>>=(const int& shift)
{
assert(shift >= 0);
this->counter >>= shift;
return *this;
}
/**
* Shift-left-assignment.
*
* @ingroup api_sat_counter
*/
GenericSatCounter&
operator<<=(const int& shift)
{
assert(shift >= 0);
this->counter <<= shift;
if (this->counter > maxVal) {
this->counter = maxVal;
}
return *this;
}
/**
* Add-assignment.
*
* @ingroup api_sat_counter
*/
GenericSatCounter&
operator+=(const long long& value)
{
if (value >= 0) {
if (maxVal - this->counter >= value) {
this->counter += value;
} else {
this->counter = maxVal;
}
} else {
*this -= -value;
}
return *this;
}
/**
* Subtract-assignment.
*
* @ingroup api_sat_counter
*/
GenericSatCounter&
operator-=(const long long& value)
{
if (value >= 0) {
if (this->counter > value) {
this->counter -= value;
} else {
this->counter = 0;
}
} else {
*this += -value;
}
return *this;
}
/**
* Read the counter's value.
*
* @ingroup api_sat_counter
*/
operator T() const { return counter; }
/**
* Reset the counter to its initial value.
*
* @ingroup api_sat_counter
*/
void reset() { counter = initialVal; }
/**
* Calculate saturation percentile of the current counter's value
* with regard to its maximum possible value.
*
* @return A value between 0.0 and 1.0 to indicate which percentile of
* the maximum value the current value is.
*
* @ingroup api_sat_counter
*/
double calcSaturation() const { return (double) counter / maxVal; }
/**
* Whether the counter has achieved its maximum value or not.
*
* @return True if the counter saturated.
*
* @ingroup api_sat_counter
*/
bool isSaturated() const { return counter == maxVal; }
/**
* Saturate the counter.
*
* @return The value added to the counter to reach saturation.
*
* @ingroup api_sat_counter
*/
uint8_t saturate()
{
const uint8_t diff = maxVal - counter;
counter = maxVal;
return diff;
}
private:
T initialVal;
T maxVal;
T counter;
};
/** @ingroup api_sat_counter
* @{
*/
typedef GenericSatCounter<uint8_t> SatCounter8;
typedef GenericSatCounter<uint16_t> SatCounter16;
typedef GenericSatCounter<uint32_t> SatCounter32;
typedef GenericSatCounter<uint64_t> SatCounter64;
/** @} */
[[deprecated("Use SatCounter8 (or variants) instead")]]
typedef SatCounter8 SatCounter;
} // namespace gem5
#endif // __BASE_SAT_COUNTER_HH__