49namespace 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) {
354TournamentBP::BPHistory::newCount = 0;
Basically a wrapper class to hold both the branch predictor and the BTB.
const unsigned instShiftAmt
Number of bits to shift instructions by for predictor addresses.
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 globalHistoryMask
Mask to apply to globalHistory to access global history table.
std::vector< SatCounter8 > choiceCtrs
Array of counters that make up the choice predictor.
unsigned globalHistoryBits
Number of bits for the global history.
TournamentBP(const TournamentBPParams ¶ms)
Default branch predictor constructor.
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...
void updateGlobalHistTaken(ThreadID tid)
Updates global history as taken.
unsigned globalPredictorSize
Number of entries in the global predictor.
std::vector< SatCounter8 > localCtrs
Local counters.
unsigned localPredictorMask
Mask to truncate values stored in the local history table.
void squash(ThreadID tid, void *bp_history)
Restores the global branch history on a squash.
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.
unsigned historyRegisterMask
Mask to control how much history is stored.
void updateLocalHistNotTaken(unsigned local_history_idx)
Updates local histories as not taken.
static const int invalidPredictorIndex
Flag for invalid predictor index.
unsigned localHistoryBits
Number of bits for each entry of the local history table.
std::vector< unsigned > localHistoryTable
Array of local history table entries.
unsigned localCtrBits
Number of bits of the local predictor's counters.
unsigned localThreshold
Thresholds for the counter value; above the threshold is taken, equal to or below the threshold is no...
unsigned choiceHistoryMask
Mask to apply to globalHistory to access choice history table.
std::vector< SatCounter8 > globalCtrs
Array of counters that make up the global predictor.
unsigned localPredictorSize
Number of counters in the local predictor.
unsigned calcLocHistIdx(Addr &branch_addr)
Returns the local history index, given a branch address.
void updateGlobalHistNotTaken(ThreadID tid)
Updates global history as not taken.
std::vector< unsigned > globalHistory
Global history register.
unsigned globalCtrBits
Number of bits of the global predictor's counters.
unsigned choiceCtrBits
Number of bits in the choice predictor's counters.
void updateLocalHistTaken(unsigned local_history_idx)
Updates local histories as taken.
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 localHistoryTableSize
Number of entries in the local history table.
unsigned choicePredictorSize
Number of entries in the choice predictor.
static constexpr int ceilLog2(const T &n)
static constexpr bool isPowerOf2(const T &n)
#define fatal(...)
This implements a cprintf based fatal() function.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
int16_t ThreadID
Thread index/ID type.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
The branch history information that is created upon predicting a branch.