Go to the documentation of this file.
42 #ifndef __CPU_PRED_BPRED_UNIT_HH__
43 #define __CPU_PRED_BPRED_UNIT_HH__
54 #include "params/BranchPredictor.hh"
61 namespace branch_prediction
71 typedef BranchPredictorParams
Params;
180 void *bp_history,
bool squashed,
201 bool pred_taken,
void *bp_history,
202 void *indirect_history,
ThreadID _tid,
353 #endif // __CPU_PRED_BPRED_UNIT_HH__
This is a simple scalar statistic, like a counter.
void update(const InstSeqNum &done_sn, ThreadID tid)
Tells the branch predictor to commit any updates until the given sequence number.
probing::PMUUPtr pmuProbePoint(const char *name)
Helper method to instantiate probe points belonging to this object.
BPredUnit(const Params &p)
unsigned RASIndex
The RAS index of the instruction (only valid if a call).
void * bpHistory
Pointer to the history object passed back from the branch predictor.
Addr target
Target of the branch.
ThreadID tid
The thread id.
bool wasIndirect
Wether this instruction was an indirect branch.
bool wasCall
Whether or not the instruction was a call.
BranchPredictorParams Params
gem5::branch_prediction::BPredUnit::BPredUnitStats stats
InstSeqNum seqNum
The sequence number for the predictor history entry.
statistics::Scalar BTBHits
Stat for number of BTB hits.
statistics::Scalar indirectMispredicted
Stat for the number of indirect target mispredictions.
void update(Addr instPC, const TheISA::PCState &targetPC, ThreadID tid)
Updates the BTB with the target of a branch.
TheISA::PCState RASTarget
The RAS target (only valid if a return).
bool wasReturn
Whether or not the instruction was a return.
std::vector< History > predHist
The per-thread predictor history.
statistics::Scalar condIncorrect
Stat for number of conditional branches predicted incorrectly.
TheISA::PCState BTBLookup(Addr instPC)
Looks up a given PC in the BTB to get the predicted target.
statistics::Scalar BTBLookups
Stat for number of BTB lookups.
virtual std::string name() const
std::unique_ptr< PMU > PMUUPtr
statistics::Scalar indirectMisses
Stat for the number of indirect target misses.
GenericISA::DelaySlotPCState< 4 > PCState
const unsigned numThreads
Number of the threads for which the branch history is maintained.
TheISA::PCState lookup(Addr instPC, ThreadID tid)
Looks up an address in the BTB.
void drainSanityCheck() const
Perform sanity checks after a drain.
probing::PMUUPtr ppBranches
Branches seen by the branch predictor.
statistics::Scalar indirectHits
Stat for the number of indirect target hits.
BPredUnitStats(statistics::Group *parent)
Abstract superclass for simulation objects.
std::deque< PredictorHistory > History
void squash(const InstSeqNum &squashed_sn, ThreadID tid)
Squashes all outstanding updates until a given sequence number.
statistics::Scalar RASIncorrect
Stat for number of times the RAS is incorrect.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Addr pc
The PC associated with the sequence number.
bool predTaken
Whether or not it was predicted taken.
statistics::Scalar condPredicted
Stat for number of conditional branches predicted.
statistics::Scalar lookups
Stat for number of BP lookups.
const unsigned instShiftAmt
Number of bits to shift instructions by for predictor addresses.
void regProbePoints() override
Register probe points for this object.
bool BTBValid(Addr instPC)
Looks up a given PC in the BTB to see if a matching entry exists.
std::vector< ReturnAddrStack > RAS
The per-thread return address stack.
virtual bool lookup(ThreadID tid, Addr instPC, void *&bp_history)=0
Looks up a given PC in the BP to see if it is taken or not taken.
bool usedRAS
Whether or not the RAS was used.
virtual void uncondBranch(ThreadID tid, Addr pc, void *&bp_history)=0
Basically a wrapper class to hold both the branch predictor and the BTB.
statistics::Scalar indirectLookups
Stat for the number of indirect target lookups.
IndirectPredictor * iPred
The indirect target predictor.
void BTBUpdate(Addr instPC, const TheISA::PCState &target)
Updates the BTB with the target of a branch.
probing::PMUUPtr ppMisses
Miss-predicted branches.
PredictorHistory(const InstSeqNum &seq_num, Addr instPC, bool pred_taken, void *bp_history, void *indirect_history, ThreadID _tid, const StaticInstPtr &inst)
Makes a predictor history struct that contains any information needed to update the predictor,...
statistics::Formula BTBHitRatio
Stat for the ratio between BTB hits and BTB lookups.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
bool valid(Addr instPC, ThreadID tid)
Checks if a branch is in the BTB.
bool predict(const StaticInstPtr &inst, const InstSeqNum &seqNum, TheISA::PCState &pc, ThreadID tid)
Predicts whether or not the instruction is a taken branch, and the target of the branch if it is take...
int16_t ThreadID
Thread index/ID type.
const StaticInstPtr inst
The branch instrction.
bool operator==(const PredictorHistory &entry) const
statistics::Scalar RASUsed
Stat for number of times the RAS is used to get a target.
virtual void btbUpdate(ThreadID tid, Addr instPC, void *&bp_history)=0
If a branch is not taken, because the BTB address is invalid or missing, this function sets the appro...
Generated on Tue Sep 7 2021 14:53:44 for gem5 by doxygen 1.8.17