gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
execute.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014,2018-2020 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "cpu/minor/execute.hh"
39 
40 #include "arch/locked_mem.hh"
41 #include "arch/registers.hh"
42 #include "arch/utility.hh"
43 #include "cpu/minor/cpu.hh"
45 #include "cpu/minor/fetch1.hh"
46 #include "cpu/minor/lsq.hh"
47 #include "cpu/op_class.hh"
48 #include "debug/Activity.hh"
49 #include "debug/Branch.hh"
50 #include "debug/Drain.hh"
51 #include "debug/ExecFaulting.hh"
52 #include "debug/MinorExecute.hh"
53 #include "debug/MinorInterrupt.hh"
54 #include "debug/MinorMem.hh"
55 #include "debug/MinorTrace.hh"
56 #include "debug/PCEvent.hh"
57 
58 namespace Minor
59 {
60 
61 Execute::Execute(const std::string &name_,
62  MinorCPU &cpu_,
63  const MinorCPUParams &params,
66  Named(name_),
67  inp(inp_),
68  out(out_),
69  cpu(cpu_),
70  issueLimit(params.executeIssueLimit),
71  memoryIssueLimit(params.executeMemoryIssueLimit),
72  commitLimit(params.executeCommitLimit),
73  memoryCommitLimit(params.executeMemoryCommitLimit),
74  processMoreThanOneInput(params.executeCycleInput),
75  fuDescriptions(*params.executeFuncUnits),
76  numFuncUnits(fuDescriptions.funcUnits.size()),
77  setTraceTimeOnCommit(params.executeSetTraceTimeOnCommit),
78  setTraceTimeOnIssue(params.executeSetTraceTimeOnIssue),
79  allowEarlyMemIssue(params.executeAllowEarlyMemoryIssue),
80  noCostFUIndex(fuDescriptions.funcUnits.size() + 1),
81  lsq(name_ + ".lsq", name_ + ".dcache_port",
82  cpu_, *this,
83  params.executeMaxAccessesInMemory,
84  params.executeMemoryWidth,
85  params.executeLSQRequestsQueueSize,
86  params.executeLSQTransfersQueueSize,
87  params.executeLSQStoreBufferSize,
88  params.executeLSQMaxStoreBufferStoresPerCycle),
89  executeInfo(params.numThreads, ExecuteThreadInfo(params.executeCommitLimit)),
90  interruptPriority(0),
91  issuePriority(0),
92  commitPriority(0)
93 {
94  if (commitLimit < 1) {
95  fatal("%s: executeCommitLimit must be >= 1 (%d)\n", name_,
96  commitLimit);
97  }
98 
99  if (issueLimit < 1) {
100  fatal("%s: executeCommitLimit must be >= 1 (%d)\n", name_,
101  issueLimit);
102  }
103 
104  if (memoryIssueLimit < 1) {
105  fatal("%s: executeMemoryIssueLimit must be >= 1 (%d)\n", name_,
107  }
108 
110  fatal("%s: executeMemoryCommitLimit (%d) must be <="
111  " executeCommitLimit (%d)\n",
113  }
114 
115  if (params.executeInputBufferSize < 1) {
116  fatal("%s: executeInputBufferSize must be >= 1 (%d)\n", name_,
117  params.executeInputBufferSize);
118  }
119 
120  if (params.executeInputBufferSize < 1) {
121  fatal("%s: executeInputBufferSize must be >= 1 (%d)\n", name_,
122  params.executeInputBufferSize);
123  }
124 
125  /* This should be large enough to count all the in-FU instructions
126  * which need to be accounted for in the inFlightInsts
127  * queue */
128  unsigned int total_slots = 0;
129 
130  /* Make FUPipelines for each MinorFU */
131  for (unsigned int i = 0; i < numFuncUnits; i++) {
132  std::ostringstream fu_name;
133  MinorFU *fu_description = fuDescriptions.funcUnits[i];
134 
135  /* Note the total number of instruction slots (for sizing
136  * the inFlightInst queue) and the maximum latency of any FU
137  * (for sizing the activity recorder) */
138  total_slots += fu_description->opLat;
139 
140  fu_name << name_ << ".fu." << i;
141 
142  FUPipeline *fu = new FUPipeline(fu_name.str(), *fu_description, cpu);
143 
144  funcUnits.push_back(fu);
145  }
146 
148  for (int op_class = No_OpClass + 1; op_class < Num_OpClasses; op_class++) {
149  bool found_fu = false;
150  unsigned int fu_index = 0;
151 
152  while (fu_index < numFuncUnits && !found_fu)
153  {
154  if (funcUnits[fu_index]->provides(
155  static_cast<OpClass>(op_class)))
156  {
157  found_fu = true;
158  }
159  fu_index++;
160  }
161 
162  if (!found_fu) {
163  warn("No functional unit for OpClass %s\n",
164  Enums::OpClassStrings[op_class]);
165  }
166  }
167 
168  /* Per-thread structures */
169  for (ThreadID tid = 0; tid < params.numThreads; tid++) {
170  std::string tid_str = std::to_string(tid);
171 
172  /* Input Buffers */
173  inputBuffer.push_back(
175  name_ + ".inputBuffer" + tid_str, "insts",
176  params.executeInputBufferSize));
177 
178  /* Scoreboards */
179  scoreboard.push_back(Scoreboard(name_ + ".scoreboard" + tid_str));
180 
181  /* In-flight instruction records */
182  executeInfo[tid].inFlightInsts = new Queue<QueuedInst,
184  name_ + ".inFlightInsts" + tid_str, "insts", total_slots);
185 
186  executeInfo[tid].inFUMemInsts = new Queue<QueuedInst,
188  name_ + ".inFUMemInsts" + tid_str, "insts", total_slots);
189  }
190 }
191 
192 const ForwardInstData *
194 {
195  /* Get a line from the inputBuffer to work with */
196  if (!inputBuffer[tid].empty()) {
197  const ForwardInstData &head = inputBuffer[tid].front();
198 
199  return (head.isBubble() ? NULL : &(inputBuffer[tid].front()));
200  } else {
201  return NULL;
202  }
203 }
204 
205 void
207 {
208  if (!inputBuffer[tid].empty())
209  inputBuffer[tid].pop();
210 
211  executeInfo[tid].inputIndex = 0;
212 }
213 
214 void
216 {
217  ThreadContext *thread = cpu.getContext(inst->id.threadId);
218  const TheISA::PCState &pc_before = inst->pc;
219  TheISA::PCState target = thread->pcState();
220 
221  /* Force a branch for SerializeAfter/SquashAfter instructions
222  * at the end of micro-op sequence when we're not suspended */
223  bool force_branch = thread->status() != ThreadContext::Suspended &&
224  !inst->isFault() &&
225  inst->isLastOpInInst() &&
226  (inst->staticInst->isSerializeAfter() ||
227  inst->staticInst->isSquashAfter());
228 
229  DPRINTF(Branch, "tryToBranch before: %s after: %s%s\n",
230  pc_before, target, (force_branch ? " (forcing)" : ""));
231 
232  /* Will we change the PC to something other than the next instruction? */
233  bool must_branch = pc_before != target ||
234  fault != NoFault ||
235  force_branch;
236 
237  /* The reason for the branch data we're about to generate, set below */
239 
240  if (fault == NoFault)
241  {
242  TheISA::advancePC(target, inst->staticInst);
243  thread->pcState(target);
244 
245  DPRINTF(Branch, "Advancing current PC from: %s to: %s\n",
246  pc_before, target);
247  }
248 
249  if (inst->predictedTaken && !force_branch) {
250  /* Predicted to branch */
251  if (!must_branch) {
252  /* No branch was taken, change stream to get us back to the
253  * intended PC value */
254  DPRINTF(Branch, "Predicted a branch from 0x%x to 0x%x but"
255  " none happened inst: %s\n",
256  inst->pc.instAddr(), inst->predictedTarget.instAddr(), *inst);
257 
259  } else if (inst->predictedTarget == target) {
260  /* Branch prediction got the right target, kill the branch and
261  * carry on.
262  * Note that this information to the branch predictor might get
263  * overwritten by a "real" branch during this cycle */
264  DPRINTF(Branch, "Predicted a branch from 0x%x to 0x%x correctly"
265  " inst: %s\n",
266  inst->pc.instAddr(), inst->predictedTarget.instAddr(), *inst);
267 
269  } else {
270  /* Branch prediction got the wrong target */
271  DPRINTF(Branch, "Predicted a branch from 0x%x to 0x%x"
272  " but got the wrong target (actual: 0x%x) inst: %s\n",
273  inst->pc.instAddr(), inst->predictedTarget.instAddr(),
274  target.instAddr(), *inst);
275 
277  }
278  } else if (must_branch) {
279  /* Unpredicted branch */
280  DPRINTF(Branch, "Unpredicted branch from 0x%x to 0x%x inst: %s\n",
281  inst->pc.instAddr(), target.instAddr(), *inst);
282 
284  } else {
285  /* No branch at all */
286  reason = BranchData::NoBranch;
287  }
288 
289  updateBranchData(inst->id.threadId, reason, inst, target, branch);
290 }
291 
292 void
294  ThreadID tid,
295  BranchData::Reason reason,
296  MinorDynInstPtr inst, const TheISA::PCState &target,
297  BranchData &branch)
298 {
299  if (reason != BranchData::NoBranch) {
300  /* Bump up the stream sequence number on a real branch*/
301  if (BranchData::isStreamChange(reason))
302  executeInfo[tid].streamSeqNum++;
303 
304  /* Branches (even mis-predictions) don't change the predictionSeqNum,
305  * just the streamSeqNum */
306  branch = BranchData(reason, tid,
307  executeInfo[tid].streamSeqNum,
308  /* Maintaining predictionSeqNum if there's no inst is just a
309  * courtesy and looks better on minorview */
310  (inst->isBubble() ? executeInfo[tid].lastPredictionSeqNum
311  : inst->id.predictionSeqNum),
312  target, inst);
313 
314  DPRINTF(Branch, "Branch data signalled: %s\n", branch);
315  }
316 }
317 
318 void
320  LSQ::LSQRequestPtr response, BranchData &branch, Fault &fault)
321 {
322  ThreadID thread_id = inst->id.threadId;
323  ThreadContext *thread = cpu.getContext(thread_id);
324 
325  ExecContext context(cpu, *cpu.threads[thread_id], *this, inst);
326 
327  PacketPtr packet = response->packet;
328 
329  bool is_load = inst->staticInst->isLoad();
330  bool is_store = inst->staticInst->isStore();
331  bool is_atomic = inst->staticInst->isAtomic();
332  bool is_prefetch = inst->staticInst->isDataPrefetch();
333 
334  /* If true, the trace's predicate value will be taken from the exec
335  * context predicate, otherwise, it will be set to false */
336  bool use_context_predicate = true;
337 
338  if (inst->translationFault != NoFault) {
339  /* Invoke memory faults. */
340  DPRINTF(MinorMem, "Completing fault from DTLB access: %s\n",
341  inst->translationFault->name());
342 
343  if (inst->staticInst->isPrefetch()) {
344  DPRINTF(MinorMem, "Not taking fault on prefetch: %s\n",
345  inst->translationFault->name());
346 
347  /* Don't assign to fault */
348  } else {
349  /* Take the fault raised during the TLB/memory access */
350  fault = inst->translationFault;
351 
352  fault->invoke(thread, inst->staticInst);
353  }
354  } else if (!packet) {
355  DPRINTF(MinorMem, "Completing failed request inst: %s\n",
356  *inst);
357  use_context_predicate = false;
358  if (!context.readMemAccPredicate())
359  inst->staticInst->completeAcc(nullptr, &context, inst->traceData);
360  } else if (packet->isError()) {
361  DPRINTF(MinorMem, "Trying to commit error response: %s\n",
362  *inst);
363 
364  fatal("Received error response packet for inst: %s\n", *inst);
365  } else if (is_store || is_load || is_prefetch || is_atomic) {
366  assert(packet);
367 
368  DPRINTF(MinorMem, "Memory response inst: %s addr: 0x%x size: %d\n",
369  *inst, packet->getAddr(), packet->getSize());
370 
371  if (is_load && packet->getSize() > 0) {
372  DPRINTF(MinorMem, "Memory data[0]: 0x%x\n",
373  static_cast<unsigned int>(packet->getConstPtr<uint8_t>()[0]));
374  }
375 
376  /* Complete the memory access instruction */
377  fault = inst->staticInst->completeAcc(packet, &context,
378  inst->traceData);
379 
380  if (fault != NoFault) {
381  /* Invoke fault created by instruction completion */
382  DPRINTF(MinorMem, "Fault in memory completeAcc: %s\n",
383  fault->name());
384  fault->invoke(thread, inst->staticInst);
385  } else {
386  /* Stores need to be pushed into the store buffer to finish
387  * them off */
388  if (response->needsToBeSentToStoreBuffer())
389  lsq.sendStoreToStoreBuffer(response);
390  }
391  } else {
392  fatal("There should only ever be reads, "
393  "writes or faults at this point\n");
394  }
395 
396  lsq.popResponse(response);
397 
398  if (inst->traceData) {
399  inst->traceData->setPredicate((use_context_predicate ?
400  context.readPredicate() : false));
401  }
402 
404 
405  /* Generate output to account for branches */
406  tryToBranch(inst, fault, branch);
407 }
408 
409 bool
411 {
412  return cpu.checkInterrupts(thread_id);
413 }
414 
415 bool
417 {
418  DPRINTF(MinorInterrupt, "Considering interrupt status from PC: %s\n",
419  cpu.getContext(thread_id)->pcState());
420 
421  Fault interrupt = cpu.getInterruptController(thread_id)->getInterrupt();
422 
423  if (interrupt != NoFault) {
424  /* The interrupt *must* set pcState */
426  interrupt->invoke(cpu.getContext(thread_id));
427 
428  assert(!lsq.accessesInFlight());
429 
430  DPRINTF(MinorInterrupt, "Invoking interrupt: %s to PC: %s\n",
431  interrupt->name(), cpu.getContext(thread_id)->pcState());
432 
433  /* Assume that an interrupt *must* cause a branch. Assert this? */
434 
436  MinorDynInst::bubble(), cpu.getContext(thread_id)->pcState(),
437  branch);
438  }
439 
440  return interrupt != NoFault;
441 }
442 
443 bool
445  bool &passed_predicate, Fault &fault)
446 {
447  bool issued = false;
448 
449  /* Set to true if the mem op. is issued and sent to the mem system */
450  passed_predicate = false;
451 
452  if (!lsq.canRequest()) {
453  /* Not acting on instruction yet as the memory
454  * queues are full */
455  issued = false;
456  } else {
457  ThreadContext *thread = cpu.getContext(inst->id.threadId);
458  TheISA::PCState old_pc = thread->pcState();
459 
460  ExecContext context(cpu, *cpu.threads[inst->id.threadId],
461  *this, inst);
462 
463  DPRINTF(MinorExecute, "Initiating memRef inst: %s\n", *inst);
464 
465  Fault init_fault = inst->staticInst->initiateAcc(&context,
466  inst->traceData);
467 
468  if (inst->inLSQ) {
469  if (init_fault != NoFault) {
470  assert(inst->translationFault != NoFault);
471  // Translation faults are dealt with in handleMemResponse()
472  init_fault = NoFault;
473  } else {
474  // If we have a translation fault then it got suppressed by
475  // initateAcc()
476  inst->translationFault = NoFault;
477  }
478  }
479 
480  if (init_fault != NoFault) {
481  DPRINTF(MinorExecute, "Fault on memory inst: %s"
482  " initiateAcc: %s\n", *inst, init_fault->name());
483  fault = init_fault;
484  } else {
485  /* Only set this if the instruction passed its
486  * predicate */
487  if (!context.readMemAccPredicate()) {
488  DPRINTF(MinorMem, "No memory access for inst: %s\n", *inst);
489  assert(context.readPredicate());
490  }
491  passed_predicate = context.readPredicate();
492 
493  /* Set predicate in tracing */
494  if (inst->traceData)
495  inst->traceData->setPredicate(passed_predicate);
496 
497  /* If the instruction didn't pass its predicate
498  * or it is a predicated vector instruction and the
499  * associated predicate register is all-false (and so will not
500  * progress from here) Try to branch to correct and branch
501  * mis-prediction. */
502  if (!inst->inLSQ) {
503  /* Leave it up to commit to handle the fault */
504  lsq.pushFailedRequest(inst);
505  inst->inLSQ = true;
506  }
507  }
508 
509  /* Restore thread PC */
510  thread->pcState(old_pc);
511  issued = true;
512  }
513 
514  return issued;
515 }
516 
518 inline unsigned int
519 cyclicIndexInc(unsigned int index, unsigned int cycle_size)
520 {
521  unsigned int ret = index + 1;
522 
523  if (ret == cycle_size)
524  ret = 0;
525 
526  return ret;
527 }
528 
530 inline unsigned int
531 cyclicIndexDec(unsigned int index, unsigned int cycle_size)
532 {
533  int ret = index - 1;
534 
535  if (ret < 0)
536  ret = cycle_size - 1;
537 
538  return ret;
539 }
540 
541 unsigned int
543 {
544  const ForwardInstData *insts_in = getInput(thread_id);
545  ExecuteThreadInfo &thread = executeInfo[thread_id];
546 
547  /* Early termination if we have no instructions */
548  if (!insts_in)
549  return 0;
550 
551  /* Start from the first FU */
552  unsigned int fu_index = 0;
553 
554  /* Remains true while instructions are still being issued. If any
555  * instruction fails to issue, this is set to false and we exit issue.
556  * This strictly enforces in-order issue. For other issue behaviours,
557  * a more complicated test in the outer while loop below is needed. */
558  bool issued = true;
559 
560  /* Number of insts issues this cycle to check for issueLimit */
561  unsigned num_insts_issued = 0;
562 
563  /* Number of memory ops issues this cycle to check for memoryIssueLimit */
564  unsigned num_mem_insts_issued = 0;
565 
566  /* Number of instructions discarded this cycle in order to enforce a
567  * discardLimit. @todo, add that parameter? */
568  unsigned num_insts_discarded = 0;
569 
570  do {
571  MinorDynInstPtr inst = insts_in->insts[thread.inputIndex];
572  Fault fault = inst->fault;
573  bool discarded = false;
574  bool issued_mem_ref = false;
575 
576  if (inst->isBubble()) {
577  /* Skip */
578  issued = true;
579  } else if (cpu.getContext(thread_id)->status() ==
581  {
582  DPRINTF(MinorExecute, "Discarding inst: %s from suspended"
583  " thread\n", *inst);
584 
585  issued = true;
586  discarded = true;
587  } else if (inst->id.streamSeqNum != thread.streamSeqNum) {
588  DPRINTF(MinorExecute, "Discarding inst: %s as its stream"
589  " state was unexpected, expected: %d\n",
590  *inst, thread.streamSeqNum);
591  issued = true;
592  discarded = true;
593  } else {
594  /* Try and issue an instruction into an FU, assume we didn't and
595  * fix that in the loop */
596  issued = false;
597 
598  /* Try FU from 0 each instruction */
599  fu_index = 0;
600 
601  /* Try and issue a single instruction stepping through the
602  * available FUs */
603  do {
604  FUPipeline *fu = funcUnits[fu_index];
605 
606  DPRINTF(MinorExecute, "Trying to issue inst: %s to FU: %d\n",
607  *inst, fu_index);
608 
609  /* Does the examined fu have the OpClass-related capability
610  * needed to execute this instruction? Faults can always
611  * issue to any FU but probably should just 'live' in the
612  * inFlightInsts queue rather than having an FU. */
613  bool fu_is_capable = (!inst->isFault() ?
614  fu->provides(inst->staticInst->opClass()) : true);
615 
616  if (inst->isNoCostInst()) {
617  /* Issue free insts. to a fake numbered FU */
618  fu_index = noCostFUIndex;
619 
620  /* And start the countdown on activity to allow
621  * this instruction to get to the end of its FU */
623 
624  /* Mark the destinations for this instruction as
625  * busy */
626  scoreboard[thread_id].markupInstDests(inst, cpu.curCycle() +
627  Cycles(0), cpu.getContext(thread_id), false);
628 
629  DPRINTF(MinorExecute, "Issuing %s to %d\n", inst->id, noCostFUIndex);
630  inst->fuIndex = noCostFUIndex;
631  inst->extraCommitDelay = Cycles(0);
632  inst->extraCommitDelayExpr = NULL;
633 
634  /* Push the instruction onto the inFlight queue so
635  * it can be committed in order */
636  QueuedInst fu_inst(inst);
637  thread.inFlightInsts->push(fu_inst);
638 
639  issued = true;
640 
641  } else if (!fu_is_capable || fu->alreadyPushed()) {
642  /* Skip */
643  if (!fu_is_capable) {
644  DPRINTF(MinorExecute, "Can't issue as FU: %d isn't"
645  " capable\n", fu_index);
646  } else {
647  DPRINTF(MinorExecute, "Can't issue as FU: %d is"
648  " already busy\n", fu_index);
649  }
650  } else if (fu->stalled) {
651  DPRINTF(MinorExecute, "Can't issue inst: %s into FU: %d,"
652  " it's stalled\n",
653  *inst, fu_index);
654  } else if (!fu->canInsert()) {
655  DPRINTF(MinorExecute, "Can't issue inst: %s to busy FU"
656  " for another: %d cycles\n",
657  *inst, fu->cyclesBeforeInsert());
658  } else {
659  MinorFUTiming *timing = (!inst->isFault() ?
660  fu->findTiming(inst->staticInst) : NULL);
661 
662  const std::vector<Cycles> *src_latencies =
663  (timing ? &(timing->srcRegsRelativeLats)
664  : NULL);
665 
666  const std::vector<bool> *cant_forward_from_fu_indices =
667  &(fu->cantForwardFromFUIndices);
668 
669  if (timing && timing->suppress) {
670  DPRINTF(MinorExecute, "Can't issue inst: %s as extra"
671  " decoding is suppressing it\n",
672  *inst);
673  } else if (!scoreboard[thread_id].canInstIssue(inst,
674  src_latencies, cant_forward_from_fu_indices,
675  cpu.curCycle(), cpu.getContext(thread_id)))
676  {
677  DPRINTF(MinorExecute, "Can't issue inst: %s yet\n",
678  *inst);
679  } else {
680  /* Can insert the instruction into this FU */
681  DPRINTF(MinorExecute, "Issuing inst: %s"
682  " into FU %d\n", *inst,
683  fu_index);
684 
685  Cycles extra_dest_retire_lat = Cycles(0);
686  TimingExpr *extra_dest_retire_lat_expr = NULL;
687  Cycles extra_assumed_lat = Cycles(0);
688 
689  /* Add the extraCommitDelay and extraAssumeLat to
690  * the FU pipeline timings */
691  if (timing) {
692  extra_dest_retire_lat =
693  timing->extraCommitLat;
694  extra_dest_retire_lat_expr =
695  timing->extraCommitLatExpr;
696  extra_assumed_lat =
697  timing->extraAssumedLat;
698  }
699 
700  issued_mem_ref = inst->isMemRef();
701 
702  QueuedInst fu_inst(inst);
703 
704  /* Decorate the inst with FU details */
705  inst->fuIndex = fu_index;
706  inst->extraCommitDelay = extra_dest_retire_lat;
707  inst->extraCommitDelayExpr =
708  extra_dest_retire_lat_expr;
709 
710  if (issued_mem_ref) {
711  /* Remember which instruction this memory op
712  * depends on so that initiateAcc can be called
713  * early */
714  if (allowEarlyMemIssue) {
715  inst->instToWaitFor =
716  scoreboard[thread_id].execSeqNumToWaitFor(inst,
717  cpu.getContext(thread_id));
718 
719  if (lsq.getLastMemBarrier(thread_id) >
720  inst->instToWaitFor)
721  {
722  DPRINTF(MinorExecute, "A barrier will"
723  " cause a delay in mem ref issue of"
724  " inst: %s until after inst"
725  " %d(exec)\n", *inst,
726  lsq.getLastMemBarrier(thread_id));
727 
728  inst->instToWaitFor =
729  lsq.getLastMemBarrier(thread_id);
730  } else {
731  DPRINTF(MinorExecute, "Memory ref inst:"
732  " %s must wait for inst %d(exec)"
733  " before issuing\n",
734  *inst, inst->instToWaitFor);
735  }
736 
737  inst->canEarlyIssue = true;
738  }
739  /* Also queue this instruction in the memory ref
740  * queue to ensure in-order issue to the LSQ */
741  DPRINTF(MinorExecute, "Pushing mem inst: %s\n",
742  *inst);
743  thread.inFUMemInsts->push(fu_inst);
744  }
745 
746  /* Issue to FU */
747  fu->push(fu_inst);
748  /* And start the countdown on activity to allow
749  * this instruction to get to the end of its FU */
751 
752  /* Mark the destinations for this instruction as
753  * busy */
754  scoreboard[thread_id].markupInstDests(inst, cpu.curCycle() +
755  fu->description.opLat +
756  extra_dest_retire_lat +
757  extra_assumed_lat,
758  cpu.getContext(thread_id),
759  issued_mem_ref && extra_assumed_lat == Cycles(0));
760 
761  /* Push the instruction onto the inFlight queue so
762  * it can be committed in order */
763  thread.inFlightInsts->push(fu_inst);
764 
765  issued = true;
766  }
767  }
768 
769  fu_index++;
770  } while (fu_index != numFuncUnits && !issued);
771 
772  if (!issued)
773  DPRINTF(MinorExecute, "Didn't issue inst: %s\n", *inst);
774  }
775 
776  if (issued) {
777  /* Generate MinorTrace's MinorInst lines. Do this at commit
778  * to allow better instruction annotation? */
779  if (DTRACE(MinorTrace) && !inst->isBubble())
780  inst->minorTraceInst(*this);
781 
782  /* Mark up barriers in the LSQ */
783  if (!discarded && inst->isInst() &&
784  inst->staticInst->isFullMemBarrier())
785  {
786  DPRINTF(MinorMem, "Issuing memory barrier inst: %s\n", *inst);
788  }
789 
790  if (inst->traceData && setTraceTimeOnIssue) {
791  inst->traceData->setWhen(curTick());
792  }
793 
794  if (issued_mem_ref)
795  num_mem_insts_issued++;
796 
797  if (discarded) {
798  num_insts_discarded++;
799  } else if (!inst->isBubble()) {
800  num_insts_issued++;
801 
802  if (num_insts_issued == issueLimit)
803  DPRINTF(MinorExecute, "Reached inst issue limit\n");
804  }
805 
806  thread.inputIndex++;
807  DPRINTF(MinorExecute, "Stepping to next inst inputIndex: %d\n",
808  thread.inputIndex);
809  }
810 
811  /* Got to the end of a line */
812  if (thread.inputIndex == insts_in->width()) {
813  popInput(thread_id);
814  /* Set insts_in to null to force us to leave the surrounding
815  * loop */
816  insts_in = NULL;
817 
819  DPRINTF(MinorExecute, "Wrapping\n");
820  insts_in = getInput(thread_id);
821  }
822  }
823  } while (insts_in && thread.inputIndex < insts_in->width() &&
824  /* We still have instructions */
825  fu_index != numFuncUnits && /* Not visited all FUs */
826  issued && /* We've not yet failed to issue an instruction */
827  num_insts_issued != issueLimit && /* Still allowed to issue */
828  num_mem_insts_issued != memoryIssueLimit);
829 
830  return num_insts_issued;
831 }
832 
833 bool
835 {
836  ThreadContext *thread = cpu.getContext(thread_id);
837  unsigned int num_pc_event_checks = 0;
838 
839  /* Handle PC events on instructions */
840  Addr oldPC;
841  do {
842  oldPC = thread->instAddr();
843  cpu.threads[thread_id]->pcEventQueue.service(oldPC, thread);
844  num_pc_event_checks++;
845  } while (oldPC != thread->instAddr());
846 
847  if (num_pc_event_checks > 1) {
848  DPRINTF(PCEvent, "Acting on PC Event to PC: %s\n",
849  thread->pcState());
850  }
851 
852  return num_pc_event_checks > 1;
853 }
854 
855 void
857 {
858  assert(!inst->isFault());
859 
860  MinorThread *thread = cpu.threads[inst->id.threadId];
861 
862  /* Increment the many and various inst and op counts in the
863  * thread and system */
864  if (!inst->staticInst->isMicroop() || inst->staticInst->isLastMicroop())
865  {
866  thread->numInst++;
867  thread->threadStats.numInsts++;
868  cpu.stats.numInsts++;
869 
870  /* Act on events related to instruction counts */
871  thread->comInstEventQueue.serviceEvents(thread->numInst);
872  }
873  thread->numOp++;
874  thread->threadStats.numOps++;
875  cpu.stats.numOps++;
876  cpu.stats.committedInstType[inst->id.threadId]
877  [inst->staticInst->opClass()]++;
878 
879  /* Set the CP SeqNum to the numOps commit number */
880  if (inst->traceData)
881  inst->traceData->setCPSeq(thread->numOp);
882 
883  cpu.probeInstCommit(inst->staticInst, inst->pc.instAddr());
884 }
885 
886 bool
887 Execute::commitInst(MinorDynInstPtr inst, bool early_memory_issue,
888  BranchData &branch, Fault &fault, bool &committed,
889  bool &completed_mem_issue)
890 {
891  ThreadID thread_id = inst->id.threadId;
892  ThreadContext *thread = cpu.getContext(thread_id);
893 
894  bool completed_inst = true;
895  fault = NoFault;
896 
897  /* Is the thread for this instruction suspended? In that case, just
898  * stall as long as there are no pending interrupts */
899  if (thread->status() == ThreadContext::Suspended &&
900  !isInterrupted(thread_id))
901  {
902  panic("We should never hit the case where we try to commit from a "
903  "suspended thread as the streamSeqNum should not match");
904  } else if (inst->isFault()) {
905  ExecContext context(cpu, *cpu.threads[thread_id], *this, inst);
906 
907  DPRINTF(MinorExecute, "Fault inst reached Execute: %s\n",
908  inst->fault->name());
909 
910  fault = inst->fault;
911  inst->fault->invoke(thread, NULL);
912 
913  tryToBranch(inst, fault, branch);
914  } else if (inst->staticInst->isMemRef()) {
915  /* Memory accesses are executed in two parts:
916  * executeMemRefInst -- calculates the EA and issues the access
917  * to memory. This is done here.
918  * handleMemResponse -- handles the response packet, done by
919  * Execute::commit
920  *
921  * While the memory access is in its FU, the EA is being
922  * calculated. At the end of the FU, when it is ready to
923  * 'commit' (in this function), the access is presented to the
924  * memory queues. When a response comes back from memory,
925  * Execute::commit will commit it.
926  */
927  bool predicate_passed = false;
928  bool completed_mem_inst = executeMemRefInst(inst, branch,
929  predicate_passed, fault);
930 
931  if (completed_mem_inst && fault != NoFault) {
932  if (early_memory_issue) {
933  DPRINTF(MinorExecute, "Fault in early executing inst: %s\n",
934  fault->name());
935  /* Don't execute the fault, just stall the instruction
936  * until it gets to the head of inFlightInsts */
937  inst->canEarlyIssue = false;
938  /* Not completed as we'll come here again to pick up
939  * the fault when we get to the end of the FU */
940  completed_inst = false;
941  } else {
942  DPRINTF(MinorExecute, "Fault in execute: %s\n",
943  fault->name());
944  fault->invoke(thread, NULL);
945 
946  tryToBranch(inst, fault, branch);
947  completed_inst = true;
948  }
949  } else {
950  completed_inst = completed_mem_inst;
951  }
952  completed_mem_issue = completed_inst;
953  } else if (inst->isInst() && inst->staticInst->isFullMemBarrier() &&
955  {
956  DPRINTF(MinorExecute, "Can't commit data barrier inst: %s yet as"
957  " there isn't space in the store buffer\n", *inst);
958 
959  completed_inst = false;
960  } else if (inst->isInst() && inst->staticInst->isQuiesce()
961  && !branch.isBubble()){
962  /* This instruction can suspend, need to be able to communicate
963  * backwards, so no other branches may evaluate this cycle*/
964  completed_inst = false;
965  } else {
966  ExecContext context(cpu, *cpu.threads[thread_id], *this, inst);
967 
968  DPRINTF(MinorExecute, "Committing inst: %s\n", *inst);
969 
970  fault = inst->staticInst->execute(&context,
971  inst->traceData);
972 
973  /* Set the predicate for tracing and dump */
974  if (inst->traceData)
975  inst->traceData->setPredicate(context.readPredicate());
976 
977  committed = true;
978 
979  if (fault != NoFault) {
980  if (inst->traceData) {
981  if (DTRACE(ExecFaulting)) {
982  inst->traceData->setFaulting(true);
983  } else {
984  delete inst->traceData;
985  inst->traceData = NULL;
986  }
987  }
988 
989  DPRINTF(MinorExecute, "Fault in execute of inst: %s fault: %s\n",
990  *inst, fault->name());
991  fault->invoke(thread, inst->staticInst);
992  }
993 
995  tryToBranch(inst, fault, branch);
996  }
997 
998  if (completed_inst) {
999  /* Keep a copy of this instruction's predictionSeqNum just in case
1000  * we need to issue a branch without an instruction (such as an
1001  * interrupt) */
1002  executeInfo[thread_id].lastPredictionSeqNum = inst->id.predictionSeqNum;
1003 
1004  /* Check to see if this instruction suspended the current thread. */
1005  if (!inst->isFault() &&
1006  thread->status() == ThreadContext::Suspended &&
1007  branch.isBubble() && /* It didn't branch too */
1008  !isInterrupted(thread_id)) /* Don't suspend if we have
1009  interrupts */
1010  {
1011  TheISA::PCState resume_pc = cpu.getContext(thread_id)->pcState();
1012 
1013  assert(resume_pc.microPC() == 0);
1014 
1015  DPRINTF(MinorInterrupt, "Suspending thread: %d from Execute"
1016  " inst: %s\n", thread_id, *inst);
1017 
1019 
1021  resume_pc, branch);
1022  }
1023  }
1024 
1025  return completed_inst;
1026 }
1027 
1028 void
1029 Execute::commit(ThreadID thread_id, bool only_commit_microops, bool discard,
1030  BranchData &branch)
1031 {
1032  Fault fault = NoFault;
1033  Cycles now = cpu.curCycle();
1034  ExecuteThreadInfo &ex_info = executeInfo[thread_id];
1035 
1061  /* Has an instruction been completed? Once this becomes false, we stop
1062  * trying to complete instructions. */
1063  bool completed_inst = true;
1064 
1065  /* Number of insts committed this cycle to check against commitLimit */
1066  unsigned int num_insts_committed = 0;
1067 
1068  /* Number of memory access instructions committed to check against
1069  * memCommitLimit */
1070  unsigned int num_mem_refs_committed = 0;
1071 
1072  if (only_commit_microops && !ex_info.inFlightInsts->empty()) {
1073  DPRINTF(MinorInterrupt, "Only commit microops %s %d\n",
1074  *(ex_info.inFlightInsts->front().inst),
1075  ex_info.lastCommitWasEndOfMacroop);
1076  }
1077 
1078  while (!ex_info.inFlightInsts->empty() && /* Some more instructions to process */
1079  !branch.isStreamChange() && /* No real branch */
1080  fault == NoFault && /* No faults */
1081  completed_inst && /* Still finding instructions to execute */
1082  num_insts_committed != commitLimit /* Not reached commit limit */
1083  )
1084  {
1085  if (only_commit_microops) {
1086  DPRINTF(MinorInterrupt, "Committing tail of insts before"
1087  " interrupt: %s\n",
1088  *(ex_info.inFlightInsts->front().inst));
1089  }
1090 
1091  QueuedInst *head_inflight_inst = &(ex_info.inFlightInsts->front());
1092 
1093  InstSeqNum head_exec_seq_num =
1094  head_inflight_inst->inst->id.execSeqNum;
1095 
1096  /* The instruction we actually process if completed_inst
1097  * remains true to the end of the loop body.
1098  * Start by considering the the head of the in flight insts queue */
1099  MinorDynInstPtr inst = head_inflight_inst->inst;
1100 
1101  bool committed_inst = false;
1102  bool discard_inst = false;
1103  bool completed_mem_ref = false;
1104  bool issued_mem_ref = false;
1105  bool early_memory_issue = false;
1106 
1107  /* Must set this again to go around the loop */
1108  completed_inst = false;
1109 
1110  /* If we're just completing a macroop before an interrupt or drain,
1111  * can we stil commit another microop (rather than a memory response)
1112  * without crosing into the next full instruction? */
1113  bool can_commit_insts = !ex_info.inFlightInsts->empty() &&
1114  !(only_commit_microops && ex_info.lastCommitWasEndOfMacroop);
1115 
1116  /* Can we find a mem response for this inst */
1117  LSQ::LSQRequestPtr mem_response =
1118  (inst->inLSQ ? lsq.findResponse(inst) : NULL);
1119 
1120  DPRINTF(MinorExecute, "Trying to commit canCommitInsts: %d\n",
1121  can_commit_insts);
1122 
1123  /* Test for PC events after every instruction */
1124  if (isInbetweenInsts(thread_id) && tryPCEvents(thread_id)) {
1125  ThreadContext *thread = cpu.getContext(thread_id);
1126 
1127  /* Branch as there was a change in PC */
1129  MinorDynInst::bubble(), thread->pcState(), branch);
1130  } else if (mem_response &&
1131  num_mem_refs_committed < memoryCommitLimit)
1132  {
1133  /* Try to commit from the memory responses next */
1134  discard_inst = inst->id.streamSeqNum !=
1135  ex_info.streamSeqNum || discard;
1136 
1137  DPRINTF(MinorExecute, "Trying to commit mem response: %s\n",
1138  *inst);
1139 
1140  /* Complete or discard the response */
1141  if (discard_inst) {
1142  DPRINTF(MinorExecute, "Discarding mem inst: %s as its"
1143  " stream state was unexpected, expected: %d\n",
1144  *inst, ex_info.streamSeqNum);
1145 
1146  lsq.popResponse(mem_response);
1147  } else {
1148  handleMemResponse(inst, mem_response, branch, fault);
1149  committed_inst = true;
1150  }
1151 
1152  completed_mem_ref = true;
1153  completed_inst = true;
1154  } else if (can_commit_insts) {
1155  /* If true, this instruction will, subject to timing tweaks,
1156  * be considered for completion. try_to_commit flattens
1157  * the `if' tree a bit and allows other tests for inst
1158  * commit to be inserted here. */
1159  bool try_to_commit = false;
1160 
1161  /* Try and issue memory ops early if they:
1162  * - Can push a request into the LSQ
1163  * - Have reached the end of their FUs
1164  * - Have had all their dependencies satisfied
1165  * - Are from the right stream
1166  *
1167  * For any other case, leave it to the normal instruction
1168  * issue below to handle them.
1169  */
1170  if (!ex_info.inFUMemInsts->empty() && lsq.canRequest()) {
1171  DPRINTF(MinorExecute, "Trying to commit from mem FUs\n");
1172 
1173  const MinorDynInstPtr head_mem_ref_inst =
1174  ex_info.inFUMemInsts->front().inst;
1175  FUPipeline *fu = funcUnits[head_mem_ref_inst->fuIndex];
1176  const MinorDynInstPtr &fu_inst = fu->front().inst;
1177 
1178  /* Use this, possibly out of order, inst as the one
1179  * to 'commit'/send to the LSQ */
1180  if (!fu_inst->isBubble() &&
1181  !fu_inst->inLSQ &&
1182  fu_inst->canEarlyIssue &&
1183  ex_info.streamSeqNum == fu_inst->id.streamSeqNum &&
1184  head_exec_seq_num > fu_inst->instToWaitFor)
1185  {
1186  DPRINTF(MinorExecute, "Issuing mem ref early"
1187  " inst: %s instToWaitFor: %d\n",
1188  *(fu_inst), fu_inst->instToWaitFor);
1189 
1190  inst = fu_inst;
1191  try_to_commit = true;
1192  early_memory_issue = true;
1193  completed_inst = true;
1194  }
1195  }
1196 
1197  /* Try and commit FU-less insts */
1198  if (!completed_inst && inst->isNoCostInst()) {
1199  DPRINTF(MinorExecute, "Committing no cost inst: %s", *inst);
1200 
1201  try_to_commit = true;
1202  completed_inst = true;
1203  }
1204 
1205  /* Try to issue from the ends of FUs and the inFlightInsts
1206  * queue */
1207  if (!completed_inst && !inst->inLSQ) {
1208  DPRINTF(MinorExecute, "Trying to commit from FUs\n");
1209 
1210  /* Try to commit from a functional unit */
1211  /* Is the head inst of the expected inst's FU actually the
1212  * expected inst? */
1213  QueuedInst &fu_inst =
1214  funcUnits[inst->fuIndex]->front();
1215  InstSeqNum fu_inst_seq_num = fu_inst.inst->id.execSeqNum;
1216 
1217  if (fu_inst.inst->isBubble()) {
1218  /* No instruction ready */
1219  completed_inst = false;
1220  } else if (fu_inst_seq_num != head_exec_seq_num) {
1221  /* Past instruction: we must have already executed it
1222  * in the same cycle and so the head inst isn't
1223  * actually at the end of its pipeline
1224  * Future instruction: handled above and only for
1225  * mem refs on their way to the LSQ */
1226  } else if (fu_inst.inst->id == inst->id) {
1227  /* All instructions can be committed if they have the
1228  * right execSeqNum and there are no in-flight
1229  * mem insts before us */
1230  try_to_commit = true;
1231  completed_inst = true;
1232  }
1233  }
1234 
1235  if (try_to_commit) {
1236  discard_inst = inst->id.streamSeqNum !=
1237  ex_info.streamSeqNum || discard;
1238 
1239  /* Is this instruction discardable as its streamSeqNum
1240  * doesn't match? */
1241  if (!discard_inst) {
1242  /* Try to commit or discard a non-memory instruction.
1243  * Memory ops are actually 'committed' from this FUs
1244  * and 'issued' into the memory system so we need to
1245  * account for them later (commit_was_mem_issue gets
1246  * set) */
1247  if (inst->extraCommitDelayExpr) {
1248  DPRINTF(MinorExecute, "Evaluating expression for"
1249  " extra commit delay inst: %s\n", *inst);
1250 
1251  ThreadContext *thread = cpu.getContext(thread_id);
1252 
1253  TimingExprEvalContext context(inst->staticInst,
1254  thread, NULL);
1255 
1256  uint64_t extra_delay = inst->extraCommitDelayExpr->
1257  eval(context);
1258 
1259  DPRINTF(MinorExecute, "Extra commit delay expr"
1260  " result: %d\n", extra_delay);
1261 
1262  if (extra_delay < 128) {
1263  inst->extraCommitDelay += Cycles(extra_delay);
1264  } else {
1265  DPRINTF(MinorExecute, "Extra commit delay was"
1266  " very long: %d\n", extra_delay);
1267  }
1268  inst->extraCommitDelayExpr = NULL;
1269  }
1270 
1271  /* Move the extraCommitDelay from the instruction
1272  * into the minimumCommitCycle */
1273  if (inst->extraCommitDelay != Cycles(0)) {
1274  inst->minimumCommitCycle = cpu.curCycle() +
1275  inst->extraCommitDelay;
1276  inst->extraCommitDelay = Cycles(0);
1277  }
1278 
1279  /* @todo Think about making lastMemBarrier be
1280  * MAX_UINT_64 to avoid using 0 as a marker value */
1281  if (!inst->isFault() && inst->isMemRef() &&
1282  lsq.getLastMemBarrier(thread_id) <
1283  inst->id.execSeqNum &&
1284  lsq.getLastMemBarrier(thread_id) != 0)
1285  {
1286  DPRINTF(MinorExecute, "Not committing inst: %s yet"
1287  " as there are incomplete barriers in flight\n",
1288  *inst);
1289  completed_inst = false;
1290  } else if (inst->minimumCommitCycle > now) {
1291  DPRINTF(MinorExecute, "Not committing inst: %s yet"
1292  " as it wants to be stalled for %d more cycles\n",
1293  *inst, inst->minimumCommitCycle - now);
1294  completed_inst = false;
1295  } else {
1296  completed_inst = commitInst(inst,
1297  early_memory_issue, branch, fault,
1298  committed_inst, issued_mem_ref);
1299  }
1300  } else {
1301  /* Discard instruction */
1302  completed_inst = true;
1303  }
1304 
1305  if (completed_inst) {
1306  /* Allow the pipeline to advance. If the FU head
1307  * instruction wasn't the inFlightInsts head
1308  * but had already been committed, it would have
1309  * unstalled the pipeline before here */
1310  if (inst->fuIndex != noCostFUIndex) {
1311  DPRINTF(MinorExecute, "Unstalling %d for inst %s\n", inst->fuIndex, inst->id);
1312  funcUnits[inst->fuIndex]->stalled = false;
1313  }
1314  }
1315  }
1316  } else {
1317  DPRINTF(MinorExecute, "No instructions to commit\n");
1318  completed_inst = false;
1319  }
1320 
1321  /* All discardable instructions must also be 'completed' by now */
1322  assert(!(discard_inst && !completed_inst));
1323 
1324  /* Instruction committed but was discarded due to streamSeqNum
1325  * mismatch */
1326  if (discard_inst) {
1327  DPRINTF(MinorExecute, "Discarding inst: %s as its stream"
1328  " state was unexpected, expected: %d\n",
1329  *inst, ex_info.streamSeqNum);
1330 
1331  if (fault == NoFault)
1333  }
1334 
1335  /* Mark the mem inst as being in the LSQ */
1336  if (issued_mem_ref) {
1337  inst->fuIndex = 0;
1338  inst->inLSQ = true;
1339  }
1340 
1341  /* Pop issued (to LSQ) and discarded mem refs from the inFUMemInsts
1342  * as they've *definitely* exited the FUs */
1343  if (completed_inst && inst->isMemRef()) {
1344  /* The MemRef could have been discarded from the FU or the memory
1345  * queue, so just check an FU instruction */
1346  if (!ex_info.inFUMemInsts->empty() &&
1347  ex_info.inFUMemInsts->front().inst == inst)
1348  {
1349  ex_info.inFUMemInsts->pop();
1350  }
1351  }
1352 
1353  if (completed_inst && !(issued_mem_ref && fault == NoFault)) {
1354  /* Note that this includes discarded insts */
1355  DPRINTF(MinorExecute, "Completed inst: %s\n", *inst);
1356 
1357  /* Got to the end of a full instruction? */
1358  ex_info.lastCommitWasEndOfMacroop = inst->isFault() ||
1359  inst->isLastOpInInst();
1360 
1361  /* lastPredictionSeqNum is kept as a convenience to prevent its
1362  * value from changing too much on the minorview display */
1363  ex_info.lastPredictionSeqNum = inst->id.predictionSeqNum;
1364 
1365  /* Finished with the inst, remove it from the inst queue and
1366  * clear its dependencies */
1367  ex_info.inFlightInsts->pop();
1368 
1369  /* Complete barriers in the LSQ/move to store buffer */
1370  if (inst->isInst() && inst->staticInst->isFullMemBarrier()) {
1371  DPRINTF(MinorMem, "Completing memory barrier"
1372  " inst: %s committed: %d\n", *inst, committed_inst);
1373  lsq.completeMemBarrierInst(inst, committed_inst);
1374  }
1375 
1376  scoreboard[thread_id].clearInstDests(inst, inst->isMemRef());
1377  }
1378 
1379  /* Handle per-cycle instruction counting */
1380  if (committed_inst) {
1381  bool is_no_cost_inst = inst->isNoCostInst();
1382 
1383  /* Don't show no cost instructions as having taken a commit
1384  * slot */
1385  if (DTRACE(MinorTrace) && !is_no_cost_inst)
1386  ex_info.instsBeingCommitted.insts[num_insts_committed] = inst;
1387 
1388  if (!is_no_cost_inst)
1389  num_insts_committed++;
1390 
1391  if (num_insts_committed == commitLimit)
1392  DPRINTF(MinorExecute, "Reached inst commit limit\n");
1393 
1394  /* Re-set the time of the instruction if that's required for
1395  * tracing */
1396  if (inst->traceData) {
1398  inst->traceData->setWhen(curTick());
1399  inst->traceData->dump();
1400  }
1401 
1402  if (completed_mem_ref)
1403  num_mem_refs_committed++;
1404 
1405  if (num_mem_refs_committed == memoryCommitLimit)
1406  DPRINTF(MinorExecute, "Reached mem ref commit limit\n");
1407  }
1408  }
1409 }
1410 
1411 bool
1413 {
1414  return executeInfo[thread_id].lastCommitWasEndOfMacroop &&
1415  !lsq.accessesInFlight();
1416 }
1417 
1418 void
1420 {
1421  if (!inp.outputWire->isBubble())
1422  inputBuffer[inp.outputWire->threadId].setTail(*inp.outputWire);
1423 
1424  BranchData &branch = *out.inputWire;
1425 
1426  unsigned int num_issued = 0;
1427 
1428  /* Do all the cycle-wise activities for dcachePort here to potentially
1429  * free up input spaces in the LSQ's requests queue */
1430  lsq.step();
1431 
1432  /* Check interrupts first. Will halt commit if interrupt found */
1433  bool interrupted = false;
1434  ThreadID interrupt_tid = checkInterrupts(branch, interrupted);
1435 
1436  if (interrupt_tid != InvalidThreadID) {
1437  /* Signalling an interrupt this cycle, not issuing/committing from
1438  * any other threads */
1439  } else if (!branch.isBubble()) {
1440  /* It's important that this is here to carry Fetch1 wakeups to Fetch1
1441  * without overwriting them */
1442  DPRINTF(MinorInterrupt, "Execute skipping a cycle to allow old"
1443  " branch to complete\n");
1444  } else {
1445  ThreadID commit_tid = getCommittingThread();
1446 
1447  if (commit_tid != InvalidThreadID) {
1448  ExecuteThreadInfo& commit_info = executeInfo[commit_tid];
1449 
1450  DPRINTF(MinorExecute, "Attempting to commit [tid:%d]\n",
1451  commit_tid);
1452  /* commit can set stalled flags observable to issue and so *must* be
1453  * called first */
1454  if (commit_info.drainState != NotDraining) {
1455  if (commit_info.drainState == DrainCurrentInst) {
1456  /* Commit only micro-ops, don't kill anything else */
1457  commit(commit_tid, true, false, branch);
1458 
1459  if (isInbetweenInsts(commit_tid))
1460  setDrainState(commit_tid, DrainHaltFetch);
1461 
1462  /* Discard any generated branch */
1463  branch = BranchData::bubble();
1464  } else if (commit_info.drainState == DrainAllInsts) {
1465  /* Kill all instructions */
1466  while (getInput(commit_tid))
1467  popInput(commit_tid);
1468  commit(commit_tid, false, true, branch);
1469  }
1470  } else {
1471  /* Commit micro-ops only if interrupted. Otherwise, commit
1472  * anything you like */
1473  DPRINTF(MinorExecute, "Committing micro-ops for interrupt[tid:%d]\n",
1474  commit_tid);
1475  bool only_commit_microops = interrupted &&
1476  hasInterrupt(commit_tid);
1477  commit(commit_tid, only_commit_microops, false, branch);
1478  }
1479 
1480  /* Halt fetch, but don't do it until we have the current instruction in
1481  * the bag */
1482  if (commit_info.drainState == DrainHaltFetch) {
1484  MinorDynInst::bubble(), TheISA::PCState(0), branch);
1485 
1487  setDrainState(commit_tid, DrainAllInsts);
1488  }
1489  }
1490  ThreadID issue_tid = getIssuingThread();
1491  /* This will issue merrily even when interrupted in the sure and
1492  * certain knowledge that the interrupt with change the stream */
1493  if (issue_tid != InvalidThreadID) {
1494  DPRINTF(MinorExecute, "Attempting to issue [tid:%d]\n",
1495  issue_tid);
1496  num_issued = issue(issue_tid);
1497  }
1498 
1499  }
1500 
1501  /* Run logic to step functional units + decide if we are active on the next
1502  * clock cycle */
1503  std::vector<MinorDynInstPtr> next_issuable_insts;
1504  bool can_issue_next = false;
1505 
1506  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
1507  /* Find the next issuable instruction for each thread and see if it can
1508  be issued */
1509  if (getInput(tid)) {
1510  unsigned int input_index = executeInfo[tid].inputIndex;
1511  MinorDynInstPtr inst = getInput(tid)->insts[input_index];
1512  if (inst->isFault()) {
1513  can_issue_next = true;
1514  } else if (!inst->isBubble()) {
1515  next_issuable_insts.push_back(inst);
1516  }
1517  }
1518  }
1519 
1520  bool becoming_stalled = true;
1521 
1522  /* Advance the pipelines and note whether they still need to be
1523  * advanced */
1524  for (unsigned int i = 0; i < numFuncUnits; i++) {
1525  FUPipeline *fu = funcUnits[i];
1526  fu->advance();
1527 
1528  /* If we need to tick again, the pipeline will have been left or set
1529  * to be unstalled */
1530  if (fu->occupancy !=0 && !fu->stalled)
1531  becoming_stalled = false;
1532 
1533  /* Could we possibly issue the next instruction from any thread?
1534  * This is quite an expensive test and is only used to determine
1535  * if the CPU should remain active, only run it if we aren't sure
1536  * we are active next cycle yet */
1537  for (auto inst : next_issuable_insts) {
1538  if (!fu->stalled && fu->provides(inst->staticInst->opClass()) &&
1539  scoreboard[inst->id.threadId].canInstIssue(inst,
1540  NULL, NULL, cpu.curCycle() + Cycles(1),
1541  cpu.getContext(inst->id.threadId))) {
1542  can_issue_next = true;
1543  break;
1544  }
1545  }
1546  }
1547 
1548  bool head_inst_might_commit = false;
1549 
1550  /* Could the head in flight insts be committed */
1551  for (auto const &info : executeInfo) {
1552  if (!info.inFlightInsts->empty()) {
1553  const QueuedInst &head_inst = info.inFlightInsts->front();
1554 
1555  if (head_inst.inst->isNoCostInst()) {
1556  head_inst_might_commit = true;
1557  } else {
1558  FUPipeline *fu = funcUnits[head_inst.inst->fuIndex];
1559  if ((fu->stalled &&
1560  fu->front().inst->id == head_inst.inst->id) ||
1561  lsq.findResponse(head_inst.inst))
1562  {
1563  head_inst_might_commit = true;
1564  break;
1565  }
1566  }
1567  }
1568  }
1569 
1570  DPRINTF(Activity, "Need to tick num issued insts: %s%s%s%s%s%s\n",
1571  (num_issued != 0 ? " (issued some insts)" : ""),
1572  (becoming_stalled ? "(becoming stalled)" : "(not becoming stalled)"),
1573  (can_issue_next ? " (can issued next inst)" : ""),
1574  (head_inst_might_commit ? "(head inst might commit)" : ""),
1575  (lsq.needsToTick() ? " (LSQ needs to tick)" : ""),
1576  (interrupted ? " (interrupted)" : ""));
1577 
1578  bool need_to_tick =
1579  num_issued != 0 || /* Issued some insts this cycle */
1580  !becoming_stalled || /* Some FU pipelines can still move */
1581  can_issue_next || /* Can still issue a new inst */
1582  head_inst_might_commit || /* Could possible commit the next inst */
1583  lsq.needsToTick() || /* Must step the dcache port */
1584  interrupted; /* There are pending interrupts */
1585 
1586  if (!need_to_tick) {
1587  DPRINTF(Activity, "The next cycle might be skippable as there are no"
1588  " advanceable FUs\n");
1589  }
1590 
1591  /* Wake up if we need to tick again */
1592  if (need_to_tick)
1594 
1595  /* Note activity of following buffer */
1596  if (!branch.isBubble())
1598 
1599  /* Make sure the input (if any left) is pushed */
1600  if (!inp.outputWire->isBubble())
1601  inputBuffer[inp.outputWire->threadId].pushTail();
1602 }
1603 
1604 ThreadID
1605 Execute::checkInterrupts(BranchData& branch, bool& interrupted)
1606 {
1608  /* Evaluate interrupts in round-robin based upon service */
1609  do {
1610  /* Has an interrupt been signalled? This may not be acted on
1611  * straighaway so this is different from took_interrupt */
1612  bool thread_interrupted = false;
1613 
1614  if (FullSystem && cpu.getInterruptController(tid)) {
1615  /* This is here because it seems that after drainResume the
1616  * interrupt controller isn't always set */
1617  thread_interrupted = executeInfo[tid].drainState == NotDraining &&
1618  isInterrupted(tid);
1619  interrupted = interrupted || thread_interrupted;
1620  } else {
1621  DPRINTF(MinorInterrupt, "No interrupt controller\n");
1622  }
1623  DPRINTF(MinorInterrupt, "[tid:%d] thread_interrupted?=%d isInbetweenInsts?=%d\n",
1624  tid, thread_interrupted, isInbetweenInsts(tid));
1625  /* Act on interrupts */
1626  if (thread_interrupted && isInbetweenInsts(tid)) {
1627  if (takeInterrupt(tid, branch)) {
1628  interruptPriority = tid;
1629  return tid;
1630  }
1631  } else {
1632  tid = (tid + 1) % cpu.numThreads;
1633  }
1634  } while (tid != interruptPriority);
1635 
1636  return InvalidThreadID;
1637 }
1638 
1639 bool
1641 {
1642  if (FullSystem && cpu.getInterruptController(thread_id)) {
1643  return executeInfo[thread_id].drainState == NotDraining &&
1644  isInterrupted(thread_id);
1645  }
1646 
1647  return false;
1648 }
1649 
1650 void
1652 {
1653  std::ostringstream insts;
1654  std::ostringstream stalled;
1655 
1656  executeInfo[0].instsBeingCommitted.reportData(insts);
1657  lsq.minorTrace();
1658  inputBuffer[0].minorTrace();
1659  scoreboard[0].minorTrace();
1660 
1661  /* Report functional unit stalling in one string */
1662  unsigned int i = 0;
1663  while (i < numFuncUnits)
1664  {
1665  stalled << (funcUnits[i]->stalled ? '1' : 'E');
1666  i++;
1667  if (i != numFuncUnits)
1668  stalled << ',';
1669  }
1670 
1671  MINORTRACE("insts=%s inputIndex=%d streamSeqNum=%d"
1672  " stalled=%s drainState=%d isInbetweenInsts=%d\n",
1673  insts.str(), executeInfo[0].inputIndex, executeInfo[0].streamSeqNum,
1674  stalled.str(), executeInfo[0].drainState, isInbetweenInsts(0));
1675 
1676  std::for_each(funcUnits.begin(), funcUnits.end(),
1677  std::mem_fun(&FUPipeline::minorTrace));
1678 
1679  executeInfo[0].inFlightInsts->minorTrace();
1680  executeInfo[0].inFUMemInsts->minorTrace();
1681 }
1682 
1683 inline ThreadID
1685 {
1686  std::vector<ThreadID> priority_list;
1687 
1688  switch (cpu.threadPolicy) {
1689  case Enums::SingleThreaded:
1690  return 0;
1691  case Enums::RoundRobin:
1692  priority_list = cpu.roundRobinPriority(commitPriority);
1693  break;
1694  case Enums::Random:
1695  priority_list = cpu.randomPriority();
1696  break;
1697  default:
1698  panic("Invalid thread policy");
1699  }
1700 
1701  for (auto tid : priority_list) {
1702  ExecuteThreadInfo &ex_info = executeInfo[tid];
1703  bool can_commit_insts = !ex_info.inFlightInsts->empty();
1704  if (can_commit_insts) {
1705  QueuedInst *head_inflight_inst = &(ex_info.inFlightInsts->front());
1706  MinorDynInstPtr inst = head_inflight_inst->inst;
1707 
1708  can_commit_insts = can_commit_insts &&
1709  (!inst->inLSQ || (lsq.findResponse(inst) != NULL));
1710 
1711  if (!inst->inLSQ) {
1712  bool can_transfer_mem_inst = false;
1713  if (!ex_info.inFUMemInsts->empty() && lsq.canRequest()) {
1714  const MinorDynInstPtr head_mem_ref_inst =
1715  ex_info.inFUMemInsts->front().inst;
1716  FUPipeline *fu = funcUnits[head_mem_ref_inst->fuIndex];
1717  const MinorDynInstPtr &fu_inst = fu->front().inst;
1718  can_transfer_mem_inst =
1719  !fu_inst->isBubble() &&
1720  fu_inst->id.threadId == tid &&
1721  !fu_inst->inLSQ &&
1722  fu_inst->canEarlyIssue &&
1723  inst->id.execSeqNum > fu_inst->instToWaitFor;
1724  }
1725 
1726  bool can_execute_fu_inst = inst->fuIndex == noCostFUIndex;
1727  if (can_commit_insts && !can_transfer_mem_inst &&
1728  inst->fuIndex != noCostFUIndex)
1729  {
1730  QueuedInst& fu_inst = funcUnits[inst->fuIndex]->front();
1731  can_execute_fu_inst = !fu_inst.inst->isBubble() &&
1732  fu_inst.inst->id == inst->id;
1733  }
1734 
1735  can_commit_insts = can_commit_insts &&
1736  (can_transfer_mem_inst || can_execute_fu_inst);
1737  }
1738  }
1739 
1740 
1741  if (can_commit_insts) {
1742  commitPriority = tid;
1743  return tid;
1744  }
1745  }
1746 
1747  return InvalidThreadID;
1748 }
1749 
1750 inline ThreadID
1752 {
1753  std::vector<ThreadID> priority_list;
1754 
1755  switch (cpu.threadPolicy) {
1756  case Enums::SingleThreaded:
1757  return 0;
1758  case Enums::RoundRobin:
1759  priority_list = cpu.roundRobinPriority(issuePriority);
1760  break;
1761  case Enums::Random:
1762  priority_list = cpu.randomPriority();
1763  break;
1764  default:
1765  panic("Invalid thread scheduling policy.");
1766  }
1767 
1768  for (auto tid : priority_list) {
1769  if (getInput(tid)) {
1770  issuePriority = tid;
1771  return tid;
1772  }
1773  }
1774 
1775  return InvalidThreadID;
1776 }
1777 
1778 void
1780 {
1781  DPRINTF(Drain, "MinorExecute drainResume\n");
1782 
1783  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
1784  setDrainState(tid, NotDraining);
1785  }
1786 
1788 }
1789 
1790 std::ostream &operator <<(std::ostream &os, Execute::DrainState state)
1791 {
1792  switch (state)
1793  {
1794  case Execute::NotDraining:
1795  os << "NotDraining";
1796  break;
1798  os << "DrainCurrentInst";
1799  break;
1801  os << "DrainHaltFetch";
1802  break;
1804  os << "DrainAllInsts";
1805  break;
1806  default:
1807  os << "Drain-" << static_cast<int>(state);
1808  break;
1809  }
1810 
1811  return os;
1812 }
1813 
1814 void
1816 {
1817  DPRINTF(Drain, "setDrainState[%d]: %s\n", thread_id, state);
1818  executeInfo[thread_id].drainState = state;
1819 }
1820 
1821 unsigned int
1823 {
1824  DPRINTF(Drain, "MinorExecute drain\n");
1825 
1826  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
1827  if (executeInfo[tid].drainState == NotDraining) {
1829 
1830  /* Go to DrainCurrentInst if we're between microops
1831  * or waiting on an unbufferable memory operation.
1832  * Otherwise we can go straight to DrainHaltFetch
1833  */
1834  if (isInbetweenInsts(tid))
1836  else
1838  }
1839  }
1840  return (isDrained() ? 0 : 1);
1841 }
1842 
1843 bool
1845 {
1846  if (!lsq.isDrained())
1847  return false;
1848 
1849  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
1850  if (!inputBuffer[tid].empty() ||
1851  !executeInfo[tid].inFlightInsts->empty()) {
1852 
1853  return false;
1854  }
1855  }
1856 
1857  return true;
1858 }
1859 
1861 {
1862  for (unsigned int i = 0; i < numFuncUnits; i++)
1863  delete funcUnits[i];
1864 
1865  for (ThreadID tid = 0; tid < cpu.numThreads; tid++)
1866  delete executeInfo[tid].inFlightInsts;
1867 }
1868 
1869 bool
1871 {
1872  return inst->id.streamSeqNum == executeInfo[inst->id.threadId].streamSeqNum;
1873 }
1874 
1875 bool
1877 {
1878  bool ret = false;
1879 
1880  if (!executeInfo[inst->id.threadId].inFlightInsts->empty())
1881  ret = executeInfo[inst->id.threadId].inFlightInsts->front().inst->id == inst->id;
1882 
1883  return ret;
1884 }
1885 
1888 {
1889  return lsq.getDcachePort();
1890 }
1891 
1892 }
Minor::Execute::ExecuteThreadInfo::inFUMemInsts
Queue< QueuedInst, ReportTraitsAdaptor< QueuedInst > > * inFUMemInsts
Memory ref instructions still in the FUs.
Definition: execute.hh:171
InvalidThreadID
const ThreadID InvalidThreadID
Definition: types.hh:234
Num_OpClasses
static const OpClass Num_OpClasses
Definition: op_class.hh:105
ThreadState::ThreadStateStats::numInsts
Stats::Scalar numInsts
Stat for number instructions committed.
Definition: thread_state.hh:116
Minor::LSQ::getDcachePort
MinorCPU::MinorCPUPort & getDcachePort()
Return the raw-bindable port.
Definition: lsq.hh:727
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Packet::isError
bool isError() const
Definition: packet.hh:584
Minor::Execute::inputBuffer
std::vector< InputBuffer< ForwardInstData > > inputBuffer
Definition: execute.hh:126
MinorFUTiming::srcRegsRelativeLats
std::vector< Cycles > srcRegsRelativeLats
Cycle offsets from the scoreboard delivery times of register values for each of this instruction's so...
Definition: func_unit.hh:133
Minor::Execute::isInterrupted
bool isInterrupted(ThreadID thread_id) const
Has an interrupt been raised.
Definition: execute.cc:410
Minor::LSQ::popResponse
void popResponse(LSQRequestPtr response)
Sanity check and pop the head response.
Definition: lsq.cc:1518
Minor::Execute::out
Latch< BranchData >::Input out
Input port carrying stream changes to Fetch1.
Definition: execute.hh:70
Minor::Execute::commitPriority
ThreadID commitPriority
Definition: execute.hh:205
MinorCPU::wakeupOnEvent
void wakeupOnEvent(unsigned int stage_id)
Interface for stages to signal that they have become active after a callback or eventq event where th...
Definition: cpu.cc:300
X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
warn
#define warn(...)
Definition: logging.hh:239
Minor::ForwardInstData
Forward flowing data between Fetch2,Decode,Execute carrying a packet of instructions of a width appro...
Definition: pipe_data.hh:253
Minor::Execute::tryPCEvents
bool tryPCEvents(ThreadID thread_id)
Try to act on PC-related events.
Definition: execute.cc:834
Minor::MinorBuffer< ElemType, ReportTraits >::minorTrace
void minorTrace() const
Report buffer states from 'slot' 'from' to 'to'.
Definition: buffers.hh:193
TimingExprEvalContext
Object to gather the visible context for evaluation.
Definition: timing_expr.hh:70
op_class.hh
MinorFUTiming
Extra timing capability to allow individual ops to have their source register dependency latencies tw...
Definition: func_unit.hh:100
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
Minor::Execute::ExecuteThreadInfo::lastCommitWasEndOfMacroop
bool lastCommitWasEndOfMacroop
The last commit was the end of a full instruction so an interrupt can safely happen.
Definition: execute.hh:179
Packet::getAddr
Addr getAddr() const
Definition: packet.hh:755
Minor::BranchData::isStreamChange
bool isStreamChange() const
As static isStreamChange but on this branch data.
Definition: pipe_data.hh:151
Minor::LSQ::pushFailedRequest
void pushFailedRequest(MinorDynInstPtr inst)
Push a predicate failed-representing request into the queues just to maintain commit order.
Definition: lsq.cc:1655
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Minor::Execute::processMoreThanOneInput
bool processMoreThanOneInput
If true, more than one input line can be processed each cycle if there is room to execute more instru...
Definition: execute.hh:90
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
Minor::Latch::Input
Encapsulate wires on either input or output of the latch.
Definition: buffers.hh:247
Minor::Execute::checkInterrupts
ThreadID checkInterrupts(BranchData &branch, bool &interrupted)
Check all threads for possible interrupts.
Definition: execute.cc:1605
MinorCPU::activityRecorder
Minor::MinorActivityRecorder * activityRecorder
Activity recording for pipeline.
Definition: cpu.hh:88
Minor::Execute::fuDescriptions
MinorFUPool & fuDescriptions
Descriptions of the functional units we want to generate.
Definition: execute.hh:93
Minor::Pipeline::ExecuteStageId
@ ExecuteStageId
Definition: pipeline.hh:100
sc_dt::to_string
const std::string to_string(sc_enc enc)
Definition: sc_fxdefs.cc:91
Minor::BranchData::HaltFetch
@ HaltFetch
Definition: pipe_data.hh:95
Minor::Execute::lsq
LSQ lsq
Dcache port to pass on to the CPU.
Definition: execute.hh:117
Minor::Execute::hasInterrupt
bool hasInterrupt(ThreadID thread_id)
Checks if a specific thread has an interrupt.
Definition: execute.cc:1640
Minor::Execute::instIsRightStream
bool instIsRightStream(MinorDynInstPtr inst)
Does the given instruction have the right stream sequence number to be committed?
Definition: execute.cc:1870
cpu.hh
Minor::Execute::DrainAllInsts
@ DrainAllInsts
Definition: execute.hh:144
Minor::LSQ::accessesInFlight
bool accessesInFlight() const
Are there any accesses other than normal cached loads in the memory system or having received respons...
Definition: lsq.hh:685
Minor::Execute::isInbetweenInsts
bool isInbetweenInsts(ThreadID thread_id) const
Are we between instructions? Can we be interrupted?
Definition: execute.cc:1412
Minor::Execute::minorTrace
void minorTrace() const
Definition: execute.cc:1651
MinorCPU::threadPolicy
Enums::ThreadPolicy threadPolicy
Thread Scheduling Policy (RoundRobin, Random, etc)
Definition: cpu.hh:112
Minor::LSQ::step
void step()
Step checks the queues to see if their are issuable transfers which were not otherwise picked up by t...
Definition: lsq.cc:1472
MINORTRACE
#define MINORTRACE(...)
DPRINTFN for MinorTrace reporting.
Definition: trace.hh:60
DTRACE
#define DTRACE(x)
Definition: debug.hh:156
MinorCPU::stats
Minor::MinorStats stats
Processor-specific statistics.
Definition: cpu.hh:132
MinorFUPool::funcUnits
std::vector< MinorFU * > funcUnits
Definition: func_unit.hh:189
std::vector< Cycles >
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
Packet::getSize
unsigned getSize() const
Definition: packet.hh:765
Minor::Execute::DrainCurrentInst
@ DrainCurrentInst
Definition: execute.hh:142
Minor::BranchData::UnpredictedBranch
@ UnpredictedBranch
Definition: pipe_data.hh:78
MinorFUTiming::suppress
bool suppress
If true, instructions matching this mask/match should not be issued in this FU.
Definition: func_unit.hh:113
BaseCPU::getContext
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
Definition: base.hh:300
Minor::Execute::interruptPriority
ThreadID interruptPriority
Definition: execute.hh:203
Minor::Execute::~Execute
~Execute()
Definition: execute.cc:1860
Minor::Execute::ExecuteThreadInfo::streamSeqNum
InstSeqNum streamSeqNum
Source of sequence number for instuction streams.
Definition: execute.hh:189
Minor::Execute::scoreboard
std::vector< Scoreboard > scoreboard
Scoreboard of instruction dependencies.
Definition: execute.hh:120
Minor::BranchData::isStreamChange
static bool isStreamChange(const BranchData::Reason reason)
Is a request with this reason actually a request to change the PC rather than a bubble or branch pred...
Definition: pipe_data.cc:81
TimingExpr
Definition: timing_expr.hh:88
Minor::Execute::executeMemRefInst
bool executeMemRefInst(MinorDynInstPtr inst, BranchData &branch, bool &failed_predicate, Fault &fault)
Execute a memory reference instruction.
Definition: execute.cc:444
Minor::BranchData::BadlyPredictedBranchTarget
@ BadlyPredictedBranchTarget
Definition: pipe_data.hh:82
Minor::cyclicIndexDec
unsigned int cyclicIndexDec(unsigned int index, unsigned int cycle_size)
Decrement a cyclic buffer index for indices [0, cycle_size-1].
Definition: execute.cc:531
Minor
Definition: activity.cc:44
ArmISA::advancePC
void advancePC(PCState &pc, const StaticInstPtr &inst)
Definition: utility.hh:392
execute.hh
Minor::Execute::isDrained
bool isDrained()
After thread suspension, has Execute been drained of in-flight instructions and memory accesses.
Definition: execute.cc:1844
Minor::Execute::commitInst
bool commitInst(MinorDynInstPtr inst, bool early_memory_issue, BranchData &branch, Fault &fault, bool &committed, bool &completed_mem_issue)
Commit a single instruction.
Definition: execute.cc:887
Minor::BranchData::CorrectlyPredictedBranch
@ CorrectlyPredictedBranch
Definition: pipe_data.hh:73
Minor::Execute::inp
Latch< ForwardInstData >::Output inp
Input port carrying instructions from Decode.
Definition: execute.hh:67
MinorFU::opLat
Cycles opLat
Delay from issuing the operation, to it reaching the end of the associated pipeline.
Definition: func_unit.hh:161
Minor::Execute::ExecuteThreadInfo::inputIndex
unsigned int inputIndex
Index that we've completed upto in getInput data.
Definition: execute.hh:175
SimpleThread
The SimpleThread object provides a combination of the ThreadState object and the ThreadContext interf...
Definition: simple_thread.hh:90
MinorCPU::threads
std::vector< Minor::MinorThread * > threads
These are thread state-representing objects for this CPU.
Definition: cpu.hh:93
Minor::Execute::executeInfo
std::vector< ExecuteThreadInfo > executeInfo
Definition: execute.hh:201
Minor::LSQ::canRequest
bool canRequest()
Is their space in the request queue to be able to push a request by issuing an isMemRef instruction.
Definition: lsq.hh:665
Minor::ReportTraitsAdaptor
...ReportTraits are trait classes with the same functionality as ReportIF, but with elements explicit...
Definition: buffers.hh:92
Minor::Execute::ExecuteThreadInfo::lastPredictionSeqNum
InstSeqNum lastPredictionSeqNum
A prediction number for use where one isn't available from an instruction.
Definition: execute.hh:195
MinorFUTiming::extraAssumedLat
Cycles extraAssumedLat
Extra delay that results should show in the scoreboard after leaving the pipeline.
Definition: func_unit.hh:124
Minor::Execute::getDcachePort
MinorCPU::MinorCPUPort & getDcachePort()
Returns the DcachePort owned by this Execute to pass upwards.
Definition: execute.cc:1887
Minor::Execute::DrainHaltFetch
@ DrainHaltFetch
Definition: execute.hh:143
Minor::LSQ::completeMemBarrierInst
void completeMemBarrierInst(MinorDynInstPtr inst, bool committed)
Complete a barrier instruction.
Definition: lsq.cc:910
Minor::BranchData::isBubble
bool isBubble() const
Definition: pipe_data.hh:148
Minor::LSQ::LSQRequest::packet
PacketPtr packet
Definition: lsq.hh:145
Minor::BranchData::NoBranch
@ NoBranch
Definition: pipe_data.hh:70
Minor::BranchData::Interrupt
@ Interrupt
Definition: pipe_data.hh:93
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
ThreadState::numOp
Counter numOp
Number of ops (including micro ops) committed.
Definition: thread_state.hh:110
exec_context.hh
Minor::MinorDynInst::bubble
static MinorDynInstPtr bubble()
There is a single bubble inst.
Definition: dyn_inst.hh:251
MinorCPU
MinorCPU is an in-order CPU model with four fixed pipeline stages:
Definition: cpu.hh:77
Minor::Latch::Output
Definition: buffers.hh:258
Minor::Execute::DrainState
DrainState
Stage cycle-by-cycle state.
Definition: execute.hh:139
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
Minor::Queue
Wrapper for a queue type to act as a pipeline stage input queue.
Definition: buffers.hh:399
Minor::MinorStats::numDiscardedOps
Stats::Scalar numDiscardedOps
Number of ops discarded before committing.
Definition: stats.hh:66
Minor::Execute::handleMemResponse
void handleMemResponse(MinorDynInstPtr inst, LSQ::LSQRequestPtr response, BranchData &branch, Fault &fault)
Handle extracting mem ref responses from the memory queues and completing the associated instructions...
Definition: execute.cc:319
Minor::LSQ::LSQRequest::needsToBeSentToStoreBuffer
bool needsToBeSentToStoreBuffer()
This request, once processed by the requests/transfers queues, will need to go to the store buffer.
Definition: lsq.cc:161
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
Minor::ForwardInstData::width
unsigned int width() const
Number of instructions carried by this object.
Definition: pipe_data.hh:273
Minor::Execute::evaluate
void evaluate()
Pass on input/buffer data to the output if you can.
Definition: execute.cc:1419
Minor::Execute::drain
unsigned int drain()
Like the drain interface on SimObject.
Definition: execute.cc:1822
Minor::ForwardInstData::isBubble
bool isBubble() const
BubbleIF interface.
Definition: pipe_data.cc:247
Minor::LSQ::minorTrace
void minorTrace() const
Definition: lsq.cc:1662
EventQueue::serviceEvents
void serviceEvents(Tick when)
process all events up to the given timestamp.
Definition: eventq.hh:873
Minor::Execute::setTraceTimeOnIssue
bool setTraceTimeOnIssue
Modify instruction trace times on issue.
Definition: execute.hh:106
ThreadState::numInst
Counter numInst
Number of instructions committed.
Definition: thread_state.hh:108
Minor::LSQ::canPushIntoStoreBuffer
bool canPushIntoStoreBuffer() const
Must check this before trying to insert into the store buffer.
Definition: lsq.hh:677
Clocked::curCycle
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
Definition: clocked_object.hh:192
Minor::Execute::issueLimit
unsigned int issueLimit
Number of instructions that can be issued per cycle.
Definition: execute.hh:76
Minor::LSQ::needsToTick
bool needsToTick()
May need to be ticked next cycle as one of the queues contains an actionable transfers or address tra...
Definition: lsq.cc:1560
Minor::Execute::ExecuteThreadInfo
Definition: execute.hh:147
Minor::Execute::updateBranchData
void updateBranchData(ThreadID tid, BranchData::Reason reason, MinorDynInstPtr inst, const TheISA::PCState &target, BranchData &branch)
Actually create a branch to communicate to Fetch1/Fetch2 and, if that is a stream-changing branch upd...
Definition: execute.cc:293
Minor::Execute::getInput
const ForwardInstData * getInput(ThreadID tid)
Get a piece of data to work on from the inputBuffer, or 0 if there is no data.
Definition: execute.cc:193
Minor::cyclicIndexInc
unsigned int cyclicIndexInc(unsigned int index, unsigned int cycle_size)
Increment a cyclic buffer index for indices [0, cycle_size-1].
Definition: execute.cc:519
PowerISA::fu
Bitfield< 12 > fu
Definition: miscregs.hh:82
MinorCPU::MinorCPUPort
Provide a non-protected base class for Minor's Ports as derived classes are created by Fetch1 and Exe...
Definition: cpu.hh:98
Minor::ForwardInstData::insts
MinorDynInstPtr insts[MAX_FORWARD_INSTS]
Array of carried insts, ref counted.
Definition: pipe_data.hh:257
Minor::Execute::popInput
void popInput(ThreadID tid)
Pop an element off the input buffer, if there are any.
Definition: execute.cc:206
Minor::InputBuffer
Like a Queue but with a restricted interface and a setTail function which, when the queue is empty,...
Definition: buffers.hh:567
Minor::Execute::memoryCommitLimit
unsigned int memoryCommitLimit
Number of memory instructions that can be committed per cycle.
Definition: execute.hh:85
Minor::Execute::commit
void commit(ThreadID thread_id, bool only_commit_microops, bool discard, BranchData &branch)
Try and commit instructions from the ends of the functional unit pipelines.
Definition: execute.cc:1029
Minor::ExecContext::readMemAccPredicate
bool readMemAccPredicate() const override
Definition: exec_context.hh:332
Minor::Execute::cpu
MinorCPU & cpu
Pointer back to the containing CPU.
Definition: execute.hh:73
Minor::Execute::ExecuteThreadInfo::inFlightInsts
Queue< QueuedInst, ReportTraitsAdaptor< QueuedInst > > * inFlightInsts
In-order instructions either in FUs or the LSQ.
Definition: execute.hh:168
InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:37
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
ThreadContext::status
virtual Status status() const =0
Minor::Execute::setDrainState
void setDrainState(ThreadID thread_id, DrainState state)
Set the drain state (with useful debugging messages)
Definition: execute.cc:1815
Minor::QueuedInst::inst
MinorDynInstPtr inst
Definition: func_unit.hh:206
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Minor::Execute::tryToBranch
void tryToBranch(MinorDynInstPtr inst, Fault fault, BranchData &branch)
Generate Branch data based (into branch) on an observed (or not) change in PC while executing an inst...
Definition: execute.cc:215
Minor::Execute::allowEarlyMemIssue
bool allowEarlyMemIssue
Allow mem refs to leave their FUs before reaching the head of the in flight insts queue if their depe...
Definition: execute.hh:110
BaseInterrupts::getInterrupt
virtual Fault getInterrupt()=0
Minor::Execute::setTraceTimeOnCommit
bool setTraceTimeOnCommit
Modify instruction trace times on commit.
Definition: execute.hh:103
ThreadState::ThreadStateStats::numOps
Stats::Scalar numOps
Stat for number ops (including micro ops) committed.
Definition: thread_state.hh:118
Named
Definition: trace.hh:150
ThreadContext::pcState
virtual TheISA::PCState pcState() const =0
Minor::Execute::issue
unsigned int issue(ThreadID thread_id)
Try and issue instructions from the inputBuffer.
Definition: execute.cc:542
SimpleThread::comInstEventQueue
EventQueue comInstEventQueue
An instruction-based event queue.
Definition: simple_thread.hh:126
Minor::BranchData
Forward data betwen Execute and Fetch1 carrying change-of-address/stream information.
Definition: pipe_data.hh:62
BaseInterrupts::updateIntrInfo
virtual void updateIntrInfo()=0
Minor::BranchData::BadlyPredictedBranch
@ BadlyPredictedBranch
Definition: pipe_data.hh:86
Minor::BranchData::Reason
Reason
Definition: pipe_data.hh:65
Minor::Execute::issuePriority
ThreadID issuePriority
Definition: execute.hh:204
Minor::Execute::ExecuteThreadInfo::instsBeingCommitted
ForwardInstData instsBeingCommitted
Structure for reporting insts currently being processed/retired for MinorTrace.
Definition: execute.hh:183
Minor::MinorStats::numOps
Stats::Scalar numOps
Number of simulated insts and microops.
Definition: stats.hh:63
Minor::operator<<
std::ostream & operator<<(std::ostream &os, const InstId &id)
Print this id in the usual slash-separated format expected by MinorTrace.
Definition: dyn_inst.cc:61
Minor::Execute::doInstCommitAccounting
void doInstCommitAccounting(MinorDynInstPtr inst)
Do the stats handling and instruction count and PC event events related to the new instruction/op cou...
Definition: execute.cc:856
Minor::Execute::instIsHeadInst
bool instIsHeadInst(MinorDynInstPtr inst)
Returns true if the given instruction is at the head of the inFlightInsts instruction queue.
Definition: execute.cc:1876
ThreadContext::Suspended
@ Suspended
Temporarily inactive.
Definition: thread_context.hh:107
Minor::LSQ::issuedMemBarrierInst
void issuedMemBarrierInst(MinorDynInstPtr inst)
A memory barrier instruction has been issued, remember its execSeqNum that we can avoid issuing memor...
Definition: lsq.cc:1706
Minor::ExecContext::readPredicate
bool readPredicate() const override
Definition: exec_context.hh:320
Minor::Execute::NotDraining
@ NotDraining
Definition: execute.hh:141
Minor::ExecContext
ExecContext bears the exec_context interface for Minor.
Definition: exec_context.hh:69
MipsISA::PCState
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
ActivityRecorder::activity
void activity()
Records that there is activity this cycle.
Definition: activity.cc:52
MinorCPU::roundRobinPriority
std::vector< ThreadID > roundRobinPriority(ThreadID priority)
Thread scheduling utility functions.
Definition: cpu.hh:165
Minor::Execute::commitLimit
unsigned int commitLimit
Number of instructions that can be committed per cycle.
Definition: execute.hh:82
Minor::Execute::getCommittingThread
ThreadID getCommittingThread()
Use the current threading policy to determine the next thread to decode from.
Definition: execute.cc:1684
Minor::Execute::memoryIssueLimit
unsigned int memoryIssueLimit
Number of memory ops that can be issued per cycle.
Definition: execute.hh:79
Minor::FUPipeline
A functional unit configured from a MinorFU object.
Definition: func_unit.hh:229
Minor::LSQ::sendStoreToStoreBuffer
void sendStoreToStoreBuffer(LSQRequestPtr request)
A store has been committed, please move it to the store buffer.
Definition: lsq.cc:1540
MinorFU
A functional unit that can execute any of opClasses operations with a single op(eration)Lat(ency) and...
Definition: func_unit.hh:154
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Minor::Execute::Execute
Execute(const std::string &name_, MinorCPU &cpu_, const MinorCPUParams &params, Latch< ForwardInstData >::Output inp_, Latch< BranchData >::Input out_)
Definition: execute.cc:61
MinorFUTiming::extraCommitLat
Cycles extraCommitLat
Extra latency that the instruction should spend at the end of the pipeline.
Definition: func_unit.hh:117
Minor::BranchData::bubble
static BranchData bubble()
BubbleIF interface.
Definition: pipe_data.hh:147
Minor::Scoreboard
A scoreboard of register dependencies including, for each register: The number of in-flight instructi...
Definition: scoreboard.hh:60
BaseCPU::numThreads
ThreadID numThreads
Number of threads we're actually simulating (<= SMT_MAX_THREADS).
Definition: base.hh:378
Minor::LSQ::getLastMemBarrier
InstSeqNum getLastMemBarrier(ThreadID thread_id) const
Get the execSeqNum of the last issued memory barrier.
Definition: lsq.hh:694
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
Minor::Execute::funcUnits
std::vector< FUPipeline * > funcUnits
The execution functional units.
Definition: execute.hh:123
Minor::QueuedInst
Container class to box instructions in the FUs to make those queues have correct bubble behaviour whe...
Definition: func_unit.hh:203
PCEvent
Definition: pc_event.hh:42
MinorCPU::randomPriority
std::vector< ThreadID > randomPriority()
Definition: cpu.hh:174
RefCountingPtr< MinorDynInst >
Minor::Execute::numFuncUnits
unsigned int numFuncUnits
Number of functional units to produce.
Definition: execute.hh:96
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
Minor::Execute::drainResume
void drainResume()
Definition: execute.cc:1779
MinorFUTiming::extraCommitLatExpr
TimingExpr * extraCommitLatExpr
Definition: func_unit.hh:118
Minor::Execute::takeInterrupt
bool takeInterrupt(ThreadID thread_id, BranchData &branch)
Act on an interrupt.
Definition: execute.cc:416
Minor::LSQ::isDrained
bool isDrained()
Is there nothing left in the LSQ.
Definition: lsq.cc:1553
Minor::Execute::ExecuteThreadInfo::drainState
DrainState drainState
State progression for draining NotDraining -> ...
Definition: execute.hh:198
Minor::MinorStats::numInsts
Stats::Scalar numInsts
Number of simulated instructions.
Definition: stats.hh:60
BaseCPU::probeInstCommit
virtual void probeInstCommit(const StaticInstPtr &inst, Addr pc)
Helper method to trigger PMU probes for a committed instruction.
Definition: base.cc:353
lsq.hh
BaseCPU::checkInterrupts
bool checkInterrupts(ThreadID tid) const
Definition: base.hh:263
ThreadContext::instAddr
virtual Addr instAddr() const =0
Minor::MinorStats::numFetchSuspends
Stats::Scalar numFetchSuspends
Number of times fetch was asked to suspend by Execute.
Definition: stats.hh:69
Packet::getConstPtr
const T * getConstPtr() const
Definition: packet.hh:1167
BaseCPU::getInterruptController
BaseInterrupts * getInterruptController(ThreadID tid)
Definition: base.hh:236
Minor::LSQ::findResponse
LSQRequestPtr findResponse(MinorDynInstPtr inst)
Returns a response if it's at the head of the transfers queue and it's either complete or can be sent...
Definition: lsq.cc:1483
Minor::MinorStats::committedInstType
Stats::Vector2d committedInstType
Number of instructions by type (OpClass)
Definition: stats.hh:79
ThreadState::threadStats
ThreadState::ThreadStateStats threadStats
fetch1.hh
Minor::LSQ::LSQRequest
Derived SenderState to carry data access info.
Definition: lsq.hh:122
Minor::Execute::getIssuingThread
ThreadID getIssuingThread()
Definition: execute.cc:1751
Minor::BranchData::SuspendThread
@ SuspendThread
Definition: pipe_data.hh:91
Minor::Execute::noCostFUIndex
unsigned int noCostFUIndex
The FU index of the non-existent costless FU for instructions which pass the MinorDynInst::isNoCostIn...
Definition: execute.hh:114
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

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