33#include "debug/Fetch.hh"
38namespace 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(inst_pc, tid);
125 && inst_tag ==
btb[btb_idx].tag
126 &&
btb[btb_idx].tid == tid) {
127 return btb[btb_idx].target.get();
136 unsigned btb_idx =
getIndex(inst_pc, tid);
140 btb[btb_idx].tid = tid;
141 btb[btb_idx].valid =
true;
142 set(
btb[btb_idx].target, target);
bool valid(Addr instPC, ThreadID tid)
Checks if a branch is in the BTB.
Addr getTag(Addr instPC)
Returns the tag bits of a given address.
std::vector< BTBEntry > btb
The actual BTB.
unsigned tagBits
The number of tag bits per entry.
unsigned instShiftAmt
Number of bits to shift PC when calculating index.
void update(Addr inst_pc, const PCStateBase &target_pc, ThreadID tid)
Updates the BTB with the target of a branch.
unsigned log2NumThreads
Log2 NumThreads used for hashing threadid.
unsigned idxMask
The index mask.
unsigned tagShiftAmt
Number of bits to shift PC when calculating tag.
const PCStateBase * lookup(Addr instPC, ThreadID tid)
Looks up an address in the BTB.
unsigned numEntries
The number of entries in the BTB.
unsigned getIndex(Addr instPC, ThreadID tid)
Returns the index into the BTB, based on the branch's PC.
unsigned tagMask
The tag mask.
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...
static constexpr std::enable_if_t< std::is_integral_v< T >, int > floorLog2(T x)
static constexpr bool isPowerOf2(const T &n)
#define fatal(...)
This implements a cprintf based fatal() function.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
int16_t ThreadID
Thread index/ID type.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.