gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fetch1.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014 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/fetch1.hh"
39 
40 #include <cstring>
41 #include <iomanip>
42 #include <sstream>
43 
44 #include "base/cast.hh"
45 #include "base/logging.hh"
46 #include "base/trace.hh"
47 #include "cpu/minor/pipeline.hh"
48 #include "debug/Drain.hh"
49 #include "debug/Fetch.hh"
50 #include "debug/MinorTrace.hh"
51 
52 namespace Minor
53 {
54 
55 Fetch1::Fetch1(const std::string &name_,
56  MinorCPU &cpu_,
57  const MinorCPUParams &params,
60  Latch<BranchData>::Output prediction_,
61  std::vector<InputBuffer<ForwardLineData>> &next_stage_input_buffer) :
62  Named(name_),
63  cpu(cpu_),
64  inp(inp_),
65  out(out_),
66  prediction(prediction_),
67  nextStageReserve(next_stage_input_buffer),
68  icachePort(name_ + ".icache_port", *this, cpu_),
69  lineSnap(params.fetch1LineSnapWidth),
70  maxLineWidth(params.fetch1LineWidth),
71  fetchLimit(params.fetch1FetchLimit),
72  fetchInfo(params.numThreads),
73  threadPriority(0),
74  requests(name_ + ".requests", "lines", params.fetch1FetchLimit),
75  transfers(name_ + ".transfers", "lines", params.fetch1FetchLimit),
76  icacheState(IcacheRunning),
77  lineSeqNum(InstId::firstLineSeqNum),
78  numFetchesInMemorySystem(0),
79  numFetchesInITLB(0)
80 {
81  if (lineSnap == 0) {
83  DPRINTF(Fetch, "lineSnap set to cache line size of: %d\n",
84  lineSnap);
85  }
86 
87  if (maxLineWidth == 0) {
89  DPRINTF(Fetch, "maxLineWidth set to cache line size of: %d\n",
90  maxLineWidth);
91  }
92 
93  /* These assertions should be copied to the Python config. as well */
94  if ((lineSnap % sizeof(TheISA::MachInst)) != 0) {
95  fatal("%s: fetch1LineSnapWidth must be a multiple "
96  "of sizeof(TheISA::MachInst) (%d)\n", name_,
97  sizeof(TheISA::MachInst));
98  }
99 
100  if (!(maxLineWidth >= lineSnap &&
101  (maxLineWidth % sizeof(TheISA::MachInst)) == 0))
102  {
103  fatal("%s: fetch1LineWidth must be a multiple of"
104  " sizeof(TheISA::MachInst)"
105  " (%d), and >= fetch1LineSnapWidth (%d)\n",
106  name_, sizeof(TheISA::MachInst), lineSnap);
107  }
108 
109  if (fetchLimit < 1) {
110  fatal("%s: fetch1FetchLimit must be >= 1 (%d)\n", name_,
111  fetchLimit);
112  }
113 }
114 
115 inline ThreadID
117 {
118  /* Select thread via policy. */
119  std::vector<ThreadID> priority_list;
120 
121  switch (cpu.threadPolicy) {
122  case Enums::SingleThreaded:
123  priority_list.push_back(0);
124  break;
125  case Enums::RoundRobin:
126  priority_list = cpu.roundRobinPriority(threadPriority);
127  break;
128  case Enums::Random:
129  priority_list = cpu.randomPriority();
130  break;
131  default:
132  panic("Unknown fetch policy");
133  }
134 
135  for (auto tid : priority_list) {
136  if (cpu.getContext(tid)->status() == ThreadContext::Active &&
137  !fetchInfo[tid].blocked &&
138  fetchInfo[tid].state == FetchRunning) {
139  threadPriority = tid;
140  return tid;
141  }
142  }
143 
144  return InvalidThreadID;
145 }
146 
147 void
149 {
150  /* Reference the currently used thread state. */
151  Fetch1ThreadInfo &thread = fetchInfo[tid];
152 
153  /* If line_offset != 0, a request is pushed for the remainder of the
154  * line. */
155  /* Use a lower, sizeof(MachInst) aligned address for the fetch */
156  Addr aligned_pc = thread.pc.instAddr() & ~((Addr) lineSnap - 1);
157  unsigned int line_offset = aligned_pc % lineSnap;
158  unsigned int request_size = maxLineWidth - line_offset;
159 
160  /* Fill in the line's id */
161  InstId request_id(tid,
162  thread.streamSeqNum, thread.predictionSeqNum,
163  lineSeqNum);
164 
165  FetchRequestPtr request = new FetchRequest(*this, request_id, thread.pc);
166 
167  DPRINTF(Fetch, "Inserting fetch into the fetch queue "
168  "%s addr: 0x%x pc: %s line_offset: %d request_size: %d\n",
169  request_id, aligned_pc, thread.pc, line_offset, request_size);
170 
171  request->request->setContext(cpu.threads[tid]->getTC()->contextId());
172  request->request->setVirt(
173  aligned_pc, request_size, Request::INST_FETCH, cpu.instRequestorId(),
174  /* I've no idea why we need the PC, but give it */
175  thread.pc.instAddr());
176 
177  DPRINTF(Fetch, "Submitting ITLB request\n");
179 
181 
182  /* Reserve space in the queues upstream of requests for results */
183  transfers.reserve();
184  requests.push(request);
185 
186  /* Submit the translation request. The response will come
187  * through finish/markDelayed on this request as it bears
188  * the Translation interface */
189  cpu.threads[request->id.threadId]->mmu->translateTiming(
190  request->request,
191  cpu.getContext(request->id.threadId),
192  request, BaseTLB::Execute);
193 
194  lineSeqNum++;
195 
196  /* Step the PC for the next line onto the line aligned next address.
197  * Note that as instructions can span lines, this PC is only a
198  * reliable 'new' PC if the next line has a new stream sequence number. */
199  thread.pc.set(aligned_pc + request_size);
200 }
201 
202 std::ostream &
203 operator <<(std::ostream &os, Fetch1::IcacheState state)
204 {
205  switch (state) {
207  os << "IcacheRunning";
208  break;
210  os << "IcacheNeedsRetry";
211  break;
212  default:
213  os << "IcacheState-" << static_cast<int>(state);
214  break;
215  }
216  return os;
217 }
218 
219 void
221 {
222  /* Make the necessary packet for a memory transaction */
224  packet->allocate();
225 
226  /* This FetchRequest becomes SenderState to allow the response to be
227  * identified */
228  packet->pushSenderState(this);
229 }
230 
231 void
232 Fetch1::FetchRequest::finish(const Fault &fault_, const RequestPtr &request_,
234 {
235  fault = fault_;
236 
237  state = Translated;
238  fetch.handleTLBResponse(this);
239 
240  /* Let's try and wake up the processor for the next cycle */
241  fetch.cpu.wakeupOnEvent(Pipeline::Fetch1StageId);
242 }
243 
244 void
246 {
248 
249  if (response->fault != NoFault) {
250  DPRINTF(Fetch, "Fault in address ITLB translation: %s, "
251  "paddr: 0x%x, vaddr: 0x%x\n",
252  response->fault->name(),
253  (response->request->hasPaddr() ?
254  response->request->getPaddr() : 0),
255  response->request->getVaddr());
256 
257  if (DTRACE(MinorTrace))
258  minorTraceResponseLine(name(), response);
259  } else {
260  DPRINTF(Fetch, "Got ITLB response\n");
261  }
262 
263  response->state = FetchRequest::Translated;
264 
265  tryToSendToTransfers(response);
266 }
267 
269 {
270  if (packet)
271  delete packet;
272 }
273 
274 void
276 {
277  if (!requests.empty() && requests.front() != request) {
278  DPRINTF(Fetch, "Fetch not at front of requests queue, can't"
279  " issue to memory\n");
280  return;
281  }
282 
283  if (request->state == FetchRequest::InTranslation) {
284  DPRINTF(Fetch, "Fetch still in translation, not issuing to"
285  " memory\n");
286  return;
287  }
288 
289  if (request->isDiscardable() || request->fault != NoFault) {
290  /* Discarded and faulting requests carry on through transfers
291  * as Complete/packet == NULL */
292 
293  request->state = FetchRequest::Complete;
295 
296  /* Wake up the pipeline next cycle as there will be no event
297  * for this queue->queue transfer */
299  } else if (request->state == FetchRequest::Translated) {
300  if (!request->packet)
301  request->makePacket();
302 
303  /* Ensure that the packet won't delete the request */
304  assert(request->packet->needsResponse());
305 
306  if (tryToSend(request))
308  } else {
309  DPRINTF(Fetch, "Not advancing line fetch\n");
310  }
311 }
312 
313 void
315 {
316  assert(!requests.empty() && requests.front() == request);
317 
318  requests.pop();
319  transfers.push(request);
320 }
321 
322 bool
324 {
325  bool ret = false;
326 
327  if (icachePort.sendTimingReq(request->packet)) {
328  /* Invalidate the fetch_requests packet so we don't
329  * accidentally fail to deallocate it (or use it!)
330  * later by overwriting it */
331  request->packet = NULL;
334 
335  ret = true;
336 
337  DPRINTF(Fetch, "Issued fetch request to memory: %s\n",
338  request->id);
339  } else {
340  /* Needs to be resent, wait for that */
342 
343  DPRINTF(Fetch, "Line fetch needs to retry: %s\n",
344  request->id);
345  }
346 
347  return ret;
348 }
349 
350 void
352 {
353  IcacheState old_icache_state = icacheState;
354 
355  switch (icacheState) {
356  case IcacheRunning:
357  /* Move ITLB results on to the memory system */
358  if (!requests.empty()) {
360  }
361  break;
362  case IcacheNeedsRetry:
363  break;
364  }
365 
366  if (icacheState != old_icache_state) {
367  DPRINTF(Fetch, "Step in state %s moving to state %s\n",
368  old_icache_state, icacheState);
369  }
370 }
371 
372 void
374 {
375  if (!queue.empty()) {
376  delete queue.front();
377  queue.pop();
378  }
379 }
380 
381 unsigned int
383 {
384  return requests.occupiedSpace() +
386 }
387 
389 void
391  Fetch1::FetchRequestPtr response) const
392 {
393  M5_VAR_USED const RequestPtr &request = response->request;
394 
395  if (response->packet && response->packet->isError()) {
396  MINORLINE(this, "id=F;%s vaddr=0x%x fault=\"error packet\"\n",
397  response->id, request->getVaddr());
398  } else if (response->fault != NoFault) {
399  MINORLINE(this, "id=F;%s vaddr=0x%x fault=\"%s\"\n",
400  response->id, request->getVaddr(), response->fault->name());
401  } else {
402  MINORLINE(this, "id=%s size=%d vaddr=0x%x paddr=0x%x\n",
403  response->id, request->getSize(),
404  request->getVaddr(), request->getPaddr());
405  }
406 }
407 
408 bool
410 {
411  DPRINTF(Fetch, "recvTimingResp %d\n", numFetchesInMemorySystem);
412 
413  /* Only push the response if we didn't change stream? No, all responses
414  * should hit the responses queue. It's the job of 'step' to throw them
415  * away. */
416  FetchRequestPtr fetch_request = safe_cast<FetchRequestPtr>
417  (response->popSenderState());
418 
419  /* Fixup packet in fetch_request as this may have changed */
420  assert(!fetch_request->packet);
421  fetch_request->packet = response;
422 
424  fetch_request->state = FetchRequest::Complete;
425 
426  if (DTRACE(MinorTrace))
427  minorTraceResponseLine(name(), fetch_request);
428 
429  if (response->isError()) {
430  DPRINTF(Fetch, "Received error response packet: %s\n",
431  fetch_request->id);
432  }
433 
434  /* We go to idle even if there are more things to do on the queues as
435  * it's the job of step to actually step us on to the next transaction */
436 
437  /* Let's try and wake up the processor for the next cycle to move on
438  * queues */
440 
441  /* Never busy */
442  return true;
443 }
444 
445 void
447 {
448  DPRINTF(Fetch, "recvRetry\n");
449  assert(icacheState == IcacheNeedsRetry);
450  assert(!requests.empty());
451 
452  FetchRequestPtr retryRequest = requests.front();
453 
455 
456  if (tryToSend(retryRequest))
457  moveFromRequestsToTransfers(retryRequest);
458 }
459 
460 std::ostream &
461 operator <<(std::ostream &os, Fetch1::FetchState state)
462 {
463  switch (state) {
464  case Fetch1::FetchHalted:
465  os << "FetchHalted";
466  break;
468  os << "FetchWaitingForPC";
469  break;
471  os << "FetchRunning";
472  break;
473  default:
474  os << "FetchState-" << static_cast<int>(state);
475  break;
476  }
477  return os;
478 }
479 
480 void
482 {
483  Fetch1ThreadInfo &thread = fetchInfo[branch.threadId];
484 
485  updateExpectedSeqNums(branch);
486 
487  /* Start fetching again if we were stopped */
488  switch (branch.reason) {
490  {
491  if (thread.wakeupGuard) {
492  DPRINTF(Fetch, "Not suspending fetch due to guard: %s\n",
493  branch);
494  } else {
495  DPRINTF(Fetch, "Suspending fetch: %s\n", branch);
496  thread.state = FetchWaitingForPC;
497  }
498  }
499  break;
501  DPRINTF(Fetch, "Halting fetch\n");
502  thread.state = FetchHalted;
503  break;
504  default:
505  DPRINTF(Fetch, "Changing stream on branch: %s\n", branch);
506  thread.state = FetchRunning;
507  break;
508  }
509  thread.pc = branch.target;
510 }
511 
512 void
514 {
515  Fetch1ThreadInfo &thread = fetchInfo[branch.threadId];
516 
517  DPRINTF(Fetch, "Updating streamSeqNum from: %d to %d,"
518  " predictionSeqNum from: %d to %d\n",
519  thread.streamSeqNum, branch.newStreamSeqNum,
520  thread.predictionSeqNum, branch.newPredictionSeqNum);
521 
522  /* Change the stream */
523  thread.streamSeqNum = branch.newStreamSeqNum;
524  /* Update the prediction. Note that it's possible for this to
525  * actually set the prediction to an *older* value if new
526  * predictions have been discarded by execute */
527  thread.predictionSeqNum = branch.newPredictionSeqNum;
528 }
529 
530 void
532  ForwardLineData &line)
533 {
534  Fetch1ThreadInfo &thread = fetchInfo[response->id.threadId];
535  PacketPtr packet = response->packet;
536 
537  /* Pass the prefetch abort (if any) on to Fetch2 in a ForwardLineData
538  * structure */
539  line.setFault(response->fault);
540  /* Make sequence numbers valid in return */
541  line.id = response->id;
542  /* Set PC to virtual address */
543  line.pc = response->pc;
544  /* Set the lineBase, which is a sizeof(MachInst) aligned address <=
545  * pc.instAddr() */
546  line.lineBaseAddr = response->request->getVaddr();
547 
548  if (response->fault != NoFault) {
549  /* Stop fetching if there was a fault */
550  /* Should probably try to flush the queues as well, but we
551  * can't be sure that this fault will actually reach Execute, and we
552  * can't (currently) selectively remove this stream from the queues */
553  DPRINTF(Fetch, "Stopping line fetch because of fault: %s\n",
554  response->fault->name());
556  } else {
557  line.adoptPacketData(packet);
558  /* Null the response's packet to prevent the response from trying to
559  * deallocate the packet */
560  response->packet = NULL;
561  }
562 }
563 
564 void
566 {
567  const BranchData &execute_branch = *inp.outputWire;
568  const BranchData &fetch2_branch = *prediction.outputWire;
569  ForwardLineData &line_out = *out.inputWire;
570 
571  assert(line_out.isBubble());
572 
573  for (ThreadID tid = 0; tid < cpu.numThreads; tid++)
574  fetchInfo[tid].blocked = !nextStageReserve[tid].canReserve();
575 
577  if (execute_branch.threadId != InvalidThreadID &&
578  execute_branch.threadId == fetch2_branch.threadId) {
579 
580  Fetch1ThreadInfo &thread = fetchInfo[execute_branch.threadId];
581 
582  /* Are we changing stream? Look to the Execute branches first, then
583  * to predicted changes of stream from Fetch2 */
584  if (execute_branch.isStreamChange()) {
585  if (thread.state == FetchHalted) {
586  DPRINTF(Fetch, "Halted, ignoring branch: %s\n", execute_branch);
587  } else {
588  changeStream(execute_branch);
589  }
590 
591  if (!fetch2_branch.isBubble()) {
592  DPRINTF(Fetch, "Ignoring simultaneous prediction: %s\n",
593  fetch2_branch);
594  }
595 
596  /* The streamSeqNum tagging in request/response ->req should handle
597  * discarding those requests when we get to them. */
598  } else if (thread.state != FetchHalted && fetch2_branch.isStreamChange()) {
599  /* Handle branch predictions by changing the instruction source
600  * if we're still processing the same stream (as set by streamSeqNum)
601  * as the one of the prediction.
602  */
603  if (fetch2_branch.newStreamSeqNum != thread.streamSeqNum) {
604  DPRINTF(Fetch, "Not changing stream on prediction: %s,"
605  " streamSeqNum mismatch\n",
606  fetch2_branch);
607  } else {
608  changeStream(fetch2_branch);
609  }
610  }
611  } else {
612  /* Fetch2 and Execute branches are for different threads */
613  if (execute_branch.threadId != InvalidThreadID &&
614  execute_branch.isStreamChange()) {
615 
616  if (fetchInfo[execute_branch.threadId].state == FetchHalted) {
617  DPRINTF(Fetch, "Halted, ignoring branch: %s\n", execute_branch);
618  } else {
619  changeStream(execute_branch);
620  }
621  }
622 
623  if (fetch2_branch.threadId != InvalidThreadID &&
624  fetch2_branch.isStreamChange()) {
625 
626  if (fetchInfo[fetch2_branch.threadId].state == FetchHalted) {
627  DPRINTF(Fetch, "Halted, ignoring branch: %s\n", fetch2_branch);
628  } else if (fetch2_branch.newStreamSeqNum != fetchInfo[fetch2_branch.threadId].streamSeqNum) {
629  DPRINTF(Fetch, "Not changing stream on prediction: %s,"
630  " streamSeqNum mismatch\n", fetch2_branch);
631  } else {
632  changeStream(fetch2_branch);
633  }
634  }
635  }
636 
637  if (numInFlightFetches() < fetchLimit) {
638  ThreadID fetch_tid = getScheduledThread();
639 
640  if (fetch_tid != InvalidThreadID) {
641  DPRINTF(Fetch, "Fetching from thread %d\n", fetch_tid);
642 
643  /* Generate fetch to selected thread */
644  fetchLine(fetch_tid);
645  /* Take up a slot in the fetch queue */
646  nextStageReserve[fetch_tid].reserve();
647  } else {
648  DPRINTF(Fetch, "No active threads available to fetch from\n");
649  }
650  }
651 
652 
653  /* Halting shouldn't prevent fetches in flight from being processed */
654  /* Step fetches through the icachePort queues and memory system */
655  stepQueues();
656 
657  /* As we've thrown away early lines, if there is a line, it must
658  * be from the right stream */
659  if (!transfers.empty() &&
661  {
663 
664  if (response->isDiscardable()) {
665  nextStageReserve[response->id.threadId].freeReservation();
666 
667  DPRINTF(Fetch, "Discarding translated fetch as it's for"
668  " an old stream\n");
669 
670  /* Wake up next cycle just in case there was some other
671  * action to do */
673  } else {
674  DPRINTF(Fetch, "Processing fetched line: %s\n",
675  response->id);
676 
677  processResponse(response, line_out);
678  }
679 
681  }
682 
683  /* If we generated output, and mark the stage as being active
684  * to encourage that output on to the next stage */
685  if (!line_out.isBubble())
687 
688  /* Fetch1 has no inputBuffer so the only activity we can have is to
689  * generate a line output (tested just above) or to initiate a memory
690  * fetch which will signal activity when it returns/needs stepping
691  * between queues */
692 
693 
694  /* This looks hackish. And it is, but there doesn't seem to be a better
695  * way to do this. The signal from commit to suspend fetch takes 1
696  * clock cycle to propagate to fetch. However, a legitimate wakeup
697  * may occur between cycles from the memory system. Thus wakeup guard
698  * prevents us from suspending in that case. */
699 
700  for (auto& thread : fetchInfo) {
701  thread.wakeupGuard = false;
702  }
703 }
704 
705 void
707 {
708  ThreadContext *thread_ctx = cpu.getContext(tid);
709  Fetch1ThreadInfo &thread = fetchInfo[tid];
710  thread.pc = thread_ctx->pcState();
711  thread.state = FetchRunning;
712  thread.wakeupGuard = true;
713  DPRINTF(Fetch, "[tid:%d]: Changing stream wakeup %s\n",
714  tid, thread_ctx->pcState());
715 
717 }
718 
719 bool
721 {
722  bool drained = numInFlightFetches() == 0 && (*out.inputWire).isBubble();
723  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
724  Fetch1ThreadInfo &thread = fetchInfo[tid];
725  DPRINTF(Drain, "isDrained[tid:%d]: %s %s%s\n",
726  tid,
727  thread.state == FetchHalted,
728  (numInFlightFetches() == 0 ? "" : "inFlightFetches "),
729  ((*out.inputWire).isBubble() ? "" : "outputtingLine"));
730 
731  drained = drained && (thread.state != FetchRunning);
732  }
733 
734  return drained;
735 }
736 
737 void
739 {
740  os << id;
741 }
742 
744 {
745  Fetch1ThreadInfo &thread = fetch.fetchInfo[id.threadId];
746 
747  /* Can't discard lines in TLB/memory */
748  return state != InTranslation && state != RequestIssuing &&
749  (id.streamSeqNum != thread.streamSeqNum ||
750  id.predictionSeqNum != thread.predictionSeqNum);
751 }
752 
753 void
755 {
756  // TODO: Un-bork minorTrace for THREADS
757  // bork bork bork
758  const Fetch1ThreadInfo &thread = fetchInfo[0];
759 
760  std::ostringstream data;
761 
762  if (thread.blocked)
763  data << 'B';
764  else
765  (*out.inputWire).reportData(data);
766 
767  MINORTRACE("state=%s icacheState=%s in_tlb_mem=%s/%s"
768  " streamSeqNum=%d lines=%s\n", thread.state, icacheState,
770  thread.streamSeqNum, data.str());
773 }
774 
775 }
InvalidThreadID
const ThreadID InvalidThreadID
Definition: types.hh:234
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Packet::isError
bool isError() const
Definition: packet.hh:584
Minor::BranchData::threadId
ThreadID threadId
ThreadID associated with branch.
Definition: pipe_data.hh:112
Minor::BranchData::target
TheISA::PCState target
Starting PC of that stream.
Definition: pipe_data.hh:119
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
Minor::Fetch1::icachePort
IcachePort icachePort
IcachePort to pass to the CPU.
Definition: fetch1.hh:206
Minor::Fetch1::nextStageReserve
std::vector< InputBuffer< ForwardLineData > > & nextStageReserve
Interface to reserve space in the next stage.
Definition: fetch1.hh:202
data
const char data[]
Definition: circlebuf.test.cc:47
Minor::Fetch1::evaluate
void evaluate()
Pass on input/buffer data to the output if you can.
Definition: fetch1.cc:565
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
ArmISA::MachInst
uint32_t MachInst
Definition: types.hh:52
Minor::Fetch1::icacheState
IcacheState icacheState
Retry state of icache_port.
Definition: fetch1.hh:305
Minor::Latch::Input
Encapsulate wires on either input or output of the latch.
Definition: buffers.hh:247
Minor::Fetch1::requests
FetchQueue requests
Queue of address translated requests from Fetch1.
Definition: fetch1.hh:299
MinorCPU::activityRecorder
Minor::MinorActivityRecorder * activityRecorder
Activity recording for pipeline.
Definition: cpu.hh:88
Minor::ForwardLineData::adoptPacketData
void adoptPacketData(Packet *packet)
Use the data from a packet as line instead of allocating new space.
Definition: pipe_data.cc:183
Minor::BranchData::newStreamSeqNum
InstSeqNum newStreamSeqNum
Sequence number of new stream/prediction to be adopted.
Definition: pipe_data.hh:115
Minor::Fetch1::FetchRequest::fault
Fault fault
Fill in a fault if one happens during fetch, check this by picking apart the response packet.
Definition: fetch1.hh:140
Minor::ForwardLineData
Line fetch data in the forward direction.
Definition: pipe_data.hh:171
Minor::BranchData::HaltFetch
@ HaltFetch
Definition: pipe_data.hh:95
BaseCPU::cacheLineSize
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: base.hh:391
Minor::Fetch1::Fetch1ThreadInfo::predictionSeqNum
InstSeqNum predictionSeqNum
Prediction sequence number.
Definition: fetch1.hh:274
BaseTLB::Mode
Mode
Definition: tlb.hh:57
MemCmd::ReadReq
@ ReadReq
Definition: packet.hh:83
Minor::Fetch1::Fetch1ThreadInfo::streamSeqNum
InstSeqNum streamSeqNum
Stream sequence number.
Definition: fetch1.hh:268
Minor::Fetch1::handleTLBResponse
void handleTLBResponse(FetchRequestPtr response)
Handle pushing a TLB response onto the right queue.
Definition: fetch1.cc:245
Minor::Fetch1::recvReqRetry
virtual void recvReqRetry()
Definition: fetch1.cc:446
Minor::Fetch1::cpu
MinorCPU & cpu
Construction-assigned data members.
Definition: fetch1.hh:192
MinorCPU::threadPolicy
Enums::ThreadPolicy threadPolicy
Thread Scheduling Policy (RoundRobin, Random, etc)
Definition: cpu.hh:112
cast.hh
Minor::Queue::minorTrace
void minorTrace() const
Definition: buffers.hh:507
Minor::Fetch1::FetchRequest::isComplete
bool isComplete() const
Is this a complete read line or fault.
Definition: fetch1.hh:154
Minor::Fetch1::processResponse
void processResponse(FetchRequestPtr response, ForwardLineData &line)
Convert a response to a ForwardLineData.
Definition: fetch1.cc:531
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
Minor::Fetch1::numFetchesInITLB
unsigned int numFetchesInITLB
Number of requests inside the ITLB rather than in the queues.
Definition: fetch1.hh:318
Minor::BranchData::reason
Reason reason
Explanation for this branch.
Definition: pipe_data.hh:109
MINORTRACE
#define MINORTRACE(...)
DPRINTFN for MinorTrace reporting.
Definition: trace.hh:60
DTRACE
#define DTRACE(x)
Definition: debug.hh:156
Minor::Queue::empty
bool empty() const
Is the queue empty?
Definition: buffers.hh:504
std::vector
STL vector class.
Definition: stl.hh:37
Minor::ForwardLineData::id
InstId id
Thread, stream, prediction ...
Definition: pipe_data.hh:195
Minor::Queue::push
void push(ElemType &data)
Push an element into the buffer if it isn't a bubble.
Definition: buffers.hh:428
Minor::Fetch1::FetchState
FetchState
Cycle-by-cycle state.
Definition: fetch1.hh:226
BaseCPU::getContext
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
Definition: base.hh:300
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
Minor::Fetch1::prediction
Latch< BranchData >::Output prediction
Input port carrying branch predictions from Fetch2.
Definition: fetch1.hh:199
Minor::Fetch1::popAndDiscard
void popAndDiscard(FetchQueue &queue)
Pop a request from the given queue and correctly deallocate and discard it.
Definition: fetch1.cc:373
Minor::Fetch1::changeStream
void changeStream(const BranchData &branch)
Start fetching from a new address.
Definition: fetch1.cc:481
Minor
Definition: activity.cc:44
Minor::Queue::reserve
void reserve()
Reserve space in the queue for future pushes.
Definition: buffers.hh:456
Minor::Fetch1::FetchRequest::makePacket
void makePacket()
Make a packet to use with the memory transaction.
Definition: fetch1.cc:220
Minor::Fetch1::Fetch1ThreadInfo::blocked
bool blocked
Blocked indication for report.
Definition: fetch1.hh:277
MinorCPU::threads
std::vector< Minor::MinorThread * > threads
These are thread state-representing objects for this CPU.
Definition: cpu.hh:93
Minor::Fetch1::moveFromRequestsToTransfers
void moveFromRequestsToTransfers(FetchRequestPtr request)
Move a request between queues.
Definition: fetch1.cc:314
Minor::Fetch1::wakeupFetch
void wakeupFetch(ThreadID tid)
Initiate fetch1 fetching.
Definition: fetch1.cc:706
Minor::Fetch1::fetchLimit
unsigned int fetchLimit
Maximum number of fetches allowed in flight (in queues or memory)
Definition: fetch1.hh:220
Minor::Fetch1::FetchRequest::Translated
@ Translated
Definition: fetch1.hh:116
Minor::BranchData::isBubble
bool isBubble() const
Definition: pipe_data.hh:148
Minor::Fetch1::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Memory interface.
Definition: fetch1.cc:409
Minor::Fetch1::out
Latch< ForwardLineData >::Input out
Output port carrying read lines to Fetch2.
Definition: fetch1.hh:197
Minor::Fetch1::FetchWaitingForPC
@ FetchWaitingForPC
Definition: fetch1.hh:230
Minor::Fetch1::threadPriority
ThreadID threadPriority
Definition: fetch1.hh:284
Minor::Fetch1::FetchRequest::request
RequestPtr request
The underlying request that this fetch represents.
Definition: fetch1.hh:133
Minor::Fetch1::FetchRequest::packet
PacketPtr packet
FetchRequests carry packets while they're in the requests and transfers responses queues.
Definition: fetch1.hh:130
Minor::Fetch1::FetchRequest::RequestIssuing
@ RequestIssuing
Definition: fetch1.hh:117
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
Minor::Fetch1::inp
Latch< BranchData >::Output inp
Input port carrying branch requests from Execute.
Definition: fetch1.hh:195
Minor::Fetch1::FetchRequest::reportData
void reportData(std::ostream &os) const
Report interface.
Definition: fetch1.cc:738
Minor::Fetch1::IcacheNeedsRetry
@ IcacheNeedsRetry
Definition: fetch1.hh:290
RequestPort::sendTimingReq
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
Definition: port.hh:492
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::ForwardLineData::lineBaseAddr
Addr lineBaseAddr
First byte address in the line.
Definition: pipe_data.hh:181
Minor::Fetch1::lineSeqNum
InstSeqNum lineSeqNum
Sequence number for line fetch used for ordering lines to flush.
Definition: fetch1.hh:308
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
Minor::Queue< FetchRequestPtr, ReportTraitsPtrAdaptor< FetchRequestPtr >, NoBubbleTraits< FetchRequestPtr > >
Minor::Fetch1::numInFlightFetches
unsigned int numInFlightFetches()
Returns the total number of queue occupancy, in-ITLB and in-memory system fetches.
Definition: fetch1.cc:382
Minor::Fetch1::operator<<
friend std::ostream & operator<<(std::ostream &os, Fetch1::FetchState state)
Definition: fetch1.cc:461
Minor::Fetch1::FetchRunning
@ FetchRunning
Definition: fetch1.hh:233
Minor::ForwardLineData::setFault
void setFault(Fault fault_)
Set fault and possible clear the bubble flag.
Definition: pipe_data.cc:163
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MINORLINE
#define MINORLINE(sim_object,...)
DPRINTFN for MinorTrace MinorLine line reporting.
Definition: trace.hh:68
Minor::Fetch1::FetchRequest::isDiscardable
bool isDiscardable() const
Is this line out of date with the current stream/prediction sequence and can it be discarded without ...
Definition: fetch1.cc:743
Packet::needsResponse
bool needsResponse() const
Definition: packet.hh:571
Minor::Fetch1::FetchRequest::InTranslation
@ InTranslation
Definition: fetch1.hh:115
pipeline.hh
Minor::Fetch1::FetchRequest
Memory access queuing.
Definition: fetch1.hh:101
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
Minor::Fetch1::tryToSend
bool tryToSend(FetchRequestPtr request)
Try to send (or resend) a memory request's next/only packet to the memory system.
Definition: fetch1.cc:323
Minor::Queue::front
ElemType & front()
Head value.
Definition: buffers.hh:496
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::Pipeline::Fetch1StageId
@ Fetch1StageId
Definition: pipeline.hh:100
Minor::Queue::pop
void pop()
Pop the head item.
Definition: buffers.hh:501
Minor::InstId::threadId
ThreadID threadId
The thread to which this line/instruction belongs.
Definition: dyn_inst.hh:83
Minor::Fetch1::getScheduledThread
ThreadID getScheduledThread()
Use the current threading policy to determine the next thread to fetch from.
Definition: fetch1.cc:116
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
ThreadContext::status
virtual Status status() const =0
ProbePoints::Packet
ProbePointArg< PacketInfo > Packet
Packet probe point.
Definition: mem.hh:103
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Minor::Queue::occupiedSpace
unsigned int occupiedSpace() const
Number of slots already occupied in this buffer.
Definition: buffers.hh:471
Minor::Fetch1::IcacheRunning
@ IcacheRunning
Definition: fetch1.hh:289
Minor::BranchData::newPredictionSeqNum
InstSeqNum newPredictionSeqNum
Definition: pipe_data.hh:116
Request::INST_FETCH
@ INST_FETCH
The request was an instruction fetch.
Definition: request.hh:108
Minor::Fetch1::fetchLine
void fetchLine(ThreadID tid)
Insert a line fetch into the requests.
Definition: fetch1.cc:148
Minor::Fetch1::FetchHalted
@ FetchHalted
Definition: fetch1.hh:228
Minor::Fetch1::Fetch1
Fetch1(const std::string &name_, MinorCPU &cpu_, const MinorCPUParams &params, Latch< BranchData >::Output inp_, Latch< ForwardLineData >::Input out_, Latch< BranchData >::Output prediction_, std::vector< InputBuffer< ForwardLineData >> &next_stage_input_buffer)
Definition: fetch1.cc:55
Minor::Fetch1::Fetch1ThreadInfo
Stage cycle-by-cycle state.
Definition: fetch1.hh:238
Minor::Fetch1::fetchInfo
std::vector< Fetch1ThreadInfo > fetchInfo
Definition: fetch1.hh:283
Minor::Fetch1::tryToSendToTransfers
void tryToSendToTransfers(FetchRequestPtr request)
Try and issue a fetch for a translated request at the head of the requests queue.
Definition: fetch1.cc:275
Named
Definition: trace.hh:150
ThreadContext::pcState
virtual TheISA::PCState pcState() const =0
Minor::Fetch1::stepQueues
void stepQueues()
Step requests along between requests and transfers queues.
Definition: fetch1.cc:351
Minor::Fetch1::Fetch1ThreadInfo::state
FetchState state
Definition: fetch1.hh:258
Minor::ForwardLineData::isBubble
bool isBubble() const
Definition: pipe_data.hh:241
Minor::Fetch1::FetchRequest::pc
TheISA::PCState pc
PC to fixup with line address.
Definition: fetch1.hh:136
BaseCPU::instRequestorId
RequestorID instRequestorId() const
Reads this CPU's unique instruction requestor ID.
Definition: base.hh:203
Minor::Fetch1::FetchRequest::Complete
@ Complete
Definition: fetch1.hh:118
Minor::BranchData
Forward data betwen Execute and Fetch1 carrying change-of-address/stream information.
Definition: pipe_data.hh:62
Minor::Fetch1::Fetch1ThreadInfo::pc
TheISA::PCState pc
Fetch PC value.
Definition: fetch1.hh:263
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
Packet::pushSenderState
void pushSenderState(SenderState *sender_state)
Push a new sender state to the packet and make the current sender state the predecessor of the new on...
Definition: packet.cc:332
Minor::Fetch1::updateExpectedSeqNums
void updateExpectedSeqNums(const BranchData &branch)
Update streamSeqNum and predictionSeqNum from the given branch (and assume these have changed and dis...
Definition: fetch1.cc:513
Minor::Fetch1::transfers
FetchQueue transfers
Queue of in-memory system requests and responses.
Definition: fetch1.hh:302
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::Fetch1::numFetchesInMemorySystem
unsigned int numFetchesInMemorySystem
Count of the number fetches which have left the transfers queue and are in the 'wild' in the memory s...
Definition: fetch1.hh:314
Minor::Fetch1::minorTrace
void minorTrace() const
Definition: fetch1.cc:754
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Minor::Fetch1::FetchRequest::finish
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseTLB::Mode mode)
Interface for ITLB responses.
Definition: fetch1.cc:232
Minor::Fetch1::isDrained
bool isDrained()
Is this stage drained? For Fetch1, draining is initiated by Execute signalling a branch with the reas...
Definition: fetch1.cc:720
Minor::ForwardLineData::pc
TheISA::PCState pc
PC of the first requested inst within this line.
Definition: pipe_data.hh:184
Packet::popSenderState
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
Definition: packet.cc:340
Minor::Fetch1::lineSnap
unsigned int lineSnap
Line snap size in bytes.
Definition: fetch1.hh:211
Minor::Fetch1::minorTraceResponseLine
void minorTraceResponseLine(const std::string &name, FetchRequestPtr response) const
Print the appropriate MinorLine line for a fetch response.
Definition: fetch1.cc:390
BaseCPU::numThreads
ThreadID numThreads
Number of threads we're actually simulating (<= SMT_MAX_THREADS).
Definition: base.hh:378
Minor::Fetch1::maxLineWidth
unsigned int maxLineWidth
Maximum fetch width in bytes.
Definition: fetch1.hh:217
logging.hh
ThreadContext::Active
@ Active
Running.
Definition: thread_context.hh:103
MinorCPU::randomPriority
std::vector< ThreadID > randomPriority()
Definition: cpu.hh:174
trace.hh
Named::name
const std::string & name() const
Definition: trace.hh:159
Packet::allocate
void allocate()
Allocate memory for the packet.
Definition: packet.hh:1300
BaseTLB::Execute
@ Execute
Definition: tlb.hh:57
Minor::Fetch1::FetchRequest::id
InstId id
Identity of the line that this request will generate.
Definition: fetch1.hh:124
Minor::Fetch1::FetchRequest::state
FetchRequestState state
Definition: fetch1.hh:121
fetch1.hh
Minor::InstId
Id for lines and instructions.
Definition: dyn_inst.hh:70
Minor::Fetch1::Fetch1ThreadInfo::wakeupGuard
bool wakeupGuard
Signal to guard against sleeping first cycle of wakeup.
Definition: fetch1.hh:280
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
Minor::BranchData::SuspendThread
@ SuspendThread
Definition: pipe_data.hh:91
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
Minor::Fetch1::IcacheState
IcacheState
State of memory access for head instruction fetch.
Definition: fetch1.hh:287
Minor::Fetch1::FetchRequest::~FetchRequest
~FetchRequest()
Definition: fetch1.cc:268

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