gem5  v20.0.0.3
tage_base.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 The University of Wisconsin
3  *
4  * Copyright (c) 2006 INRIA (Institut National de Recherche en
5  * Informatique et en Automatique / French National Research Institute
6  * for Computer Science and Applied Mathematics)
7  *
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are
12  * met: redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer;
14  * redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution;
17  * neither the name of the copyright holders nor the names of its
18  * contributors may be used to endorse or promote products derived from
19  * this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 /* @file
35  * Implementation of a TAGE branch predictor. TAGE is a global-history based
36  * branch predictor. It features a PC-indexed bimodal predictor and N
37  * partially tagged tables, indexed with a hash of the PC and the global
38  * branch history. The different lengths of global branch history used to
39  * index the partially tagged tables grow geometrically. A small path history
40  * is also used in the hash.
41  *
42  * All TAGE tables are accessed in parallel, and the one using the longest
43  * history that matches provides the prediction (some exceptions apply).
44  * Entries are allocated in components using a longer history than the
45  * one that predicted when the prediction is incorrect.
46  */
47 
48 #ifndef __CPU_PRED_TAGE_BASE
49 #define __CPU_PRED_TAGE_BASE
50 
51 #include <vector>
52 
53 #include "base/statistics.hh"
54 #include "cpu/static_inst.hh"
55 #include "params/TAGEBase.hh"
56 #include "sim/sim_object.hh"
57 
58 class TAGEBase : public SimObject
59 {
60  public:
61  TAGEBase(const TAGEBaseParams *p);
62  void regStats() override;
63  void init() override;
64 
65  protected:
66  // Prediction Structures
67 
68  // Tage Entry
69  struct TageEntry
70  {
71  int8_t ctr;
72  uint16_t tag;
73  uint8_t u;
74  TageEntry() : ctr(0), tag(0), u(0) { }
75  };
76 
77  // Folded History Table - compressed history
78  // to mix with instruction PC to index partially
79  // tagged tables.
81  {
82  unsigned comp;
85  int outpoint;
87 
89  {
90  comp = 0;
91  }
92 
93  void init(int original_length, int compressed_length)
94  {
95  origLength = original_length;
96  compLength = compressed_length;
97  outpoint = original_length % compressed_length;
98  }
99 
100  void update(uint8_t * h)
101  {
102  comp = (comp << 1) | h[0];
103  comp ^= h[origLength] << outpoint;
104  comp ^= (comp >> compLength);
105  comp &= (ULL(1) << compLength) - 1;
106  }
107  };
108 
109  public:
110 
111  // provider type
112  enum {
118  };
119 
120  // Primary branch history entry
121  struct BranchInfo
122  {
123  int pathHist;
124  int ptGhist;
125  int hitBank;
127  int altBank;
130 
131  bool tagePred;
132  bool altTaken;
137 
138  // Pointer to dynamically allocated storage
139  // to save table indices and folded histories.
140  // To do one call to new instead of five.
141  int *storage;
142 
143  // Pointers to actual saved array within the dynamically
144  // allocated storage.
146  int *tableTags;
147  int *ci;
148  int *ct0;
149  int *ct1;
150 
151  // for stats purposes
152  unsigned provider;
153 
154  BranchInfo(const TAGEBase &tage)
155  : pathHist(0), ptGhist(0),
156  hitBank(0), hitBankIndex(0),
157  altBank(0), altBankIndex(0),
158  bimodalIndex(0),
159  tagePred(false), altTaken(false),
160  condBranch(false), longestMatchPred(false),
161  pseudoNewAlloc(false), branchPC(0),
162  provider(-1)
163  {
164  int sz = tage.nHistoryTables + 1;
165  storage = new int [sz * 5];
166  tableIndices = storage;
167  tableTags = storage + sz;
168  ci = tableTags + sz;
169  ct0 = ci + sz;
170  ct1 = ct0 + sz;
171  }
172 
173  virtual ~BranchInfo()
174  {
175  delete[] storage;
176  }
177  };
178 
179  virtual BranchInfo *makeBranchInfo();
180 
186  virtual int bindex(Addr pc_in) const;
187 
196  virtual int gindex(ThreadID tid, Addr pc, int bank) const;
197 
205  virtual int F(int phist, int size, int bank) const;
206 
214  virtual uint16_t gtag(ThreadID tid, Addr pc, int bank) const;
215 
223  template<typename T>
224  static void ctrUpdate(T & ctr, bool taken, int nbits);
225 
233  static void unsignedCtrUpdate(uint8_t & ctr, bool up, unsigned nbits);
234 
242  virtual bool getBimodePred(Addr pc, BranchInfo* bi) const;
243 
251  void baseUpdate(Addr pc, bool taken, BranchInfo* bi);
252 
261  void updateGHist(uint8_t * &h, bool dir, uint8_t * tab, int &PT);
262 
273  void update(ThreadID tid, Addr branch_pc, bool taken, BranchInfo* bi);
274 
287  virtual void updateHistories(
288  ThreadID tid, Addr branch_pc, bool taken, BranchInfo* b,
289  bool speculative,
291  Addr target = MaxAddr);
292 
306  virtual void squash(
307  ThreadID tid, bool taken, BranchInfo *bi, Addr target);
308 
321  virtual void condBranchUpdate(
322  ThreadID tid, Addr branch_pc, bool taken, BranchInfo* bi,
323  int nrand, Addr corrTarget, bool pred, bool preAdjustAlloc = false);
324 
333  bool tagePredict(
334  ThreadID tid, Addr branch_pc, bool cond_branch, BranchInfo* bi);
335 
342  virtual void updateStats(bool taken, BranchInfo* bi);
343 
347  virtual void buildTageTables();
348 
353  virtual void calculateParameters();
354 
359  virtual void calculateIndicesAndTags(
360  ThreadID tid, Addr branch_pc, BranchInfo* bi);
361 
366  virtual unsigned getUseAltIdx(BranchInfo* bi, Addr branch_pc);
367 
373  virtual void adjustAlloc(bool & alloc, bool taken, bool pred_taken);
374 
378  virtual void handleAllocAndUReset(
379  bool alloc, bool taken, BranchInfo* bi, int nrand);
380 
384  virtual void handleUReset();
385 
389  virtual void handleTAGEUpdate(
390  Addr branch_pc, bool taken, BranchInfo* bi);
391 
395  virtual void resetUctr(uint8_t & u);
396 
401  virtual void extraAltCalc(BranchInfo* bi);
402 
403  virtual bool isHighConfidence(BranchInfo* bi) const
404  {
405  return false;
406  }
407 
408  void btbUpdate(ThreadID tid, Addr branch_addr, BranchInfo* &bi);
409  unsigned getGHR(ThreadID tid, BranchInfo *bi) const;
410  int8_t getCtr(int hitBank, int hitBankIndex) const;
411  unsigned getTageCtrBits() const;
412  int getPathHist(ThreadID tid) const;
413  bool isSpeculativeUpdateEnabled() const;
414  size_t getSizeInBits() const;
415 
416  protected:
418  const unsigned nHistoryTables;
419  const unsigned tagTableCounterBits;
420  const unsigned tagTableUBits;
421  const unsigned histBufferSize;
422  const unsigned minHist;
423  const unsigned maxHist;
424  const unsigned pathHistBits;
425 
428 
432 
433  // Keep per-thread histories to
434  // support SMT.
435  struct ThreadHistory {
436  // Speculative path history
437  // (LSB of branch address)
438  int pathHist;
439 
440  // Speculative branch direction
441  // history (circular buffer)
442  // @TODO Convert to std::vector<bool>
443  uint8_t *globalHistory;
444 
445  // Pointer to most recent branch outcome
446  uint8_t* gHist;
447 
448  // Index to most recent branch outcome
449  int ptGhist;
450 
451  // Speculative folded histories.
453  FoldedHistory *computeTags[2];
454  };
455 
457 
461  virtual void initFoldedHistories(ThreadHistory & history);
462 
465  int *tableTags;
466 
468  int64_t tCounter;
469  uint64_t logUResetPeriod;
470  const int64_t initialTCounterValue;
471  unsigned numUseAltOnNa;
472  unsigned useAltOnNaBits;
473  unsigned maxNumAlloc;
474 
475  // Tells which tables are active
476  // (for the base TAGE implementation all are active)
477  // Some other classes use this for handling associativity
479 
481 
482  const unsigned instShiftAmt;
483 
485 
486  // stats
497 
500 };
501 
502 #endif // __CPU_PRED_TAGE_BASE
std::vector< bool > btablePrediction
Definition: tage_base.hh:429
virtual bool isHighConfidence(BranchInfo *bi) const
Definition: tage_base.hh:403
const unsigned tagTableUBits
Definition: tage_base.hh:420
virtual void handleAllocAndUReset(bool alloc, bool taken, BranchInfo *bi, int nrand)
Handles Allocation and U bits reset on an update.
Definition: tage_base.cc:436
virtual void calculateParameters()
Calculates the history lengths and some other paramters in derived classes.
Definition: tage_base.cc:166
std::vector< int > logTagTableSizes
Definition: tage_base.hh:427
const Addr MaxAddr
Definition: types.hh:164
unsigned useAltOnNaBits
Definition: tage_base.hh:472
bool isSpeculativeUpdateEnabled() const
Definition: tage_base.cc:798
virtual void extraAltCalc(BranchInfo *bi)
Extra steps for calculating altTaken For this base TAGE class it does nothing.
Definition: tage_base.cc:647
static void unsignedCtrUpdate(uint8_t &ctr, bool up, unsigned nbits)
Updates an unsigned counter based on up/down parameter.
Definition: tage_base.cc:271
virtual void updateStats(bool taken, BranchInfo *bi)
Update the stats.
Definition: tage_base.cc:654
virtual void condBranchUpdate(ThreadID tid, Addr branch_pc, bool taken, BranchInfo *bi, int nrand, Addr corrTarget, bool pred, bool preAdjustAlloc=false)
Update TAGE for conditional branches.
Definition: tage_base.cc:506
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: tage_base.cc:80
unsigned getGHR(ThreadID tid, BranchInfo *bi) const
Definition: tage_base.cc:701
const unsigned pathHistBits
Definition: tage_base.hh:424
A vector of scalar stats.
Definition: statistics.hh:2547
void baseUpdate(Addr pc, bool taken, BranchInfo *bi)
Updates the bimodal predictor.
Definition: tage_base.cc:294
Stats::Scalar tageLongestMatchProviderCorrect
Definition: tage_base.hh:487
static void ctrUpdate(T &ctr, bool taken, int nbits)
Updates a direction counter based on the actual branch outcome.
Definition: tage_base.cc:253
virtual unsigned getUseAltIdx(BranchInfo *bi, Addr branch_pc)
Calculation of the index for useAltPredForNewlyAllocated On this base TAGE implementation it is alway...
Definition: tage_base.cc:345
virtual void resetUctr(uint8_t &u)
Algorithm for resetting a single U counter.
Definition: tage_base.cc:500
uint64_t logUResetPeriod
Definition: tage_base.hh:469
TageEntry ** gtable
Definition: tage_base.hh:431
virtual uint16_t gtag(ThreadID tid, Addr pc, int bank) const
Computes the partial tag of a tagged table.
Definition: tage_base.cc:240
int * tableIndices
Definition: tage_base.hh:464
const unsigned maxHist
Definition: tage_base.hh:423
void regStats() override
Callback to set stat parameters.
Definition: tage_base.cc:716
Bitfield< 20, 16 > bi
Definition: types.hh:63
Stats::Scalar tageBimodalProviderCorrect
Definition: tage_base.hh:490
Stats::Scalar tageAltMatchProviderWrong
Definition: tage_base.hh:492
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
bool initialized
Definition: tage_base.hh:484
Stats::Scalar tageAltMatchProviderWouldHaveHit
Definition: tage_base.hh:495
virtual BranchInfo * makeBranchInfo()
Definition: tage_base.cc:75
Stats::Vector tageLongestMatchProvider
Definition: tage_base.hh:498
std::vector< bool > btableHysteresis
Definition: tage_base.hh:430
const unsigned nHistoryTables
Definition: tage_base.hh:418
const unsigned instShiftAmt
Definition: tage_base.hh:482
virtual int F(int phist, int size, int bank) const
Utility function to shuffle the path history depending on which tagged table we are accessing...
Definition: tage_base.cc:205
Bitfield< 7 > b
const int64_t initialTCounterValue
Definition: tage_base.hh:470
Bitfield< 4 > pc
unsigned numUseAltOnNa
Definition: tage_base.hh:471
virtual void squash(ThreadID tid, bool taken, BranchInfo *bi, Addr target)
Restores speculatively updated path and direction histories.
Definition: tage_base.cc:621
void update(ThreadID tid, Addr branch_pc, bool taken, BranchInfo *bi)
Update TAGE.
virtual int gindex(ThreadID tid, Addr pc, int bank) const
Computes the index used to access a partially tagged table.
Definition: tage_base.cc:222
Stats::Scalar bimodalAltMatchProviderWrong
Definition: tage_base.hh:493
Stats::Scalar bimodalAltMatchProviderCorrect
Definition: tage_base.hh:489
const unsigned histBufferSize
Definition: tage_base.hh:421
const unsigned minHist
Definition: tage_base.hh:422
const bool speculativeHistUpdate
Definition: tage_base.hh:480
virtual bool getBimodePred(Addr pc, BranchInfo *bi) const
Get a branch prediction from the bimodal predictor.
Definition: tage_base.cc:285
virtual void adjustAlloc(bool &alloc, bool taken, bool pred_taken)
Extra calculation to tell whether TAGE allocaitons may happen or not on an update For this base TAGE ...
Definition: tage_base.cc:430
Stats::Scalar tageLongestMatchProviderWouldHaveHit
Definition: tage_base.hh:496
int getPathHist(ThreadID tid) const
Definition: tage_base.cc:792
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Stats::Scalar tageBimodalProviderWrong
Definition: tage_base.hh:494
void updateGHist(uint8_t *&h, bool dir, uint8_t *tab, int &PT)
(Speculatively) updates the global branch history.
Definition: tage_base.cc:314
#define ULL(N)
uint64_t constant
Definition: types.hh:48
void init(int original_length, int compressed_length)
Definition: tage_base.hh:93
bool tagePredict(ThreadID tid, Addr branch_pc, bool cond_branch, BranchInfo *bi)
TAGE prediction called from TAGE::predict.
Definition: tage_base.cc:352
BranchInfo(const TAGEBase &tage)
Definition: tage_base.hh:154
void btbUpdate(ThreadID tid, Addr branch_addr, BranchInfo *&bi)
Definition: tage_base.cc:180
unsigned maxNumAlloc
Definition: tage_base.hh:473
std::vector< bool > noSkip
Definition: tage_base.hh:478
void update(uint8_t *h)
Definition: tage_base.hh:100
const unsigned logRatioBiModalHystEntries
Definition: tage_base.hh:417
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
Bitfield< 23 > up
Definition: types.hh:132
virtual void buildTageTables()
Instantiates the TAGE table entries.
Definition: tage_base.cc:158
unsigned getTageCtrBits() const
Definition: tage_base.cc:786
std::vector< ThreadHistory > threadHistory
Definition: tage_base.hh:456
int * tableTags
Definition: tage_base.hh:465
Stats::Scalar tageAltMatchProviderCorrect
Definition: tage_base.hh:488
virtual int bindex(Addr pc_in) const
Computes the index used to access the bimodal table.
Definition: tage_base.cc:199
int64_t tCounter
Definition: tage_base.hh:468
Stats::Vector tageAltMatchProvider
Definition: tage_base.hh:499
TAGEBase(const TAGEBaseParams *p)
Definition: tage_base.cc:45
std::vector< int8_t > useAltPredForNewlyAllocated
Definition: tage_base.hh:467
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition: static_inst.hh:225
virtual void handleTAGEUpdate(Addr branch_pc, bool taken, BranchInfo *bi)
Handles the update of the TAGE entries.
Definition: tage_base.cc:547
std::vector< unsigned > tagTableTagWidths
Definition: tage_base.hh:426
Stats::Scalar tageLongestMatchProviderWrong
Definition: tage_base.hh:491
FoldedHistory * computeIndices
Definition: tage_base.hh:452
virtual void calculateIndicesAndTags(ThreadID tid, Addr branch_pc, BranchInfo *bi)
On a prediction, calculates the TAGE indices and tags for all the different history lengths...
Definition: tage_base.cc:332
int * histLengths
Definition: tage_base.hh:463
virtual void initFoldedHistories(ThreadHistory &history)
Initialization of the folded histories.
Definition: tage_base.cc:143
Bitfield< 0 > p
virtual void updateHistories(ThreadID tid, Addr branch_pc, bool taken, BranchInfo *b, bool speculative, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr, Addr target=MaxAddr)
(Speculatively) updates global histories (path and direction).
Definition: tage_base.cc:580
virtual ~BranchInfo()
Definition: tage_base.hh:173
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
int8_t getCtr(int hitBank, int hitBankIndex) const
Definition: tage_base.cc:780
const unsigned tagTableCounterBits
Definition: tage_base.hh:419
virtual void handleUReset()
Handles the U bits reset.
Definition: tage_base.cc:485
size_t getSizeInBits() const
Definition: tage_base.cc:804

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