Go to the documentation of this file.
33 #include "debug/Fetch.hh"
38 namespace branch_prediction
43 unsigned _instShiftAmt,
44 unsigned _num_threads)
45 : numEntries(_numEntries),
47 instShiftAmt(_instShiftAmt),
50 DPRINTF(Fetch,
"BTB: Creating BTB object.\n");
53 fatal(
"BTB entries is not a power of 2!");
97 unsigned btb_idx =
getIndex(instPC, tid);
104 && inst_tag ==
btb[btb_idx].tag
105 &&
btb[btb_idx].tid == tid) {
118 unsigned btb_idx =
getIndex(instPC, tid);
125 && inst_tag ==
btb[btb_idx].tag
126 &&
btb[btb_idx].tid == tid) {
127 return btb[btb_idx].target;
136 unsigned btb_idx =
getIndex(instPC, tid);
140 btb[btb_idx].tid = tid;
141 btb[btb_idx].valid =
true;
142 btb[btb_idx].target = target;
#define fatal(...)
This implements a cprintf based fatal() function.
unsigned tagBits
The number of tag bits per entry.
unsigned tagMask
The tag mask.
unsigned instShiftAmt
Number of bits to shift PC when calculating index.
static constexpr bool isPowerOf2(const T &n)
void update(Addr instPC, const TheISA::PCState &targetPC, ThreadID tid)
Updates the BTB with the target of a branch.
DefaultBTB(unsigned numEntries, unsigned tagBits, unsigned instShiftAmt, unsigned numThreads)
Creates a BTB with the given number of entries, number of bits per tag, and instruction offset amount...
GenericISA::DelaySlotPCState< 4 > PCState
unsigned log2NumThreads
Log2 NumThreads used for hashing threadid.
TheISA::PCState lookup(Addr instPC, ThreadID tid)
Looks up an address in the BTB.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Addr getTag(Addr instPC)
Returns the tag bits of a given address.
unsigned getIndex(Addr instPC, ThreadID tid)
Returns the index into the BTB, based on the branch's PC.
static constexpr std::enable_if_t< std::is_integral< T >::value, int > floorLog2(T x)
unsigned numEntries
The number of entries in the BTB.
std::vector< BTBEntry > btb
The actual BTB.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
unsigned tagShiftAmt
Number of bits to shift PC when calculating tag.
bool valid(Addr instPC, ThreadID tid)
Checks if a branch is in the BTB.
int16_t ThreadID
Thread index/ID type.
unsigned idxMask
The index mask.
Generated on Tue Sep 7 2021 14:53:44 for gem5 by doxygen 1.8.17