43 #ifndef __CPU_PRED_TAGE_SC_L 44 #define __CPU_PRED_TAGE_SC_L 48 #include "params/TAGE_SC_L.hh" 49 #include "params/TAGE_SC_L_LoopPredictor.hh" 50 #include "params/TAGE_SC_L_TAGE.hh" 71 lowConf(false), highConf(false), altConf(false), medConf(false)
81 firstLongTagTable(p->firstLongTagTable),
82 longTagsSize(p->longTagsSize),
83 shortTagsSize(p->shortTagsSize),
84 logTagTableSize(p->logTagTableSize),
85 shortTagsTageFactor(p->shortTagsTageFactor),
86 longTagsTageFactor(p->longTagsTageFactor),
87 truncatePathHist(p->truncatePathHist)
102 Addr target)
override;
107 int F(
int phist,
int size,
int bank)
const override;
112 Addr target)
override;
118 void adjustAlloc(
bool & alloc,
bool taken,
bool pred_taken)
override;
144 virtual bool calcConf(
int index)
const override;
145 virtual bool optionalAgeInc()
const override;
155 ThreadID tid,
Addr branch_pc,
bool cond_branch,
void* &
b)
override;
182 SC = LAST_LTAGE_PROVIDER_TYPE + 1
187 #endif // __CPU_PRED_TAGE_SC_L void updatePathAndGlobalHistory(ThreadHistory &tHist, int brtype, bool taken, Addr branch_pc, Addr target)
const unsigned shortTagsTageFactor
BranchInfo(TAGEBase &tage)
TAGE_SC_L_LoopPredictor(TAGE_SC_L_LoopPredictorParams *p)
StatisticalCorrector::BranchInfo * scBranchInfo
TAGE_SC_L_TAGE(const TAGE_SC_L_TAGEParams *p)
virtual void handleAllocAndUReset(bool alloc, bool taken, TAGEBase::BranchInfo *bi, int nrand) override=0
Handles Allocation and U bits reset on an update.
void buildTageTables() override
Instantiates the TAGE table entries.
void squash(ThreadID tid, bool taken, TAGEBase::BranchInfo *bi, Addr target) override
Restores speculatively updated path and direction histories.
const bool truncatePathHist
int calcDep(TAGEBase::BranchInfo *bi)
const unsigned logTagTableSize
void regStats() override
Callback to set stat parameters.
StatisticalCorrector * statisticalCorrector
bool getBimodePred(Addr branch_pc, TAGEBase::BranchInfo *tage_bi) const override
Get a branch prediction from the bimodal predictor.
int bindex(Addr pc_in) const override
Computes the index used to access the bimodal table.
void calculateParameters() override
Calculates the history lengths and some other paramters in derived classes.
int gindex(ThreadID tid, Addr pc, int bank) const override
Computes the index used to access a partially tagged table.
void update(ThreadID tid, Addr branch_pc, bool taken, BranchInfo *bi)
Update TAGE.
int F(int phist, int size, int bank) const override
Utility function to shuffle the path history depending on which tagged table we are accessing...
virtual int gindex_ext(int index, int bank) const =0
void calculateIndicesAndTags(ThreadID tid, Addr branch_pc, TAGEBase::BranchInfo *bi) override
On a prediction, calculates the TAGE indices and tags for all the different history lengths...
void handleUReset() override
Handles the U bits reset.
const Params * params() const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
const unsigned longTagsSize
void updateHistories(ThreadID tid, Addr branch_pc, bool taken, TAGEBase::BranchInfo *b, bool speculative, const StaticInstPtr &inst, Addr target) override
(Speculatively) updates global histories (path and direction).
int16_t ThreadID
Thread index/ID type.
virtual uint16_t gtag(ThreadID tid, Addr pc, int bank) const override=0
Computes the partial tag of a tagged table.
virtual TAGEBase::BranchInfo * makeBranchInfo() override
unsigned getUseAltIdx(TAGEBase::BranchInfo *bi, Addr branch_pc) override
Calculation of the index for useAltPredForNewlyAllocated On this base TAGE implementation it is alway...
virtual void handleTAGEUpdate(Addr branch_pc, bool taken, TAGEBase::BranchInfo *bi) override=0
Handles the update of the TAGE entries.
void extraAltCalc(TAGEBase::BranchInfo *bi) override
Extra steps for calculating altTaken For this base TAGE class it does nothing.
void adjustAlloc(bool &alloc, bool taken, bool pred_taken) override
Extra calculation to tell whether TAGE allocaitons may happen or not on an update For this base TAGE ...
TageSCLBranchInfo(TAGEBase &tage, StatisticalCorrector &sc, LoopPredictor &lp)
const unsigned longTagsTageFactor
const unsigned firstLongTagTable
const unsigned shortTagsSize
virtual ~TageSCLBranchInfo()