gem5  v21.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
lsq.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014,2017-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/lsq.hh"
39 
40 #include <iomanip>
41 #include <sstream>
42 
43 #include "arch/locked_mem.hh"
44 #include "base/compiler.hh"
45 #include "base/logging.hh"
46 #include "base/trace.hh"
48 #include "cpu/minor/execute.hh"
49 #include "cpu/minor/pipeline.hh"
50 #include "cpu/utils.hh"
51 #include "debug/Activity.hh"
52 #include "debug/MinorMem.hh"
53 
54 namespace gem5
55 {
56 
58 namespace minor
59 {
60 
61 LSQ::LSQRequest::LSQRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_,
62  RegIndex zero_reg, PacketDataPtr data_, uint64_t *res_) :
63  SenderState(),
64  port(port_),
65  zeroReg(zero_reg),
66  inst(inst_),
67  isLoad(isLoad_),
68  data(data_),
69  packet(NULL),
70  request(),
71  res(res_),
72  skipped(false),
73  issuedToMemory(false),
74  isTranslationDelayed(false),
75  state(NotIssued)
76 {
77  request = std::make_shared<Request>();
78 }
79 
80 void
82 {
83  SimpleThread &thread = *port.cpu.threads[inst->id.threadId];
84  TheISA::PCState old_pc = thread.pcState();
85  ExecContext context(port.cpu, thread, port.execute, inst, zeroReg);
86  GEM5_VAR_USED Fault fault = inst->translationFault;
87 
88  // Give the instruction a chance to suppress a translation fault
89  inst->translationFault = inst->staticInst->initiateAcc(&context, nullptr);
90  if (inst->translationFault == NoFault) {
91  DPRINTFS(MinorMem, (&port),
92  "Translation fault suppressed for inst:%s\n", *inst);
93  } else {
94  assert(inst->translationFault == fault);
95  }
96  thread.pcState(old_pc);
97 }
98 
99 void
101 {
102  DPRINTFS(MinorMem, (&port), "Complete disabled mem access for inst:%s\n",
103  *inst);
104 
105  SimpleThread &thread = *port.cpu.threads[inst->id.threadId];
106  TheISA::PCState old_pc = thread.pcState();
107 
108  ExecContext context(port.cpu, thread, port.execute, inst, zeroReg);
109 
110  context.setMemAccPredicate(false);
111  inst->staticInst->completeAcc(nullptr, &context, inst->traceData);
112 
113  thread.pcState(old_pc);
114 }
115 
116 void
118 {
119  port.cpu.threads[inst->id.threadId]->setMemAccPredicate(false);
120  DPRINTFS(MinorMem, (&port), "Disable mem access for inst:%s\n", *inst);
121 }
122 
125  Addr req1_addr, unsigned int req1_size,
126  Addr req2_addr, unsigned int req2_size)
127 {
128  /* 'end' here means the address of the byte just past the request
129  * blocks */
130  Addr req2_end_addr = req2_addr + req2_size;
131  Addr req1_end_addr = req1_addr + req1_size;
132 
133  AddrRangeCoverage ret;
134 
135  if (req1_addr >= req2_end_addr || req1_end_addr <= req2_addr)
136  ret = NoAddrRangeCoverage;
137  else if (req1_addr <= req2_addr && req1_end_addr >= req2_end_addr)
138  ret = FullAddrRangeCoverage;
139  else
141 
142  return ret;
143 }
144 
147 {
148  AddrRangeCoverage ret = containsAddrRangeOf(
149  request->getPaddr(), request->getSize(),
150  other_request->request->getPaddr(), other_request->request->getSize());
151  /* If there is a strobe mask then store data forwarding might not be
152  * correct. Instead of checking enablemant of every byte we just fall back
153  * to PartialAddrRangeCoverage to prohibit store data forwarding */
154  if (ret == FullAddrRangeCoverage && request->isMasked())
156  return ret;
157 }
158 
159 
160 bool
162 {
163  return inst->isInst() && inst->staticInst->isFullMemBarrier();
164 }
165 
166 bool
168 {
169  return state == StoreToStoreBuffer;
170 }
171 
172 void
174 {
175  DPRINTFS(MinorMem, (&port), "Setting state from %d to %d for request:"
176  " %s\n", state, new_state, *inst);
177  state = new_state;
178 }
179 
180 bool
182 {
183  /* @todo, There is currently only one 'completed' state. This
184  * may not be a good choice */
185  return state == Complete;
186 }
187 
188 void
189 LSQ::LSQRequest::reportData(std::ostream &os) const
190 {
191  os << (isLoad ? 'R' : 'W') << ';';
192  inst->reportData(os);
193  os << ';' << state;
194 }
195 
196 std::ostream &
197 operator <<(std::ostream &os, LSQ::AddrRangeCoverage coverage)
198 {
199  switch (coverage) {
201  os << "PartialAddrRangeCoverage";
202  break;
204  os << "FullAddrRangeCoverage";
205  break;
207  os << "NoAddrRangeCoverage";
208  break;
209  default:
210  os << "AddrRangeCoverage-" << static_cast<int>(coverage);
211  break;
212  }
213  return os;
214 }
215 
216 std::ostream &
218 {
219  switch (state) {
221  os << "NotIssued";
222  break;
224  os << "InTranslation";
225  break;
227  os << "Translated";
228  break;
230  os << "Failed";
231  break;
233  os << "RequestIssuing";
234  break;
236  os << "StoreToStoreBuffer";
237  break;
239  os << "StoreInStoreBuffer";
240  break;
242  os << "StoreBufferIssuing";
243  break;
245  os << "RequestNeedsRetry";
246  break;
248  os << "StoreBufferNeedsRetry";
249  break;
251  os << "Complete";
252  break;
253  default:
254  os << "LSQRequestState-" << static_cast<int>(state);
255  break;
256  }
257  return os;
258 }
259 
260 void
262 {
263  bool is_last_barrier =
264  inst->id.execSeqNum >= lastMemBarrier[inst->id.threadId];
265 
266  DPRINTF(MinorMem, "Moving %s barrier out of store buffer inst: %s\n",
267  (is_last_barrier ? "last" : "a"), *inst);
268 
269  if (is_last_barrier)
270  lastMemBarrier[inst->id.threadId] = 0;
271 }
272 
273 void
274 LSQ::SingleDataRequest::finish(const Fault &fault_, const RequestPtr &request_,
276 {
277  port.numAccessesInDTLB--;
278 
279  DPRINTFS(MinorMem, (&port), "Received translation response for"
280  " request: %s delayed:%d %s\n", *inst, isTranslationDelayed,
281  fault_ != NoFault ? fault_->name() : "");
282 
283  if (fault_ != NoFault) {
284  inst->translationFault = fault_;
285  if (isTranslationDelayed) {
286  tryToSuppressFault();
287  if (inst->translationFault == NoFault) {
288  completeDisabledMemAccess();
289  setState(Complete);
290  }
291  }
292  setState(Translated);
293  } else {
294  setState(Translated);
295  makePacket();
296  }
297  port.tryToSendToTransfers(this);
298 
299  /* Let's try and wake up the processor for the next cycle */
300  port.cpu.wakeupOnEvent(Pipeline::ExecuteStageId);
301 }
302 
303 void
305 {
306  ThreadContext *thread = port.cpu.getContext(
307  inst->id.threadId);
308 
309  const auto &byte_enable = request->getByteEnable();
310  if (isAnyActiveElement(byte_enable.cbegin(), byte_enable.cend())) {
311  port.numAccessesInDTLB++;
312 
314 
315  DPRINTFS(MinorMem, (&port), "Submitting DTLB request\n");
316  /* Submit the translation request. The response will come through
317  * finish/markDelayed on the LSQRequest as it bears the Translation
318  * interface */
319  thread->getMMUPtr()->translateTiming(
320  request, thread, this, (isLoad ? BaseMMU::Read : BaseMMU::Write));
321  } else {
322  disableMemAccess();
323  setState(LSQ::LSQRequest::Complete);
324  }
325 }
326 
327 void
329 {
330  DPRINTFS(MinorMem, (&port), "Retiring packet\n");
331  packet = packet_;
332  packetInFlight = false;
333  setState(Complete);
334 }
335 
336 void
337 LSQ::SplitDataRequest::finish(const Fault &fault_, const RequestPtr &request_,
339 {
340  port.numAccessesInDTLB--;
341 
342  GEM5_VAR_USED unsigned int expected_fragment_index =
343  numTranslatedFragments;
344 
345  numInTranslationFragments--;
346  numTranslatedFragments++;
347 
348  DPRINTFS(MinorMem, (&port), "Received translation response for fragment"
349  " %d of request: %s delayed:%d %s\n", expected_fragment_index,
350  *inst, isTranslationDelayed,
351  fault_ != NoFault ? fault_->name() : "");
352 
353  assert(request_ == fragmentRequests[expected_fragment_index]);
354 
355  /* Wake up next cycle to get things going again in case the
356  * tryToSendToTransfers does take */
357  port.cpu.wakeupOnEvent(Pipeline::ExecuteStageId);
358 
359  if (fault_ != NoFault) {
360  /* tryToSendToTransfers will handle the fault */
361  inst->translationFault = fault_;
362 
363  DPRINTFS(MinorMem, (&port), "Faulting translation for fragment:"
364  " %d of request: %s\n",
365  expected_fragment_index, *inst);
366 
367  if (expected_fragment_index > 0 || isTranslationDelayed)
368  tryToSuppressFault();
369  if (expected_fragment_index == 0) {
370  if (isTranslationDelayed && inst->translationFault == NoFault) {
371  completeDisabledMemAccess();
372  setState(Complete);
373  } else {
374  setState(Translated);
375  }
376  } else if (inst->translationFault == NoFault) {
377  setState(Translated);
378  numTranslatedFragments--;
379  makeFragmentPackets();
380  } else {
381  setState(Translated);
382  }
383  port.tryToSendToTransfers(this);
384  } else if (numTranslatedFragments == numFragments) {
385  makeFragmentPackets();
386  setState(Translated);
387  port.tryToSendToTransfers(this);
388  } else {
389  /* Avoid calling translateTiming from within ::finish */
390  assert(!translationEvent.scheduled());
391  port.cpu.schedule(translationEvent, curTick());
392  }
393 }
394 
396  bool isLoad_, PacketDataPtr data_, uint64_t *res_) :
397  LSQRequest(port_, inst_, isLoad_, port_.zeroReg, data_, res_),
398  translationEvent([this]{ sendNextFragmentToTranslation(); },
399  "translationEvent"),
400  numFragments(0),
401  numInTranslationFragments(0),
402  numTranslatedFragments(0),
403  numIssuedFragments(0),
404  numRetiredFragments(0),
405  fragmentRequests(),
406  fragmentPackets()
407 {
408  /* Don't know how many elements are needed until the request is
409  * populated by the caller. */
410 }
411 
413 {
414  for (auto i = fragmentPackets.begin();
415  i != fragmentPackets.end(); i++)
416  {
417  delete *i;
418  }
419 }
420 
421 void
423 {
424  Addr base_addr = request->getVaddr();
425  unsigned int whole_size = request->getSize();
426  unsigned int line_width = port.lineWidth;
427 
428  unsigned int fragment_size;
429  Addr fragment_addr;
430 
431  std::vector<bool> fragment_write_byte_en;
432 
433  /* Assume that this transfer is across potentially many block snap
434  * boundaries:
435  *
436  * | _|________|________|________|___ |
437  * | |0| 1 | 2 | 3 | 4 | |
438  * | |_|________|________|________|___| |
439  * | | | | | |
440  *
441  * The first transfer (0) can be up to lineWidth in size.
442  * All the middle transfers (1-3) are lineWidth in size
443  * The last transfer (4) can be from zero to lineWidth - 1 in size
444  */
445  unsigned int first_fragment_offset =
446  addrBlockOffset(base_addr, line_width);
447  unsigned int last_fragment_size =
448  addrBlockOffset(base_addr + whole_size, line_width);
449  unsigned int first_fragment_size =
450  line_width - first_fragment_offset;
451 
452  unsigned int middle_fragments_total_size =
453  whole_size - (first_fragment_size + last_fragment_size);
454 
455  assert(addrBlockOffset(middle_fragments_total_size, line_width) == 0);
456 
457  unsigned int middle_fragment_count =
458  middle_fragments_total_size / line_width;
459 
460  numFragments = 1 /* first */ + middle_fragment_count +
461  (last_fragment_size == 0 ? 0 : 1);
462 
463  DPRINTFS(MinorMem, (&port), "Dividing transfer into %d fragmentRequests."
464  " First fragment size: %d Last fragment size: %d\n",
465  numFragments, first_fragment_size,
466  (last_fragment_size == 0 ? line_width : last_fragment_size));
467 
468  assert(((middle_fragment_count * line_width) +
469  first_fragment_size + last_fragment_size) == whole_size);
470 
471  fragment_addr = base_addr;
472  fragment_size = first_fragment_size;
473 
474  /* Just past the last address in the request */
475  Addr end_addr = base_addr + whole_size;
476 
477  auto& byte_enable = request->getByteEnable();
478  unsigned int num_disabled_fragments = 0;
479 
480  for (unsigned int fragment_index = 0; fragment_index < numFragments;
481  fragment_index++)
482  {
483  GEM5_VAR_USED bool is_last_fragment = false;
484 
485  if (fragment_addr == base_addr) {
486  /* First fragment */
487  fragment_size = first_fragment_size;
488  } else {
489  if ((fragment_addr + line_width) > end_addr) {
490  /* Adjust size of last fragment */
491  fragment_size = end_addr - fragment_addr;
492  is_last_fragment = true;
493  } else {
494  /* Middle fragments */
495  fragment_size = line_width;
496  }
497  }
498 
499  RequestPtr fragment = std::make_shared<Request>();
500  bool disabled_fragment = false;
501 
502  fragment->setContext(request->contextId());
503  // Set up byte-enable mask for the current fragment
504  auto it_start = byte_enable.begin() +
505  (fragment_addr - base_addr);
506  auto it_end = byte_enable.begin() +
507  (fragment_addr - base_addr) + fragment_size;
508  if (isAnyActiveElement(it_start, it_end)) {
509  fragment->setVirt(
510  fragment_addr, fragment_size, request->getFlags(),
511  request->requestorId(),
512  request->getPC());
513  fragment->setByteEnable(std::vector<bool>(it_start, it_end));
514  } else {
515  disabled_fragment = true;
516  }
517 
518  if (!disabled_fragment) {
519  DPRINTFS(MinorMem, (&port), "Generating fragment addr: 0x%x"
520  " size: %d (whole request addr: 0x%x size: %d) %s\n",
521  fragment_addr, fragment_size, base_addr, whole_size,
522  (is_last_fragment ? "last fragment" : ""));
523 
524  fragmentRequests.push_back(fragment);
525  } else {
526  num_disabled_fragments++;
527  }
528 
529  fragment_addr += fragment_size;
530  }
531  assert(numFragments >= num_disabled_fragments);
532  numFragments -= num_disabled_fragments;
533 }
534 
535 void
537 {
538  assert(numTranslatedFragments > 0);
539  Addr base_addr = request->getVaddr();
540 
541  DPRINTFS(MinorMem, (&port), "Making packets for request: %s\n", *inst);
542 
543  for (unsigned int fragment_index = 0;
544  fragment_index < numTranslatedFragments;
545  fragment_index++)
546  {
547  RequestPtr fragment = fragmentRequests[fragment_index];
548 
549  DPRINTFS(MinorMem, (&port), "Making packet %d for request: %s"
550  " (%d, 0x%x)\n",
551  fragment_index, *inst,
552  (fragment->hasPaddr() ? "has paddr" : "no paddr"),
553  (fragment->hasPaddr() ? fragment->getPaddr() : 0));
554 
555  Addr fragment_addr = fragment->getVaddr();
556  unsigned int fragment_size = fragment->getSize();
557 
558  uint8_t *request_data = NULL;
559 
560  if (!isLoad) {
561  /* Split data for Packets. Will become the property of the
562  * outgoing Packets */
563  request_data = new uint8_t[fragment_size];
564  std::memcpy(request_data, data + (fragment_addr - base_addr),
565  fragment_size);
566  }
567 
568  assert(fragment->hasPaddr());
569 
570  PacketPtr fragment_packet =
571  makePacketForRequest(fragment, isLoad, this, request_data);
572 
573  fragmentPackets.push_back(fragment_packet);
574  /* Accumulate flags in parent request */
575  request->setFlags(fragment->getFlags());
576  }
577 
578  /* Might as well make the overall/response packet here */
579  /* Get the physical address for the whole request/packet from the first
580  * fragment */
581  request->setPaddr(fragmentRequests[0]->getPaddr());
582  makePacket();
583 }
584 
585 void
587 {
588  makeFragmentRequests();
589 
590  if (numFragments > 0) {
592  numInTranslationFragments = 0;
593  numTranslatedFragments = 0;
594 
595  /* @todo, just do these in sequence for now with
596  * a loop of:
597  * do {
598  * sendNextFragmentToTranslation ; translateTiming ; finish
599  * } while (numTranslatedFragments != numFragments);
600  */
601 
602  /* Do first translation */
603  sendNextFragmentToTranslation();
604  } else {
605  disableMemAccess();
606  setState(LSQ::LSQRequest::Complete);
607  }
608 }
609 
610 PacketPtr
612 {
613  assert(numIssuedFragments < numTranslatedFragments);
614 
615  return fragmentPackets[numIssuedFragments];
616 }
617 
618 void
620 {
621  assert(numIssuedFragments < numTranslatedFragments);
622 
623  numIssuedFragments++;
624 }
625 
626 void
628 {
629  assert(inst->translationFault == NoFault);
630  assert(numRetiredFragments < numTranslatedFragments);
631 
632  DPRINTFS(MinorMem, (&port), "Retiring fragment addr: 0x%x size: %d"
633  " offset: 0x%x (retired fragment num: %d)\n",
634  response->req->getVaddr(), response->req->getSize(),
635  request->getVaddr() - response->req->getVaddr(),
636  numRetiredFragments);
637 
638  numRetiredFragments++;
639 
640  if (skipped) {
641  /* Skip because we already knew the request had faulted or been
642  * skipped */
643  DPRINTFS(MinorMem, (&port), "Skipping this fragment\n");
644  } else if (response->isError()) {
645  /* Mark up the error and leave to execute to handle it */
646  DPRINTFS(MinorMem, (&port), "Fragment has an error, skipping\n");
647  setSkipped();
648  packet->copyError(response);
649  } else {
650  if (isLoad) {
651  if (!data) {
652  /* For a split transfer, a Packet must be constructed
653  * to contain all returning data. This is that packet's
654  * data */
655  data = new uint8_t[request->getSize()];
656  }
657 
658  /* Populate the portion of the overall response data represented
659  * by the response fragment */
660  std::memcpy(
661  data + (response->req->getVaddr() - request->getVaddr()),
662  response->getConstPtr<uint8_t>(),
663  response->req->getSize());
664  }
665  }
666 
667  /* Complete early if we're skipping are no more in-flight accesses */
668  if (skipped && !hasPacketsInMemSystem()) {
669  DPRINTFS(MinorMem, (&port), "Completed skipped burst\n");
670  setState(Complete);
671  if (packet->needsResponse())
672  packet->makeResponse();
673  }
674 
675  if (numRetiredFragments == numTranslatedFragments)
676  setState(Complete);
677 
678  if (!skipped && isComplete()) {
679  DPRINTFS(MinorMem, (&port), "Completed burst %d\n", packet != NULL);
680 
681  DPRINTFS(MinorMem, (&port), "Retired packet isRead: %d isWrite: %d"
682  " needsResponse: %d packetSize: %s requestSize: %s responseSize:"
683  " %s\n", packet->isRead(), packet->isWrite(),
684  packet->needsResponse(), packet->getSize(), request->getSize(),
685  response->getSize());
686 
687  /* A request can become complete by several paths, this is a sanity
688  * check to make sure the packet's data is created */
689  if (!data) {
690  data = new uint8_t[request->getSize()];
691  }
692 
693  if (isLoad) {
694  DPRINTFS(MinorMem, (&port), "Copying read data\n");
695  std::memcpy(packet->getPtr<uint8_t>(), data, request->getSize());
696  }
697  packet->makeResponse();
698  }
699 
700  /* Packets are all deallocated together in ~SplitLSQRequest */
701 }
702 
703 void
705 {
706  unsigned int fragment_index = numTranslatedFragments;
707 
708  ThreadContext *thread = port.cpu.getContext(
709  inst->id.threadId);
710 
711  DPRINTFS(MinorMem, (&port), "Submitting DTLB request for fragment: %d\n",
712  fragment_index);
713 
714  port.numAccessesInDTLB++;
715  numInTranslationFragments++;
716 
717  thread->getMMUPtr()->translateTiming(
718  fragmentRequests[fragment_index], thread, this, (isLoad ?
720 }
721 
722 bool
724 {
725  /* @todo, support store amalgamation */
726  return slots.size() < numSlots;
727 }
728 
729 void
731 {
732  auto found = std::find(slots.begin(), slots.end(), request);
733 
734  if (found != slots.end()) {
735  DPRINTF(MinorMem, "Deleting request: %s %s %s from StoreBuffer\n",
736  request, *found, *(request->inst));
737  slots.erase(found);
738 
739  delete request;
740  }
741 }
742 
743 void
745 {
746  if (!canInsert()) {
747  warn("%s: store buffer insertion without space to insert from"
748  " inst: %s\n", name(), *(request->inst));
749  }
750 
751  DPRINTF(MinorMem, "Pushing store: %s into store buffer\n", request);
752 
753  numUnissuedAccesses++;
754 
755  if (request->state != LSQRequest::Complete)
757 
758  slots.push_back(request);
759 
760  /* Let's try and wake up the processor for the next cycle to step
761  * the store buffer */
762  lsq.cpu.wakeupOnEvent(Pipeline::ExecuteStageId);
763 }
764 
767  unsigned int &found_slot)
768 {
769  unsigned int slot_index = slots.size() - 1;
770  auto i = slots.rbegin();
772 
773  /* Traverse the store buffer in reverse order (most to least recent)
774  * and try to find a slot whose address range overlaps this request */
775  while (ret == NoAddrRangeCoverage && i != slots.rend()) {
776  LSQRequestPtr slot = *i;
777 
778  /* Cache maintenance instructions go down via the store path but
779  * they carry no data and they shouldn't be considered
780  * for forwarding */
781  if (slot->packet &&
782  slot->inst->id.threadId == request->inst->id.threadId &&
783  !slot->packet->req->isCacheMaintenance()) {
784  AddrRangeCoverage coverage = slot->containsAddrRangeOf(request);
785 
786  if (coverage != NoAddrRangeCoverage) {
787  DPRINTF(MinorMem, "Forwarding: slot: %d result: %s thisAddr:"
788  " 0x%x thisSize: %d slotAddr: 0x%x slotSize: %d\n",
789  slot_index, coverage,
790  request->request->getPaddr(), request->request->getSize(),
791  slot->request->getPaddr(), slot->request->getSize());
792 
793  found_slot = slot_index;
794  ret = coverage;
795  }
796  }
797 
798  i++;
799  slot_index--;
800  }
801 
802  return ret;
803 }
804 
806 void
808  unsigned int slot_number)
809 {
810  assert(slot_number < slots.size());
811  assert(load->packet);
812  assert(load->isLoad);
813 
814  LSQRequestPtr store = slots[slot_number];
815 
816  assert(store->packet);
817  assert(store->containsAddrRangeOf(load) == FullAddrRangeCoverage);
818 
819  Addr load_addr = load->request->getPaddr();
820  Addr store_addr = store->request->getPaddr();
821  Addr addr_offset = load_addr - store_addr;
822 
823  unsigned int load_size = load->request->getSize();
824 
825  DPRINTF(MinorMem, "Forwarding %d bytes for addr: 0x%x from store buffer"
826  " slot: %d addr: 0x%x addressOffset: 0x%x\n",
827  load_size, load_addr, slot_number,
828  store_addr, addr_offset);
829 
830  void *load_packet_data = load->packet->getPtr<void>();
831  void *store_packet_data = store->packet->getPtr<uint8_t>() + addr_offset;
832 
833  std::memcpy(load_packet_data, store_packet_data, load_size);
834 }
835 
836 void
838 {
839  /* Barriers are accounted for as they are cleared from
840  * the queue, not after their transfers are complete */
841  if (!request->isBarrier())
842  numUnissuedAccesses--;
843 }
844 
845 void
847 {
848  DPRINTF(MinorMem, "StoreBuffer step numUnissuedAccesses: %d\n",
849  numUnissuedAccesses);
850 
851  if (numUnissuedAccesses != 0 && lsq.state == LSQ::MemoryRunning) {
852  /* Clear all the leading barriers */
853  while (!slots.empty() &&
854  slots.front()->isComplete() && slots.front()->isBarrier())
855  {
856  LSQRequestPtr barrier = slots.front();
857 
858  DPRINTF(MinorMem, "Clearing barrier for inst: %s\n",
859  *(barrier->inst));
860 
861  numUnissuedAccesses--;
862  lsq.clearMemBarrier(barrier->inst);
863  slots.pop_front();
864 
865  delete barrier;
866  }
867 
868  auto i = slots.begin();
869  bool issued = true;
870  unsigned int issue_count = 0;
871 
872  /* Skip trying if the memory system is busy */
873  if (lsq.state == LSQ::MemoryNeedsRetry)
874  issued = false;
875 
876  /* Try to issue all stores in order starting from the head
877  * of the queue. Responses are allowed to be retired
878  * out of order */
879  while (issued &&
880  issue_count < storeLimitPerCycle &&
881  lsq.canSendToMemorySystem() &&
882  i != slots.end())
883  {
884  LSQRequestPtr request = *i;
885 
886  DPRINTF(MinorMem, "Considering request: %s, sentAllPackets: %d"
887  " state: %s\n",
888  *(request->inst), request->sentAllPackets(),
889  request->state);
890 
891  if (request->isBarrier() && request->isComplete()) {
892  /* Give up at barriers */
893  issued = false;
894  } else if (!(request->state == LSQRequest::StoreBufferIssuing &&
895  request->sentAllPackets()))
896  {
897  DPRINTF(MinorMem, "Trying to send request: %s to memory"
898  " system\n", *(request->inst));
899 
900  if (lsq.tryToSend(request)) {
901  countIssuedStore(request);
902  issue_count++;
903  } else {
904  /* Don't step on to the next store buffer entry if this
905  * one hasn't issued all its packets as the store
906  * buffer must still enforce ordering */
907  issued = false;
908  }
909  }
910  i++;
911  }
912  }
913 }
914 
915 void
917  bool committed)
918 {
919  if (committed) {
920  /* Not already sent to the store buffer as a store request? */
921  if (!inst->inStoreBuffer) {
922  /* Insert an entry into the store buffer to tick off barriers
923  * until there are none in flight */
924  storeBuffer.insert(new BarrierDataRequest(*this, inst));
925  }
926  } else {
927  /* Clear the barrier anyway if it wasn't actually committed */
928  clearMemBarrier(inst);
929  }
930 }
931 
932 void
934 {
935  unsigned int size = slots.size();
936  unsigned int i = 0;
937  std::ostringstream os;
938 
939  while (i < size) {
940  LSQRequestPtr request = slots[i];
941 
942  request->reportData(os);
943 
944  i++;
945  if (i < numSlots)
946  os << ',';
947  }
948 
949  while (i < numSlots) {
950  os << '-';
951 
952  i++;
953  if (i < numSlots)
954  os << ',';
955  }
956 
957  minor::minorTrace("addr=%s num_unissued_stores=%d\n", os.str(),
958  numUnissuedAccesses);
959 }
960 
961 void
963 {
964  if (state == MemoryNeedsRetry) {
965  DPRINTF(MinorMem, "Request needs retry, not issuing to"
966  " memory until retry arrives\n");
967  return;
968  }
969 
970  if (request->state == LSQRequest::InTranslation) {
971  DPRINTF(MinorMem, "Request still in translation, not issuing to"
972  " memory\n");
973  return;
974  }
975 
976  assert(request->state == LSQRequest::Translated ||
977  request->state == LSQRequest::RequestIssuing ||
978  request->state == LSQRequest::Failed ||
979  request->state == LSQRequest::Complete);
980 
981  if (requests.empty() || requests.front() != request) {
982  DPRINTF(MinorMem, "Request not at front of requests queue, can't"
983  " issue to memory\n");
984  return;
985  }
986 
987  if (transfers.unreservedRemainingSpace() == 0) {
988  DPRINTF(MinorMem, "No space to insert request into transfers"
989  " queue\n");
990  return;
991  }
992 
993  if (request->isComplete() || request->state == LSQRequest::Failed) {
994  DPRINTF(MinorMem, "Passing a %s transfer on to transfers"
995  " queue\n", (request->isComplete() ? "completed" : "failed"));
996  request->setState(LSQRequest::Complete);
997  request->setSkipped();
999  return;
1000  }
1001 
1002  if (!execute.instIsRightStream(request->inst)) {
1003  /* Wrong stream, try to abort the transfer but only do so if
1004  * there are no packets in flight */
1005  if (request->hasPacketsInMemSystem()) {
1006  DPRINTF(MinorMem, "Request's inst. is from the wrong stream,"
1007  " waiting for responses before aborting request\n");
1008  } else {
1009  DPRINTF(MinorMem, "Request's inst. is from the wrong stream,"
1010  " aborting request\n");
1011  request->setState(LSQRequest::Complete);
1012  request->setSkipped();
1013  moveFromRequestsToTransfers(request);
1014  }
1015  return;
1016  }
1017 
1018  if (request->inst->translationFault != NoFault) {
1019  if (request->inst->staticInst->isPrefetch()) {
1020  DPRINTF(MinorMem, "Not signalling fault for faulting prefetch\n");
1021  }
1022  DPRINTF(MinorMem, "Moving faulting request into the transfers"
1023  " queue\n");
1024  request->setState(LSQRequest::Complete);
1025  request->setSkipped();
1026  moveFromRequestsToTransfers(request);
1027  return;
1028  }
1029 
1030  bool is_load = request->isLoad;
1031  bool is_llsc = request->request->isLLSC();
1032  bool is_release = request->request->isRelease();
1033  bool is_swap = request->request->isSwap();
1034  bool is_atomic = request->request->isAtomic();
1035  bool bufferable = !(request->request->isStrictlyOrdered() ||
1036  is_llsc || is_swap || is_atomic || is_release);
1037 
1038  if (is_load) {
1039  if (numStoresInTransfers != 0) {
1040  DPRINTF(MinorMem, "Load request with stores still in transfers"
1041  " queue, stalling\n");
1042  return;
1043  }
1044  } else {
1045  /* Store. Can it be sent to the store buffer? */
1046  if (bufferable && !request->request->isLocalAccess()) {
1048  moveFromRequestsToTransfers(request);
1049  DPRINTF(MinorMem, "Moving store into transfers queue\n");
1050  return;
1051  }
1052  }
1053 
1054  // Process store conditionals or store release after all previous
1055  // stores are completed
1056  if (((!is_load && is_llsc) || is_release) &&
1057  !storeBuffer.isDrained()) {
1058  DPRINTF(MinorMem, "Memory access needs to wait for store buffer"
1059  " to drain\n");
1060  return;
1061  }
1062 
1063  /* Check if this is the head instruction (and so must be executable as
1064  * its stream sequence number was checked above) for loads which must
1065  * not be speculatively issued and stores which must be issued here */
1066  if (!bufferable) {
1067  if (!execute.instIsHeadInst(request->inst)) {
1068  DPRINTF(MinorMem, "Memory access not the head inst., can't be"
1069  " sure it can be performed, not issuing\n");
1070  return;
1071  }
1072 
1073  unsigned int forwarding_slot = 0;
1074 
1075  if (storeBuffer.canForwardDataToLoad(request, forwarding_slot) !=
1077  {
1078  // There's at least another request that targets the same
1079  // address and is staying in the storeBuffer. Since our
1080  // request is non-bufferable (e.g., strictly ordered or atomic),
1081  // we must wait for the other request in the storeBuffer to
1082  // complete before we can issue this non-bufferable request.
1083  // This is to make sure that the order they access the cache is
1084  // correct.
1085  DPRINTF(MinorMem, "Memory access can receive forwarded data"
1086  " from the store buffer, but need to wait for store buffer"
1087  " to drain\n");
1088  return;
1089  }
1090  }
1091 
1092  /* True: submit this packet to the transfers queue to be sent to the
1093  * memory system.
1094  * False: skip the memory and push a packet for this request onto
1095  * requests */
1096  bool do_access = true;
1097 
1098  if (!is_llsc) {
1099  /* Check for match in the store buffer */
1100  if (is_load) {
1101  unsigned int forwarding_slot = 0;
1102  AddrRangeCoverage forwarding_result =
1104  forwarding_slot);
1105 
1106  switch (forwarding_result) {
1107  case FullAddrRangeCoverage:
1108  /* Forward data from the store buffer into this request and
1109  * repurpose this request's packet into a response packet */
1110  storeBuffer.forwardStoreData(request, forwarding_slot);
1111  request->packet->makeResponse();
1112 
1113  /* Just move between queues, no access */
1114  do_access = false;
1115  break;
1117  DPRINTF(MinorMem, "Load partly satisfied by store buffer"
1118  " data. Must wait for the store to complete\n");
1119  return;
1120  break;
1121  case NoAddrRangeCoverage:
1122  DPRINTF(MinorMem, "No forwardable data from store buffer\n");
1123  /* Fall through to try access */
1124  break;
1125  }
1126  }
1127  } else {
1128  if (!canSendToMemorySystem()) {
1129  DPRINTF(MinorMem, "Can't send request to memory system yet\n");
1130  return;
1131  }
1132 
1133  SimpleThread &thread = *cpu.threads[request->inst->id.threadId];
1134 
1135  TheISA::PCState old_pc = thread.pcState();
1136  ExecContext context(cpu, thread, execute, request->inst, zeroReg);
1137 
1138  /* Handle LLSC requests and tests */
1139  if (is_load) {
1140  TheISA::handleLockedRead(&context, request->request);
1141  } else {
1142  do_access = TheISA::handleLockedWrite(&context,
1143  request->request, cacheBlockMask);
1144 
1145  if (!do_access) {
1146  DPRINTF(MinorMem, "Not perfoming a memory "
1147  "access for store conditional\n");
1148  }
1149  }
1150  thread.pcState(old_pc);
1151  }
1152 
1153  /* See the do_access comment above */
1154  if (do_access) {
1155  if (!canSendToMemorySystem()) {
1156  DPRINTF(MinorMem, "Can't send request to memory system yet\n");
1157  return;
1158  }
1159 
1160  /* Remember if this is an access which can't be idly
1161  * discarded by an interrupt */
1162  if (!bufferable && !request->issuedToMemory) {
1164  request->issuedToMemory = true;
1165  }
1166 
1167  if (tryToSend(request)) {
1168  moveFromRequestsToTransfers(request);
1169  }
1170  } else {
1171  request->setState(LSQRequest::Complete);
1172  moveFromRequestsToTransfers(request);
1173  }
1174 }
1175 
1176 bool
1178 {
1179  bool ret = false;
1180 
1181  if (!canSendToMemorySystem()) {
1182  DPRINTF(MinorMem, "Can't send request: %s yet, no space in memory\n",
1183  *(request->inst));
1184  } else {
1185  PacketPtr packet = request->getHeadPacket();
1186 
1187  DPRINTF(MinorMem, "Trying to send request: %s addr: 0x%x\n",
1188  *(request->inst), packet->req->getVaddr());
1189 
1190  /* The sender state of the packet *must* be an LSQRequest
1191  * so the response can be correctly handled */
1192  assert(packet->findNextSenderState<LSQRequest>());
1193 
1194  if (request->request->isLocalAccess()) {
1195  ThreadContext *thread =
1197  request->request->contextId()));
1198 
1199  if (request->isLoad)
1200  DPRINTF(MinorMem, "IPR read inst: %s\n", *(request->inst));
1201  else
1202  DPRINTF(MinorMem, "IPR write inst: %s\n", *(request->inst));
1203 
1204  request->request->localAccessor(thread, packet);
1205 
1206  request->stepToNextPacket();
1207  ret = request->sentAllPackets();
1208 
1209  if (!ret) {
1210  DPRINTF(MinorMem, "IPR access has another packet: %s\n",
1211  *(request->inst));
1212  }
1213 
1214  if (ret)
1215  request->setState(LSQRequest::Complete);
1216  else
1218  } else if (dcachePort.sendTimingReq(packet)) {
1219  DPRINTF(MinorMem, "Sent data memory request\n");
1220 
1222 
1223  request->stepToNextPacket();
1224 
1225  ret = request->sentAllPackets();
1226 
1227  switch (request->state) {
1230  /* Fully or partially issued a request in the transfers
1231  * queue */
1233  break;
1236  /* Fully or partially issued a request in the store
1237  * buffer */
1239  break;
1240  default:
1241  panic("Unrecognized LSQ request state %d.", request->state);
1242  }
1243 
1244  state = MemoryRunning;
1245  } else {
1246  DPRINTF(MinorMem,
1247  "Sending data memory request - needs retry\n");
1248 
1249  /* Needs to be resent, wait for that */
1251  retryRequest = request;
1252 
1253  switch (request->state) {
1257  break;
1261  break;
1262  default:
1263  panic("Unrecognized LSQ request state %d.", request->state);
1264  }
1265  }
1266  }
1267 
1268  if (ret)
1269  threadSnoop(request);
1270 
1271  return ret;
1272 }
1273 
1274 void
1276 {
1277  assert(!requests.empty() && requests.front() == request);
1278  assert(transfers.unreservedRemainingSpace() != 0);
1279 
1280  /* Need to count the number of stores in the transfers
1281  * queue so that loads know when their store buffer forwarding
1282  * results will be correct (only when all those stores
1283  * have reached the store buffer) */
1284  if (!request->isLoad)
1286 
1287  requests.pop();
1288  transfers.push(request);
1289 }
1290 
1291 bool
1293 {
1294  return state == MemoryRunning &&
1296 }
1297 
1298 bool
1300 {
1301  LSQRequestPtr request =
1302  safe_cast<LSQRequestPtr>(response->popSenderState());
1303 
1304  DPRINTF(MinorMem, "Received response packet inst: %s"
1305  " addr: 0x%x cmd: %s\n",
1306  *(request->inst), response->getAddr(),
1307  response->cmd.toString());
1308 
1310 
1311  if (response->isError()) {
1312  DPRINTF(MinorMem, "Received error response packet: %s\n",
1313  *request->inst);
1314  }
1315 
1316  switch (request->state) {
1319  /* Response to a request from the transfers queue */
1320  request->retireResponse(response);
1321 
1322  DPRINTF(MinorMem, "Has outstanding packets?: %d %d\n",
1323  request->hasPacketsInMemSystem(), request->isComplete());
1324 
1325  break;
1328  /* Response to a request from the store buffer */
1329  request->retireResponse(response);
1330 
1331  /* Remove completed requests unless they are barriers (which will
1332  * need to be removed in order */
1333  if (request->isComplete()) {
1334  if (!request->isBarrier()) {
1335  storeBuffer.deleteRequest(request);
1336  } else {
1337  DPRINTF(MinorMem, "Completed transfer for barrier: %s"
1338  " leaving the request as it is also a barrier\n",
1339  *(request->inst));
1340  }
1341  }
1342  break;
1343  default:
1344  panic("Shouldn't be allowed to receive a response from another state");
1345  }
1346 
1347  /* We go to idle even if there are more things in the requests queue
1348  * as it's the job of step to actually step us on to the next
1349  * transaction */
1350 
1351  /* Let's try and wake up the processor for the next cycle */
1353 
1354  /* Never busy */
1355  return true;
1356 }
1357 
1358 void
1360 {
1361  DPRINTF(MinorMem, "Received retry request\n");
1362 
1363  assert(state == MemoryNeedsRetry);
1364 
1365  switch (retryRequest->state) {
1367  /* Retry in the requests queue */
1369  break;
1371  /* Retry in the store buffer */
1373  break;
1374  default:
1375  panic("Unrecognized retry request state %d.", retryRequest->state);
1376  }
1377 
1378  /* Set state back to MemoryRunning so that the following
1379  * tryToSend can actually send. Note that this won't
1380  * allow another transfer in as tryToSend should
1381  * issue a memory request and either succeed for this
1382  * request or return the LSQ back to MemoryNeedsRetry */
1383  state = MemoryRunning;
1384 
1385  /* Try to resend the request */
1386  if (tryToSend(retryRequest)) {
1387  /* Successfully sent, need to move the request */
1388  switch (retryRequest->state) {
1390  /* In the requests queue */
1392  break;
1394  /* In the store buffer */
1396  break;
1397  default:
1398  panic("Unrecognized retry request state %d.", retryRequest->state);
1399  }
1400 
1401  retryRequest = NULL;
1402  }
1403 }
1404 
1405 LSQ::LSQ(std::string name_, std::string dcache_port_name_,
1406  MinorCPU &cpu_, Execute &execute_,
1407  unsigned int in_memory_system_limit, unsigned int line_width,
1408  unsigned int requests_queue_size, unsigned int transfers_queue_size,
1409  unsigned int store_buffer_size,
1410  unsigned int store_buffer_cycle_store_limit,
1411  RegIndex zero_reg) :
1412  Named(name_),
1413  cpu(cpu_),
1414  execute(execute_),
1415  zeroReg(zero_reg),
1416  dcachePort(dcache_port_name_, *this, cpu_),
1417  lastMemBarrier(cpu.numThreads, 0),
1419  inMemorySystemLimit(in_memory_system_limit),
1420  lineWidth((line_width == 0 ? cpu.cacheLineSize() : line_width)),
1421  requests(name_ + ".requests", "addr", requests_queue_size),
1422  transfers(name_ + ".transfers", "addr", transfers_queue_size),
1423  storeBuffer(name_ + ".storeBuffer",
1424  *this, store_buffer_size, store_buffer_cycle_store_limit),
1426  numAccessesInDTLB(0),
1429  retryRequest(NULL),
1430  cacheBlockMask(~(cpu_.cacheLineSize() - 1))
1431 {
1432  if (in_memory_system_limit < 1) {
1433  fatal("%s: executeMaxAccessesInMemory must be >= 1 (%d)\n", name_,
1434  in_memory_system_limit);
1435  }
1436 
1437  if (store_buffer_cycle_store_limit < 1) {
1438  fatal("%s: executeLSQMaxStoreBufferStoresPerCycle must be"
1439  " >= 1 (%d)\n", name_, store_buffer_cycle_store_limit);
1440  }
1441 
1442  if (requests_queue_size < 1) {
1443  fatal("%s: executeLSQRequestsQueueSize must be"
1444  " >= 1 (%d)\n", name_, requests_queue_size);
1445  }
1446 
1447  if (transfers_queue_size < 1) {
1448  fatal("%s: executeLSQTransfersQueueSize must be"
1449  " >= 1 (%d)\n", name_, transfers_queue_size);
1450  }
1451 
1452  if (store_buffer_size < 1) {
1453  fatal("%s: executeLSQStoreBufferSize must be"
1454  " >= 1 (%d)\n", name_, store_buffer_size);
1455  }
1456 
1457  if ((lineWidth & (lineWidth - 1)) != 0) {
1458  fatal("%s: lineWidth: %d must be a power of 2\n", name(), lineWidth);
1459  }
1460 }
1461 
1463 { }
1464 
1466 {
1467  if (packet)
1468  delete packet;
1469  if (data)
1470  delete [] data;
1471 }
1472 
1479 void
1481 {
1482  /* Try to move address-translated requests between queues and issue
1483  * them */
1484  if (!requests.empty())
1486 
1487  storeBuffer.step();
1488 }
1489 
1492 {
1493  LSQ::LSQRequestPtr ret = NULL;
1494 
1495  if (!transfers.empty()) {
1496  LSQRequestPtr request = transfers.front();
1497 
1498  /* Same instruction and complete access or a store that's
1499  * capable of being moved to the store buffer */
1500  if (request->inst->id == inst->id) {
1501  bool complete = request->isComplete();
1502  bool can_store = storeBuffer.canInsert();
1503  bool to_store_buffer = request->state ==
1505 
1506  if ((complete && !(request->isBarrier() && !can_store)) ||
1507  (to_store_buffer && can_store))
1508  {
1509  ret = request;
1510  }
1511  }
1512  }
1513 
1514  if (ret) {
1515  DPRINTF(MinorMem, "Found matching memory response for inst: %s\n",
1516  *inst);
1517  } else {
1518  DPRINTF(MinorMem, "No matching memory response for inst: %s\n",
1519  *inst);
1520  }
1521 
1522  return ret;
1523 }
1524 
1525 void
1527 {
1528  assert(!transfers.empty() && transfers.front() == response);
1529 
1530  transfers.pop();
1531 
1532  if (!response->isLoad)
1534 
1535  if (response->issuedToMemory)
1537 
1538  if (response->state != LSQRequest::StoreInStoreBuffer) {
1539  DPRINTF(MinorMem, "Deleting %s request: %s\n",
1540  (response->isLoad ? "load" : "store"),
1541  *(response->inst));
1542 
1543  delete response;
1544  }
1545 }
1546 
1547 void
1549 {
1550  assert(request->state == LSQRequest::StoreToStoreBuffer);
1551 
1552  DPRINTF(MinorMem, "Sending store: %s to store buffer\n",
1553  *(request->inst));
1554 
1555  request->inst->inStoreBuffer = true;
1556 
1557  storeBuffer.insert(request);
1558 }
1559 
1560 bool
1562 {
1563  return requests.empty() && transfers.empty() &&
1565 }
1566 
1567 bool
1569 {
1570  bool ret = false;
1571 
1572  if (canSendToMemorySystem()) {
1573  bool have_translated_requests = !requests.empty() &&
1576 
1577  ret = have_translated_requests ||
1579  }
1580 
1581  if (ret)
1582  DPRINTF(Activity, "Need to tick\n");
1583 
1584  return ret;
1585 }
1586 
1587 Fault
1588 LSQ::pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data,
1589  unsigned int size, Addr addr, Request::Flags flags,
1590  uint64_t *res, AtomicOpFunctorPtr amo_op,
1591  const std::vector<bool>& byte_enable)
1592 {
1593  assert(inst->translationFault == NoFault || inst->inLSQ);
1594 
1595  if (inst->inLSQ) {
1596  return inst->translationFault;
1597  }
1598 
1599  bool needs_burst = transferNeedsBurst(addr, size, lineWidth);
1600 
1601  if (needs_burst && inst->staticInst->isAtomic()) {
1602  // AMO requests that access across a cache line boundary are not
1603  // allowed since the cache does not guarantee AMO ops to be executed
1604  // atomically in two cache lines
1605  // For ISAs such as x86 that requires AMO operations to work on
1606  // accesses that cross cache-line boundaries, the cache needs to be
1607  // modified to support locking both cache lines to guarantee the
1608  // atomicity.
1609  panic("Do not expect cross-cache-line atomic memory request\n");
1610  }
1611 
1612  LSQRequestPtr request;
1613 
1614  /* Copy given data into the request. The request will pass this to the
1615  * packet and then it will own the data */
1616  uint8_t *request_data = NULL;
1617 
1618  DPRINTF(MinorMem, "Pushing request (%s) addr: 0x%x size: %d flags:"
1619  " 0x%x%s lineWidth : 0x%x\n",
1620  (isLoad ? "load" : "store/atomic"), addr, size, flags,
1621  (needs_burst ? " (needs burst)" : ""), lineWidth);
1622 
1623  if (!isLoad) {
1624  /* Request_data becomes the property of a ...DataRequest (see below)
1625  * and destroyed by its destructor */
1626  request_data = new uint8_t[size];
1627  if (inst->staticInst->isAtomic() ||
1628  (flags & Request::STORE_NO_DATA)) {
1629  /* For atomic or store-no-data, just use zeroed data */
1630  std::memset(request_data, 0, size);
1631  } else {
1632  std::memcpy(request_data, data, size);
1633  }
1634  }
1635 
1636  if (needs_burst) {
1637  request = new SplitDataRequest(
1638  *this, inst, isLoad, request_data, res);
1639  } else {
1640  request = new SingleDataRequest(
1641  *this, inst, isLoad, request_data, res);
1642  }
1643 
1644  if (inst->traceData)
1645  inst->traceData->setMem(addr, size, flags);
1646 
1647  int cid = cpu.threads[inst->id.threadId]->getTC()->contextId();
1648  request->request->setContext(cid);
1649  request->request->setVirt(
1650  addr, size, flags, cpu.dataRequestorId(),
1651  /* I've no idea why we need the PC, but give it */
1652  inst->pc.instAddr(), std::move(amo_op));
1653  request->request->setByteEnable(byte_enable);
1654 
1655  requests.push(request);
1656  inst->inLSQ = true;
1657  request->startAddrTranslation();
1658 
1659  return inst->translationFault;
1660 }
1661 
1662 void
1664 {
1665  LSQRequestPtr request = new FailedDataRequest(*this, inst);
1666  requests.push(request);
1667 }
1668 
1669 void
1671 {
1672  minor::minorTrace("state=%s in_tlb_mem=%d/%d stores_in_transfers=%d"
1673  " lastMemBarrier=%d\n",
1676  requests.minorTrace();
1679 }
1680 
1681 LSQ::StoreBuffer::StoreBuffer(std::string name_, LSQ &lsq_,
1682  unsigned int store_buffer_size,
1683  unsigned int store_limit_per_cycle) :
1684  Named(name_), lsq(lsq_),
1685  numSlots(store_buffer_size),
1686  storeLimitPerCycle(store_limit_per_cycle),
1687  slots(),
1688  numUnissuedAccesses(0)
1689 {
1690 }
1691 
1692 PacketPtr
1693 makePacketForRequest(const RequestPtr &request, bool isLoad,
1694  Packet::SenderState *sender_state, PacketDataPtr data)
1695 {
1696  PacketPtr ret = isLoad ? Packet::createRead(request)
1697  : Packet::createWrite(request);
1698 
1699  if (sender_state)
1700  ret->pushSenderState(sender_state);
1701 
1702  if (isLoad) {
1703  ret->allocate();
1704  } else if (!request->isCacheMaintenance()) {
1705  // CMOs are treated as stores but they don't have data. All
1706  // stores otherwise need to allocate for data.
1707  ret->dataDynamic(data);
1708  }
1709 
1710  return ret;
1711 }
1712 
1713 void
1715 {
1716  assert(inst->isInst() && inst->staticInst->isFullMemBarrier());
1717  assert(inst->id.execSeqNum > lastMemBarrier[inst->id.threadId]);
1718 
1719  /* Remember the barrier. We only have a notion of one
1720  * barrier so this may result in some mem refs being
1721  * delayed if they are between barriers */
1722  lastMemBarrier[inst->id.threadId] = inst->id.execSeqNum;
1723 }
1724 
1725 void
1727 {
1728  assert(inst->translationFault == NoFault);
1729 
1730  /* Make the function idempotent */
1731  if (packet)
1732  return;
1733 
1734  packet = makePacketForRequest(request, isLoad, this, data);
1735  /* Null the ret data so we know not to deallocate it when the
1736  * ret is destroyed. The data now belongs to the ret and
1737  * the ret is responsible for its destruction */
1738  data = NULL;
1739 }
1740 
1741 std::ostream &
1743 {
1744  switch (state) {
1745  case LSQ::MemoryRunning:
1746  os << "MemoryRunning";
1747  break;
1748  case LSQ::MemoryNeedsRetry:
1749  os << "MemoryNeedsRetry";
1750  break;
1751  default:
1752  os << "MemoryState-" << static_cast<int>(state);
1753  break;
1754  }
1755  return os;
1756 }
1757 
1758 void
1760 {
1761  /* LLSC operations in Minor can't be speculative and are executed from
1762  * the head of the requests queue. We shouldn't need to do more than
1763  * this action on snoops. */
1764  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
1765  if (cpu.getCpuAddrMonitor(tid)->doMonitor(pkt)) {
1766  cpu.wakeup(tid);
1767  }
1768  }
1769 
1770  if (pkt->isInvalidate() || pkt->isWrite()) {
1771  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
1773  cacheBlockMask);
1774  }
1775  }
1776 }
1777 
1778 void
1780 {
1781  /* LLSC operations in Minor can't be speculative and are executed from
1782  * the head of the requests queue. We shouldn't need to do more than
1783  * this action on snoops. */
1784  ThreadID req_tid = request->inst->id.threadId;
1785  PacketPtr pkt = request->packet;
1786 
1787  for (ThreadID tid = 0; tid < cpu.numThreads; tid++) {
1788  if (tid != req_tid) {
1789  if (cpu.getCpuAddrMonitor(tid)->doMonitor(pkt)) {
1790  cpu.wakeup(tid);
1791  }
1792 
1793  if (pkt->isInvalidate() || pkt->isWrite()) {
1795  cacheBlockMask);
1796  }
1797  }
1798  }
1799 }
1800 
1801 } // namespace minor
1802 } // namespace gem5
gem5::minor::LSQ
Definition: lsq.hh:68
gem5::minor::LSQ::LSQRequest::sentAllPackets
virtual bool sentAllPackets()=0
Have all packets been sent?
gem5::curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:46
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:189
gem5::minor::LSQ::requests
LSQQueue requests
requests contains LSQRequests which have been issued to the TLB by calling ExecContext::readMem/write...
Definition: lsq.hh:580
gem5::minor::LSQ::LSQRequest::retireResponse
virtual void retireResponse(PacketPtr packet_)=0
Retire a response packet into the LSQRequest packet possibly completing this transfer.
gem5::minor::Queue::front
ElemType & front()
Head value.
Definition: buffers.hh:501
gem5::minor::LSQ::LSQRequest::tryToSuppressFault
void tryToSuppressFault()
Instructions may want to suppress translation faults (e.g.
Definition: lsq.cc:81
gem5::minor::LSQ::LSQRequest::StoreToStoreBuffer
@ StoreToStoreBuffer
Definition: lsq.hh:182
gem5::BaseMMU::Read
@ Read
Definition: mmu.hh:53
gem5::minor::LSQ::MemoryNeedsRetry
@ MemoryNeedsRetry
Definition: lsq.hh:82
utils.hh
gem5::NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:260
gem5::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:495
warn
#define warn(...)
Definition: logging.hh:245
gem5::minor::LSQ::StoreBuffer::StoreBuffer
StoreBuffer(std::string name_, LSQ &lsq_, unsigned int store_buffer_size, unsigned int store_limit_per_cycle)
Definition: lsq.cc:1681
gem5::minor::LSQ::LSQRequest::request
RequestPtr request
The underlying request of this LSQRequest.
Definition: lsq.hh:157
gem5::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:1714
data
const char data[]
Definition: circlebuf.test.cc:48
gem5::minor::LSQ::SplitDataRequest::retireResponse
void retireResponse(PacketPtr packet_)
For loads, paste the response data into the main response packet.
Definition: lsq.cc:627
gem5::minor::LSQ::LSQRequest::isLoad
bool isLoad
Load/store indication used for building packet.
Definition: lsq.hh:144
gem5::minor::LSQ::AddrRangeCoverage
AddrRangeCoverage
Coverage of one address range with another.
Definition: lsq.hh:90
gem5::minor::LSQ::LSQRequest::RequestIssuing
@ RequestIssuing
Definition: lsq.hh:180
gem5::minor::LSQ::LSQRequest::makePacket
void makePacket()
Make a packet to use with the memory transaction.
Definition: lsq.cc:1726
gem5::minor::LSQ::threadSnoop
void threadSnoop(LSQRequestPtr request)
Snoop other threads monitors on memory system accesses.
Definition: lsq.cc:1779
gem5::Packet::findNextSenderState
T * findNextSenderState() const
Go through the sender state stack and return the first instance that is of type T (as determined by a...
Definition: packet.hh:564
gem5::minor::LSQ::LSQRequest::LSQRequestState
LSQRequestState
Definition: lsq.hh:174
gem5::minor::LSQ::PartialAddrRangeCoverage
@ PartialAddrRangeCoverage
Definition: lsq.hh:92
gem5::minor::LSQ::LSQRequest::packet
PacketPtr packet
Definition: lsq.hh:154
gem5::minor::LSQ::state
MemoryState state
Retry state of last issued memory transfer.
Definition: lsq.hh:551
gem5::minor::LSQ::LSQRequest::setSkipped
void setSkipped()
Set this request as having been skipped before a memory transfer was attempt.
Definition: lsq.hh:225
gem5::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:316
gem5::BaseMMU::Mode
Mode
Definition: mmu.hh:53
gem5::minor::LSQ::SplitDataRequest::sendNextFragmentToTranslation
void sendNextFragmentToTranslation()
Part of the address translation loop, see startAddTranslation.
Definition: lsq.cc:704
gem5::minor::LSQ::NoAddrRangeCoverage
@ NoAddrRangeCoverage
Definition: lsq.hh:94
gem5::Packet::req
RequestPtr req
A pointer to the original request.
Definition: packet.hh:366
gem5::BaseMMU::Write
@ Write
Definition: mmu.hh:53
gem5::ThreadContext::getMMUPtr
virtual BaseMMU * getMMUPtr()=0
gem5::AddressMonitor::doMonitor
bool doMonitor(PacketPtr pkt)
Definition: base.cc:688
gem5::minor::LSQ::StoreBuffer::forwardStoreData
void forwardStoreData(LSQRequestPtr load, unsigned int slot_number)
Fill the given packet with appropriate date from slot slot_number.
Definition: lsq.cc:807
gem5::minor::LSQ::StoreBuffer::numUnissuedStores
unsigned int numUnissuedStores()
Number of stores in the store buffer which have not been completely issued to the memory system.
Definition: lsq.hh:526
gem5::minor::LSQ::LSQRequest::issuedToMemory
bool issuedToMemory
This in an access other than a normal cacheable load that's visited the memory system.
Definition: lsq.hh:169
gem5::Complete
@ Complete
Definition: misc.hh:59
gem5::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:167
gem5::minor::LSQ::FailedDataRequest
FailedDataRequest represents requests from instructions that failed their predicates but need to ride...
Definition: lsq.hh:329
minor
gem5::MinorCPU
MinorCPU is an in-order CPU model with four fixed pipeline stages:
Definition: cpu.hh:85
gem5::minor::LSQ::MemoryState
MemoryState
State of memory access for head access.
Definition: lsq.hh:79
gem5::minor::LSQ::SplitDataRequest::finish
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseMMU::Mode mode)
TLB response interface.
Definition: lsq.cc:337
gem5::minor::LSQ::cacheBlockMask
Addr cacheBlockMask
Address Mask for a cache block (e.g.
Definition: lsq.hh:628
gem5::Packet::isWrite
bool isWrite() const
Definition: packet.hh:583
gem5::minor::LSQ::numAccessesInDTLB
unsigned int numAccessesInDTLB
Number of requests in the DTLB in the requests queue.
Definition: lsq.hh:612
gem5::Packet::createWrite
static PacketPtr createWrite(const RequestPtr &req)
Definition: packet.hh:1013
gem5::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:1480
gem5::addrBlockOffset
Addr addrBlockOffset(Addr addr, Addr block_size)
Calculates the offset of a given address wrt aligned fixed-size blocks.
Definition: utils.hh:53
std::vector< bool >
gem5::minor::ExecContext::setMemAccPredicate
void setMemAccPredicate(bool val) override
Definition: exec_context.hh:265
gem5::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:1568
gem5::minor::LSQ::lineWidth
const unsigned int lineWidth
Memory system access width (and snap) in bytes.
Definition: lsq.hh:557
gem5::minor::LSQ::pushFailedRequest
void pushFailedRequest(MinorDynInstPtr inst)
Push a predicate failed-representing request into the queues just to maintain commit order.
Definition: lsq.cc:1663
gem5::PacketDataPtr
uint8_t * PacketDataPtr
Definition: packet.hh:71
gem5::minor::LSQ::zeroReg
const RegIndex zeroReg
Definition: lsq.hh:75
gem5::minor::Queue::minorTrace
void minorTrace() const
Definition: buffers.hh:512
gem5::minor::LSQ::LSQRequest::Complete
@ Complete
Definition: lsq.hh:193
gem5::minor::LSQ::lastMemBarrier
std::vector< InstSeqNum > lastMemBarrier
Most recent execSeqNum of a memory barrier instruction or 0 if there are no in-flight barriers.
Definition: lsq.hh:547
gem5::minor::LSQ::BarrierDataRequest
Request for doing barrier accounting in the store buffer.
Definition: lsq.hh:339
gem5::ArmISA::i
Bitfield< 7 > i
Definition: misc_types.hh:66
gem5::minor::Queue::empty
bool empty() const
Is the queue empty?
Definition: buffers.hh:509
gem5::minor::LSQ::SplitDataRequest::makeFragmentRequests
void makeFragmentRequests()
Make all the Requests for this transfer's fragments so that those requests can be sent for address tr...
Definition: lsq.cc:422
gem5::SimpleThread
The SimpleThread object provides a combination of the ThreadState object and the ThreadContext interf...
Definition: simple_thread.hh:94
gem5::minor::LSQ::SingleDataRequest::finish
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseMMU::Mode mode)
TLB interace.
Definition: lsq.cc:274
gem5::minor::LSQ::SingleDataRequest::startAddrTranslation
void startAddrTranslation()
Send single translation request.
Definition: lsq.cc:304
execute.hh
gem5::minor::LSQ::LSQRequest::Translated
@ Translated
Definition: lsq.hh:178
gem5::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:302
gem5::RefCountingPtr< MinorDynInst >
gem5::minor::LSQ::LSQRequest::containsAddrRangeOf
static AddrRangeCoverage containsAddrRangeOf(Addr req1_addr, unsigned int req1_size, Addr req2_addr, unsigned int req2_size)
Does address range req1 (req1_addr to req1_addr + req1_size - 1) fully cover, partially cover or not ...
Definition: lsq.cc:124
gem5::MinorCPU::threads
std::vector< minor::MinorThread * > threads
These are thread state-representing objects for this CPU.
Definition: cpu.hh:101
gem5::minor::LSQ::LSQRequest::~LSQRequest
virtual ~LSQRequest()
Definition: lsq.cc:1465
gem5::RubyTester::SenderState
Definition: RubyTester.hh:89
gem5::minor::LSQ::LSQRequest
Derived SenderState to carry data access info.
Definition: lsq.hh:129
gem5::ArmISA::handleLockedWrite
bool handleLockedWrite(XC *xc, const RequestPtr &req, Addr cacheBlockMask)
Definition: locked_mem.hh:113
gem5::Named
Interface for things with names.
Definition: named.hh:38
gem5::minor::LSQ::isDrained
bool isDrained()
Is there nothing left in the LSQ.
Definition: lsq.cc:1561
gem5::BaseCPU::numThreads
ThreadID numThreads
Number of threads we're actually simulating (<= SMT_MAX_THREADS).
Definition: base.hh:368
gem5::minor::LSQ::LSQRequest::data
PacketDataPtr data
Dynamically allocated and populated data carried for building write packets.
Definition: lsq.hh:148
gem5::minor::LSQ::~LSQ
virtual ~LSQ()
Definition: lsq.cc:1462
gem5::minor::LSQ::StoreBuffer::canForwardDataToLoad
AddrRangeCoverage canForwardDataToLoad(LSQRequestPtr request, unsigned int &found_slot)
Look for a store which satisfies the given load.
Definition: lsq.cc:766
gem5::Flags< FlagsType >
gem5::minor::LSQ::execute
Execute & execute
Definition: lsq.hh:73
gem5::minor::Pipeline::ExecuteStageId
@ ExecuteStageId
Definition: pipeline.hh:104
gem5::minor::LSQ::minorTrace
void minorTrace() const
Definition: lsq.cc:1670
gem5::minor::LSQ::LSQ
LSQ(std::string name_, std::string dcache_port_name_, MinorCPU &cpu_, Execute &execute_, unsigned int max_accesses_in_memory_system, unsigned int line_width, unsigned int requests_queue_size, unsigned int transfers_queue_size, unsigned int store_buffer_size, unsigned int store_buffer_cycle_store_limit, RegIndex zero_reg)
Definition: lsq.cc:1405
gem5::minor::LSQ::clearMemBarrier
void clearMemBarrier(MinorDynInstPtr inst)
Clear a barrier (if it's the last one marked up in lastMemBarrier)
Definition: lsq.cc:261
gem5::minor::LSQ::StoreBuffer::insert
void insert(LSQRequestPtr request)
Insert a request at the back of the queue.
Definition: lsq.cc:744
gem5::minor::LSQ::LSQRequest::Failed
@ Failed
Definition: lsq.hh:179
exec_context.hh
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:93
gem5::minor::LSQ::LSQRequest::disableMemAccess
void disableMemAccess()
Definition: lsq.cc:117
gem5::Named::name
virtual std::string name() const
Definition: named.hh:47
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:255
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:186
gem5::minor::LSQ::StoreBuffer::isDrained
bool isDrained() const
Drained if there is absolutely nothing left in the buffer.
Definition: lsq.hh:534
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:283
gem5::minor::LSQ::LSQRequest::inst
MinorDynInstPtr inst
Instruction which made this request.
Definition: lsq.hh:140
gem5::transferNeedsBurst
bool transferNeedsBurst(Addr addr, unsigned int size, unsigned int block_size)
Returns true if the given memory access (address, size) needs to be fragmented across aligned fixed-s...
Definition: utils.hh:80
gem5::MipsISA::PCState
GenericISA::DelaySlotPCState< 4 > PCState
Definition: pcstate.hh:40
gem5::minor::LSQ::LSQRequest::stepToNextPacket
virtual void stepToNextPacket()=0
Step to the next packet for the next call to getHeadPacket.
gem5::minor::LSQ::LSQRequest::StoreBufferIssuing
@ StoreBufferIssuing
Definition: lsq.hh:187
gem5::minor::LSQ::SplitDataRequest::getHeadPacket
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
Definition: lsq.cc:611
gem5::minor::LSQ::StoreBuffer::step
void step()
Try to issue more stores to memory.
Definition: lsq.cc:846
pipeline.hh
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
gem5::minor::LSQ::LSQRequest::setState
void setState(LSQRequestState new_state)
Set state and output trace output.
Definition: lsq.cc:173
gem5::minor::LSQ::recvReqRetry
void recvReqRetry()
Definition: lsq.cc:1359
gem5::minor::LSQ::storeBuffer
StoreBuffer storeBuffer
Definition: lsq.hh:600
gem5::Packet::getConstPtr
const T * getConstPtr() const
Definition: packet.hh:1193
gem5::minor::LSQ::StoreBuffer::countIssuedStore
void countIssuedStore(LSQRequestPtr request)
Count a store being issued to memory by decrementing numUnissuedAccesses.
Definition: lsq.cc:837
gem5::minor::LSQ::LSQRequest::getHeadPacket
virtual PacketPtr getHeadPacket()=0
Get the next packet to issue for this request.
gem5::minor::Queue::push
void push(ElemType &data)
Push an element into the buffer if it isn't a bubble.
Definition: buffers.hh:433
gem5::isAnyActiveElement
bool isAnyActiveElement(const std::vector< bool >::const_iterator &it_start, const std::vector< bool >::const_iterator &it_end)
Test if there is any active element in an enablement range.
Definition: utils.hh:89
gem5::minor::LSQ::completeMemBarrierInst
void completeMemBarrierInst(MinorDynInstPtr inst, bool committed)
Complete a barrier instruction.
Definition: lsq.cc:916
gem5::minor::LSQ::SplitDataRequest::SplitDataRequest
SplitDataRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_, PacketDataPtr data_=NULL, uint64_t *res_=NULL)
Definition: lsq.cc:395
gem5::minor::LSQ::tryToSend
bool tryToSend(LSQRequestPtr request)
Try to send (or resend) a memory request's next/only packet to the memory system.
Definition: lsq.cc:1177
gem5::minor::makePacketForRequest
PacketPtr makePacketForRequest(const RequestPtr &request, bool isLoad, Packet::SenderState *sender_state, PacketDataPtr data)
Make a suitable packet for the given request.
Definition: lsq.cc:1693
gem5::minor::LSQ::popResponse
void popResponse(LSQRequestPtr response)
Sanity check and pop the head response.
Definition: lsq.cc:1526
compiler.hh
gem5::minor::LSQ::LSQRequest::RequestNeedsRetry
@ RequestNeedsRetry
Definition: lsq.hh:184
gem5::MinorCPU::wakeup
void wakeup(ThreadID tid) override
Definition: cpu.cc:154
gem5::SimpleThread::pcState
TheISA::PCState pcState() const override
Definition: simple_thread.hh:430
gem5::BaseCPU::contextToThread
ThreadID contextToThread(ContextID cid)
Convert ContextID to threadID.
Definition: base.hh:298
gem5::minor::Queue::unreservedRemainingSpace
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
Definition: buffers.hh:493
gem5::Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:457
gem5::minor::LSQ::tryToSendToTransfers
void tryToSendToTransfers(LSQRequestPtr request)
Try and issue a memory access for a translated request at the head of the requests queue.
Definition: lsq.cc:962
gem5::Packet::cmd
MemCmd cmd
The command field of the packet.
Definition: packet.hh:361
gem5::minor::LSQ::SplitDataRequest::makeFragmentPackets
void makeFragmentPackets()
Make the packets to go with the requests so they can be sent to the memory system.
Definition: lsq.cc:536
gem5::BaseCPU::getContext
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
Definition: base.hh:290
gem5::BaseCPU::getCpuAddrMonitor
AddressMonitor * getCpuAddrMonitor(ThreadID tid)
Definition: base.hh:609
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::minor::LSQ::moveFromRequestsToTransfers
void moveFromRequestsToTransfers(LSQRequestPtr request)
Move a request between queues.
Definition: lsq.cc:1275
gem5::Packet::isError
bool isError() const
Definition: packet.hh:610
DPRINTFS
#define DPRINTFS(x, s,...)
Definition: trace.hh:193
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::minor::minorTrace
void minorTrace(const char *fmt, Args ...args)
DPRINTFN for MinorTrace reporting.
Definition: trace.hh:67
gem5::BaseMMU::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode)
Definition: mmu.cc:72
gem5::minor::LSQ::LSQRequest::InTranslation
@ InTranslation
Definition: lsq.hh:177
gem5::minor::LSQ::numAccessesInMemorySystem
unsigned int numAccessesInMemorySystem
Count of the number of mem.
Definition: lsq.hh:609
gem5::Packet::popSenderState
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
Definition: packet.cc:324
gem5::MemCmd::toString
const std::string & toString() const
Return the string to a cmd given by idx.
Definition: packet.hh:265
gem5::minor::LSQ::canSendToMemorySystem
bool canSendToMemorySystem()
Can a request be sent to the memory system.
Definition: lsq.cc:1292
gem5::minor::LSQ::LSQRequest::LSQRequest
LSQRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_, RegIndex zero_reg, PacketDataPtr data_=NULL, uint64_t *res_=NULL)
Definition: lsq.cc:61
gem5::minor::LSQ::SplitDataRequest::~SplitDataRequest
~SplitDataRequest()
Definition: lsq.cc:412
gem5::minor::LSQ::SplitDataRequest::stepToNextPacket
void stepToNextPacket()
Step on numIssuedFragments.
Definition: lsq.cc:619
gem5::minor::LSQ::LSQRequest::StoreBufferNeedsRetry
@ StoreBufferNeedsRetry
Definition: lsq.hh:189
gem5::minor::LSQ::inMemorySystemLimit
const unsigned int inMemorySystemLimit
Maximum number of in-flight accesses issued to the memory system.
Definition: lsq.hh:554
gem5::Request::STORE_NO_DATA
static const FlagsType STORE_NO_DATA
Definition: request.hh:244
gem5::minor::ExecContext
ExecContext bears the exec_context interface for Minor.
Definition: exec_context.hh:73
gem5::minor::LSQ::LSQRequest::startAddrTranslation
virtual void startAddrTranslation()=0
Start the address translation process for this request.
gem5::minor::LSQ::StoreBuffer::canInsert
bool canInsert() const
Can a new request be inserted into the queue?
Definition: lsq.cc:723
gem5::minor::LSQ::dcachePort
DcachePort dcachePort
Definition: lsq.hh:123
gem5::Packet::allocate
void allocate()
Allocate memory for the packet.
Definition: packet.hh:1326
gem5::minor::LSQ::LSQRequest::state
LSQRequestState state
Definition: lsq.hh:196
gem5::X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:809
gem5::minor::LSQ::numAccessesIssuedToMemory
unsigned int numAccessesIssuedToMemory
The number of accesses which have been issued to the memory system but have not been committed/discar...
Definition: lsq.hh:621
gem5::minor::LSQ::LSQRequest::completeDisabledMemAccess
void completeDisabledMemAccess()
Definition: lsq.cc:100
gem5::minor::LSQ::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt)
Definition: lsq.cc:1759
gem5::minor::LSQ::operator<<
friend std::ostream & operator<<(std::ostream &os, MemoryState state)
Print MemoryState values as shown in the enum definition.
Definition: lsq.cc:1742
gem5::minor::Execute
Execute stage.
Definition: execute.hh:68
gem5::Packet::makeResponse
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
Definition: packet.hh:1031
gem5::Packet::dataDynamic
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Definition: packet.hh:1172
gem5::minor::LSQ::StoreBuffer::minorTrace
void minorTrace() const
Report queue contents for MinorTrace.
Definition: lsq.cc:933
gem5::minor::LSQ::SingleDataRequest
SingleDataRequest is used for requests that don't fragment.
Definition: lsq.hh:351
gem5::minor::LSQ::MemoryRunning
@ MemoryRunning
Definition: lsq.hh:81
gem5::ArmISA::handleLockedRead
void handleLockedRead(XC *xc, const RequestPtr &req)
Definition: locked_mem.hh:93
gem5::minor::LSQ::LSQRequest::isBarrier
virtual bool isBarrier()
Is this a request a barrier?
Definition: lsq.cc:161
logging.hh
gem5::minor::LSQ::transfers
LSQQueue transfers
Once issued to memory (or, for stores, just had their state changed to StoreToStoreBuffer) LSQRequest...
Definition: lsq.hh:589
gem5::minor::LSQ::LSQRequest::NotIssued
@ NotIssued
Definition: lsq.hh:176
gem5::minor::LSQ::SplitDataRequest
Definition: lsq.hh:395
gem5::minor::LSQ::retryRequest
LSQRequestPtr retryRequest
The request (from either requests or the store buffer) which is currently waiting have its memory acc...
Definition: lsq.hh:625
gem5::minor::LSQ::SplitDataRequest::startAddrTranslation
void startAddrTranslation()
Start a loop of do { sendNextFragmentToTranslation ; translateTiming ; finish } while (numTranslatedF...
Definition: lsq.cc:586
gem5::BaseCPU::dataRequestorId
RequestorID dataRequestorId() const
Reads this CPU's unique data requestor ID.
Definition: base.hh:194
trace.hh
gem5::minor::LSQ::numStoresInTransfers
unsigned int numStoresInTransfers
The number of stores in the transfers queue.
Definition: lsq.hh:616
gem5::minor::LSQ::StoreBuffer::deleteRequest
void deleteRequest(LSQRequestPtr request)
Delete the given request and free the slot it occupied.
Definition: lsq.cc:730
gem5::ArmISA::handleLockedSnoop
void handleLockedSnoop(XC *xc, PacketPtr pkt, Addr cacheBlockMask)
Definition: locked_mem.hh:64
gem5::minor::LSQ::SingleDataRequest::retireResponse
void retireResponse(PacketPtr packet_)
Keep the given packet as the response packet LSQRequest::packet.
Definition: lsq.cc:328
gem5::minor::LSQ::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Memory interface.
Definition: lsq.cc:1299
gem5::minor::LSQ::cpu
MinorCPU & cpu
My owner(s)
Definition: lsq.hh:72
gem5::RegIndex
uint16_t RegIndex
Definition: types.hh:176
gem5::minor::LSQ::pushRequest
Fault pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data, unsigned int size, Addr addr, Request::Flags flags, uint64_t *res, AtomicOpFunctorPtr amo_op, const std::vector< bool > &byte_enable=std::vector< bool >())
Single interface for readMem/writeMem/amoMem to issue requests into the LSQ.
Definition: lsq.cc:1588
gem5::Packet::getAddr
Addr getAddr() const
Definition: packet.hh:781
gem5::AtomicOpFunctorPtr
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:242
gem5::minor::Queue::pop
void pop()
Pop the head item.
Definition: buffers.hh:506
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::Packet::createRead
static PacketPtr createRead(const RequestPtr &req)
Constructor-like methods that return Packets based on Request objects.
Definition: packet.hh:1007
gem5::minor::LSQ::LSQRequest::reportData
void reportData(std::ostream &os) const
MinorTrace report interface.
Definition: lsq.cc:189
gem5::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:1889
gem5::minor::LSQ::LSQRequest::hasPacketsInMemSystem
virtual bool hasPacketsInMemSystem()=0
True if this request has any issued packets in the memory system and so can't be interrupted until it...
lsq.hh
gem5::minor::LSQ::LSQRequest::isComplete
bool isComplete() const
Has this request been completed.
Definition: lsq.cc:181
gem5::minor::LSQ::sendStoreToStoreBuffer
void sendStoreToStoreBuffer(LSQRequestPtr request)
A store has been committed, please move it to the store buffer.
Definition: lsq.cc:1548
gem5::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:1491
gem5::minor::LSQ::FullAddrRangeCoverage
@ FullAddrRangeCoverage
Definition: lsq.hh:93
gem5::Packet::getSize
unsigned getSize() const
Definition: packet.hh:791
gem5::minor::LSQ::LSQRequest::StoreInStoreBuffer
@ StoreInStoreBuffer
Definition: lsq.hh:185
gem5::ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:242
gem5::minor::Execute::instIsRightStream
bool instIsRightStream(MinorDynInstPtr inst)
Does the given instruction have the right stream sequence number to be committed?
Definition: execute.cc:1883
gem5::Packet::isInvalidate
bool isInvalidate() const
Definition: packet.hh:598
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:177
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition: misc_types.hh:73
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84
gem5::Packet::getPtr
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1184

Generated on Tue Sep 7 2021 14:53:44 for gem5 by doxygen 1.8.17