gem5  v20.0.0.3
bpred_unit.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2012, 2014 ARM Limited
3  * Copyright (c) 2010 The University of Edinburgh
4  * All rights reserved
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2004-2005 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __CPU_PRED_BPRED_UNIT_HH__
43 #define __CPU_PRED_BPRED_UNIT_HH__
44 
45 #include <deque>
46 
47 #include "base/statistics.hh"
48 #include "base/types.hh"
49 #include "cpu/pred/btb.hh"
50 #include "cpu/pred/indirect.hh"
51 #include "cpu/pred/ras.hh"
52 #include "cpu/inst_seq.hh"
53 #include "cpu/static_inst.hh"
54 #include "params/BranchPredictor.hh"
55 #include "sim/probe/pmu.hh"
56 #include "sim/sim_object.hh"
57 
62 class BPredUnit : public SimObject
63 {
64  public:
65  typedef BranchPredictorParams Params;
69  BPredUnit(const Params *p);
70 
74  void regStats() override;
75 
76  void regProbePoints() override;
77 
79  void drainSanityCheck() const;
80 
89  bool predict(const StaticInstPtr &inst, const InstSeqNum &seqNum,
91 
92  // @todo: Rename this function.
93  virtual void uncondBranch(ThreadID tid, Addr pc, void * &bp_history) = 0;
94 
101  void update(const InstSeqNum &done_sn, ThreadID tid);
102 
109  void squash(const InstSeqNum &squashed_sn, ThreadID tid);
110 
120  void squash(const InstSeqNum &squashed_sn,
121  const TheISA::PCState &corr_target,
122  bool actually_taken, ThreadID tid);
123 
128  virtual void squash(ThreadID tid, void *bp_history) = 0;
129 
137  virtual bool lookup(ThreadID tid, Addr instPC, void * &bp_history) = 0;
138 
147  virtual void btbUpdate(ThreadID tid, Addr instPC, void * &bp_history) = 0;
148 
154  bool BTBValid(Addr instPC)
155  { return BTB.valid(instPC, 0); }
156 
163  { return BTB.lookup(instPC, 0); }
164 
178  virtual void update(ThreadID tid, Addr instPC, bool taken,
179  void *bp_history, bool squashed,
181  Addr corrTarget = MaxAddr) = 0;
187  void BTBUpdate(Addr instPC, const TheISA::PCState &target)
188  { BTB.update(instPC, target, 0); }
189 
190 
191  void dump();
192 
193  private:
199  PredictorHistory(const InstSeqNum &seq_num, Addr instPC,
200  bool pred_taken, void *bp_history,
201  void *indirect_history, ThreadID _tid,
202  const StaticInstPtr & inst)
203  : seqNum(seq_num), pc(instPC), bpHistory(bp_history),
204  indirectHistory(indirect_history), RASTarget(0), RASIndex(0),
205  tid(_tid), predTaken(pred_taken), usedRAS(0), pushedRAS(0),
207  inst(inst)
208  {}
209 
210  bool operator==(const PredictorHistory &entry) const {
211  return this->seqNum == entry.seqNum;
212  }
213 
216 
219 
224  void *bpHistory;
225 
227 
230 
232  unsigned RASIndex;
233 
236 
238  bool predTaken;
239 
241  bool usedRAS;
242 
243  /* Whether or not the RAS was pushed */
244  bool pushedRAS;
245 
247  bool wasCall;
248 
250  bool wasReturn;
251 
254 
259 
262  };
263 
265 
267  const unsigned numThreads;
268 
269 
276 
279 
282 
285 
304 
313 
314  protected:
316  const unsigned instShiftAmt;
317 
331 
332 
339 
342 
344 };
345 
346 #endif // __CPU_PRED_BPRED_UNIT_HH__
Stats::Scalar indirectHits
Stat for the number of indirect target hits.
Definition: bpred_unit.hh:308
const Addr MaxAddr
Definition: types.hh:164
Addr target
Target of the branch.
Definition: bpred_unit.hh:258
Stats::Scalar BTBHits
Stat for number of BTB hits.
Definition: bpred_unit.hh:295
ThreadID tid
The thread id.
Definition: bpred_unit.hh:235
Stats::Scalar usedRAS
Stat for number of times the RAS is used to get a target.
Definition: bpred_unit.hh:301
bool wasReturn
Whether or not the instruction was a return.
Definition: bpred_unit.hh:250
BranchPredictorParams Params
Definition: bpred_unit.hh:65
std::vector< History > predHist
The per-thread predictor history.
Definition: bpred_unit.hh:275
void update(const InstSeqNum &done_sn, ThreadID tid)
Tells the branch predictor to commit any updates until the given sequence number. ...
Definition: bpred_unit.cc:345
IndirectPredictor * iPred
The indirect target predictor.
Definition: bpred_unit.hh:284
Stats::Scalar condIncorrect
Stat for number of conditional branches predicted incorrectly.
Definition: bpred_unit.hh:291
Stats::Scalar BTBCorrect
Stat for number of times the BTB is correct.
Definition: bpred_unit.hh:297
void * bpHistory
Pointer to the history object passed back from the branch predictor.
Definition: bpred_unit.hh:224
Declaration of Statistics objects.
bool BTBValid(Addr instPC)
Looks up a given PC in the BTB to see if a matching entry exists.
Definition: bpred_unit.hh:154
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
STL vector class.
Definition: stl.hh:37
TheISA::PCState RASTarget
The RAS target (only valid if a return).
Definition: bpred_unit.hh:229
void regProbePoints() override
Register probe points for this object.
Definition: bpred_unit.cc:154
bool usedRAS
Whether or not the RAS was used.
Definition: bpred_unit.hh:241
Bitfield< 4 > pc
const StaticInstPtr inst
The branch instrction.
Definition: bpred_unit.hh:261
unsigned RASIndex
The RAS index of the instruction (only valid if a call).
Definition: bpred_unit.hh:232
TheISA::PCState BTBLookup(Addr instPC)
Looks up a given PC in the BTB to get the predicted target.
Definition: bpred_unit.hh:162
Stats::Formula BTBHitPct
Stat for percent times an entry in BTB found.
Definition: bpred_unit.hh:299
bool operator==(const PredictorHistory &entry) const
Definition: bpred_unit.hh:210
void dump()
Definition: bpred_unit.cc:544
Stats::Scalar indirectMisses
Stat for the number of indirect target misses.
Definition: bpred_unit.hh:310
std::unique_ptr< PMU > PMUUPtr
Definition: pmu.hh:56
virtual void uncondBranch(ThreadID tid, Addr pc, void *&bp_history)=0
Stats::Scalar condPredicted
Stat for number of conditional branches predicted.
Definition: bpred_unit.hh:289
std::deque< PredictorHistory > History
Definition: bpred_unit.hh:264
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...
Stats::Scalar BTBLookups
Stat for number of BTB lookups.
Definition: bpred_unit.hh:293
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...
Definition: bpred_unit.cc:170
uint64_t InstSeqNum
Definition: inst_seq.hh:37
ProbePoints::PMUUPtr pmuProbePoint(const char *name)
Helper method to instantiate probe points belonging to this object.
Definition: bpred_unit.cc:145
DefaultBTB BTB
The BTB.
Definition: bpred_unit.hh:278
void update(Addr instPC, const TheISA::PCState &targetPC, ThreadID tid)
Updates the BTB with the target of a branch.
Definition: btb.cc:128
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
TheISA::PCState lookup(Addr instPC, ThreadID tid)
Looks up an address in the BTB.
Definition: btb.cc:110
ProbePoints::PMUUPtr ppMisses
Miss-predicted branches.
Definition: bpred_unit.hh:341
void regStats() override
Registers statistics.
Definition: bpred_unit.cc:71
bool wasIndirect
Wether this instruction was an indirect branch.
Definition: bpred_unit.hh:253
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.
std::vector< ReturnAddrStack > RAS
The per-thread return address stack.
Definition: bpred_unit.hh:281
Stats::Scalar RASIncorrect
Stat for number of times the RAS is incorrect.
Definition: bpred_unit.hh:303
STL deque class.
Definition: stl.hh:44
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
Basically a wrapper class to hold both the branch predictor and the BTB.
Definition: bpred_unit.hh:62
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
Addr pc
The PC associated with the sequence number.
Definition: bpred_unit.hh:218
virtual const std::string name() const
Definition: sim_object.hh:129
InstSeqNum seqNum
The sequence number for the predictor history entry.
Definition: bpred_unit.hh:215
bool predTaken
Whether or not it was predicted taken.
Definition: bpred_unit.hh:238
bool valid(Addr instPC, ThreadID tid)
Checks if a branch is in the BTB.
Definition: btb.cc:89
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: bpred_unit.cc:161
Stats::Scalar indirectMispredicted
Stat for the number of indirect target mispredictions.
Definition: bpred_unit.hh:312
BPredUnit(const Params *p)
Definition: bpred_unit.cc:54
const unsigned instShiftAmt
Number of bits to shift instructions by for predictor addresses.
Definition: bpred_unit.hh:316
void squash(const InstSeqNum &squashed_sn, ThreadID tid)
Squashes all outstanding updates until a given sequence number.
Definition: bpred_unit.cc:368
const unsigned numThreads
Number of the threads for which the branch history is maintained.
Definition: bpred_unit.hh:267
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition: static_inst.hh:225
bool wasCall
Whether or not the instruction was a call.
Definition: bpred_unit.hh:247
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
Bitfield< 0 > p
Stats::Scalar indirectLookups
Stat for the number of indirect target lookups.
Definition: bpred_unit.hh:306
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...
Definition: bpred_unit.hh:199
ProbePoints::PMUUPtr ppBranches
Branches seen by the branch predictor.
Definition: bpred_unit.hh:338
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
Stats::Scalar lookups
Stat for number of BP lookups.
Definition: bpred_unit.hh:287
void BTBUpdate(Addr instPC, const TheISA::PCState &target)
Updates the BTB with the target of a branch.
Definition: bpred_unit.hh:187

Generated on Fri Jul 3 2020 15:53:00 for gem5 by doxygen 1.8.13