Go to the documentation of this file.
41 namespace branch_prediction
46 globalHistoryReg(params.numThreads, 0),
47 globalHistoryBits(
ceilLog2(params.globalPredictorSize)),
48 choicePredictorSize(params.choicePredictorSize),
49 choiceCtrBits(params.choiceCtrBits),
50 globalPredictorSize(params.globalPredictorSize),
51 globalCtrBits(params.globalCtrBits),
52 choiceCounters(choicePredictorSize,
SatCounter8(choiceCtrBits)),
53 takenCounters(globalPredictorSize,
SatCounter8(globalCtrBits)),
54 notTakenCounters(globalPredictorSize,
SatCounter8(globalCtrBits))
57 fatal(
"Invalid choice predictor size.\n");
59 fatal(
"Invalid global history predictor size.\n");
84 bpHistory =
static_cast<void*
>(history);
109 unsigned choiceHistoryIdx = ((branchAddr >>
instShiftAmt)
111 unsigned globalHistoryIdx = (((branchAddr >>
instShiftAmt)
124 bool finalPrediction;
132 if (choicePrediction) {
133 finalPrediction = takenGHBPrediction;
135 finalPrediction = notTakenGHBPrediction;
139 bpHistory =
static_cast<void*
>(history);
142 return finalPrediction;
172 unsigned choiceHistoryIdx = ((branchAddr >>
instShiftAmt)
174 unsigned globalHistoryIdx = (((branchAddr >>
instShiftAmt)
#define fatal(...)
This implements a cprintf based fatal() function.
unsigned globalPredictorSize
unsigned globalHistoryBits
void uncondBranch(ThreadID tid, Addr pc, void *&bp_history)
unsigned choiceHistoryMask
unsigned globalHistoryReg
unsigned choicePredictorSize
static constexpr bool isPowerOf2(const T &n)
std::vector< SatCounter8 > takenCounters
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
BiModeBP(const BiModeBPParams ¶ms)
unsigned historyRegisterMask
unsigned globalHistoryMask
void btbUpdate(ThreadID tid, Addr branch_addr, void *&bp_history)
If a branch is not taken, because the BTB address is invalid or missing, this function sets the appro...
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
std::vector< SatCounter8 > notTakenCounters
const unsigned instShiftAmt
Number of bits to shift instructions by for predictor addresses.
static constexpr int ceilLog2(const T &n)
std::vector< unsigned > globalHistoryReg
void updateGlobalHistReg(ThreadID tid, bool taken)
bool lookup(ThreadID tid, Addr branch_addr, void *&bp_history)
Looks up a given PC in the BP to see if it is taken or not taken.
Basically a wrapper class to hold both the branch predictor and the BTB.
unsigned notTakenThreshold
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void update(ThreadID tid, Addr branch_addr, bool taken, void *bp_history, bool squashed, const StaticInstPtr &inst, Addr corrTarget)
Updates the BP with taken/not taken information.
void squash(ThreadID tid, void *bp_history)
int16_t ThreadID
Thread index/ID type.
std::vector< SatCounter8 > choiceCounters
Generated on Wed Jul 13 2022 10:39:16 for gem5 by doxygen 1.8.17