42 #include "debug/Fetch.hh" 43 #include "debug/Tage.hh" 47 logRatioBiModalHystEntries(p->logRatioBiModalHystEntries),
48 nHistoryTables(p->nHistoryTables),
49 tagTableCounterBits(p->tagTableCounterBits),
50 tagTableUBits(p->tagTableUBits),
51 histBufferSize(p->histBufferSize),
54 pathHistBits(p->pathHistBits),
55 tagTableTagWidths(p->tagTableTagWidths),
56 logTagTableSizes(p->logTagTableSizes),
57 threadHistory(p->numThreads),
58 logUResetPeriod(p->logUResetPeriod),
59 initialTCounterValue(p->initialTCounterValue),
60 numUseAltOnNa(p->numUseAltOnNa),
61 useAltOnNaBits(p->useAltOnNaBits),
62 maxNumAlloc(p->maxNumAlloc),
64 speculativeHistUpdate(p->speculativeHistUpdate),
65 instShiftAmt(p->instShiftAmt),
103 history.pathHist = 0;
105 history.gHist = history.globalHistory;
121 for (
auto& history : threadHistory) {
152 DPRINTF(Tage,
"HistLength:%d, TTSize:%d, TTTWidth:%d\n",
184 DPRINTF(Tage,
"BTB miss resets prediction: %lx\n", branch_pc);
209 A = A & ((
ULL(1) << size) - 1);
255 assert(nbits <=
sizeof(T) << 3);
257 if (ctr < ((1 << (nbits - 1)) - 1))
260 if (ctr > -(1 << (nbits - 1)))
273 assert(nbits <=
sizeof(uint8_t) << 3);
275 if (ctr < ((1 << nbits) - 1))
301 }
else if (inter > 0) {
304 const bool pred = inter >> 1;
305 const bool hyst = inter & 1;
308 DPRINTF(Tage,
"Updating branch %lx, pred:%d, hyst:%d\n", pc, pred, hyst);
317 DPRINTF(Tage,
"Rolling over the histories\n");
328 h[0] = (dir) ? 1 : 0;
356 bool pred_taken =
true;
421 DPRINTF(Tage,
"Predict for %lx: taken?:%d, tagePred:%d, altPred:%d\n",
466 unsigned numAllocated = 0;
513 if (preAdjustAlloc) {
523 if (PseudoNewAlloc) {
537 if (!preAdjustAlloc) {
550 DPRINTF(Tage,
"Updating tag table entry (%d,%d) for branch %lx\n",
560 DPRINTF(Tage,
"Updating tag table entry (%d,%d) for" 613 DPRINTF(Tage,
"Updating global histories with branch:%lx; taken?:%d, " 614 "path Hist: %x; pointer:%d\n", branch_pc, taken, tHist.
pathHist,
630 DPRINTF(Tage,
"Restoring branch info: %lx; taken? %d; PathHistory:%x, " 635 tHist.
gHist[0] = (taken ? 1 : 0);
704 for (
unsigned i = 0;
i < 32;
i++) {
709 val |= ((
threadHistory[tid].globalHistory[gh_offset] & 0x1) <<
i);
719 .
name(
name() +
".tageLongestMatchProviderCorrect")
720 .
desc(
"Number of times TAGE Longest Match is the provider and " 721 "the prediction is correct");
724 .
name(
name() +
".tageAltMatchProviderCorrect")
725 .
desc(
"Number of times TAGE Alt Match is the provider and " 726 "the prediction is correct");
729 .
name(
name() +
".bimodalAltMatchProviderCorrect")
730 .
desc(
"Number of times TAGE Alt Match is the bimodal and it is the " 731 "provider and the prediction is correct");
734 .
name(
name() +
".tageBimodalProviderCorrect")
735 .
desc(
"Number of times there are no hits on the TAGE tables " 736 "and the bimodal prediction is correct");
739 .
name(
name() +
".tageLongestMatchProviderWrong")
740 .
desc(
"Number of times TAGE Longest Match is the provider and " 741 "the prediction is wrong");
744 .
name(
name() +
".tageAltMatchProviderWrong")
745 .
desc(
"Number of times TAGE Alt Match is the provider and " 746 "the prediction is wrong");
749 .
name(
name() +
".bimodalAltMatchProviderWrong")
750 .
desc(
"Number of times TAGE Alt Match is the bimodal and it is the " 751 "provider and the prediction is wrong");
754 .
name(
name() +
".tageBimodalProviderWrong")
755 .
desc(
"Number of times there are no hits on the TAGE tables " 756 "and the bimodal prediction is wrong");
759 .
name(
name() +
".tageAltMatchProviderWouldHaveHit")
760 .
desc(
"Number of times TAGE Longest Match is the provider, " 761 "the prediction is wrong and Alt Match prediction was correct");
764 .
name(
name() +
".tageLongestMatchProviderWouldHaveHit")
765 .
desc(
"Number of times TAGE Alt Match is the provider, the " 766 "prediction is wrong and Longest Match prediction was correct");
770 .
name(
name() +
".tageLongestMatchProvider")
771 .
desc(
"TAGE provider for longest match");
775 .
name(
name() +
".tageAltMatchProvider")
776 .
desc(
"TAGE provider for alt match");
782 return gtable[hitBank][hitBankIndex].
ctr;
812 bits += bimodalTableSize;
821 TAGEBaseParams::create()
std::vector< bool > btablePrediction
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
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
FoldedHistory * computeTags[2]
Derived & init(size_type size)
Set this vector to have the given size.
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.
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.
void btbUpdate(ThreadID tid, Addr branch_addr, BranchInfo *&bi)
std::vector< bool > noSkip
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
const unsigned logRatioBiModalHystEntries
int16_t ThreadID
Thread index/ID type.
virtual const std::string name() const
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.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
Stats::Vector tageAltMatchProvider
TAGEBase(const TAGEBaseParams *p)
std::vector< int8_t > useAltPredForNewlyAllocated
virtual void handleTAGEUpdate(Addr branch_pc, bool taken, BranchInfo *bi)
Handles the update of the TAGE entries.
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
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