summaryrefslogtreecommitdiff
path: root/src/cpu/pred
diff options
context:
space:
mode:
authorDaniel <odanrc@yahoo.com.br>2019-04-10 23:11:46 +0200
committerDaniel Carvalho <odanrc@yahoo.com.br>2019-05-14 07:55:06 +0000
commit578dd474b9d91aae48c87bb2c964eb1a1a8b58de (patch)
treed189adb3931f510475a124eb0ec461ba0bb8fcbc /src/cpu/pred
parent0def916836a5cfb570e765d2e1e4774419b56ec6 (diff)
downloadgem5-578dd474b9d91aae48c87bb2c964eb1a1a8b58de.tar.xz
base: Move SatCounter to base directory
Saturating counters are used by many objects, not only the cpu predictors. Therefore, move the class to the base folder so that it can be more easily used. Change-Id: I26f799324bdd8720ab8834c72a2002149cee777c Signed-off-by: Daniel <odanrc@yahoo.com.br> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/17993 Maintainer: Jason Lowe-Power <jason@lowepower.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/cpu/pred')
-rw-r--r--src/cpu/pred/2bit_local.hh2
-rw-r--r--src/cpu/pred/bi_mode.hh2
-rw-r--r--src/cpu/pred/sat_counter.hh130
-rw-r--r--src/cpu/pred/tournament.hh2
4 files changed, 3 insertions, 133 deletions
diff --git a/src/cpu/pred/2bit_local.hh b/src/cpu/pred/2bit_local.hh
index ef52974b7..636620a34 100644
--- a/src/cpu/pred/2bit_local.hh
+++ b/src/cpu/pred/2bit_local.hh
@@ -46,9 +46,9 @@
#include <vector>
+#include "base/sat_counter.hh"
#include "base/types.hh"
#include "cpu/pred/bpred_unit.hh"
-#include "cpu/pred/sat_counter.hh"
#include "params/LocalBP.hh"
/**
diff --git a/src/cpu/pred/bi_mode.hh b/src/cpu/pred/bi_mode.hh
index f28fdc926..40909554b 100644
--- a/src/cpu/pred/bi_mode.hh
+++ b/src/cpu/pred/bi_mode.hh
@@ -35,8 +35,8 @@
#ifndef __CPU_PRED_BI_MODE_PRED_HH__
#define __CPU_PRED_BI_MODE_PRED_HH__
+#include "base/sat_counter.hh"
#include "cpu/pred/bpred_unit.hh"
-#include "cpu/pred/sat_counter.hh"
#include "params/BiModeBP.hh"
/**
diff --git a/src/cpu/pred/sat_counter.hh b/src/cpu/pred/sat_counter.hh
deleted file mode 100644
index 513419a05..000000000
--- a/src/cpu/pred/sat_counter.hh
+++ /dev/null
@@ -1,130 +0,0 @@
-/*
- * Copyright (c) 2019 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.
- *
- * Authors: Kevin Lim
- * Daniel Carvalho
- */
-
-#ifndef __CPU_PRED_SAT_COUNTER_HH__
-#define __CPU_PRED_SAT_COUNTER_HH__
-
-#include <cstdint>
-
-#include "base/logging.hh"
-#include "base/types.hh"
-
-/**
- * Implements an n bit saturating counter and provides methods to
- * increment, decrement, and read it.
- */
-class SatCounter
-{
- public:
- /**
- * 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.
- */
- explicit SatCounter(unsigned bits, uint8_t initial_val = 0)
- : initialVal(initial_val), maxVal((1 << bits) - 1),
- counter(initial_val)
- {
- fatal_if(bits > 8*sizeof(uint8_t),
- "Number of bits exceeds counter size");
- fatal_if(initial_val > maxVal,
- "Saturating counter's Initial value exceeds max value.");
- }
-
- /** Pre-increment operator. */
- SatCounter&
- operator++()
- {
- if (counter < maxVal) {
- ++counter;
- }
- return *this;
- }
-
- /** Post-increment operator. */
- SatCounter
- operator++(int)
- {
- SatCounter old_counter = *this;
- ++*this;
- return old_counter;
- }
-
- /** Pre-decrement operator. */
- SatCounter&
- operator--()
- {
- if (counter > 0) {
- --counter;
- }
- return *this;
- }
-
- /** Post-decrement operator. */
- SatCounter
- operator--(int)
- {
- SatCounter old_counter = *this;
- --*this;
- return old_counter;
- }
-
- /**
- * Read the counter's value.
- */
- operator uint8_t() const { return counter; }
-
- /** Reset the counter to its initial value. */
- void reset() { counter = initialVal; }
-
- private:
- uint8_t initialVal;
- uint8_t maxVal;
- uint8_t counter;
-};
-
-#endif // __CPU_PRED_SAT_COUNTER_HH__
diff --git a/src/cpu/pred/tournament.hh b/src/cpu/pred/tournament.hh
index 7b16e7224..76de16d7e 100644
--- a/src/cpu/pred/tournament.hh
+++ b/src/cpu/pred/tournament.hh
@@ -47,9 +47,9 @@
#include <vector>
+#include "base/sat_counter.hh"
#include "base/types.hh"
#include "cpu/pred/bpred_unit.hh"
-#include "cpu/pred/sat_counter.hh"
#include "params/TournamentBP.hh"
/**