gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
lsq.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2012, 2014, 2018-2019 ARM Limited
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * All rights reserved
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2004-2006 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __CPU_O3_LSQ_HH__
43 #define __CPU_O3_LSQ_HH__
44 
45 #include <cassert>
46 #include <cstdint>
47 #include <list>
48 #include <map>
49 #include <queue>
50 #include <vector>
51 
52 #include "arch/generic/tlb.hh"
53 #include "base/flags.hh"
54 #include "base/types.hh"
55 #include "cpu/inst_seq.hh"
56 #include "cpu/o3/lsq_unit.hh"
57 #include "cpu/utils.hh"
58 #include "enums/SMTQueuePolicy.hh"
59 #include "mem/port.hh"
60 #include "sim/sim_object.hh"
61 
62 struct DerivO3CPUParams;
63 
64 template <class Impl>
65 class FullO3CPU;
66 
67 template <class Impl>
68 class LSQ
69 
70 {
71  public:
72  typedef typename Impl::O3CPU O3CPU;
73  typedef typename Impl::DynInstPtr DynInstPtr;
74  typedef typename Impl::CPUPol::IEW IEW;
75  typedef typename Impl::CPUPol::LSQUnit LSQUnit;
76 
77  class LSQRequest;
80  {
81  protected:
84 
87  : _request(request), mainPkt(nullptr), pendingPacket(nullptr),
88  outstanding(0), isLoad(isLoad_), needWB(isLoad_), isSplit(false),
89  pktToSend(false), deleted(false)
90  { }
91  public:
92 
100  uint8_t outstanding;
102  bool isLoad;
104  bool needWB;
106  bool isSplit;
108  bool pktToSend;
113  bool deleted;
114  ContextID contextId() { return inst->contextId(); }
115 
117  inline bool isComplete() { return outstanding == 0; }
118  inline void deleteRequest() { deleted = true; }
119  inline bool alive() { return !deleted; }
120  LSQRequest* request() { return _request; }
121  virtual void complete() = 0;
123  };
124 
128  class DcachePort : public RequestPort
129  {
130  protected:
131 
135 
136  public:
139  : RequestPort(_cpu->name() + ".dcache_port", _cpu), lsq(_lsq),
140  cpu(_cpu)
141  { }
142 
143  protected:
144 
148  virtual bool recvTimingResp(PacketPtr pkt);
149  virtual void recvTimingSnoopReq(PacketPtr pkt);
150 
151  virtual void recvFunctionalSnoop(PacketPtr pkt)
152  {
153  // @todo: Is there a need for potential invalidation here?
154  }
155 
157  virtual void recvReqRetry();
158 
165  virtual bool isSnooping() const { return true; }
166  };
167 
237  {
238  protected:
239  typedef uint32_t FlagsStorage;
240  typedef ::Flags<FlagsStorage> FlagsType;
241 
243  {
244  IsLoad = 0x00000001,
246  WbStore = 0x00000002,
247  Delayed = 0x00000004,
248  IsSplit = 0x00000008,
250  TranslationStarted = 0x00000010,
252  TranslationFinished = 0x00000020,
253  Sent = 0x00000040,
254  Retry = 0x00000080,
255  Complete = 0x00000100,
258  TranslationSquashed = 0x00000200,
260  Discarded = 0x00000400,
262  LSQEntryFreed = 0x00000800,
264  WritebackScheduled = 0x00001000,
265  WritebackDone = 0x00002000,
267  IsAtomic = 0x00004000
268  };
270 
271  enum class State
272  {
273  NotIssued,
274  Translation,
275  Request,
276  Fault,
277  PartialFault,
278  };
281  void setState(const State& newState) { _state = newState; }
282 
285 
287  uint32_t _entryIdx;
288 
289  void markDelayed() override { flags.set(Flag::Delayed); }
290  bool isDelayed() { return flags.isSet(Flag::Delayed); }
291 
292  public:
295  uint32_t _taskId;
300  uint64_t* _res;
301  const Addr _addr;
302  const uint32_t _size;
307  protected:
308  LSQUnit* lsqUnit() { return &_port; }
309  LSQRequest(LSQUnit* port, const DynInstPtr& inst, bool isLoad) :
310  _state(State::NotIssued), _senderState(nullptr),
311  _port(*port), _inst(inst), _data(nullptr),
312  _res(nullptr), _addr(0), _size(0), _flags(0),
313  _numOutstandingPackets(0), _amo_op(nullptr)
314  {
315  flags.set(Flag::IsLoad, isLoad);
316  flags.set(Flag::WbStore,
317  _inst->isStoreConditional() || _inst->isAtomic());
318  flags.set(Flag::IsAtomic, _inst->isAtomic());
319  install();
320  }
321  LSQRequest(LSQUnit* port, const DynInstPtr& inst, bool isLoad,
322  const Addr& addr, const uint32_t& size,
323  const Request::Flags& flags_,
324  PacketDataPtr data = nullptr, uint64_t* res = nullptr,
325  AtomicOpFunctorPtr amo_op = nullptr)
326  : _state(State::NotIssued), _senderState(nullptr),
329  _port(*port), _inst(inst), _data(data),
330  _res(res), _addr(addr), _size(size),
331  _flags(flags_),
333  _amo_op(std::move(amo_op))
334  {
335  flags.set(Flag::IsLoad, isLoad);
336  flags.set(Flag::WbStore,
337  _inst->isStoreConditional() || _inst->isAtomic());
338  flags.set(Flag::IsAtomic, _inst->isAtomic());
339  install();
340  }
341 
342  bool
343  isLoad() const
344  {
345  return flags.isSet(Flag::IsLoad);
346  }
347 
348  bool
349  isAtomic() const
350  {
351  return flags.isSet(Flag::IsAtomic);
352  }
353 
355  void install()
356  {
357  if (isLoad()) {
358  _port.loadQueue[_inst->lqIdx].setRequest(this);
359  } else {
360  // Store, StoreConditional, and Atomic requests are pushed
361  // to this storeQueue
362  _port.storeQueue[_inst->sqIdx].setRequest(this);
363  }
364  }
365  virtual bool
366  squashed() const override
367  {
368  return _inst->isSquashed();
369  }
370 
376  bool
378  {
379  return flags.isSet(Flag::LSQEntryFreed) ||
380  flags.isSet(Flag::Discarded);
381  }
382 
392  void release(Flag reason)
393  {
394  assert(reason == Flag::LSQEntryFreed || reason == Flag::Discarded);
395  if (!isAnyOutstandingRequest()) {
396  delete this;
397  } else {
398  if (_senderState) {
400  }
401  flags.set(reason);
402  }
403  }
404 
411  void
412  addRequest(Addr addr, unsigned size,
413  const std::vector<bool>& byte_enable)
414  {
415  if (isAnyActiveElement(byte_enable.begin(), byte_enable.end())) {
416  auto request = std::make_shared<Request>(
417  addr, size, _flags, _inst->requestorId(),
418  _inst->instAddr(), _inst->contextId(),
419  std::move(_amo_op));
420  request->setByteEnable(byte_enable);
421  _requests.push_back(request);
422  }
423  }
424 
429  virtual ~LSQRequest()
430  {
431  assert(!isAnyOutstandingRequest());
432  _inst->savedReq = nullptr;
433  if (_senderState)
434  delete _senderState;
435 
436  for (auto r: _packets)
437  delete r;
438  };
439 
440 
441  public:
445  void
446  setContext(const ContextID& context_id)
447  {
448  request()->setContext(context_id);
449  }
450 
451  const DynInstPtr&
453  {
454  return _inst;
455  }
456 
460  void
461  setVirt(Addr vaddr, unsigned size, Request::Flags flags_,
462  RequestorID requestor_id, Addr pc)
463  {
464  request()->setVirt(vaddr, size, flags_, requestor_id, pc);
465  }
466 
467  void
468  taskId(const uint32_t& v)
469  {
470  _taskId = v;
471  for (auto& r: _requests)
472  r->taskId(v);
473  }
474 
475  uint32_t taskId() const { return _taskId; }
476  RequestPtr request(int idx = 0) { return _requests.at(idx); }
477 
478  const RequestPtr
479  request(int idx = 0) const
480  {
481  return _requests.at(idx);
482  }
483 
484  Addr getVaddr(int idx = 0) const { return request(idx)->getVaddr(); }
485  virtual void initiateTranslation() = 0;
486 
487  PacketPtr packet(int idx = 0) { return _packets.at(idx); }
488 
489  virtual PacketPtr
491  {
492  assert (_packets.size() == 1);
493  return packet();
494  }
495 
496  virtual RequestPtr
498  {
499  assert (_requests.size() == 1);
500  return request();
501  }
502 
503  void
505  {
506  _senderState = st;
507  for (auto& pkt: _packets) {
508  if (pkt)
509  pkt->senderState = st;
510  }
511  }
512 
513  const LSQSenderState*
514  senderState() const
515  {
516  return _senderState;
517  }
518 
523  void
525  {
526  assert(_senderState);
528  }
529 
533  bool
535  {
536  return numInTranslationFragments > 0 ||
538  (flags.isSet(Flag::WritebackScheduled) &&
539  !flags.isSet(Flag::WritebackDone));
540  }
541 
542  bool
543  isSplit() const
544  {
545  return flags.isSet(Flag::IsSplit);
546  }
548  virtual bool recvTimingResp(PacketPtr pkt) = 0;
549  virtual void sendPacketToCache() = 0;
550  virtual void buildPackets() = 0;
551 
555  virtual Cycles handleLocalAccess(
556  ThreadContext *thread, PacketPtr pkt) = 0;
557 
561  virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask) = 0;
562 
564  void
566  {
567  flags.set(Flag::Sent);
568  }
573  void
575  {
576  flags.set(Flag::Retry);
577  flags.clear(Flag::Sent);
578  }
579 
580  void sendFragmentToTranslation(int i);
581  bool
583  {
584  return flags.isSet(Flag::Complete);
585  }
586 
587  bool
589  {
590  return _state == State::Translation;
591  }
592 
593  bool
595  {
596  return flags.isSet(Flag::TranslationStarted) &&
597  !isInTranslation();
598  }
599 
600  bool
602  {
603  return _state == State::Translation &&
604  flags.isSet(Flag::TranslationStarted) &&
605  !flags.isSet(Flag::TranslationFinished);
606  }
607 
608  bool
610  {
611  return flags.isSet(Flag::Sent);
612  }
613 
614  bool
616  {
617  return _state == State::PartialFault;
618  }
619 
620  bool
622  {
623  return (_state == State::Request ||
624  (isPartialFault() && isLoad()));
625  }
626 
627  void
629  {
631  }
632 
636  void
638  {
639  release(Flag::LSQEntryFreed);
640  }
641 
645  void
647  {
648  release(Flag::Discarded);
649  }
650 
651  void
653  {
654  assert(_numOutstandingPackets > 0);
656  if (_numOutstandingPackets == 0 && isReleased())
657  delete this;
658  }
659 
660  void
662  {
663  assert(!flags.isSet(Flag::WritebackScheduled));
664  flags.set(Flag::WritebackScheduled);
665  }
666 
667  void
669  {
670  flags.set(Flag::WritebackDone);
671  /* If the lsq resources are already free */
672  if (isReleased()) {
673  delete this;
674  }
675  }
676 
677  void
679  {
680  assert(numInTranslationFragments == 0);
681  flags.set(Flag::TranslationSquashed);
682  /* If we are on our own, self-destruct. */
683  if (isReleased()) {
684  delete this;
685  }
686  }
687 
688  void
690  {
692  }
693 
694  virtual std::string name() const { return "LSQRequest"; }
695  };
696 
698  {
699  protected:
700  /* Given that we are inside templates, children need explicit
701  * declaration of the names in the parent class. */
702  using Flag = typename LSQRequest::Flag;
703  using State = typename LSQRequest::State;
704  using LSQRequest::_addr;
705  using LSQRequest::_fault;
706  using LSQRequest::_flags;
707  using LSQRequest::_size;
709  using LSQRequest::_requests;
710  using LSQRequest::_inst;
711  using LSQRequest::_packets;
712  using LSQRequest::_port;
713  using LSQRequest::_res;
714  using LSQRequest::_taskId;
716  using LSQRequest::_state;
717  using LSQRequest::flags;
718  using LSQRequest::isLoad;
720  using LSQRequest::lsqUnit;
721  using LSQRequest::request;
723  using LSQRequest::setState;
727  using LSQRequest::_amo_op;
728  public:
729  SingleDataRequest(LSQUnit* port, const DynInstPtr& inst, bool isLoad,
730  const Addr& addr, const uint32_t& size,
731  const Request::Flags& flags_,
732  PacketDataPtr data = nullptr,
733  uint64_t* res = nullptr,
734  AtomicOpFunctorPtr amo_op = nullptr) :
735  LSQRequest(port, inst, isLoad, addr, size, flags_, data, res,
736  std::move(amo_op)) {}
737 
738  inline virtual ~SingleDataRequest() {}
739  virtual void initiateTranslation();
740  virtual void finish(const Fault &fault, const RequestPtr &req,
742  virtual bool recvTimingResp(PacketPtr pkt);
743  virtual void sendPacketToCache();
744  virtual void buildPackets();
746  virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask);
747  virtual std::string name() const { return "SingleDataRequest"; }
748  };
749 
750  // hardware transactional memory
751  // This class extends SingleDataRequest for the sole purpose
752  // of encapsulating hardware transactional memory command requests
754  {
755  protected:
756  /* Given that we are inside templates, children need explicit
757  * declaration of the names in the parent class. */
758  using Flag = typename LSQRequest::Flag;
759  using State = typename LSQRequest::State;
760  using LSQRequest::_addr;
761  using LSQRequest::_size;
763  using LSQRequest::_requests;
764  using LSQRequest::_inst;
765  using LSQRequest::_taskId;
766  using LSQRequest::flags;
767  using LSQRequest::setState;
768  public:
769  HtmCmdRequest(LSQUnit* port, const DynInstPtr& inst,
770  const Request::Flags& flags_);
771  inline virtual ~HtmCmdRequest() {}
772  virtual void initiateTranslation();
773  virtual void finish(const Fault &fault, const RequestPtr &req,
775  virtual std::string name() const { return "HtmCmdRequest"; }
776  };
777 
779  {
780  protected:
781  /* Given that we are inside templates, children need explicit
782  * declaration of the names in the parent class. */
783  using Flag = typename LSQRequest::Flag;
784  using State = typename LSQRequest::State;
785  using LSQRequest::_addr;
786  using LSQRequest::_data;
787  using LSQRequest::_fault;
788  using LSQRequest::_flags;
789  using LSQRequest::_inst;
790  using LSQRequest::_packets;
791  using LSQRequest::_port;
792  using LSQRequest::_requests;
793  using LSQRequest::_res;
796  using LSQRequest::_size;
797  using LSQRequest::_state;
798  using LSQRequest::_taskId;
799  using LSQRequest::flags;
800  using LSQRequest::isLoad;
802  using LSQRequest::lsqUnit;
805  using LSQRequest::request;
807  using LSQRequest::setState;
809 
810  uint32_t numFragments;
814 
815  public:
816  SplitDataRequest(LSQUnit* port, const DynInstPtr& inst, bool isLoad,
817  const Addr& addr, const uint32_t& size,
818  const Request::Flags & flags_,
819  PacketDataPtr data = nullptr,
820  uint64_t* res = nullptr) :
821  LSQRequest(port, inst, isLoad, addr, size, flags_, data, res,
822  nullptr),
823  numFragments(0),
825  mainReq(nullptr),
826  _mainPacket(nullptr)
827  {
828  flags.set(Flag::IsSplit);
829  }
831  {
832  if (mainReq) {
833  mainReq = nullptr;
834  }
835  if (_mainPacket) {
836  delete _mainPacket;
837  _mainPacket = nullptr;
838  }
839  }
840  virtual void finish(const Fault &fault, const RequestPtr &req,
842  virtual bool recvTimingResp(PacketPtr pkt);
843  virtual void initiateTranslation();
844  virtual void sendPacketToCache();
845  virtual void buildPackets();
846 
848  virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask);
849 
850  virtual RequestPtr mainRequest();
851  virtual PacketPtr mainPacket();
852  virtual std::string name() const { return "SplitDataRequest"; }
853  };
854 
856  LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, const DerivO3CPUParams &params);
857  ~LSQ() { }
858 
860  std::string name() const;
861 
864 
866  void drainSanityCheck() const;
868  bool isDrained() const;
870  void takeOverFrom();
871 
873  int entryAmount(ThreadID num_threads);
874 
876  void tick();
877 
879  void insertLoad(const DynInstPtr &load_inst);
881  void insertStore(const DynInstPtr &store_inst);
882 
884  Fault executeLoad(const DynInstPtr &inst);
885 
887  Fault executeStore(const DynInstPtr &inst);
888 
892  void commitLoads(InstSeqNum &youngest_inst, ThreadID tid)
893  { thread.at(tid).commitLoads(youngest_inst); }
894 
898  void commitStores(InstSeqNum &youngest_inst, ThreadID tid)
899  { thread.at(tid).commitStores(youngest_inst); }
900 
905  void writebackStores();
907  void writebackStores(ThreadID tid);
908 
912  void
913  squash(const InstSeqNum &squashed_num, ThreadID tid)
914  {
915  thread.at(tid).squash(squashed_num);
916  }
917 
919  bool violation();
924  bool violation(ThreadID tid) { return thread.at(tid).violation(); }
925 
927  DynInstPtr
929  {
930  return thread.at(tid).getMemDepViolator();
931  }
932 
934  int getLoadHead(ThreadID tid) { return thread.at(tid).getLoadHead(); }
935 
937  InstSeqNum
939  {
940  return thread.at(tid).getLoadHeadSeqNum();
941  }
942 
944  int getStoreHead(ThreadID tid) { return thread.at(tid).getStoreHead(); }
945 
947  InstSeqNum
949  {
950  return thread.at(tid).getStoreHeadSeqNum();
951  }
952 
954  int getCount();
956  int getCount(ThreadID tid) { return thread.at(tid).getCount(); }
957 
959  int numLoads();
961  int numLoads(ThreadID tid) { return thread.at(tid).numLoads(); }
962 
964  int numStores();
966  int numStores(ThreadID tid) { return thread.at(tid).numStores(); }
967 
968 
969  // hardware transactional memory
970 
971  int numHtmStarts(ThreadID tid) const
972  {
973  if (tid == InvalidThreadID)
974  return 0;
975  else
976  return thread[tid].numHtmStarts();
977  }
978  int numHtmStops(ThreadID tid) const
979  {
980  if (tid == InvalidThreadID)
981  return 0;
982  else
983  return thread[tid].numHtmStops();
984  }
985 
987  {
988  if (tid != InvalidThreadID)
989  thread[tid].resetHtmStartsStops();
990  }
991 
992  uint64_t getLatestHtmUid(ThreadID tid) const
993  {
994  if (tid == InvalidThreadID)
995  return 0;
996  else
997  return thread[tid].getLatestHtmUid();
998  }
999 
1000  void setLastRetiredHtmUid(ThreadID tid, uint64_t htmUid)
1001  {
1002  if (tid != InvalidThreadID)
1003  thread[tid].setLastRetiredHtmUid(htmUid);
1004  }
1005 
1007  unsigned numFreeLoadEntries();
1008 
1010  unsigned numFreeStoreEntries();
1011 
1013  unsigned numFreeEntries(ThreadID tid);
1014 
1016  unsigned numFreeLoadEntries(ThreadID tid);
1017 
1019  unsigned numFreeStoreEntries(ThreadID tid);
1020 
1022  bool isFull();
1027  bool isFull(ThreadID tid);
1028 
1030  bool isEmpty() const;
1032  bool lqEmpty() const;
1034  bool sqEmpty() const;
1035 
1037  bool lqFull();
1039  bool lqFull(ThreadID tid);
1040 
1042  bool sqFull();
1044  bool sqFull(ThreadID tid);
1045 
1050  bool isStalled();
1055  bool isStalled(ThreadID tid);
1056 
1058  bool hasStoresToWB();
1059 
1063  bool hasStoresToWB(ThreadID tid) { return thread.at(tid).hasStoresToWB(); }
1064 
1066  int numStoresToWB(ThreadID tid) { return thread.at(tid).numStoresToWB(); }
1067 
1069  bool willWB();
1073  bool willWB(ThreadID tid) { return thread.at(tid).willWB(); }
1074 
1076  void dumpInsts() const;
1078  void dumpInsts(ThreadID tid) const { thread.at(tid).dumpInsts(); }
1079 
1083  Fault read(LSQRequest* req, int load_idx);
1084 
1088  Fault write(LSQRequest* req, uint8_t *data, int store_idx);
1089 
1093  void recvReqRetry();
1094 
1095  void completeDataAccess(PacketPtr pkt);
1102  bool recvTimingResp(PacketPtr pkt);
1103 
1104  void recvTimingSnoopReq(PacketPtr pkt);
1105 
1106  Fault pushRequest(const DynInstPtr& inst, bool isLoad, uint8_t *data,
1107  unsigned int size, Addr addr, Request::Flags flags,
1108  uint64_t *res, AtomicOpFunctorPtr amo_op,
1109  const std::vector<bool>& byte_enable);
1110 
1113 
1116 
1118  bool cacheBlocked() const;
1120  void cacheBlocked(bool v);
1122  bool cachePortAvailable(bool is_load) const;
1124  void cachePortBusy(bool is_load);
1125 
1127 
1128  protected:
1139 
1140 
1142  SMTQueuePolicy lsqPolicy;
1143 
1149  static uint32_t
1150  maxLSQAllocation(SMTQueuePolicy pol, uint32_t entries,
1151  uint32_t numThreads, uint32_t SMTThreshold)
1152  {
1153  if (pol == SMTQueuePolicy::Dynamic) {
1154  return entries;
1155  } else if (pol == SMTQueuePolicy::Partitioned) {
1156  //@todo:make work if part_amt doesnt divide evenly.
1157  return entries / numThreads;
1158  } else if (pol == SMTQueuePolicy::Threshold) {
1159  //Divide up by threshold amount
1160  //@todo: Should threads check the max and the total
1161  //amount of the LSQ
1162  return SMTThreshold;
1163  }
1164  return 0;
1165  }
1166 
1169 
1171  unsigned LQEntries;
1173  unsigned SQEntries;
1174 
1176  unsigned maxLQEntries;
1177 
1179  unsigned maxSQEntries;
1180 
1183 
1186 
1189 };
1190 
1191 template <class Impl>
1192 Fault
1193 LSQ<Impl>::read(LSQRequest* req, int load_idx)
1194 {
1195  ThreadID tid = cpu->contextToThread(req->request()->contextId());
1196 
1197  return thread.at(tid).read(req, load_idx);
1198 }
1199 
1200 template <class Impl>
1201 Fault
1202 LSQ<Impl>::write(LSQRequest* req, uint8_t *data, int store_idx)
1203 {
1204  ThreadID tid = cpu->contextToThread(req->request()->contextId());
1205 
1206  return thread.at(tid).write(req, data, store_idx);
1207 }
1208 
1209 #endif // __CPU_O3_LSQ_HH__
LSQ::insertStore
void insertStore(const DynInstPtr &store_inst)
Inserts a store into the LSQ.
Definition: lsq_impl.hh:228
InvalidThreadID
const ThreadID InvalidThreadID
Definition: types.hh:234
LSQ::thread
std::vector< LSQUnit > thread
The LSQ units for individual threads.
Definition: lsq.hh:1185
LSQ::SplitDataRequest::numReceivedPackets
uint32_t numReceivedPackets
Definition: lsq.hh:811
AtomicOpFunctorPtr
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:239
LSQ::SplitDataRequest::~SplitDataRequest
virtual ~SplitDataRequest()
Definition: lsq.hh:830
LSQ::SingleDataRequest::handleLocalAccess
virtual Cycles handleLocalAccess(ThreadContext *thread, PacketPtr pkt)
Memory mapped IPR accesses.
Definition: lsq_impl.hh:1125
LSQ::willWB
bool willWB()
Returns if the LSQ will write back to memory this cycle.
Definition: lsq_impl.hh:644
LSQ::LSQRequest::buildPackets
virtual void buildPackets()=0
FullO3CPU
FullO3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time ...
Definition: cpu.hh:91
LSQ::executeStore
Fault executeStore(const DynInstPtr &inst)
Executes a store.
Definition: lsq_impl.hh:246
utils.hh
LSQ::LSQRequest::packetReplied
void packetReplied()
Definition: lsq.hh:652
LSQ::DcachePort::lsq
LSQ< Impl > * lsq
Pointer to LSQ.
Definition: lsq.hh:133
LSQ::maxSQEntries
unsigned maxSQEntries
Max SQ Size - Used to Enforce Sharing Policies.
Definition: lsq.hh:1179
LSQ::LSQRequest::IsAtomic
@ IsAtomic
True if this is an atomic request.
Definition: lsq.hh:267
LSQ::commitStores
void commitStores(InstSeqNum &youngest_inst, ThreadID tid)
Commits stores up until the given sequence number for a specific thread.
Definition: lsq.hh:898
LSQ::SingleDataRequest::~SingleDataRequest
virtual ~SingleDataRequest()
Definition: lsq.hh:738
LSQ::violation
bool violation(ThreadID tid)
Returns whether or not there was a memory ordering violation for a specific thread.
Definition: lsq.hh:924
data
const char data[]
Definition: circlebuf.test.cc:47
LSQ::LSQSenderState::deleted
bool deleted
Has the request been deleted? LSQ entries can be squashed before the response comes back.
Definition: lsq.hh:113
LSQ::numHtmStops
int numHtmStops(ThreadID tid) const
Definition: lsq.hh:978
LSQ::HtmCmdRequest::finish
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode)
Definition: lsq_impl.hh:1272
LSQ::LSQUnit
Impl::CPUPol::LSQUnit LSQUnit
Definition: lsq.hh:75
LSQ::LSQRequest::discard
void discard()
The request is discarded (e.g.
Definition: lsq.hh:646
LSQ::SplitDataRequest::mainPacket
virtual PacketPtr mainPacket()
Definition: lsq_impl.hh:868
LSQ::willWB
bool willWB(ThreadID tid)
Returns if the LSQ of a specific thread will write back to memory this cycle.
Definition: lsq.hh:1073
LSQ::SplitDataRequest::mainRequest
virtual RequestPtr mainRequest()
Definition: lsq_impl.hh:875
LSQ::LSQRequest::Complete
@ Complete
Definition: lsq.hh:255
LSQ::insertLoad
void insertLoad(const DynInstPtr &load_inst)
Inserts a load into the LSQ.
Definition: lsq_impl.hh:219
LSQ::sqEmpty
bool sqEmpty() const
Returns if all of the SQs are empty.
Definition: lsq_impl.hh:525
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
LSQ::LSQRequest::squashed
virtual bool squashed() const override
This function is used by the page table walker to determine if it should translate the a pending requ...
Definition: lsq.hh:366
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
LSQ::LSQRequest::numInTranslationFragments
uint32_t numInTranslationFragments
Definition: lsq.hh:284
LSQ::LSQRequest::isAtomic
bool isAtomic() const
Definition: lsq.hh:349
LSQ::LSQRequest::isMemAccessRequired
bool isMemAccessRequired()
Definition: lsq.hh:621
LSQ::LSQRequest::TranslationStarted
@ TranslationStarted
True if any translation has been sent to TLB.
Definition: lsq.hh:250
LSQ::resetHtmStartsStops
void resetHtmStartsStops(ThreadID tid)
Definition: lsq.hh:986
LSQ::LSQSenderState::LSQSenderState
LSQSenderState(LSQRequest *request, bool isLoad_)
Default constructor.
Definition: lsq.hh:86
Flags< FlagsStorage >
LSQ::LSQSenderState::writebackDone
void writebackDone()
Definition: lsq.hh:122
LSQ::LSQSenderState::pendingPacket
PacketPtr pendingPacket
A second packet from a split store that needs sending.
Definition: lsq.hh:98
LSQ::LSQSenderState::outstanding
uint8_t outstanding
Number of outstanding packets to complete.
Definition: lsq.hh:100
LSQ::LSQSenderState::request
LSQRequest * request()
Definition: lsq.hh:120
ContextID
int ContextID
Globally unique thread context ID.
Definition: types.hh:237
LSQ::LSQRequest::isDelayed
bool isDelayed()
Definition: lsq.hh:290
LSQ::SplitDataRequest::initiateTranslation
virtual void initiateTranslation()
Definition: lsq_impl.hh:882
LSQ::LSQSenderState::inst
DynInstPtr inst
Instruction which initiated the access to memory.
Definition: lsq.hh:94
LSQ::LSQRequest::_amo_op
AtomicOpFunctorPtr _amo_op
Definition: lsq.hh:306
tlb.hh
LSQ::LSQRequest::flags
FlagsType flags
Definition: lsq.hh:269
LSQ::LSQRequest::Discarded
@ Discarded
Request discarded.
Definition: lsq.hh:260
BaseTLB::Mode
Mode
Definition: tlb.hh:57
LSQ::LSQRequest::request
const RequestPtr request(int idx=0) const
Definition: lsq.hh:479
PacketDataPtr
uint8_t * PacketDataPtr
Definition: packet.hh:68
LSQ::DcachePort::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Timing version of receive.
Definition: lsq_impl.hh:1199
LSQ::numLoads
int numLoads(ThreadID tid)
Returns the total number of loads for a single thread.
Definition: lsq.hh:961
LSQ::LSQRequest::FlagsType
::Flags< FlagsStorage > FlagsType
Definition: lsq.hh:240
LSQ::LSQRequest::_data
PacketDataPtr _data
Definition: lsq.hh:296
LSQ::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Handles writing back and completing the load or store that has returned from memory.
Definition: lsq_impl.hh:313
LSQ::LSQRequest::_senderState
LSQSenderState * _senderState
Definition: lsq.hh:280
LSQ::LSQRequest::Retry
@ Retry
Definition: lsq.hh:254
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
LSQ::SingleDataRequest::buildPackets
virtual void buildPackets()
Definition: lsq_impl.hh:1004
LSQ::setLastRetiredHtmUid
void setLastRetiredHtmUid(ThreadID tid, uint64_t htmUid)
Definition: lsq.hh:1000
LSQ::recvReqRetry
void recvReqRetry()
Retry the previous send that failed.
Definition: lsq_impl.hh:292
LSQ::DcachePort::DcachePort
DcachePort(LSQ< Impl > *_lsq, FullO3CPU< Impl > *_cpu)
Default constructor.
Definition: lsq.hh:138
std::vector
STL vector class.
Definition: stl.hh:37
LSQ::LSQSenderState::isComplete
bool isComplete()
Completes a packet and returns whether the access is finished.
Definition: lsq.hh:117
LSQ::SingleDataRequest::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Definition: lsq_impl.hh:963
LSQ::SingleDataRequest::SingleDataRequest
SingleDataRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad, const Addr &addr, const uint32_t &size, const Request::Flags &flags_, PacketDataPtr data=nullptr, uint64_t *res=nullptr, AtomicOpFunctorPtr amo_op=nullptr)
Definition: lsq.hh:729
LSQ::LSQRequest::_port
LSQUnit & _port
Definition: lsq.hh:293
LSQ::LSQRequest::sendFragmentToTranslation
void sendFragmentToTranslation(int i)
Definition: lsq_impl.hh:952
LSQ::numStores
int numStores()
Returns the total number of stores in the store queue.
Definition: lsq_impl.hh:404
LSQ::activeThreads
std::list< ThreadID > * activeThreads
List of Active Threads in System.
Definition: lsq.hh:1168
LSQ::violation
bool violation()
Returns whether or not there was a memory ordering violation.
Definition: lsq_impl.hh:274
LSQ::LSQRequest::TranslationFinished
@ TranslationFinished
True if there are un-replied outbound translations.
Definition: lsq.hh:252
LSQ::SplitDataRequest::finish
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode)
Definition: lsq_impl.hh:797
LSQ::LSQRequest::isCacheBlockHit
virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask)=0
Test if the request accesses a particular cache line.
LSQ::isEmpty
bool isEmpty() const
Returns if the LSQ is empty (both LQ and SQ are empty).
Definition: lsq_impl.hh:501
LSQ::LSQRequest::_numOutstandingPackets
uint32_t _numOutstandingPackets
Definition: lsq.hh:305
LSQ::numLoads
int numLoads()
Returns the total number of loads in the load queue.
Definition: lsq_impl.hh:386
LSQ::LSQSenderState::isSplit
bool isSplit
Whether or not this access is split in two.
Definition: lsq.hh:106
LSQ::LSQRequest::isInTranslation
bool isInTranslation()
Definition: lsq.hh:588
LSQ::tick
void tick()
Ticks the LSQ.
Definition: lsq_impl.hh:168
LSQ::LSQRequest::packetNotSent
void packetNotSent()
Update the status to reflect that a packet was not sent.
Definition: lsq.hh:574
LSQ::LSQRequest::handleLocalAccess
virtual Cycles handleLocalAccess(ThreadContext *thread, PacketPtr pkt)=0
Memory mapped IPR accesses.
LSQ::getCount
int getCount(ThreadID tid)
Returns the number of instructions in the queues of one thread.
Definition: lsq.hh:956
LSQ::LSQRequest::isLoad
bool isLoad() const
Definition: lsq.hh:343
LSQ::LSQRequest::packetSent
void packetSent()
Update the status to reflect that a packet was sent.
Definition: lsq.hh:565
LSQ::lqFull
bool lqFull()
Returns if any of the LQs are full.
Definition: lsq_impl.hh:542
LSQ::isFull
bool isFull()
Returns if the LSQ is full (either LQ or SQ is full).
Definition: lsq_impl.hh:472
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:86
LSQ::completeDataAccess
void completeDataAccess(PacketPtr pkt)
Definition: lsq_impl.hh:304
LSQ::isDrained
bool isDrained() const
Has the LSQ drained?
Definition: lsq_impl.hh:137
LSQ::LSQSenderState::deleteRequest
void deleteRequest()
Definition: lsq.hh:118
LSQ::iewStage
IEW * iewStage
The IEW stage pointer.
Definition: lsq.hh:1115
LSQ::LSQRequest::_requests
std::vector< RequestPtr > _requests
Definition: lsq.hh:298
LSQ::SplitDataRequest::sendPacketToCache
virtual void sendPacketToCache()
Definition: lsq_impl.hh:1113
LSQ::LSQRequest::markDelayed
void markDelayed() override
Signal that the translation has been delayed due to a hw page table walk.
Definition: lsq.hh:289
LSQ::LSQRequest::State::Request
@ Request
LSQ::takeOverFrom
void takeOverFrom()
Takes over execution from another CPU's thread.
Definition: lsq_impl.hh:156
RequestorID
uint16_t RequestorID
Definition: request.hh:89
LSQ::dcachePort
DcachePort dcachePort
Data port.
Definition: lsq.hh:1182
LSQ::O3CPU
Impl::O3CPU O3CPU
Definition: lsq.hh:72
LSQUnit
Class that implements the actual LQ and SQ for each specific thread.
Definition: lsq_unit.hh:78
LSQ::LSQRequest::_byteEnable
std::vector< bool > _byteEnable
Definition: lsq.hh:304
LSQ::LSQRequest::_taskId
uint32_t _taskId
Definition: lsq.hh:295
LSQ::LSQRequest::isComplete
bool isComplete()
Definition: lsq.hh:582
LSQ::LSQRequest::isReleased
bool isReleased()
Test if the LSQRequest has been released, i.e.
Definition: lsq.hh:377
LSQ::numStores
int numStores(ThreadID tid)
Returns the total number of stores for a single thread.
Definition: lsq.hh:966
LSQ::usedLoadPorts
int usedLoadPorts
The number of used cache ports in this cycle by loads.
Definition: lsq.hh:1138
LSQ::drainSanityCheck
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: lsq_impl.hh:127
LSQ::SplitDataRequest::name
virtual std::string name() const
Definition: lsq.hh:852
LSQ::LSQRequest::addRequest
void addRequest(Addr addr, unsigned size, const std::vector< bool > &byte_enable)
Helper function used to add a (sub)request, given its address addr, size size and byte-enable mask by...
Definition: lsq.hh:412
LSQ::LSQRequest::~LSQRequest
virtual ~LSQRequest()
Destructor.
Definition: lsq.hh:429
LSQ::LSQSenderState::alive
bool alive()
Definition: lsq.hh:119
LSQUnit::loadQueue
LoadQueue loadQueue
The load queue.
Definition: lsq_unit.hh:498
LSQ::isStalled
bool isStalled()
Returns if the LSQ is stalled due to a memory operation that must be replayed.
Definition: lsq_impl.hh:600
inst_seq.hh
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:432
LSQ::LSQRequest::WbStore
@ WbStore
True if this is a store/atomic that writes registers (SC).
Definition: lsq.hh:246
LSQ::read
Fault read(LSQRequest *req, int load_idx)
Executes a read operation, using the load specified at the load index.
Definition: lsq.hh:1193
LSQ
Definition: lsq.hh:68
Flags::clear
void clear()
Clear all flag's bits.
Definition: flags.hh:99
LSQ::cachePortAvailable
bool cachePortAvailable(bool is_load) const
Is any store port available to use?
Definition: lsq_impl.hh:194
LSQ::getStoreHeadSeqNum
InstSeqNum getStoreHeadSeqNum(ThreadID tid)
Returns the sequence number of the head of the store queue.
Definition: lsq.hh:948
sim_object.hh
LSQ::LSQRequest::_flags
const Request::Flags _flags
Definition: lsq.hh:303
LSQ::DcachePort::cpu
FullO3CPU< Impl > * cpu
Definition: lsq.hh:134
LSQ::LSQRequest::LSQRequest
LSQRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad, const Addr &addr, const uint32_t &size, const Request::Flags &flags_, PacketDataPtr data=nullptr, uint64_t *res=nullptr, AtomicOpFunctorPtr amo_op=nullptr)
Definition: lsq.hh:321
LSQ::SingleDataRequest::sendPacketToCache
virtual void sendPacketToCache()
Definition: lsq_impl.hh:1104
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
LSQ::LSQRequest::isPartialFault
bool isPartialFault()
Definition: lsq.hh:615
LSQ::LSQRequest::_res
uint64_t * _res
Definition: lsq.hh:300
LSQ::dumpInsts
void dumpInsts(ThreadID tid) const
Debugging function to print out instructions from a specific thread.
Definition: lsq.hh:1078
ArmISA::st
Bitfield< 31, 28 > st
Definition: miscregs_types.hh:152
LSQ::LSQRequest::Delayed
@ Delayed
Definition: lsq.hh:247
MipsISA::r
r
Definition: pra_constants.hh:95
LSQ::LSQSenderState
Derived class to hold any sender state the LSQ needs.
Definition: lsq.hh:79
LSQ::LSQRequest::_entryIdx
uint32_t _entryIdx
LQ/SQ entry idx.
Definition: lsq.hh:287
LSQ::cachePortBusy
void cachePortBusy(bool is_load)
Another store port is in use.
Definition: lsq_impl.hh:207
LSQ::numFreeStoreEntries
unsigned numFreeStoreEntries()
Returns the number of free store entries.
Definition: lsq_impl.hh:440
LSQ::SplitDataRequest::buildPackets
virtual void buildPackets()
Definition: lsq_impl.hh:1038
LSQ::getLoadHeadSeqNum
InstSeqNum getLoadHeadSeqNum(ThreadID tid)
Returns the sequence number of the head of the load queue.
Definition: lsq.hh:938
LSQ::executeLoad
Fault executeLoad(const DynInstPtr &inst)
Executes a load.
Definition: lsq_impl.hh:237
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
LSQ::maxLSQAllocation
static uint32_t maxLSQAllocation(SMTQueuePolicy pol, uint32_t entries, uint32_t numThreads, uint32_t SMTThreshold)
Auxiliary function to calculate per-thread max LSQ allocation limit.
Definition: lsq.hh:1150
LSQ::LSQRequest::isTranslationComplete
bool isTranslationComplete()
Definition: lsq.hh:594
LSQ::LSQRequest::taskId
uint32_t taskId() const
Definition: lsq.hh:475
port.hh
LSQ::LSQRequest::install
void install()
Install the request in the LQ/SQ.
Definition: lsq.hh:355
LSQ::getDataPort
RequestPort & getDataPort()
Definition: lsq.hh:1126
LSQ::IEW
Impl::CPUPol::IEW IEW
Definition: lsq.hh:74
Flags::set
void set(Type mask)
Set all flag's bits matching the given mask.
Definition: flags.hh:113
LSQ::HtmCmdRequest
Definition: lsq.hh:753
BaseTLB::Translation
Definition: tlb.hh:59
LSQ::lqEmpty
bool lqEmpty() const
Returns if all of the LQs are empty.
Definition: lsq_impl.hh:508
LSQ::DynInstPtr
Impl::DynInstPtr DynInstPtr
Definition: lsq.hh:73
LSQ::LSQRequest::senderState
void senderState(LSQSenderState *st)
Definition: lsq.hh:504
LSQ::LSQRequest::_packets
std::vector< PacketPtr > _packets
Definition: lsq.hh:297
LSQ::pushRequest
Fault pushRequest(const DynInstPtr &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)
Definition: lsq_impl.hh:675
LSQ::HtmCmdRequest::~HtmCmdRequest
virtual ~HtmCmdRequest()
Definition: lsq.hh:771
LSQ::SplitDataRequest::SplitDataRequest
SplitDataRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad, const Addr &addr, const uint32_t &size, const Request::Flags &flags_, PacketDataPtr data=nullptr, uint64_t *res=nullptr)
Definition: lsq.hh:816
LSQ::HtmCmdRequest::name
virtual std::string name() const
Definition: lsq.hh:775
LSQ::LSQRequest::setStateToFault
void setStateToFault()
Definition: lsq.hh:628
LSQ::usedStorePorts
int usedStorePorts
The number of used cache ports in this cycle by stores.
Definition: lsq.hh:1134
LSQ::getLatestHtmUid
uint64_t getLatestHtmUid(ThreadID tid) const
Definition: lsq.hh:992
LSQ::LQEntries
unsigned LQEntries
Total Size of LQ Entries.
Definition: lsq.hh:1171
LSQ::LSQRequest::WritebackScheduled
@ WritebackScheduled
Store written back.
Definition: lsq.hh:264
RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:74
LSQ::LSQRequest::instruction
const DynInstPtr & instruction()
Definition: lsq.hh:452
LSQ::getCount
int getCount()
Returns the number of instructions in all of the queues.
Definition: lsq_impl.hh:368
LSQ::LSQRequest::IsSplit
@ IsSplit
Definition: lsq.hh:248
LSQ::LSQRequest::initiateTranslation
virtual void initiateTranslation()=0
Flags::isSet
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
Definition: flags.hh:80
InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:37
LSQ::SplitDataRequest::numFragments
uint32_t numFragments
Definition: lsq.hh:810
LSQ::writebackStores
void writebackStores()
Attempts to write back stores until all cache ports are used or the interface becomes blocked.
Definition: lsq_impl.hh:255
LSQ::LSQSenderState::needWB
bool needWB
Whether or not the instruction will need to writeback.
Definition: lsq.hh:104
LSQ::LSQRequest::setContext
void setContext(const ContextID &context_id)
Convenience getters/setters.
Definition: lsq.hh:446
LSQ::SingleDataRequest::finish
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode)
Definition: lsq_impl.hh:764
LSQ::SplitDataRequest::mainReq
RequestPtr mainReq
Definition: lsq.hh:812
LSQ::LSQRequest::isAnyOutstandingRequest
bool isAnyOutstandingRequest()
Test if there is any in-flight translation or mem access request.
Definition: lsq.hh:534
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
LSQ::LSQRequest::LSQRequest
LSQRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad)
Definition: lsq.hh:309
Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:106
LSQ::LSQRequest::State::Fault
@ Fault
LSQ::getStoreHead
int getStoreHead(ThreadID tid)
Returns the head index of the store queue.
Definition: lsq.hh:944
LSQ::LSQRequest::writebackScheduled
void writebackScheduled()
Definition: lsq.hh:661
LSQ::LSQRequest::Sent
@ Sent
Definition: lsq.hh:253
LSQ::getLoadHead
int getLoadHead(ThreadID tid)
Returns the head index of the load queue for a specific thread.
Definition: lsq.hh:934
flags.hh
LSQ::numFreeLoadEntries
unsigned numFreeLoadEntries()
Returns the number of free load entries.
Definition: lsq_impl.hh:422
LSQ::LSQRequest::release
void release(Flag reason)
Release the LSQRequest.
Definition: lsq.hh:392
LSQ::LSQRequest::isSplit
bool isSplit() const
Definition: lsq.hh:543
LSQ::write
Fault write(LSQRequest *req, uint8_t *data, int store_idx)
Executes a store operation, using the store specified at the store index.
Definition: lsq.hh:1202
LSQ::LSQRequest::freeLSQEntry
void freeLSQEntry()
The LSQ entry is cleared.
Definition: lsq.hh:637
LSQ::maxLQEntries
unsigned maxLQEntries
Max LQ Size - Used to Enforce Sharing Policies.
Definition: lsq.hh:1176
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
LSQ::LSQRequest::getVaddr
Addr getVaddr(int idx=0) const
Definition: lsq.hh:484
LSQ::setActiveThreads
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets the pointer to the list of active threads.
Definition: lsq_impl.hh:119
LSQ::LSQRequest::setState
void setState(const State &newState)
Definition: lsq.hh:281
LSQ::DcachePort::recvTimingSnoopReq
virtual void recvTimingSnoopReq(PacketPtr pkt)
Receive a timing snoop request from the peer.
Definition: lsq_impl.hh:1206
LSQ::LSQRequest::_fault
std::vector< Fault > _fault
Definition: lsq.hh:299
LSQ::SQEntries
unsigned SQEntries
Total Size of SQ Entries.
Definition: lsq.hh:1173
LSQ::hasStoresToWB
bool hasStoresToWB()
Returns whether or not there are any stores to write back to memory.
Definition: lsq_impl.hh:627
LSQ::LSQRequest::State
State
Definition: lsq.hh:271
LSQ::LSQRequest::Flag
Flag
Definition: lsq.hh:242
LSQ::LSQRequest::FlagsStorage
uint32_t FlagsStorage
Definition: lsq.hh:239
LSQ::LSQRequest::_addr
const Addr _addr
Definition: lsq.hh:301
LSQ::LSQRequest::TranslationSquashed
@ TranslationSquashed
Ownership tracking flags.
Definition: lsq.hh:258
LSQ::LSQRequest
Memory operation metadata.
Definition: lsq.hh:236
LSQ::LSQRequest::packet
PacketPtr packet(int idx=0)
Definition: lsq.hh:487
LSQ::LSQRequest::squashTranslation
void squashTranslation()
Definition: lsq.hh:678
LSQ::SplitDataRequest::handleLocalAccess
virtual Cycles handleLocalAccess(ThreadContext *thread, PacketPtr pkt)
Memory mapped IPR accesses.
Definition: lsq_impl.hh:1133
LSQ::LSQRequest::complete
void complete()
Definition: lsq.hh:689
LSQ::HtmCmdRequest::initiateTranslation
virtual void initiateTranslation()
Definition: lsq_impl.hh:1254
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
types.hh
LSQ::LSQSenderState::mainPkt
PacketPtr mainPkt
The main packet from a split load, used during writeback.
Definition: lsq.hh:96
LSQ::LSQRequest::State::PartialFault
@ PartialFault
LSQ::LSQRequest::writebackDone
void writebackDone()
Definition: lsq.hh:668
LSQ::LSQSenderState::isLoad
bool isLoad
Whether or not it is a load.
Definition: lsq.hh:102
LSQ::numFreeEntries
unsigned numFreeEntries(ThreadID tid)
Returns the number of free entries for a specific thread.
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
LSQ::LSQRequest::isSent
bool isSent()
Definition: lsq.hh:609
LSQ::cacheLoadPorts
int cacheLoadPorts
The number of cache ports available each cycle (loads only).
Definition: lsq.hh:1136
LSQUnit::storeQueue
CircularQueue< SQEntry > storeQueue
The store queue.
Definition: lsq_unit.hh:495
LSQ::LSQRequest::numTranslatedFragments
uint32_t numTranslatedFragments
Definition: lsq.hh:283
lsq_unit.hh
LSQ::hasStoresToWB
bool hasStoresToWB(ThreadID tid)
Returns whether or not a specific thread has any stores to write back to memory.
Definition: lsq.hh:1063
LSQ::LSQRequest::sendPacketToCache
virtual void sendPacketToCache()=0
LSQ::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt)
Definition: lsq_impl.hh:351
LSQ::LSQRequest::State::NotIssued
@ NotIssued
LSQ::squash
void squash(const InstSeqNum &squashed_num, ThreadID tid)
Squash instructions from a thread until the specified sequence number.
Definition: lsq.hh:913
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
LSQ::SingleDataRequest
Definition: lsq.hh:697
LSQ::sqFull
bool sqFull()
Returns if any of the SQs are full.
Definition: lsq_impl.hh:571
LSQ::DcachePort::isSnooping
virtual bool isSnooping() const
As this CPU requires snooping to maintain the load store queue change the behaviour from the base CPU...
Definition: lsq.hh:165
LSQ::LSQRequest::taskId
void taskId(const uint32_t &v)
Definition: lsq.hh:468
LSQ::cacheBlocked
bool cacheBlocked() const
Is D-cache blocked?
Definition: lsq_impl.hh:180
LSQ::LSQRequest::isTranslationBlocked
bool isTranslationBlocked()
Definition: lsq.hh:601
LSQ::LSQRequest::_inst
const DynInstPtr _inst
Definition: lsq.hh:294
LSQ::SplitDataRequest::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Definition: lsq_impl.hh:976
LSQ::DcachePort
DcachePort class for the load/store queue.
Definition: lsq.hh:128
LSQ::numStoresToWB
int numStoresToWB(ThreadID tid)
Returns the number of stores a specific thread has to write back.
Definition: lsq.hh:1066
LSQ::LSQ
LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, const DerivO3CPUParams &params)
Constructs an LSQ with the given parameters.
Definition: lsq_impl.hh:60
LSQ::LSQRequest::lsqUnit
LSQUnit * lsqUnit()
Definition: lsq.hh:308
Complete
@ Complete
Definition: misc.hh:55
LSQ::entryAmount
int entryAmount(ThreadID num_threads)
Number of entries needed for the given amount of threads.
LSQ::getMemDepViolator
DynInstPtr getMemDepViolator(ThreadID tid)
Gets the instruction that caused the memory ordering violation.
Definition: lsq.hh:928
LSQ::SplitDataRequest
Definition: lsq.hh:778
LSQ::lsqPolicy
SMTQueuePolicy lsqPolicy
The LSQ policy for SMT mode.
Definition: lsq.hh:1142
LSQ::LSQSenderState::contextId
ContextID contextId()
Definition: lsq.hh:114
LSQ::LSQRequest::senderState
const LSQSenderState * senderState() const
Definition: lsq.hh:514
LSQ::name
std::string name() const
Returns the name of the LSQ.
Definition: lsq_impl.hh:112
std::list< ThreadID >
LSQ::commitLoads
void commitLoads(InstSeqNum &youngest_inst, ThreadID tid)
Commits loads up until the given sequence number for a specific thread.
Definition: lsq.hh:892
LSQ::~LSQ
~LSQ()
Definition: lsq.hh:857
LSQ::cacheStorePorts
int cacheStorePorts
The number of cache ports available each cycle (stores only).
Definition: lsq.hh:1132
LSQ::LSQRequest::_state
State _state
Definition: lsq.hh:279
LSQ::LSQRequest::WritebackDone
@ WritebackDone
Definition: lsq.hh:265
LSQ::_cacheBlocked
bool _cacheBlocked
D-cache is blocked.
Definition: lsq.hh:1130
LSQ::SingleDataRequest::initiateTranslation
virtual void initiateTranslation()
Definition: lsq_impl.hh:846
LSQ::SplitDataRequest::isCacheBlockHit
virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask)
Caches may probe into the load-store queue to enforce memory ordering guarantees.
Definition: lsq_impl.hh:1176
LSQ::LSQRequest::_size
const uint32_t _size
Definition: lsq.hh:302
LSQ::LSQRequest::mainRequest
virtual RequestPtr mainRequest()
Definition: lsq.hh:497
LSQ::LSQRequest::discardSenderState
void discardSenderState()
Mark senderState as discarded.
Definition: lsq.hh:524
LSQ::LSQSenderState::_request
LSQRequest * _request
The senderState needs to know the LSQRequest who owns it.
Definition: lsq.hh:83
LSQ::LSQRequest::name
virtual std::string name() const
Definition: lsq.hh:694
LSQ::numHtmStarts
int numHtmStarts(ThreadID tid) const
Definition: lsq.hh:971
LSQ::HtmCmdRequest::HtmCmdRequest
HtmCmdRequest(LSQUnit *port, const DynInstPtr &inst, const Request::Flags &flags_)
Definition: lsq_impl.hh:1224
LSQ::SingleDataRequest::isCacheBlockHit
virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask)
Test if the request accesses a particular cache line.
Definition: lsq_impl.hh:1154
LSQ::DcachePort::recvReqRetry
virtual void recvReqRetry()
Handles doing a retry of the previous send.
Definition: lsq_impl.hh:1218
LSQ::SingleDataRequest::name
virtual std::string name() const
Definition: lsq.hh:747
ArmISA::v
Bitfield< 28 > v
Definition: miscregs_types.hh:51
LSQ::SplitDataRequest::_mainPacket
PacketPtr _mainPacket
Definition: lsq.hh:813
LSQ::dumpInsts
void dumpInsts() const
Debugging function to print out all instructions.
Definition: lsq_impl.hh:661
LSQ::LSQRequest::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)=0
LSQ::LSQRequest::IsLoad
@ IsLoad
Definition: lsq.hh:244
LSQ::DcachePort::recvFunctionalSnoop
virtual void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
Definition: lsq.hh:151
LSQ::LSQRequest::LSQEntryFreed
@ LSQEntryFreed
LSQ resources freed.
Definition: lsq.hh:262
LSQ::LSQSenderState::complete
virtual void complete()=0
LSQ::cpu
O3CPU * cpu
The CPU pointer.
Definition: lsq.hh:1112
LSQ::LSQRequest::setVirt
void setVirt(Addr vaddr, unsigned size, Request::Flags flags_, RequestorID requestor_id, Addr pc)
Set up virtual request.
Definition: lsq.hh:461
LSQ::LSQSenderState::pktToSend
bool pktToSend
Whether or not there is a packet that needs sending.
Definition: lsq.hh:108
LSQ::numThreads
ThreadID numThreads
Number of Threads.
Definition: lsq.hh:1188
LSQ::LSQRequest::mainPacket
virtual PacketPtr mainPacket()
Definition: lsq.hh:490
LSQ::LSQRequest::request
RequestPtr request(int idx=0)
Definition: lsq.hh:476
LSQ::LSQRequest::State::Translation
@ Translation

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