gem5  v22.0.0.1
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, 2021 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/mmu.hh"
53 #include "arch/generic/tlb.hh"
54 #include "base/flags.hh"
55 #include "base/types.hh"
56 #include "cpu/inst_seq.hh"
57 #include "cpu/o3/dyn_inst_ptr.hh"
58 #include "cpu/utils.hh"
59 #include "enums/SMTQueuePolicy.hh"
60 #include "mem/port.hh"
61 #include "sim/sim_object.hh"
62 
63 namespace gem5
64 {
65 
66 struct BaseO3CPUParams;
67 
68 namespace o3
69 {
70 
71 class CPU;
72 class IEW;
73 class LSQUnit;
74 
75 class LSQ
76 {
77  public:
78  class LSQRequest;
79 
83  class DcachePort : public RequestPort
84  {
85  protected:
86 
88  LSQ *lsq;
89  CPU *cpu;
90 
91  public:
93  DcachePort(LSQ *_lsq, CPU *_cpu);
94 
95  protected:
96 
100  virtual bool recvTimingResp(PacketPtr pkt);
101  virtual void recvTimingSnoopReq(PacketPtr pkt);
102 
103  virtual void
105  {
106  // @todo: Is there a need for potential invalidation here?
107  }
108 
110  virtual void recvReqRetry();
111 
118  virtual bool isSnooping() const { return true; }
119  };
120 
190  {
191  protected:
192  typedef uint32_t FlagsStorage;
194 
196  {
197  IsLoad = 0x00000001,
202  WriteBackToRegister = 0x00000002,
203  Delayed = 0x00000004,
204  IsSplit = 0x00000008,
206  TranslationStarted = 0x00000010,
208  TranslationFinished = 0x00000020,
209  Sent = 0x00000040,
210  Retry = 0x00000080,
211  Complete = 0x00000100,
214  TranslationSquashed = 0x00000200,
216  Discarded = 0x00000400,
218  LSQEntryFreed = 0x00000800,
220  WritebackScheduled = 0x00001000,
221  WritebackDone = 0x00002000,
223  IsAtomic = 0x00004000
224  };
226 
227  enum class State
228  {
229  NotIssued,
230  Translation,
231  Request,
232  Fault,
233  PartialFault,
234  };
236  void setState(const State& newState) { _state = newState; }
237 
240 
241 
242  void markDelayed() override { flags.set(Flag::Delayed); }
243  bool isDelayed() { return flags.isSet(Flag::Delayed); }
244 
245  public:
248  uint32_t _taskId;
253  uint64_t* _res;
254  const Addr _addr;
255  const uint32_t _size;
261 
262  protected:
263  LSQUnit* lsqUnit() { return &_port; }
264  LSQRequest(LSQUnit* port, const DynInstPtr& inst, bool isLoad);
265  LSQRequest(LSQUnit* port, const DynInstPtr& inst, bool isLoad,
266  const Addr& addr, const uint32_t& size,
267  const Request::Flags& flags_, PacketDataPtr data=nullptr,
268  uint64_t* res=nullptr, AtomicOpFunctorPtr amo_op=nullptr,
269  bool stale_translation=false);
270 
271  bool
272  isLoad() const
273  {
274  return flags.isSet(Flag::IsLoad);
275  }
276 
277  bool
278  isAtomic() const
279  {
280  return flags.isSet(Flag::IsAtomic);
281  }
282 
284  void install();
285 
286  bool squashed() const override;
287 
288 
298  void
299  release(Flag reason)
300  {
301  assert(reason == Flag::LSQEntryFreed || reason == Flag::Discarded);
302  if (!isAnyOutstandingRequest()) {
303  delete this;
304  } else {
305  flags.set(reason);
306  }
307  }
308 
315  void addReq(Addr addr, unsigned size,
316  const std::vector<bool>& byte_enable);
317 
322  virtual ~LSQRequest();
323 
324  public:
328  void
329  setContext(const ContextID& context_id)
330  {
331  req()->setContext(context_id);
332  }
333 
334  const DynInstPtr& instruction() { return _inst; }
335 
336  bool hasStaleTranslation() const { return _hasStaleTranslation; }
337 
338  virtual void markAsStaleTranslation() = 0;
339 
343  void
344  setVirt(Addr vaddr, unsigned size, Request::Flags flags_,
345  RequestorID requestor_id, Addr pc)
346  {
347  req()->setVirt(vaddr, size, flags_, requestor_id, pc);
348  }
349 
350  ContextID contextId() const;
351 
352  void
353  taskId(const uint32_t& v)
354  {
355  _taskId = v;
356  for (auto& r: _reqs)
357  r->taskId(v);
358  }
359 
360  uint32_t taskId() const { return _taskId; }
361 
362  RequestPtr req(int idx = 0) { return _reqs.at(idx); }
363  const RequestPtr req(int idx = 0) const { return _reqs.at(idx); }
364 
365  Addr getVaddr(int idx = 0) const { return req(idx)->getVaddr(); }
366  virtual void initiateTranslation() = 0;
367 
368  PacketPtr packet(int idx = 0) { return _packets.at(idx); }
369 
370  virtual PacketPtr
372  {
373  assert (_packets.size() == 1);
374  return packet();
375  }
376 
377  virtual RequestPtr
379  {
380  assert (_reqs.size() == 1);
381  return req();
382  }
383 
387  bool
389  {
390  return numInTranslationFragments > 0 ||
392  (flags.isSet(Flag::WritebackScheduled) &&
393  !flags.isSet(Flag::WritebackDone));
394  }
395 
401  bool
403  {
404  return flags.isSet(Flag::LSQEntryFreed) ||
405  flags.isSet(Flag::Discarded);
406  }
407 
408  bool
409  isSplit() const
410  {
411  return flags.isSet(Flag::IsSplit);
412  }
413 
414  bool
416  {
417  return flags.isSet(Flag::WriteBackToRegister);
418  }
420  virtual bool recvTimingResp(PacketPtr pkt) = 0;
421  virtual void sendPacketToCache() = 0;
422  virtual void buildPackets() = 0;
423 
427  virtual Cycles handleLocalAccess(
429 
433  virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask) = 0;
434 
436  void
438  {
439  flags.set(Flag::Sent);
440  }
445  void
447  {
448  flags.set(Flag::Retry);
449  flags.clear(Flag::Sent);
450  }
451 
452  void sendFragmentToTranslation(int i);
453  bool
455  {
456  return flags.isSet(Flag::Complete);
457  }
458 
459  bool
461  {
462  return _state == State::Translation;
463  }
464 
465  bool
467  {
468  return flags.isSet(Flag::TranslationStarted) &&
469  !isInTranslation();
470  }
471 
472  bool
474  {
475  return _state == State::Translation &&
476  flags.isSet(Flag::TranslationStarted) &&
477  !flags.isSet(Flag::TranslationFinished);
478  }
479 
480  bool
482  {
483  return flags.isSet(Flag::Sent);
484  }
485 
486  bool
488  {
489  return _state == State::PartialFault;
490  }
491 
492  bool
494  {
495  return (_state == State::Request ||
496  (isPartialFault() && isLoad()));
497  }
498 
499  void
501  {
503  }
504 
508  void
510  {
511  release(Flag::LSQEntryFreed);
512  }
513 
517  void
519  {
520  release(Flag::Discarded);
521  }
522 
523  void
525  {
526  assert(_numOutstandingPackets > 0);
528  if (_numOutstandingPackets == 0 && isReleased())
529  delete this;
530  }
531 
532  void
534  {
535  assert(!flags.isSet(Flag::WritebackScheduled));
536  flags.set(Flag::WritebackScheduled);
537  }
538 
539  void
541  {
542  flags.set(Flag::WritebackDone);
543  /* If the lsq resources are already free */
544  if (isReleased()) {
545  delete this;
546  }
547  }
548 
549  void
551  {
552  assert(numInTranslationFragments == 0);
553  flags.set(Flag::TranslationSquashed);
554  /* If we are on our own, self-destruct. */
555  if (isReleased()) {
556  delete this;
557  }
558  }
559 
560  void
562  {
564  }
565 
566  virtual std::string name() const { return "LSQRequest"; }
567  };
568 
570  {
571  public:
573  bool isLoad, const Addr& addr, const uint32_t& size,
574  const Request::Flags& flags_, PacketDataPtr data=nullptr,
575  uint64_t* res=nullptr, AtomicOpFunctorPtr amo_op=nullptr) :
576  LSQRequest(port, inst, isLoad, addr, size, flags_, data, res,
577  std::move(amo_op)) {}
578 
579  virtual ~SingleDataRequest() {}
580  virtual void markAsStaleTranslation();
581  virtual void initiateTranslation();
582  virtual void finish(const Fault &fault, const RequestPtr &req,
584  virtual bool recvTimingResp(PacketPtr pkt);
585  virtual void sendPacketToCache();
586  virtual void buildPackets();
587  virtual Cycles handleLocalAccess(
589  virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask);
590  virtual std::string name() const { return "SingleDataRequest"; }
591  };
592 
593  // This class extends SingleDataRequest for the purpose
594  // of allowing special requests (eg Hardware transactional memory, TLB
595  // shootdowns) to bypass irrelevant system elements like translation &
596  // squashing.
598  {
599  public:
600  UnsquashableDirectRequest(LSQUnit* port, const DynInstPtr& inst,
601  const Request::Flags& flags_);
602  inline virtual ~UnsquashableDirectRequest() {}
603  virtual void initiateTranslation();
604  virtual void markAsStaleTranslation();
605  virtual void finish(const Fault &fault, const RequestPtr &req,
607  virtual std::string
608  name() const
609  {
610  return "UnsquashableDirectRequest";
611  }
612  };
613 
615  {
616  protected:
617  uint32_t numFragments;
621 
622  public:
623  SplitDataRequest(LSQUnit* port, const DynInstPtr& inst,
624  bool isLoad, const Addr& addr, const uint32_t& size,
625  const Request::Flags & flags_, PacketDataPtr data=nullptr,
626  uint64_t* res=nullptr) :
627  LSQRequest(port, inst, isLoad, addr, size, flags_, data, res,
628  nullptr),
629  numFragments(0),
631  _mainReq(nullptr),
632  _mainPacket(nullptr)
633  {
634  flags.set(Flag::IsSplit);
635  }
637  {
638  if (_mainReq) {
639  _mainReq = nullptr;
640  }
641  if (_mainPacket) {
642  delete _mainPacket;
643  _mainPacket = nullptr;
644  }
645  }
646  virtual void markAsStaleTranslation();
647  virtual void finish(const Fault &fault, const RequestPtr &req,
649  virtual bool recvTimingResp(PacketPtr pkt);
650  virtual void initiateTranslation();
651  virtual void sendPacketToCache();
652  virtual void buildPackets();
653 
654  virtual Cycles handleLocalAccess(
656  virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask);
657 
658  virtual RequestPtr mainReq();
659  virtual PacketPtr mainPacket();
660  virtual std::string name() const { return "SplitDataRequest"; }
661  };
662 
664  LSQ(CPU *cpu_ptr, IEW *iew_ptr, const BaseO3CPUParams &params);
665 
667  std::string name() const;
668 
671 
673  void drainSanityCheck() const;
675  bool isDrained() const;
677  void takeOverFrom();
678 
680  int entryAmount(ThreadID num_threads);
681 
683  void tick();
684 
686  void insertLoad(const DynInstPtr &load_inst);
688  void insertStore(const DynInstPtr &store_inst);
689 
691  Fault executeLoad(const DynInstPtr &inst);
692 
694  Fault executeStore(const DynInstPtr &inst);
695 
699  void commitLoads(InstSeqNum &youngest_inst, ThreadID tid);
700 
704  void commitStores(InstSeqNum &youngest_inst, ThreadID tid);
705 
710  void writebackStores();
712  void writebackStores(ThreadID tid);
713 
717  void squash(const InstSeqNum &squashed_num, ThreadID tid);
718 
720  bool violation();
721 
726  bool violation(ThreadID tid);
727 
730 
732  int getLoadHead(ThreadID tid);
733 
736 
738  int getStoreHead(ThreadID tid);
739 
742 
744  int getCount();
746  int getCount(ThreadID tid);
747 
749  int numLoads();
751  int numLoads(ThreadID tid);
752 
754  int numStores();
756  int numStores(ThreadID tid);
757 
758 
759  // hardware transactional memory
760 
761  int numHtmStarts(ThreadID tid) const;
762  int numHtmStops(ThreadID tid) const;
763  void resetHtmStartsStops(ThreadID tid);
764  uint64_t getLatestHtmUid(ThreadID tid) const;
765  void setLastRetiredHtmUid(ThreadID tid, uint64_t htmUid);
766 
768  unsigned numFreeLoadEntries();
769 
771  unsigned numFreeStoreEntries();
772 
774  unsigned numFreeEntries(ThreadID tid);
775 
777  unsigned numFreeLoadEntries(ThreadID tid);
778 
780  unsigned numFreeStoreEntries(ThreadID tid);
781 
783  bool isFull();
788  bool isFull(ThreadID tid);
789 
791  bool isEmpty() const;
793  bool lqEmpty() const;
795  bool sqEmpty() const;
796 
798  bool lqFull();
800  bool lqFull(ThreadID tid);
801 
803  bool sqFull();
805  bool sqFull(ThreadID tid);
806 
811  bool isStalled();
816  bool isStalled(ThreadID tid);
817 
819  bool hasStoresToWB();
820 
824  bool hasStoresToWB(ThreadID tid);
825 
827  int numStoresToWB(ThreadID tid);
828 
830  bool willWB();
834  bool willWB(ThreadID tid);
835 
837  void dumpInsts() const;
839  void dumpInsts(ThreadID tid) const;
840 
844  Fault read(LSQRequest* request, ssize_t load_idx);
845 
849  Fault write(LSQRequest* request, uint8_t *data, ssize_t store_idx);
850 
854  void checkStaleTranslations();
855 
859  void recvReqRetry();
860 
861  void completeDataAccess(PacketPtr pkt);
868  bool recvTimingResp(PacketPtr pkt);
869 
870  void recvTimingSnoopReq(PacketPtr pkt);
871 
872  Fault pushRequest(const DynInstPtr& inst, bool isLoad, uint8_t *data,
873  unsigned int size, Addr addr, Request::Flags flags,
874  uint64_t *res, AtomicOpFunctorPtr amo_op,
875  const std::vector<bool>& byte_enable);
876 
879 
882 
884  bool cacheBlocked() const;
886  void cacheBlocked(bool v);
888  bool cachePortAvailable(bool is_load) const;
890  void cachePortBusy(bool is_load);
891 
893 
894  protected:
905 
910 
912  SMTQueuePolicy lsqPolicy;
913 
919  static uint32_t
920  maxLSQAllocation(SMTQueuePolicy pol, uint32_t entries,
921  uint32_t numThreads, uint32_t SMTThreshold)
922  {
923  if (pol == SMTQueuePolicy::Dynamic) {
924  return entries;
925  } else if (pol == SMTQueuePolicy::Partitioned) {
926  //@todo:make work if part_amt doesnt divide evenly.
927  return entries / numThreads;
928  } else if (pol == SMTQueuePolicy::Threshold) {
929  //Divide up by threshold amount
930  //@todo: Should threads check the max and the total
931  //amount of the LSQ
932  return SMTThreshold;
933  }
934  return 0;
935  }
936 
939 
941  unsigned LQEntries;
943  unsigned SQEntries;
944 
946  unsigned maxLQEntries;
947 
949  unsigned maxSQEntries;
950 
953 
956 
959 };
960 
961 } // namespace o3
962 } // namespace gem5
963 
964 #endif // __CPU_O3_LSQ_HH__
gem5::o3::LSQ::LSQRequest::release
void release(Flag reason)
Release the LSQRequest.
Definition: lsq.hh:299
gem5::o3::LSQ::LSQRequest::State::Translation
@ Translation
gem5::o3::LSQ::LQEntries
unsigned LQEntries
Total Size of LQ Entries.
Definition: lsq.hh:941
gem5::o3::LSQ::LSQRequest::_amo_op
AtomicOpFunctorPtr _amo_op
Definition: lsq.hh:259
gem5::o3::LSQ::lsqPolicy
SMTQueuePolicy lsqPolicy
The LSQ policy for SMT mode.
Definition: lsq.hh:912
gem5::o3::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:118
gem5::o3::LSQ::LSQRequest::isAtomic
bool isAtomic() const
Definition: lsq.hh:278
gem5::o3::LSQ::insertStore
void insertStore(const DynInstPtr &store_inst)
Inserts a store into the LSQ.
Definition: lsq.cc:229
gem5::o3::LSQ::LSQRequest::Retry
@ Retry
Definition: lsq.hh:210
gem5::o3::LSQ::LSQRequest::_res
uint64_t * _res
Definition: lsq.hh:253
gem5::o3::LSQ::LSQRequest
Memory operation metadata.
Definition: lsq.hh:189
gem5::o3::LSQ::LSQRequest::req
const RequestPtr req(int idx=0) const
Definition: lsq.hh:363
gem5::o3::LSQ::DcachePort::lsq
LSQ * lsq
Pointer to LSQ.
Definition: lsq.hh:88
utils.hh
gem5::o3::LSQ::SingleDataRequest::initiateTranslation
virtual void initiateTranslation()
Definition: lsq.cc:951
gem5::o3::LSQ::commitLoads
void commitLoads(InstSeqNum &youngest_inst, ThreadID tid)
Commits loads up until the given sequence number for a specific thread.
Definition: lsq.cc:253
gem5::o3::LSQ::LSQRequest::_addr
const Addr _addr
Definition: lsq.hh:254
gem5::o3::LSQ::numStoresToWB
int numStoresToWB(ThreadID tid)
Returns the number of stores a specific thread has to write back.
Definition: lsq.cc:736
gem5::o3::LSQ::cacheBlocked
bool cacheBlocked() const
Is D-cache blocked?
Definition: lsq.cc:186
gem5::o3::LSQ::DcachePort::recvFunctionalSnoop
virtual void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
Definition: lsq.hh:104
gem5::o3::LSQ::LSQRequest::isTranslationComplete
bool isTranslationComplete()
Definition: lsq.hh:466
gem5::o3::LSQ::LSQRequest::_taskId
uint32_t _taskId
Definition: lsq.hh:248
gem5::o3::LSQ::LSQRequest::_data
PacketDataPtr _data
Definition: lsq.hh:249
gem5::o3::LSQ::LSQRequest::_byteEnable
std::vector< bool > _byteEnable
Definition: lsq.hh:257
gem5::o3::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:623
gem5::o3::LSQ::numFreeEntries
unsigned numFreeEntries(ThreadID tid)
Returns the number of free entries for a specific thread.
gem5::o3::LSQ::SplitDataRequest::name
virtual std::string name() const
Definition: lsq.hh:660
gem5::o3::LSQ::numThreads
ThreadID numThreads
Number of Threads.
Definition: lsq.hh:958
gem5::o3::LSQ::LSQRequest::taskId
void taskId(const uint32_t &v)
Definition: lsq.hh:353
data
const char data[]
Definition: circlebuf.test.cc:48
gem5::o3::LSQ::dumpInsts
void dumpInsts() const
Debugging function to print out all instructions.
Definition: lsq.cc:764
gem5::o3::LSQ::SplitDataRequest::~SplitDataRequest
virtual ~SplitDataRequest()
Definition: lsq.hh:636
gem5::o3::LSQ::LSQRequest::isInTranslation
bool isInTranslation()
Definition: lsq.hh:460
gem5::o3::LSQ::getCount
int getCount()
Returns the number of instructions in all of the queues.
Definition: lsq.cc:473
gem5::o3::LSQ::SplitDataRequest::buildPackets
virtual void buildPackets()
Definition: lsq.cc:1258
gem5::o3::LSQ::writebackStores
void writebackStores()
Attempts to write back stores until all cache ports are used or the interface becomes blocked.
Definition: lsq.cc:265
gem5::o3::LSQ::setActiveThreads
void setActiveThreads(std::list< ThreadID > *at_ptr)
Sets the pointer to the list of active threads.
Definition: lsq.cc:130
gem5::o3::LSQ::SplitDataRequest::markAsStaleTranslation
virtual void markAsStaleTranslation()
Definition: lsq.cc:1174
gem5::o3::LSQ::lqEmpty
bool lqEmpty() const
Returns if all of the LQs are empty.
Definition: lsq.cc:603
gem5::o3::LSQ::LSQRequest::Discarded
@ Discarded
Request discarded.
Definition: lsq.hh:216
gem5::BaseMMU::Mode
Mode
Definition: mmu.hh:56
gem5::Flags::set
void set(Type mask)
Set all flag's bits matching the given mask.
Definition: flags.hh:116
gem5::o3::LSQ::_cacheBlocked
bool _cacheBlocked
D-cache is blocked.
Definition: lsq.hh:896
gem5::o3::LSQ::SingleDataRequest::buildPackets
virtual void buildPackets()
Definition: lsq.cc:1226
gem5::o3::LSQ::LSQRequest::install
void install()
Install the request in the LQ/SQ.
Definition: lsq.cc:1091
gem5::o3::LSQ::SplitDataRequest::initiateTranslation
virtual void initiateTranslation()
Definition: lsq.cc:984
gem5::o3::LSQ::LSQRequest::setState
void setState(const State &newState)
Definition: lsq.hh:236
gem5::Flags::clear
void clear()
Clear all flag's bits.
Definition: flags.hh:102
gem5::o3::LSQ::SplitDataRequest::handleLocalAccess
virtual Cycles handleLocalAccess(gem5::ThreadContext *thread, PacketPtr pkt)
Memory mapped IPR accesses.
Definition: lsq.cc:1349
gem5::o3::LSQ::DcachePort
DcachePort class for the load/store queue.
Definition: lsq.hh:83
gem5::o3::LSQ::LSQRequest::isCacheBlockHit
virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask)=0
Test if the request accesses a particular cache line.
gem5::Complete
@ Complete
Definition: misc.hh:57
gem5::o3::LSQ::LSQRequest::isMemAccessRequired
bool isMemAccessRequired()
Definition: lsq.hh:493
gem5::o3::LSQ::getStoreHeadSeqNum
InstSeqNum getStoreHeadSeqNum(ThreadID tid)
Returns the sequence number of the head of the store queue.
Definition: lsq.cc:332
tlb.hh
gem5::o3::LSQ::LSQRequest::buildPackets
virtual void buildPackets()=0
gem5::o3::LSQ::numLoads
int numLoads()
Returns the total number of loads in the load queue.
Definition: lsq.cc:490
gem5::o3::LSQ::LSQRequest::isPartialFault
bool isPartialFault()
Definition: lsq.hh:487
gem5::o3::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.cc:1390
gem5::o3::LSQ::LSQRequest::State::PartialFault
@ PartialFault
gem5::o3::LSQ::cachePortAvailable
bool cachePortAvailable(bool is_load) const
Is any store port available to use?
Definition: lsq.cc:198
gem5::o3::LSQ
Definition: lsq.hh:75
gem5::o3::LSQ::LSQRequest::markAsStaleTranslation
virtual void markAsStaleTranslation()=0
gem5::o3::LSQ::LSQRequest::WritebackDone
@ WritebackDone
Definition: lsq.hh:221
gem5::o3::LSQ::LSQRequest::squashed
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.cc:1102
gem5::o3::LSQ::LSQRequest::instruction
const DynInstPtr & instruction()
Definition: lsq.hh:334
gem5::o3::LSQ::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt)
Definition: lsq.cc:444
gem5::o3::LSQ::LSQRequest::sendPacketToCache
virtual void sendPacketToCache()=0
gem5::o3::LSQ::LSQRequest::LSQEntryFreed
@ LSQEntryFreed
LSQ resources freed.
Definition: lsq.hh:218
gem5::o3::LSQ::SplitDataRequest::_mainPacket
PacketPtr _mainPacket
Definition: lsq.hh:620
gem5::o3::LSQ::UnsquashableDirectRequest::UnsquashableDirectRequest
UnsquashableDirectRequest(LSQUnit *port, const DynInstPtr &inst, const Request::Flags &flags_)
Definition: lsq.cc:1434
std::vector
STL vector class.
Definition: stl.hh:37
gem5::o3::LSQ::getStoreHead
int getStoreHead(ThreadID tid)
Returns the head index of the store queue.
Definition: lsq.cc:326
gem5::o3::LSQ::checkStaleTranslations
void checkStaleTranslations()
Checks if queues have any marked operations left, and sends the appropriate Sync Completion message i...
Definition: lsq.cc:1496
gem5::o3::LSQ::LSQRequest::mainPacket
virtual PacketPtr mainPacket()
Definition: lsq.hh:371
gem5::o3::LSQ::UnsquashableDirectRequest::~UnsquashableDirectRequest
virtual ~UnsquashableDirectRequest()
Definition: lsq.hh:602
gem5::VegaISA::r
Bitfield< 5 > r
Definition: pagetable.hh:60
gem5::o3::LSQ::SingleDataRequest::name
virtual std::string name() const
Definition: lsq.hh:590
gem5::o3::LSQ::LSQRequest::getVaddr
Addr getVaddr(int idx=0) const
Definition: lsq.hh:365
gem5::PacketDataPtr
uint8_t * PacketDataPtr
Definition: packet.hh:71
gem5::o3::LSQ::SplitDataRequest::sendPacketToCache
virtual void sendPacketToCache()
Definition: lsq.cc:1331
gem5::ArmISA::i
Bitfield< 7 > i
Definition: misc_types.hh:67
gem5::o3::LSQ::LSQRequest::needWBToRegister
bool needWBToRegister() const
Definition: lsq.hh:415
gem5::o3::LSQ::name
std::string name() const
Returns the name of the LSQ.
Definition: lsq.cc:124
gem5::o3::LSQ::LSQRequest::Sent
@ Sent
Definition: lsq.hh:209
gem5::o3::LSQ::LSQRequest::~LSQRequest
virtual ~LSQRequest()
Destructor.
Definition: lsq.cc:1135
gem5::o3::LSQ::dcachePort
DcachePort dcachePort
Data port.
Definition: lsq.hh:952
gem5::o3::LSQ::DcachePort::recvTimingSnoopReq
virtual void recvTimingSnoopReq(PacketPtr pkt)
Receive a timing snoop request from the peer.
Definition: lsq.cc:1418
gem5::o3::LSQ::isEmpty
bool isEmpty() const
Returns if the LSQ is empty (both LQ and SQ are empty).
Definition: lsq.cc:597
gem5::o3::LSQ::DcachePort::DcachePort
DcachePort(LSQ *_lsq, CPU *_cpu)
Default constructor.
Definition: lsq.cc:67
gem5::o3::LSQ::activeThreads
std::list< ThreadID > * activeThreads
List of Active Threads in System.
Definition: lsq.hh:938
gem5::o3::LSQ::LSQRequest::contextId
ContextID contextId() const
Definition: lsq.cc:1145
gem5::o3::LSQ::SplitDataRequest::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Definition: lsq.cc:1200
gem5::o3::LSQ::LSQRequest::IsAtomic
@ IsAtomic
True if this is an atomic request.
Definition: lsq.hh:223
gem5::o3::LSQ::SingleDataRequest::sendPacketToCache
virtual void sendPacketToCache()
Definition: lsq.cc:1323
gem5::o3::LSQ::LSQRequest::setVirt
void setVirt(Addr vaddr, unsigned size, Request::Flags flags_, RequestorID requestor_id, Addr pc)
Set up virtual request.
Definition: lsq.hh:344
gem5::o3::LSQ::isStalled
bool isStalled()
Returns if the LSQ is stalled due to a memory operation that must be replayed.
Definition: lsq.cc:689
gem5::o3::LSQ::executeStore
Fault executeStore(const DynInstPtr &inst)
Executes a store.
Definition: lsq.cc:245
gem5::o3::LSQ::LSQRequest::State::Request
@ Request
gem5::o3::LSQ::cacheStorePorts
int cacheStorePorts
The number of cache ports available each cycle (stores only).
Definition: lsq.hh:898
gem5::o3::LSQ::staleTranslationWaitTxnId
Addr staleTranslationWaitTxnId
The ID if the transaction that made translations stale.
Definition: lsq.hh:909
gem5::RefCountingPtr< DynInst >
gem5::o3::LSQ::sqFull
bool sqFull()
Returns if any of the SQs are full.
Definition: lsq.cc:662
gem5::o3::LSQ::resetHtmStartsStops
void resetHtmStartsStops(ThreadID tid)
Definition: lsq.cc:361
gem5::o3::LSQ::LSQRequest::req
RequestPtr req(int idx=0)
Definition: lsq.hh:362
gem5::RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:77
gem5::o3::LSQ::violation
bool violation()
Returns whether or not there was a memory ordering violation.
Definition: lsq.cc:289
gem5::Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:78
gem5::o3::LSQ::LSQRequest::_hasStaleTranslation
bool _hasStaleTranslation
Definition: lsq.hh:260
gem5::o3::LSQ::completeDataAccess
void completeDataAccess(PacketPtr pkt)
Definition: lsq.cc:395
gem5::o3::LSQ::numHtmStarts
int numHtmStarts(ThreadID tid) const
Definition: lsq.cc:344
gem5::o3::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:572
gem5::o3::LSQ::write
Fault write(LSQRequest *request, uint8_t *data, ssize_t store_idx)
Executes a store operation, using the store specified at the store index.
Definition: lsq.cc:1535
gem5::o3::LSQ::LSQRequest::_size
const uint32_t _size
Definition: lsq.hh:255
gem5::o3::LSQ::numStores
int numStores()
Returns the total number of stores in the store queue.
Definition: lsq.cc:507
gem5::o3::LSQ::LSQRequest::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)=0
gem5::o3::LSQ::LSQRequest::packetReplied
void packetReplied()
Definition: lsq.hh:524
gem5::Flags< FlagsStorage >
gem5::o3::LSQUnit
Class that implements the actual LQ and SQ for each specific thread.
Definition: lsq_unit.hh:89
gem5::o3::LSQ::SQEntries
unsigned SQEntries
Total Size of SQ Entries.
Definition: lsq.hh:943
gem5::o3::LSQ::tick
void tick()
Ticks the LSQ.
Definition: lsq.cc:175
gem5::o3::LSQ::LSQRequest::_inst
const DynInstPtr _inst
Definition: lsq.hh:247
inst_seq.hh
gem5::o3::CPU
O3CPU class, has each of the stages (fetch through commit) within it, as well as all of the time buff...
Definition: cpu.hh:94
gem5::o3::LSQ::LSQRequest::packetSent
void packetSent()
Update the status to reflect that a packet was sent.
Definition: lsq.hh:437
gem5::o3::LSQ::LSQRequest::setStateToFault
void setStateToFault()
Definition: lsq.hh:500
gem5::o3::LSQ::SplitDataRequest::numFragments
uint32_t numFragments
Definition: lsq.hh:617
gem5::o3::LSQ::LSQRequest::squashTranslation
void squashTranslation()
Definition: lsq.hh:550
gem5::o3::LSQ::maxSQEntries
unsigned maxSQEntries
Max SQ Size - Used to Enforce Sharing Policies.
Definition: lsq.hh:949
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:94
gem5::o3::LSQ::LSQRequest::isTranslationBlocked
bool isTranslationBlocked()
Definition: lsq.hh:473
gem5::o3::LSQ::LSQRequest::discard
void discard()
The request is discarded (e.g.
Definition: lsq.hh:518
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:248
gem5::o3::LSQ::SplitDataRequest
Definition: lsq.hh:614
gem5::Flags::isSet
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
Definition: flags.hh:83
gem5::o3::LSQ::isDrained
bool isDrained() const
Has the LSQ drained?
Definition: lsq.cc:146
sim_object.hh
gem5::o3::LSQ::LSQRequest::_packets
std::vector< PacketPtr > _packets
Definition: lsq.hh:250
gem5::o3::LSQ::iewStage
IEW * iewStage
The IEW stage pointer.
Definition: lsq.hh:881
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:291
gem5::o3::LSQ::LSQRequest::State::Fault
@ Fault
gem5::o3::LSQ::LSQRequest::Delayed
@ Delayed
Definition: lsq.hh:203
gem5::o3::LSQ::LSQRequest::State
State
Definition: lsq.hh:227
gem5::o3::LSQ::LSQRequest::packetNotSent
void packetNotSent()
Update the status to reflect that a packet was not sent.
Definition: lsq.hh:446
gem5::o3::IEW
IEW handles both single threaded and SMT IEW (issue/execute/writeback).
Definition: iew.hh:87
gem5::o3::LSQ::LSQRequest::flags
FlagsType flags
Definition: lsq.hh:225
gem5::o3::LSQ::SplitDataRequest::mainReq
virtual RequestPtr mainReq()
Definition: lsq.cc:978
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
gem5::o3::LSQ::LSQRequest::packet
PacketPtr packet(int idx=0)
Definition: lsq.hh:368
gem5::o3::LSQ::getLatestHtmUid
uint64_t getLatestHtmUid(ThreadID tid) const
Definition: lsq.cc:368
gem5::o3::LSQ::LSQRequest::State::NotIssued
@ NotIssued
gem5::o3::LSQ::LSQRequest::IsSplit
@ IsSplit
Definition: lsq.hh:204
mmu.hh
gem5::o3::LSQ::LSQRequest::_numOutstandingPackets
uint32_t _numOutstandingPackets
Definition: lsq.hh:258
gem5::o3::LSQ::willWB
bool willWB()
Returns if the LSQ will write back to memory this cycle.
Definition: lsq.cc:742
gem5::o3::LSQ::numFreeLoadEntries
unsigned numFreeLoadEntries()
Returns the number of free load entries.
Definition: lsq.cc:524
port.hh
gem5::o3::LSQ::UnsquashableDirectRequest::markAsStaleTranslation
virtual void markAsStaleTranslation()
Definition: lsq.cc:1480
gem5::o3::LSQ::LSQRequest::_reqs
std::vector< RequestPtr > _reqs
Definition: lsq.hh:251
gem5::o3::LSQ::LSQRequest::Complete
@ Complete
Definition: lsq.hh:211
gem5::o3::LSQ::LSQRequest::hasStaleTranslation
bool hasStaleTranslation() const
Definition: lsq.hh:336
gem5::o3::LSQ::cachePortBusy
void cachePortBusy(bool is_load)
Another store port is in use.
Definition: lsq.cc:210
gem5::o3::LSQ::DcachePort::recvReqRetry
virtual void recvReqRetry()
Handles doing a retry of the previous send.
Definition: lsq.cc:1429
gem5::o3::LSQ::LSQRequest::name
virtual std::string name() const
Definition: lsq.hh:566
flags
uint8_t flags
Definition: helpers.cc:66
gem5::o3::LSQ::LSQRequest::isReleased
bool isReleased()
Test if the LSQRequest has been released, i.e.
Definition: lsq.hh:402
gem5::Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:465
gem5::o3::LSQ::SplitDataRequest::mainPacket
virtual PacketPtr mainPacket()
Definition: lsq.cc:972
gem5::o3::LSQ::LSQRequest::isDelayed
bool isDelayed()
Definition: lsq.hh:243
gem5::o3::LSQ::setLastRetiredHtmUid
void setLastRetiredHtmUid(ThreadID tid, uint64_t htmUid)
Definition: lsq.cc:377
gem5::o3::LSQ::DcachePort::cpu
CPU * cpu
Definition: lsq.hh:89
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::o3::LSQ::LSQRequest::_flags
const Request::Flags _flags
Definition: lsq.hh:256
dyn_inst_ptr.hh
gem5::o3::LSQ::SingleDataRequest::isCacheBlockHit
virtual bool isCacheBlockHit(Addr blockAddr, Addr cacheBlockMask)
Test if the request accesses a particular cache line.
Definition: lsq.cc:1369
gem5::o3::LSQ::entryAmount
int entryAmount(ThreadID num_threads)
Number of entries needed for the given amount of threads.
gem5::o3::LSQ::getMemDepViolator
DynInstPtr getMemDepViolator(ThreadID tid)
Gets the instruction that caused the memory ordering violation.
Definition: lsq.cc:308
gem5::o3::LSQ::UnsquashableDirectRequest::initiateTranslation
virtual void initiateTranslation()
Definition: lsq.cc:1444
gem5::o3::LSQ::LSQRequest::complete
void complete()
Definition: lsq.hh:561
flags.hh
gem5::o3::LSQ::LSQRequest::TranslationFinished
@ TranslationFinished
True if there are un-replied outbound translations.
Definition: lsq.hh:208
gem5::o3::LSQ::squash
void squash(const InstSeqNum &squashed_num, ThreadID tid)
Squash instructions from a thread until the specified sequence number.
Definition: lsq.cc:283
gem5::o3::LSQ::sqEmpty
bool sqEmpty() const
Returns if all of the SQs are empty.
Definition: lsq.cc:619
gem5::o3::LSQ::drainSanityCheck
void drainSanityCheck() const
Perform sanity checks after a drain.
Definition: lsq.cc:137
gem5::o3::LSQ::LSQRequest::isSent
bool isSent()
Definition: lsq.hh:481
gem5::o3::LSQ::SingleDataRequest::~SingleDataRequest
virtual ~SingleDataRequest()
Definition: lsq.hh:579
gem5::o3::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:920
gem5::o3::LSQ::SingleDataRequest::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Definition: lsq.cc:1189
gem5::o3::LSQ::recvReqRetry
void recvReqRetry()
Retry the previous send that failed.
Definition: lsq.cc:384
gem5::o3::LSQ::LSQRequest::FlagsType
Flags< FlagsStorage > FlagsType
Definition: lsq.hh:193
gem5::o3::LSQ::SingleDataRequest::handleLocalAccess
virtual Cycles handleLocalAccess(gem5::ThreadContext *thread, PacketPtr pkt)
Memory mapped IPR accesses.
Definition: lsq.cc:1342
gem5::BaseMMU::Translation
Definition: mmu.hh:58
gem5::o3::LSQ::LSQRequest::_port
LSQUnit & _port
Definition: lsq.hh:246
gem5::VegaISA::v
Bitfield< 0 > v
Definition: pagetable.hh:65
gem5::o3::LSQ::UnsquashableDirectRequest::finish
virtual void finish(const Fault &fault, const RequestPtr &req, gem5::ThreadContext *tc, BaseMMU::Mode mode)
Definition: lsq.cc:1488
gem5::o3::LSQ::SingleDataRequest::markAsStaleTranslation
virtual void markAsStaleTranslation()
Definition: lsq.cc:1159
gem5::o3::LSQ::LSQ
LSQ(CPU *cpu_ptr, IEW *iew_ptr, const BaseO3CPUParams &params)
Constructs an LSQ with the given parameters.
Definition: lsq.cc:71
gem5::o3::LSQ::LSQRequest::writebackScheduled
void writebackScheduled()
Definition: lsq.hh:533
gem5::o3::LSQ::insertLoad
void insertLoad(const DynInstPtr &load_inst)
Inserts a load into the LSQ.
Definition: lsq.cc:221
gem5::o3::LSQ::LSQRequest::LSQRequest
LSQRequest(LSQUnit *port, const DynInstPtr &inst, bool isLoad)
Definition: lsq.cc:1052
gem5::o3::LSQ::LSQRequest::lsqUnit
LSQUnit * lsqUnit()
Definition: lsq.hh:263
gem5::o3::LSQ::cpu
CPU * cpu
The CPU pointer.
Definition: lsq.hh:878
gem5::o3::LSQ::hasStoresToWB
bool hasStoresToWB()
Returns whether or not there are any stores to write back to memory.
Definition: lsq.cc:714
std
Overload hash function for BasicBlockRange type.
Definition: misc.hh:2388
types.hh
gem5::o3::LSQ::getLoadHead
int getLoadHead(ThreadID tid)
Returns the head index of the load queue for a specific thread.
Definition: lsq.cc:314
gem5::o3::LSQ::SplitDataRequest::finish
virtual void finish(const Fault &fault, const RequestPtr &req, gem5::ThreadContext *tc, BaseMMU::Mode mode)
Definition: lsq.cc:903
gem5::o3::LSQ::maxLQEntries
unsigned maxLQEntries
Max LQ Size - Used to Enforce Sharing Policies.
Definition: lsq.hh:946
gem5::o3::LSQ::LSQRequest::markDelayed
void markDelayed() override
Signal that the translation has been delayed due to a hw page table walk.
Definition: lsq.hh:242
gem5::o3::LSQ::getLoadHeadSeqNum
InstSeqNum getLoadHeadSeqNum(ThreadID tid)
Returns the sequence number of the head of the load queue.
Definition: lsq.cc:320
gem5::o3::LSQ::LSQRequest::TranslationSquashed
@ TranslationSquashed
Ownership tracking flags.
Definition: lsq.hh:214
gem5::ContextID
int ContextID
Globally unique thread context ID.
Definition: types.hh:239
gem5::MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:243
gem5::o3::LSQ::numFreeStoreEntries
unsigned numFreeStoreEntries()
Returns the number of free store entries.
Definition: lsq.cc:541
gem5::o3::LSQ::SplitDataRequest::_mainReq
RequestPtr _mainReq
Definition: lsq.hh:619
gem5::o3::LSQ::LSQRequest::isAnyOutstandingRequest
bool isAnyOutstandingRequest()
Test if there is any in-flight translation or mem access request.
Definition: lsq.hh:388
gem5::o3::LSQ::LSQRequest::initiateTranslation
virtual void initiateTranslation()=0
gem5::o3::LSQ::UnsquashableDirectRequest::name
virtual std::string name() const
Definition: lsq.hh:608
gem5::o3::LSQ::waitingForStaleTranslation
bool waitingForStaleTranslation
If the LSQ is currently waiting for stale translations.
Definition: lsq.hh:907
gem5::o3::LSQ::usedStorePorts
int usedStorePorts
The number of used cache ports in this cycle by stores.
Definition: lsq.hh:900
gem5::InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:40
gem5::o3::LSQ::LSQRequest::FlagsStorage
uint32_t FlagsStorage
Definition: lsq.hh:192
gem5::o3::LSQ::LSQRequest::handleLocalAccess
virtual Cycles handleLocalAccess(gem5::ThreadContext *thread, PacketPtr pkt)=0
Memory mapped IPR accesses.
gem5::o3::LSQ::SingleDataRequest::finish
virtual void finish(const Fault &fault, const RequestPtr &req, gem5::ThreadContext *tc, BaseMMU::Mode mode)
Definition: lsq.cc:871
gem5::o3::LSQ::LSQRequest::taskId
uint32_t taskId() const
Definition: lsq.hh:360
gem5::o3::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.cc:783
gem5::o3::LSQ::LSQRequest::numTranslatedFragments
uint32_t numTranslatedFragments
Definition: lsq.hh:238
gem5::o3::LSQ::LSQRequest::writebackDone
void writebackDone()
Definition: lsq.hh:540
gem5::o3::LSQ::DcachePort::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Timing version of receive.
Definition: lsq.cc:1412
gem5::RequestorID
uint16_t RequestorID
Definition: request.hh:95
gem5::o3::LSQ::LSQRequest::IsLoad
@ IsLoad
Definition: lsq.hh:197
gem5::o3::LSQ::getDataPort
RequestPort & getDataPort()
Definition: lsq.hh:892
gem5::o3::LSQ::read
Fault read(LSQRequest *request, ssize_t load_idx)
Executes a read operation, using the load specified at the load index.
Definition: lsq.cc:1526
gem5::o3::LSQ::LSQRequest::isLoad
bool isLoad() const
Definition: lsq.hh:272
gem5::o3::LSQ::LSQRequest::WritebackScheduled
@ WritebackScheduled
Store written back.
Definition: lsq.hh:220
gem5::o3::LSQ::takeOverFrom
void takeOverFrom()
Takes over execution from another CPU's thread.
Definition: lsq.cc:164
gem5::o3::LSQ::commitStores
void commitStores(InstSeqNum &youngest_inst, ThreadID tid)
Commits stores up until the given sequence number for a specific thread.
Definition: lsq.cc:259
gem5::MipsISA::vaddr
vaddr
Definition: pra_constants.hh:278
std::list< ThreadID >
gem5::AtomicOpFunctorPtr
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:242
gem5::o3::LSQ::UnsquashableDirectRequest
Definition: lsq.hh:597
gem5::o3::LSQ::LSQRequest::addReq
void addReq(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.cc:1105
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::o3::LSQ::LSQRequest::Flag
Flag
Definition: lsq.hh:195
gem5::o3::LSQ::lqFull
bool lqFull()
Returns if any of the LQs are full.
Definition: lsq.cc:635
gem5::o3::LSQ::LSQRequest::TranslationStarted
@ TranslationStarted
True if any translation has been sent to TLB.
Definition: lsq.hh:206
gem5::o3::LSQ::numHtmStops
int numHtmStops(ThreadID tid) const
Definition: lsq.cc:352
gem5::o3::LSQ::LSQRequest::setContext
void setContext(const ContextID &context_id)
Convenience getters/setters.
Definition: lsq.hh:329
gem5::o3::LSQ::LSQRequest::mainReq
virtual RequestPtr mainReq()
Definition: lsq.hh:378
gem5::o3::LSQ::LSQRequest::isComplete
bool isComplete()
Definition: lsq.hh:454
gem5::o3::LSQ::LSQRequest::sendFragmentToTranslation
void sendFragmentToTranslation(int i)
Definition: lsq.cc:1151
gem5::o3::LSQ::LSQRequest::_fault
std::vector< Fault > _fault
Definition: lsq.hh:252
gem5::o3::LSQ::executeLoad
Fault executeLoad(const DynInstPtr &inst)
Executes a load.
Definition: lsq.cc:237
gem5::o3::LSQ::LSQRequest::numInTranslationFragments
uint32_t numInTranslationFragments
Definition: lsq.hh:239
gem5::o3::LSQ::usedLoadPorts
int usedLoadPorts
The number of used cache ports in this cycle by loads.
Definition: lsq.hh:904
gem5::o3::LSQ::thread
std::vector< LSQUnit > thread
The LSQ units for individual threads.
Definition: lsq.hh:955
gem5::o3::LSQ::isFull
bool isFull()
Returns if the LSQ is full (either LQ or SQ is full).
Definition: lsq.cc:570
gem5::o3::LSQ::LSQRequest::isSplit
bool isSplit() const
Definition: lsq.hh:409
gem5::o3::LSQ::LSQRequest::_state
State _state
Definition: lsq.hh:235
gem5::o3::LSQ::SplitDataRequest::numReceivedPackets
uint32_t numReceivedPackets
Definition: lsq.hh:618
gem5::ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:235
gem5::o3::LSQ::SingleDataRequest
Definition: lsq.hh:569
gem5::o3::LSQ::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Handles writing back and completing the load or store that has returned from memory.
Definition: lsq.cc:403
gem5::o3::LSQ::LSQRequest::WriteBackToRegister
@ WriteBackToRegister
True if this request needs to writeBack to register.
Definition: lsq.hh:202
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition: misc_types.hh:74
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84
gem5::o3::LSQ::cacheLoadPorts
int cacheLoadPorts
The number of cache ports available each cycle (loads only).
Definition: lsq.hh:902
gem5::o3::LSQ::LSQRequest::freeLSQEntry
void freeLSQEntry()
The LSQ entry is cleared.
Definition: lsq.hh:509

Generated on Wed Jul 13 2022 10:39:16 for gem5 by doxygen 1.8.17