48 #ifndef __CPU_PRED_TAGE_BASE 49 #define __CPU_PRED_TAGE_BASE 55 #include "params/TAGEBase.hh" 93 void init(
int original_length,
int compressed_length)
95 origLength = original_length;
96 compLength = compressed_length;
97 outpoint = original_length % compressed_length;
102 comp = (comp << 1) | h[0];
103 comp ^= h[origLength] << outpoint;
104 comp ^= (comp >> compLength);
105 comp &= (
ULL(1) << compLength) - 1;
155 : pathHist(0), ptGhist(0),
156 hitBank(0), hitBankIndex(0),
157 altBank(0), altBankIndex(0),
159 tagePred(false), altTaken(false),
160 condBranch(false), longestMatchPred(false),
161 pseudoNewAlloc(false), branchPC(0),
165 storage =
new int [sz * 5];
166 tableIndices = storage;
167 tableTags = storage + sz;
205 virtual int F(
int phist,
int size,
int bank)
const;
261 void updateGHist(uint8_t * &h,
bool dir, uint8_t * tab,
int &PT);
323 int nrand,
Addr corrTarget,
bool pred,
bool preAdjustAlloc =
false);
373 virtual void adjustAlloc(
bool & alloc,
bool taken,
bool pred_taken);
379 bool alloc,
bool taken,
BranchInfo* bi,
int nrand);
410 int8_t
getCtr(
int hitBank,
int hitBankIndex)
const;
502 #endif // __CPU_PRED_TAGE_BASE std::vector< bool > btablePrediction
virtual bool isHighConfidence(BranchInfo *bi) const
const unsigned tagTableUBits
virtual void handleAllocAndUReset(bool alloc, bool taken, BranchInfo *bi, int nrand)
Handles Allocation and U bits reset on an update.
virtual void calculateParameters()
Calculates the history lengths and some other paramters in derived classes.
std::vector< int > logTagTableSizes
bool isSpeculativeUpdateEnabled() const
virtual void extraAltCalc(BranchInfo *bi)
Extra steps for calculating altTaken For this base TAGE class it does nothing.
static void unsignedCtrUpdate(uint8_t &ctr, bool up, unsigned nbits)
Updates an unsigned counter based on up/down parameter.
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.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
unsigned getGHR(ThreadID tid, BranchInfo *bi) const
const unsigned pathHistBits
A vector of scalar stats.
void baseUpdate(Addr pc, bool taken, BranchInfo *bi)
Updates the bimodal predictor.
Stats::Scalar tageLongestMatchProviderCorrect
static void ctrUpdate(T &ctr, bool taken, int nbits)
Updates a direction counter based on the actual branch outcome.
virtual unsigned getUseAltIdx(BranchInfo *bi, Addr branch_pc)
Calculation of the index for useAltPredForNewlyAllocated On this base TAGE implementation it is alway...
virtual void resetUctr(uint8_t &u)
Algorithm for resetting a single U counter.
virtual uint16_t gtag(ThreadID tid, Addr pc, int bank) const
Computes the partial tag of a tagged table.
void regStats() override
Callback to set stat parameters.
Stats::Scalar tageBimodalProviderCorrect
Stats::Scalar tageAltMatchProviderWrong
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Stats::Scalar tageAltMatchProviderWouldHaveHit
virtual BranchInfo * makeBranchInfo()
Stats::Vector tageLongestMatchProvider
std::vector< bool > btableHysteresis
const unsigned nHistoryTables
const unsigned instShiftAmt
virtual int F(int phist, int size, int bank) const
Utility function to shuffle the path history depending on which tagged table we are accessing...
const int64_t initialTCounterValue
virtual void squash(ThreadID tid, bool taken, BranchInfo *bi, Addr target)
Restores speculatively updated path and direction histories.
void update(ThreadID tid, Addr branch_pc, bool taken, BranchInfo *bi)
Update TAGE.
virtual int gindex(ThreadID tid, Addr pc, int bank) const
Computes the index used to access a partially tagged table.
Stats::Scalar bimodalAltMatchProviderWrong
Stats::Scalar bimodalAltMatchProviderCorrect
const unsigned histBufferSize
const bool speculativeHistUpdate
virtual bool getBimodePred(Addr pc, BranchInfo *bi) const
Get a branch prediction from the bimodal predictor.
virtual void adjustAlloc(bool &alloc, bool taken, bool pred_taken)
Extra calculation to tell whether TAGE allocaitons may happen or not on an update For this base TAGE ...
Stats::Scalar tageLongestMatchProviderWouldHaveHit
int getPathHist(ThreadID tid) const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Stats::Scalar tageBimodalProviderWrong
void updateGHist(uint8_t *&h, bool dir, uint8_t *tab, int &PT)
(Speculatively) updates the global branch history.
#define ULL(N)
uint64_t constant
void init(int original_length, int compressed_length)
bool tagePredict(ThreadID tid, Addr branch_pc, bool cond_branch, BranchInfo *bi)
TAGE prediction called from TAGE::predict.
BranchInfo(const TAGEBase &tage)
void btbUpdate(ThreadID tid, Addr branch_addr, BranchInfo *&bi)
std::vector< bool > noSkip
const unsigned logRatioBiModalHystEntries
int16_t ThreadID
Thread index/ID type.
virtual void buildTageTables()
Instantiates the TAGE table entries.
unsigned getTageCtrBits() const
std::vector< ThreadHistory > threadHistory
Stats::Scalar tageAltMatchProviderCorrect
virtual int bindex(Addr pc_in) const
Computes the index used to access the bimodal table.
Stats::Vector tageAltMatchProvider
TAGEBase(const TAGEBaseParams *p)
std::vector< int8_t > useAltPredForNewlyAllocated
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
virtual void handleTAGEUpdate(Addr branch_pc, bool taken, BranchInfo *bi)
Handles the update of the TAGE entries.
std::vector< unsigned > tagTableTagWidths
Stats::Scalar tageLongestMatchProviderWrong
FoldedHistory * computeIndices
virtual void calculateIndicesAndTags(ThreadID tid, Addr branch_pc, BranchInfo *bi)
On a prediction, calculates the TAGE indices and tags for all the different history lengths...
virtual void initFoldedHistories(ThreadHistory &history)
Initialization of the folded histories.
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).
Abstract superclass for simulation objects.
int8_t getCtr(int hitBank, int hitBankIndex) const
const unsigned tagTableCounterBits
virtual void handleUReset()
Handles the U bits reset.
size_t getSizeInBits() const