Go to the documentation of this file.
49 namespace branch_prediction
54 localPredictorSize(params.localPredictorSize),
55 localCtrBits(params.localCtrBits),
56 localCtrs(localPredictorSize,
SatCounter8(localCtrBits)),
57 localHistoryTableSize(params.localHistoryTableSize),
58 localHistoryBits(
ceilLog2(params.localPredictorSize)),
59 globalPredictorSize(params.globalPredictorSize),
60 globalCtrBits(params.globalCtrBits),
61 globalCtrs(globalPredictorSize,
SatCounter8(globalCtrBits)),
62 globalHistory(params.numThreads, 0),
64 ceilLog2(params.globalPredictorSize) >
65 ceilLog2(params.choicePredictorSize) ?
66 ceilLog2(params.globalPredictorSize) :
67 ceilLog2(params.choicePredictorSize)),
68 choicePredictorSize(params.choicePredictorSize),
69 choiceCtrBits(params.choiceCtrBits),
70 choiceCtrs(choicePredictorSize,
SatCounter8(choiceCtrBits))
73 fatal(
"Invalid local predictor size!\n");
77 fatal(
"Invalid global predictor size!\n");
83 fatal(
"Invalid local history table size!\n");
97 fatal(
"Invalid choice predictor size!\n");
109 fatal(
"Global predictor too large for global history bits!\n");
112 fatal(
"Choice predictor too large for global history bits!\n");
117 inform(
"More global history bits than required by predictors\n");
182 bool local_prediction;
183 unsigned local_history_idx;
184 unsigned local_predictor_idx;
186 bool global_prediction;
187 bool choice_prediction;
211 bp_history = (
void *)history;
217 if (choice_prediction) {
218 if (global_prediction) {
228 if (local_prediction) {
251 bp_history =
static_cast<void *
>(history);
258 void *bp_history,
bool squashed,
282 if (old_local_pred_valid) {
298 old_local_pred_valid)
303 unsigned choice_predictor_idx =
317 unsigned global_predictor_idx =
321 if (old_local_pred_valid) {
326 if (old_local_pred_valid) {
354 TournamentBP::BPHistory::newCount = 0;
void squash(ThreadID tid, void *bp_history)
Restores the global branch history on a squash.
The branch history information that is created upon predicting a branch.
#define fatal(...)
This implements a cprintf based fatal() function.
static const int invalidPredictorIndex
Flag for invalid predictor index.
void updateLocalHistTaken(unsigned local_history_idx)
Updates local histories as taken.
unsigned localPredictorMask
Mask to truncate values stored in the local history table.
void uncondBranch(ThreadID tid, Addr pc, void *&bp_history)
Records that there was an unconditional branch, and modifies the bp history to point to an object tha...
unsigned localPredictorSize
Number of counters in the local predictor.
std::vector< SatCounter8 > choiceCtrs
Array of counters that make up the choice predictor.
void btbUpdate(ThreadID tid, Addr branch_addr, void *&bp_history)
Updates the branch predictor to Not Taken if a BTB entry is invalid or not found.
unsigned calcLocHistIdx(Addr &branch_addr)
Returns the local history index, given a branch address.
static constexpr bool isPowerOf2(const T &n)
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
unsigned choiceHistoryMask
Mask to apply to globalHistory to access choice history table.
void updateGlobalHistNotTaken(ThreadID tid)
Updates global history as not taken.
void update(ThreadID tid, Addr branch_addr, bool taken, void *bp_history, bool squashed, const StaticInstPtr &inst, Addr corrTarget)
Updates the branch predictor with the actual result of a branch.
std::vector< SatCounter8 > globalCtrs
Array of counters that make up the global predictor.
unsigned localThreshold
Thresholds for the counter value; above the threshold is taken, equal to or below the threshold is no...
TournamentBP(const TournamentBPParams ¶ms)
Default branch predictor constructor.
unsigned historyRegisterMask
Mask to control how much history is stored.
void updateGlobalHistTaken(ThreadID tid)
Updates global history as taken.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
std::vector< SatCounter8 > localCtrs
Local counters.
unsigned globalHistoryMask
Mask to apply to globalHistory to access global history table.
unsigned localHistoryBits
Number of bits for each entry of the local history table.
void updateLocalHistNotTaken(unsigned local_history_idx)
Updates local histories as not taken.
unsigned choiceCtrBits
Number of bits in the choice predictor's counters.
const unsigned instShiftAmt
Number of bits to shift instructions by for predictor addresses.
bool lookup(ThreadID tid, Addr branch_addr, void *&bp_history)
Looks up the given address in the branch predictor and returns a true/false value as to whether it is...
static constexpr int ceilLog2(const T &n)
unsigned choicePredictorSize
Number of entries in the choice predictor.
unsigned globalCtrBits
Number of bits of the global predictor's counters.
unsigned localHistoryTableSize
Number of entries in the local history table.
unsigned globalHistoryBits
Number of bits for the global history.
Basically a wrapper class to hold both the branch predictor and the BTB.
std::vector< unsigned > localHistoryTable
Array of local history table entries.
unsigned globalPredictorSize
Number of entries in the global predictor.
std::vector< unsigned > globalHistory
Global history register.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
unsigned localCtrBits
Number of bits of the local predictor's counters.
int16_t ThreadID
Thread index/ID type.
Generated on Tue Sep 7 2021 14:53:45 for gem5 by doxygen 1.8.17