29#ifndef __CPU_PRED_BTB_HH__
30#define __CPU_PRED_BTB_HH__
39namespace branch_prediction
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
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.
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.
ThreadID tid
The entry's thread id.
bool valid
Whether or not the entry is valid.
std::unique_ptr< PCStateBase > target
The entry's target.