gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
bpred_unit.cc
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  * Copyright (c) 2012 Mark D. Hill and David A. Wood
5  * All rights reserved
6  *
7  * The license below extends only to copyright in the software and shall
8  * not be construed as granting a license to any other intellectual
9  * property including but not limited to intellectual property relating
10  * to a hardware implementation of the functionality of the software
11  * licensed hereunder. You may use the software subject to the license
12  * terms below provided that you ensure that this notice is replicated
13  * unmodified and in its entirety in all distributions of the software,
14  * modified or unmodified, in source code or in binary form.
15  *
16  * Copyright (c) 2004-2005 The Regents of The University of Michigan
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions are
21  * met: redistributions of source code must retain the above copyright
22  * notice, this list of conditions and the following disclaimer;
23  * redistributions in binary form must reproduce the above copyright
24  * notice, this list of conditions and the following disclaimer in the
25  * documentation and/or other materials provided with the distribution;
26  * neither the name of the copyright holders nor the names of its
27  * contributors may be used to endorse or promote products derived from
28  * this software without specific prior written permission.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
33  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
36  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
40  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41  */
42 
43 #include "cpu/pred/bpred_unit.hh"
44 
45 #include <algorithm>
46 
47 #include "arch/types.hh"
48 #include "arch/utility.hh"
49 #include "base/trace.hh"
50 #include "config/the_isa.hh"
51 #include "debug/Branch.hh"
52 
54  : SimObject(params),
55  numThreads(params.numThreads),
56  predHist(numThreads),
57  BTB(params.BTBEntries,
58  params.BTBTagSize,
59  params.instShiftAmt,
60  params.numThreads),
61  RAS(numThreads),
62  iPred(params.indirectBranchPred),
63  stats(this),
64  instShiftAmt(params.instShiftAmt)
65 {
66  for (auto& r : RAS)
67  r.init(params.RASSize);
68 }
69 
71  : Stats::Group(parent),
72  ADD_STAT(lookups, UNIT_COUNT, "Number of BP lookups"),
73  ADD_STAT(condPredicted, UNIT_COUNT,
74  "Number of conditional branches predicted"),
75  ADD_STAT(condIncorrect, UNIT_COUNT,
76  "Number of conditional branches incorrect"),
77  ADD_STAT(BTBLookups, UNIT_COUNT, "Number of BTB lookups"),
78  ADD_STAT(BTBHits, UNIT_COUNT, "Number of BTB hits"),
79  ADD_STAT(BTBHitRatio, UNIT_RATIO, "BTB Hit Ratio", BTBHits / BTBLookups),
80  ADD_STAT(RASUsed, UNIT_COUNT,
81  "Number of times the RAS was used to get a target."),
82  ADD_STAT(RASIncorrect, UNIT_COUNT,
83  "Number of incorrect RAS predictions."),
84  ADD_STAT(indirectLookups, UNIT_COUNT,
85  "Number of indirect predictor lookups."),
86  ADD_STAT(indirectHits, UNIT_COUNT, "Number of indirect target hits."),
87  ADD_STAT(indirectMisses, UNIT_COUNT, "Number of indirect misses."),
88  ADD_STAT(indirectMispredicted, UNIT_COUNT,
89  "Number of mispredicted indirect branches.")
90 {
92 }
93 
96 {
98  ptr.reset(new ProbePoints::PMU(getProbeManager(), name));
99 
100  return ptr;
101 }
102 
103 void
105 {
106  ppBranches = pmuProbePoint("Branches");
107  ppMisses = pmuProbePoint("Misses");
108 }
109 
110 void
112 {
113  // We shouldn't have any outstanding requests when we resume from
114  // a drained system.
115  for (M5_VAR_USED const auto& ph : predHist)
116  assert(ph.empty());
117 }
118 
119 bool
120 BPredUnit::predict(const StaticInstPtr &inst, const InstSeqNum &seqNum,
122 {
123  // See if branch predictor predicts taken.
124  // If so, get its target addr either from the BTB or the RAS.
125  // Save off record of branch stuff so the RAS can be fixed
126  // up once it's done.
127 
128  bool pred_taken = false;
129  TheISA::PCState target = pc;
130 
131  ++stats.lookups;
132  ppBranches->notify(1);
133 
134  void *bp_history = NULL;
135  void *indirect_history = NULL;
136 
137  if (inst->isUncondCtrl()) {
138  DPRINTF(Branch, "[tid:%i] [sn:%llu] "
139  "Unconditional control\n",
140  tid,seqNum);
141  pred_taken = true;
142  // Tell the BP there was an unconditional branch.
143  uncondBranch(tid, pc.instAddr(), bp_history);
144  } else {
146  pred_taken = lookup(tid, pc.instAddr(), bp_history);
147 
148  DPRINTF(Branch, "[tid:%i] [sn:%llu] "
149  "Branch predictor predicted %i for PC %s\n",
150  tid, seqNum, pred_taken, pc);
151  }
152 
153  const bool orig_pred_taken = pred_taken;
154  if (iPred) {
155  iPred->genIndirectInfo(tid, indirect_history);
156  }
157 
158  DPRINTF(Branch, "[tid:%i] [sn:%llu] "
159  "Creating prediction history "
160  "for PC %s\n", tid, seqNum, pc);
161 
162  PredictorHistory predict_record(seqNum, pc.instAddr(), pred_taken,
163  bp_history, indirect_history, tid, inst);
164 
165  // Now lookup in the BTB or RAS.
166  if (pred_taken) {
167  if (inst->isReturn()) {
168  ++stats.RASUsed;
169  predict_record.wasReturn = true;
170  // If it's a function return call, then look up the address
171  // in the RAS.
172  TheISA::PCState rasTop = RAS[tid].top();
173  target = TheISA::buildRetPC(pc, rasTop);
174 
175  // Record the top entry of the RAS, and its index.
176  predict_record.usedRAS = true;
177  predict_record.RASIndex = RAS[tid].topIdx();
178  predict_record.RASTarget = rasTop;
179 
180  RAS[tid].pop();
181 
182  DPRINTF(Branch, "[tid:%i] [sn:%llu] Instruction %s is a return, "
183  "RAS predicted target: %s, RAS index: %i\n",
184  tid, seqNum, pc, target, predict_record.RASIndex);
185  } else {
186 
187  if (inst->isCall()) {
188  RAS[tid].push(pc);
189  predict_record.pushedRAS = true;
190 
191  // Record that it was a call so that the top RAS entry can
192  // be popped off if the speculation is incorrect.
193  predict_record.wasCall = true;
194 
195  DPRINTF(Branch,
196  "[tid:%i] [sn:%llu] Instruction %s was a call, adding "
197  "%s to the RAS index: %i\n",
198  tid, seqNum, pc, pc, RAS[tid].topIdx());
199  }
200 
201  if (inst->isDirectCtrl() || !iPred) {
202  ++stats.BTBLookups;
203  // Check BTB on direct branches
204  if (BTB.valid(pc.instAddr(), tid)) {
205  ++stats.BTBHits;
206  // If it's not a return, use the BTB to get target addr.
207  target = BTB.lookup(pc.instAddr(), tid);
208  DPRINTF(Branch,
209  "[tid:%i] [sn:%llu] Instruction %s predicted "
210  "target is %s\n",
211  tid, seqNum, pc, target);
212  } else {
213  DPRINTF(Branch, "[tid:%i] [sn:%llu] BTB doesn't have a "
214  "valid entry\n",tid,seqNum);
215  pred_taken = false;
216  predict_record.predTaken = pred_taken;
217  // The Direction of the branch predictor is altered
218  // because the BTB did not have an entry
219  // The predictor needs to be updated accordingly
220  if (!inst->isCall() && !inst->isReturn()) {
221  btbUpdate(tid, pc.instAddr(), bp_history);
222  DPRINTF(Branch,
223  "[tid:%i] [sn:%llu] btbUpdate "
224  "called for %s\n",
225  tid, seqNum, pc);
226  } else if (inst->isCall() && !inst->isUncondCtrl()) {
227  RAS[tid].pop();
228  predict_record.pushedRAS = false;
229  }
230  TheISA::advancePC(target, inst);
231  }
232  } else {
233  predict_record.wasIndirect = true;
235  //Consult indirect predictor on indirect control
236  if (iPred->lookup(pc.instAddr(), target, tid)) {
237  // Indirect predictor hit
239  DPRINTF(Branch,
240  "[tid:%i] [sn:%llu] "
241  "Instruction %s predicted "
242  "indirect target is %s\n",
243  tid, seqNum, pc, target);
244  } else {
246  pred_taken = false;
247  predict_record.predTaken = pred_taken;
248  DPRINTF(Branch,
249  "[tid:%i] [sn:%llu] "
250  "Instruction %s no indirect "
251  "target\n",
252  tid, seqNum, pc);
253  if (!inst->isCall() && !inst->isReturn()) {
254 
255  } else if (inst->isCall() && !inst->isUncondCtrl()) {
256  RAS[tid].pop();
257  predict_record.pushedRAS = false;
258  }
259  TheISA::advancePC(target, inst);
260  }
261  iPred->recordIndirect(pc.instAddr(), target.instAddr(), seqNum,
262  tid);
263  }
264  }
265  } else {
266  if (inst->isReturn()) {
267  predict_record.wasReturn = true;
268  }
269  TheISA::advancePC(target, inst);
270  }
271  predict_record.target = target.instAddr();
272 
273  pc = target;
274 
275  if (iPred) {
276  // Update the indirect predictor with the direction prediction
277  // Note that this happens after indirect lookup, so it does not use
278  // the new information
279  // Note also that we use orig_pred_taken instead of pred_taken in
280  // as this is the actual outcome of the direction prediction
281  iPred->updateDirectionInfo(tid, orig_pred_taken);
282  }
283 
284  predHist[tid].push_front(predict_record);
285 
286  DPRINTF(Branch,
287  "[tid:%i] [sn:%llu] History entry added. "
288  "predHist.size(): %i\n",
289  tid, seqNum, predHist[tid].size());
290 
291  return pred_taken;
292 }
293 
294 void
296 {
297  DPRINTF(Branch, "[tid:%i] Committing branches until "
298  "sn:%llu]\n", tid, done_sn);
299 
300  while (!predHist[tid].empty() &&
301  predHist[tid].back().seqNum <= done_sn) {
302  // Update the branch predictor with the correct results.
303  update(tid, predHist[tid].back().pc,
304  predHist[tid].back().predTaken,
305  predHist[tid].back().bpHistory, false,
306  predHist[tid].back().inst,
307  predHist[tid].back().target);
308 
309  if (iPred) {
310  iPred->commit(done_sn, tid, predHist[tid].back().indirectHistory);
311  }
312 
313  predHist[tid].pop_back();
314  }
315 }
316 
317 void
318 BPredUnit::squash(const InstSeqNum &squashed_sn, ThreadID tid)
319 {
320  History &pred_hist = predHist[tid];
321 
322  if (iPred) {
323  iPred->squash(squashed_sn, tid);
324  }
325 
326  while (!pred_hist.empty() &&
327  pred_hist.front().seqNum > squashed_sn) {
328  if (pred_hist.front().usedRAS) {
329  DPRINTF(Branch, "[tid:%i] [squash sn:%llu]"
330  " Restoring top of RAS to: %i,"
331  " target: %s\n", tid, squashed_sn,
332  pred_hist.front().RASIndex, pred_hist.front().RASTarget);
333 
334  RAS[tid].restore(pred_hist.front().RASIndex,
335  pred_hist.front().RASTarget);
336  } else if (pred_hist.front().wasCall && pred_hist.front().pushedRAS) {
337  // Was a call but predicated false. Pop RAS here
338  DPRINTF(Branch, "[tid:%i] [squash sn:%llu] Squashing"
339  " Call [sn:%llu] PC: %s Popping RAS\n", tid, squashed_sn,
340  pred_hist.front().seqNum, pred_hist.front().pc);
341  RAS[tid].pop();
342  }
343 
344  // This call should delete the bpHistory.
345  squash(tid, pred_hist.front().bpHistory);
346  if (iPred) {
347  iPred->deleteIndirectInfo(tid, pred_hist.front().indirectHistory);
348  }
349 
350  DPRINTF(Branch, "[tid:%i] [squash sn:%llu] "
351  "Removing history for [sn:%llu] "
352  "PC %#x\n", tid, squashed_sn, pred_hist.front().seqNum,
353  pred_hist.front().pc);
354 
355  pred_hist.pop_front();
356 
357  DPRINTF(Branch, "[tid:%i] [squash sn:%llu] predHist.size(): %i\n",
358  tid, squashed_sn, predHist[tid].size());
359  }
360 }
361 
362 void
363 BPredUnit::squash(const InstSeqNum &squashed_sn,
364  const TheISA::PCState &corrTarget,
365  bool actually_taken, ThreadID tid)
366 {
367  // Now that we know that a branch was mispredicted, we need to undo
368  // all the branches that have been seen up until this branch and
369  // fix up everything.
370  // NOTE: This should be call conceivably in 2 scenarios:
371  // (1) After an branch is executed, it updates its status in the ROB
372  // The commit stage then checks the ROB update and sends a signal to
373  // the fetch stage to squash history after the mispredict
374  // (2) In the decode stage, you can find out early if a unconditional
375  // PC-relative, branch was predicted incorrectly. If so, a signal
376  // to the fetch stage is sent to squash history after the mispredict
377 
378  History &pred_hist = predHist[tid];
379 
381  ppMisses->notify(1);
382 
383  DPRINTF(Branch, "[tid:%i] Squashing from sequence number %i, "
384  "setting target to %s\n", tid, squashed_sn, corrTarget);
385 
386  // Squash All Branches AFTER this mispredicted branch
387  squash(squashed_sn, tid);
388 
389  // If there's a squash due to a syscall, there may not be an entry
390  // corresponding to the squash. In that case, don't bother trying to
391  // fix up the entry.
392  if (!pred_hist.empty()) {
393 
394  auto hist_it = pred_hist.begin();
395  //HistoryIt hist_it = find(pred_hist.begin(), pred_hist.end(),
396  // squashed_sn);
397 
398  //assert(hist_it != pred_hist.end());
399  if (pred_hist.front().seqNum != squashed_sn) {
400  DPRINTF(Branch, "Front sn %i != Squash sn %i\n",
401  pred_hist.front().seqNum, squashed_sn);
402 
403  assert(pred_hist.front().seqNum == squashed_sn);
404  }
405 
406 
407  if ((*hist_it).usedRAS) {
409  DPRINTF(Branch,
410  "[tid:%i] [squash sn:%llu] Incorrect RAS [sn:%llu]\n",
411  tid, squashed_sn, hist_it->seqNum);
412  }
413 
414  // There are separate functions for in-order and out-of-order
415  // branch prediction, but not for update. Therefore, this
416  // call should take into account that the mispredicted branch may
417  // be on the wrong path (i.e., OoO execution), and that the counter
418  // counter table(s) should not be updated. Thus, this call should
419  // restore the state of the underlying predictor, for instance the
420  // local/global histories. The counter tables will be updated when
421  // the branch actually commits.
422 
423  // Remember the correct direction for the update at commit.
424  pred_hist.front().predTaken = actually_taken;
425  pred_hist.front().target = corrTarget.instAddr();
426 
427  update(tid, (*hist_it).pc, actually_taken,
428  pred_hist.front().bpHistory, true, pred_hist.front().inst,
429  corrTarget.instAddr());
430 
431  if (iPred) {
433  pred_hist.front().indirectHistory, actually_taken);
434  }
435 
436  if (actually_taken) {
437  if (hist_it->wasReturn && !hist_it->usedRAS) {
438  DPRINTF(Branch, "[tid:%i] [squash sn:%llu] "
439  "Incorrectly predicted "
440  "return [sn:%llu] PC: %#x\n", tid, squashed_sn,
441  hist_it->seqNum,
442  hist_it->pc);
443  RAS[tid].pop();
444  hist_it->usedRAS = true;
445  }
446  if (hist_it->wasIndirect) {
448  if (iPred) {
450  hist_it->seqNum, pred_hist.front().indirectHistory,
451  corrTarget, tid);
452  }
453  } else {
454  DPRINTF(Branch,"[tid:%i] [squash sn:%llu] "
455  "BTB Update called for [sn:%llu] "
456  "PC %#x\n", tid, squashed_sn,
457  hist_it->seqNum, hist_it->pc);
458 
459  BTB.update((*hist_it).pc, corrTarget, tid);
460  }
461  } else {
462  //Actually not Taken
463  if (hist_it->usedRAS) {
464  DPRINTF(Branch,
465  "[tid:%i] [squash sn:%llu] Incorrectly predicted "
466  "return [sn:%llu] PC: %#x Restoring RAS\n", tid,
467  squashed_sn,
468  hist_it->seqNum, hist_it->pc);
469  DPRINTF(Branch,
470  "[tid:%i] [squash sn:%llu] Restoring top of RAS "
471  "to: %i, target: %s\n", tid, squashed_sn,
472  hist_it->RASIndex, hist_it->RASTarget);
473  RAS[tid].restore(hist_it->RASIndex, hist_it->RASTarget);
474  hist_it->usedRAS = false;
475  } else if (hist_it->wasCall && hist_it->pushedRAS) {
476  //Was a Call but predicated false. Pop RAS here
477  DPRINTF(Branch,
478  "[tid:%i] [squash sn:%llu] "
479  "Incorrectly predicted "
480  "Call [sn:%llu] PC: %s Popping RAS\n",
481  tid, squashed_sn,
482  hist_it->seqNum, hist_it->pc);
483  RAS[tid].pop();
484  hist_it->pushedRAS = false;
485  }
486  }
487  } else {
488  DPRINTF(Branch, "[tid:%i] [sn:%llu] pred_hist empty, can't "
489  "update\n", tid, squashed_sn);
490  }
491 }
492 
493 void
495 {
496  int i = 0;
497  for (const auto& ph : predHist) {
498  if (!ph.empty()) {
499  auto pred_hist_it = ph.begin();
500 
501  cprintf("predHist[%i].size(): %i\n", i++, ph.size());
502 
503  while (pred_hist_it != ph.end()) {
504  cprintf("sn:%llu], PC:%#x, tid:%i, predTaken:%i, "
505  "bpHistory:%#x\n",
506  pred_hist_it->seqNum, pred_hist_it->pc,
507  pred_hist_it->tid, pred_hist_it->predTaken,
508  pred_hist_it->bpHistory);
509  pred_hist_it++;
510  }
511 
512  cprintf("\n");
513  }
514  }
515 }
516 
IndirectPredictor::updateDirectionInfo
virtual void updateDirectionInfo(ThreadID tid, bool actually_taken)=0
BPredUnit::PredictorHistory::wasReturn
bool wasReturn
Whether or not the instruction was a return.
Definition: bpred_unit.hh:244
BPredUnit::regProbePoints
void regProbePoints() override
Register probe points for this object.
Definition: bpred_unit.cc:104
StaticInst::isDirectCtrl
bool isDirectCtrl() const
Definition: static_inst.hh:182
IndirectPredictor::genIndirectInfo
virtual void genIndirectInfo(ThreadID tid, void *&indirect_history)=0
ArmISA::buildRetPC
PCState buildRetPC(const PCState &curPC, const PCState &callPC)
Definition: utility.hh:59
BPredUnit::ppMisses
ProbePoints::PMUUPtr ppMisses
Miss-predicted branches.
Definition: bpred_unit.hh:337
IndirectPredictor::recordTarget
virtual void recordTarget(InstSeqNum seq_num, void *indirect_history, const TheISA::PCState &target, ThreadID tid)=0
BPredUnit::RAS
std::vector< ReturnAddrStack > RAS
The per-thread return address stack.
Definition: bpred_unit.hh:275
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
IndirectPredictor::recordIndirect
virtual void recordIndirect(Addr br_addr, Addr tgt_addr, InstSeqNum seq_num, ThreadID tid)=0
BPredUnit::dump
void dump()
Definition: bpred_unit.cc:494
BPredUnit::BPredUnitStats::lookups
Stats::Scalar lookups
Stat for number of BP lookups.
Definition: bpred_unit.hh:284
BPredUnit::BPredUnitStats::indirectMisses
Stats::Scalar indirectMisses
Stat for the number of indirect target misses.
Definition: bpred_unit.hh:305
BPredUnit::PredictorHistory::RASTarget
TheISA::PCState RASTarget
The RAS target (only valid if a return).
Definition: bpred_unit.hh:223
BPredUnit::iPred
IndirectPredictor * iPred
The indirect target predictor.
Definition: bpred_unit.hh:278
ProbePointArg
ProbePointArg generates a point for the class of Arg.
Definition: thermal_domain.hh:51
BPredUnit::PredictorHistory::target
Addr target
Target of the branch.
Definition: bpred_unit.hh:252
BPredUnit::drainSanityCheck
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: bpred_unit.cc:111
BPredUnit::btbUpdate
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...
BPredUnit::BPredUnitStats::condPredicted
Stats::Scalar condPredicted
Stat for number of conditional branches predicted.
Definition: bpred_unit.hh:286
IndirectPredictor::commit
virtual void commit(InstSeqNum seq_num, ThreadID tid, void *indirect_history)=0
BPredUnit::pmuProbePoint
ProbePoints::PMUUPtr pmuProbePoint(const char *name)
Helper method to instantiate probe points belonging to this object.
Definition: bpred_unit.cc:95
BPredUnit::BTB
DefaultBTB BTB
The BTB.
Definition: bpred_unit.hh:272
BPredUnit::BPredUnitStats::BPredUnitStats
BPredUnitStats(Stats::Group *parent)
Definition: bpred_unit.cc:70
BPredUnit::update
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:295
ArmISA::advancePC
void advancePC(PCState &pc, const StaticInstPtr &inst)
Definition: utility.hh:392
BPredUnit::lookup
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.
BPredUnit::PredictorHistory
Definition: bpred_unit.hh:188
IndirectPredictor::changeDirectionPrediction
virtual void changeDirectionPrediction(ThreadID tid, void *indirect_history, bool actually_taken)=0
BPredUnit::BPredUnitStats::indirectHits
Stats::Scalar indirectHits
Stat for the number of indirect target hits.
Definition: bpred_unit.hh:303
BPredUnit::BPredUnitStats::condIncorrect
Stats::Scalar condIncorrect
Stat for number of conditional branches predicted incorrectly.
Definition: bpred_unit.hh:288
DefaultBTB::update
void update(Addr instPC, const TheISA::PCState &targetPC, ThreadID tid)
Updates the BTB with the target of a branch.
Definition: btb.cc:128
BPredUnit::BPredUnitStats::BTBHits
Stats::Scalar BTBHits
Stat for number of BTB hits.
Definition: bpred_unit.hh:292
cprintf
void cprintf(const char *format, const Args &...args)
Definition: cprintf.hh:152
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
BPredUnit::BPredUnitStats::RASUsed
Stats::Scalar RASUsed
Stat for number of times the RAS is used to get a target.
Definition: bpred_unit.hh:296
BPredUnit::BPredUnitStats::indirectMispredicted
Stats::Scalar indirectMispredicted
Stat for the number of indirect target mispredictions.
Definition: bpred_unit.hh:307
BPredUnit::BPredUnitStats::indirectLookups
Stats::Scalar indirectLookups
Stat for the number of indirect target lookups.
Definition: bpred_unit.hh:301
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
DefaultBTB::valid
bool valid(Addr instPC, ThreadID tid)
Checks if a branch is in the BTB.
Definition: btb.cc:89
MipsISA::r
r
Definition: pra_constants.hh:95
BPredUnit::BPredUnitStats::RASIncorrect
Stats::Scalar RASIncorrect
Stat for number of times the RAS is incorrect.
Definition: bpred_unit.hh:298
IndirectPredictor::lookup
virtual bool lookup(Addr br_addr, TheISA::PCState &br_target, ThreadID tid)=0
BPredUnit::uncondBranch
virtual void uncondBranch(ThreadID tid, Addr pc, void *&bp_history)=0
BPredUnit::stats
BPredUnit::BPredUnitStats stats
BPredUnit::predHist
std::vector< History > predHist
The per-thread predictor history.
Definition: bpred_unit.hh:269
BPredUnit::BPredUnit
BPredUnit(const Params &p)
Definition: bpred_unit.cc:53
BPredUnit::PredictorHistory::usedRAS
bool usedRAS
Whether or not the RAS was used.
Definition: bpred_unit.hh:235
InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:37
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
IndirectPredictor::squash
virtual void squash(InstSeqNum seq_num, ThreadID tid)=0
BPredUnit::PredictorHistory::wasIndirect
bool wasIndirect
Wether this instruction was an indirect branch.
Definition: bpred_unit.hh:247
SimObject::getProbeManager
ProbeManager * getProbeManager()
Get the probe manager for this object.
Definition: sim_object.cc:114
ProbePoints::PMUUPtr
std::unique_ptr< PMU > PMUUPtr
Definition: pmu.hh:56
UNIT_RATIO
#define UNIT_RATIO
Definition: units.hh:48
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
BPredUnit::PredictorHistory::RASIndex
unsigned RASIndex
The RAS index of the instruction (only valid if a call).
Definition: bpred_unit.hh:226
BPredUnit::PredictorHistory::wasCall
bool wasCall
Whether or not the instruction was a call.
Definition: bpred_unit.hh:241
BPredUnit::Params
BranchPredictorParams Params
Definition: bpred_unit.hh:65
Stats::DataWrap::precision
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
Definition: statistics.hh:327
MipsISA::PCState
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
bpred_unit.hh
BPredUnit::BPredUnitStats::BTBLookups
Stats::Scalar BTBLookups
Stat for number of BTB lookups.
Definition: bpred_unit.hh:290
std::deque
STL deque class.
Definition: stl.hh:44
Stats::Group
Statistics container.
Definition: group.hh:87
BPredUnit::BPredUnitStats::BTBHitRatio
Stats::Formula BTBHitRatio
Stat for the ratio between BTB hits and BTB lookups.
Definition: bpred_unit.hh:294
BPredUnit::predict
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:120
StaticInst::isCall
bool isCall() const
Definition: static_inst.hh:180
Stats
Definition: statistics.cc:53
RefCountingPtr< StaticInst >
BPredUnit::PredictorHistory::pushedRAS
bool pushedRAS
Definition: bpred_unit.hh:238
trace.hh
DefaultBTB::lookup
TheISA::PCState lookup(Addr instPC, ThreadID tid)
Looks up an address in the BTB.
Definition: btb.cc:110
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
BPredUnit::ppBranches
ProbePoints::PMUUPtr ppBranches
Branches seen by the branch predictor.
Definition: bpred_unit.hh:334
IndirectPredictor::deleteIndirectInfo
virtual void deleteIndirectInfo(ThreadID tid, void *indirect_history)=0
BPredUnit::squash
void squash(const InstSeqNum &squashed_sn, ThreadID tid)
Squashes all outstanding updates until a given sequence number.
Definition: bpred_unit.cc:318
StaticInst::isReturn
bool isReturn() const
Definition: static_inst.hh:181
BPredUnit::PredictorHistory::predTaken
bool predTaken
Whether or not it was predicted taken.
Definition: bpred_unit.hh:232
StaticInst::isUncondCtrl
bool isUncondCtrl() const
Definition: static_inst.hh:185
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Mar 23 2021 19:41:25 for gem5 by doxygen 1.8.17