44 #include "debug/Fetch.hh" 45 #include "debug/LTage.hh" 48 :
TAGE(params), loopPredictor(params->loop_predictor)
73 bi->tageBranchInfo->provider =
LOOP;
75 DPRINTF(LTage,
"Predict for %lx: taken?:%d, loopTaken?:%d, " 76 "loopValid?:%d, loopUseCounter:%d, tagePred:%d, altPred:%d\n",
80 bi->tageBranchInfo->tagePred, bi->tageBranchInfo->altTaken);
102 tage->
squash(tid, taken, bi->tageBranchInfo, corrTarget);
104 if (bi->tageBranchInfo->condBranch) {
112 if (bi->tageBranchInfo->condBranch) {
113 DPRINTF(LTage,
"Updating tables for branch:%lx; taken?:%d\n",
137 if (bi->tageBranchInfo->condBranch) {
151 LTAGEParams::create()
153 return new LTAGE(
this);
LoopPredictor::BranchInfo * lpBranchInfo
void squashLoop(BranchInfo *bi)
LTAGE(const LTAGEParams *params)
void squash(ThreadID tid, BranchInfo *bi)
void condBranchUpdate(ThreadID tid, Addr branch_pc, bool taken, bool tage_pred, BranchInfo *bi, unsigned instShiftAmt)
Update LTAGE for conditional branches.
bool isSpeculativeUpdateEnabled() const
virtual void updateStats(bool taken, BranchInfo *bi)
Update the stats.
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.
virtual void regStats() override
Registers statistics.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
std::enable_if< std::is_integral< T >::value, T >::type random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
virtual void squash(ThreadID tid, bool taken, BranchInfo *bi, Addr target)
Restores speculatively updated path and direction histories.
void squash(ThreadID tid, void *bp_history) override
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void regStats() override
Registers statistics.
bool tagePredict(ThreadID tid, Addr branch_pc, bool cond_branch, BranchInfo *bi)
TAGE prediction called from TAGE::predict.
int16_t ThreadID
Thread index/ID type.
virtual void squash(ThreadID tid, void *bp_history) override
bool predict(ThreadID tid, Addr branch_pc, bool cond_branch, void *&b) override
Get a branch prediction from LTAGE.
void update(ThreadID tid, Addr branch_addr, bool taken, void *bp_history, bool squashed, const StaticInstPtr &inst, Addr corrTarget=MaxAddr) override
Updates the BP with taken/not taken information.
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
const unsigned instShiftAmt
Number of bits to shift instructions by for predictor addresses.
LoopPredictor * loopPredictor
The loop predictor object.
int8_t getLoopUseCounter() const
Gets the value of the loop use counter.
bool loopPredict(ThreadID tid, Addr branch_pc, bool cond_branch, BranchInfo *bi, bool prev_pred_taken, unsigned instShiftAmt)
Get the loop prediction.
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).
void updateStats(bool taken, BranchInfo *bi)
Update the stats.