gem5  v20.1.0.0
tage_sc_l_8KB.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 Metempsy Technology Consulting
3  * All rights reserved.
4  *
5  * Copyright (c) 2006 INRIA (Institut National de Recherche en
6  * Informatique et en Automatique / French National Research Institute
7  * for Computer Science and Applied Mathematics)
8  *
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions are
13  * met: redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer;
15  * redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in the
17  * documentation and/or other materials provided with the distribution;
18  * neither the name of the copyright holders nor the names of its
19  * contributors may be used to endorse or promote products derived from
20  * this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  *
34  * Author: AndrĂ© Seznec, Pau Cabre, Javier Bueno
35  *
36  */
37 
38 /*
39  * 8KB TAGE-SC-L branch predictor (devised by Andre Seznec)
40  */
41 
42 #ifndef __CPU_PRED_TAGE_SC_L_8KB
43 #define __CPU_PRED_TAGE_SC_L_8KB
44 
45 #include "cpu/pred/tage_sc_l.hh"
46 #include "params/TAGE_SC_L_8KB.hh"
47 #include "params/TAGE_SC_L_8KB_StatisticalCorrector.hh"
48 #include "params/TAGE_SC_L_TAGE_8KB.hh"
49 
51 {
52  public:
53  TAGE_SC_L_TAGE_8KB(const TAGE_SC_L_TAGE_8KBParams *p) : TAGE_SC_L_TAGE(p)
54  {}
55 
56  void initFoldedHistories(ThreadHistory & history) override;
57  int gindex_ext(int index, int bank) const override;
58 
59  uint16_t gtag(ThreadID tid, Addr pc, int bank) const override;
60 
62  bool alloc, bool taken, TAGEBase::BranchInfo* bi, int nrand) override;
63 
64  void handleTAGEUpdate(
65  Addr branch_pc, bool taken, TAGEBase::BranchInfo* bi) override;
66 
67  void resetUctr(uint8_t & u) override;
68 };
69 
71 {
72  // global branch history GEHL
73  const unsigned gnb;
74  const unsigned logGnb;
78 
80  {
82  globalHist = 0;
83  }
84  int64_t globalHist; // global history
85  };
86 
88 
89  public:
91  TAGE_SC_L_8KB_StatisticalCorrectorParams *p);
92 
93  unsigned getIndBiasBank( Addr branch_pc, BranchInfo* bi, int hitBank,
94  int altBank) const override;
95 
96  int gPredictions( ThreadID tid, Addr branch_pc,
97  BranchInfo* bi, int & lsum, int64_t phist) override;
98 
99  int gIndexLogsSubstr(int nbr, int i) override;
100 
101  void scHistoryUpdate(
102  Addr branch_pc, const StaticInstPtr &inst, bool taken,
103  BranchInfo * tage_bi, Addr corrTarget) override;
104 
105  void gUpdates(ThreadID tid, Addr pc, bool taken, BranchInfo* bi,
106  int64_t phist) override;
107 };
108 
109 class TAGE_SC_L_8KB : public TAGE_SC_L
110 {
111  public:
112  TAGE_SC_L_8KB(const TAGE_SC_L_8KBParams *params);
113 };
114 
115 #endif // __CPU_PRED_TAGE_SC_L_8KB
116 
TAGE_SC_L_8KB_StatisticalCorrector::SC_8KB_ThreadHistory::SC_8KB_ThreadHistory
SC_8KB_ThreadHistory()
Definition: tage_sc_l_8KB.hh:81
TAGE_SC_L_8KB_StatisticalCorrector::SC_8KB_ThreadHistory
Definition: tage_sc_l_8KB.hh:79
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
TAGE_SC_L_8KB::TAGE_SC_L_8KB
TAGE_SC_L_8KB(const TAGE_SC_L_8KBParams *params)
Definition: tage_sc_l_8KB.cc:141
TAGE_SC_L_TAGE_8KB::gindex_ext
int gindex_ext(int index, int bank) const override
Definition: tage_sc_l_8KB.cc:164
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:227
TAGE_SC_L_8KB_StatisticalCorrector::logGnb
const unsigned logGnb
Definition: tage_sc_l_8KB.hh:74
TAGE_SC_L_TAGE
Definition: tage_sc_l.hh:52
TAGE_SC_L_TAGE_8KB
Definition: tage_sc_l_8KB.hh:50
TAGEBase::BranchInfo
Definition: tage_base.hh:120
TAGE_SC_L_8KB_StatisticalCorrector::scHistoryUpdate
void scHistoryUpdate(Addr branch_pc, const StaticInstPtr &inst, bool taken, BranchInfo *tage_bi, Addr corrTarget) override
Definition: tage_sc_l_8KB.cc:104
TAGE_SC_L_8KB_StatisticalCorrector
Definition: tage_sc_l_8KB.hh:70
std::vector< int >
TAGE_SC_L_8KB_StatisticalCorrector::wg
std::vector< int8_t > wg
Definition: tage_sc_l_8KB.hh:77
TAGE_SC_L_TAGE_8KB::TAGE_SC_L_TAGE_8KB
TAGE_SC_L_TAGE_8KB(const TAGE_SC_L_TAGE_8KBParams *p)
Definition: tage_sc_l_8KB.hh:53
TAGE_SC_L_8KB_StatisticalCorrector::ggehl
std::vector< int8_t > * ggehl
Definition: tage_sc_l_8KB.hh:76
StatisticalCorrector::SCThreadHistory
Definition: statistical_corrector.hh:69
TAGE_SC_L_8KB_StatisticalCorrector::SC_8KB_ThreadHistory::globalHist
int64_t globalHist
Definition: tage_sc_l_8KB.hh:84
TAGE_SC_L_8KB_StatisticalCorrector::gPredictions
int gPredictions(ThreadID tid, Addr branch_pc, BranchInfo *bi, int &lsum, int64_t phist) override
Definition: tage_sc_l_8KB.cc:75
PowerISA::bi
Bitfield< 20, 16 > bi
Definition: types.hh:63
TAGE_SC_L_8KB_StatisticalCorrector::gUpdates
void gUpdates(ThreadID tid, Addr pc, bool taken, BranchInfo *bi, int64_t phist) override
Definition: tage_sc_l_8KB.cc:124
TAGE_SC_L_TAGE_8KB::initFoldedHistories
void initFoldedHistories(ThreadHistory &history) override
Initialization of the folded histories.
Definition: tage_sc_l_8KB.cc:147
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
TAGE_SC_L_TAGE_8KB::gtag
uint16_t gtag(ThreadID tid, Addr pc, int bank) const override
Computes the partial tag of a tagged table.
Definition: tage_sc_l_8KB.cc:171
TAGE_SC_L_TAGE_8KB::handleAllocAndUReset
void handleAllocAndUReset(bool alloc, bool taken, TAGEBase::BranchInfo *bi, int nrand) override
Handles Allocation and U bits reset on an update.
Definition: tage_sc_l_8KB.cc:189
TAGE_SC_L
Definition: tage_sc_l.hh:148
TAGE_SC_L_8KB_StatisticalCorrector::TAGE_SC_L_8KB_StatisticalCorrector
TAGE_SC_L_8KB_StatisticalCorrector(TAGE_SC_L_8KB_StatisticalCorrectorParams *p)
Definition: tage_sc_l_8KB.cc:47
tage_sc_l.hh
TAGE_SC_L_8KB
Definition: tage_sc_l_8KB.hh:109
TAGE_SC_L_8KB_StatisticalCorrector::makeThreadHistory
SCThreadHistory * makeThreadHistory() override
Definition: tage_sc_l_8KB.cc:58
TAGE_SC_L_TAGE_8KB::handleTAGEUpdate
void handleTAGEUpdate(Addr branch_pc, bool taken, TAGEBase::BranchInfo *bi) override
Handles the update of the TAGE entries.
Definition: tage_sc_l_8KB.cc:258
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
TAGE_SC_L_8KB_StatisticalCorrector::gnb
const unsigned gnb
Definition: tage_sc_l_8KB.hh:73
SimObject::params
const Params * params() const
Definition: sim_object.hh:119
ArmISA::u
Bitfield< 22 > u
Definition: miscregs_types.hh:348
StatisticalCorrector::BranchInfo
Definition: statistical_corrector.hh:192
StatisticalCorrector
Definition: statistical_corrector.hh:52
TAGE_SC_L_8KB_StatisticalCorrector::gIndexLogsSubstr
int gIndexLogsSubstr(int nbr, int i) override
Definition: tage_sc_l_8KB.cc:98
RefCountingPtr< StaticInst >
TAGE_SC_L_8KB_StatisticalCorrector::gm
std::vector< int > gm
Definition: tage_sc_l_8KB.hh:75
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
TAGE_SC_L_TAGE_8KB::resetUctr
void resetUctr(uint8_t &u) override
Algorithm for resetting a single U counter.
Definition: tage_sc_l_8KB.cc:249
TAGE_SC_L_8KB_StatisticalCorrector::getIndBiasBank
unsigned getIndBiasBank(Addr branch_pc, BranchInfo *bi, int hitBank, int altBank) const override
Definition: tage_sc_l_8KB.cc:67

Generated on Wed Sep 30 2020 14:02:09 for gem5 by doxygen 1.8.17