gem5  v20.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) 2013-2014, 2018 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
45 #ifndef __CPU_MINOR_NEW_LSQ_HH__
46 #define __CPU_MINOR_NEW_LSQ_HH__
47 
48 #include "cpu/minor/buffers.hh"
49 #include "cpu/minor/cpu.hh"
50 #include "cpu/minor/pipe_data.hh"
51 #include "cpu/minor/trace.hh"
52 
53 namespace Minor
54 {
55 
56 /* Forward declaration */
57 class Execute;
58 
59 class LSQ : public Named
60 {
61  protected:
65 
66  protected:
69  {
70  MemoryRunning, /* Default. Step dcache queues when possible. */
71  MemoryNeedsRetry /* Request rejected, will be asked to retry */
72  };
73 
75  friend std::ostream &operator <<(std::ostream &os,
77 
80  {
81  PartialAddrRangeCoverage, /* Two ranges partly overlap */
82  FullAddrRangeCoverage, /* One range fully covers another */
83  NoAddrRangeCoverage /* Two ranges are disjoint */
84  };
85 
88  {
89  protected:
91  LSQ &lsq;
92 
93  public:
94  DcachePort(std::string name, LSQ &lsq_, MinorCPU &cpu) :
95  MinorCPU::MinorCPUPort(name, cpu), lsq(lsq_)
96  { }
97 
98  protected:
99  bool recvTimingResp(PacketPtr pkt) override
100  { return lsq.recvTimingResp(pkt); }
101 
102  void recvReqRetry() override { lsq.recvReqRetry(); }
103 
104  bool isSnooping() const override { return true; }
105 
106  void recvTimingSnoopReq(PacketPtr pkt) override
107  { return lsq.recvTimingSnoopReq(pkt); }
108 
109  void recvFunctionalSnoop(PacketPtr pkt) override { }
110  };
111 
113 
114  public:
118  class LSQRequest :
119  public BaseTLB::Translation, /* For TLB lookups */
120  public Packet::SenderState /* For packing into a Packet */
121  {
122  public:
125 
128 
131  bool isLoad;
132 
136 
137  /* Requests carry packets on their way to the memory system.
138  * When a Packet returns from the memory system, its
139  * request needs to have its packet updated as this
140  * may have changed in flight */
142 
145 
147  uint64_t *res;
148 
152  bool skipped;
153 
157 
160 
162  {
163  NotIssued, /* Newly created */
164  InTranslation, /* TLB accessed, no reply yet */
165  Translated, /* Finished address translation */
166  Failed, /* The starting start of FailedDataRequests */
167  RequestIssuing, /* Load/store issued to memory in the requests
168  queue */
169  StoreToStoreBuffer, /* Store in transfers on its way to the
170  store buffer */
171  RequestNeedsRetry, /* Retry needed for load */
172  StoreInStoreBuffer, /* Store in the store buffer, before issuing
173  a memory transfer */
174  StoreBufferIssuing, /* Store in store buffer and has been
175  issued */
176  StoreBufferNeedsRetry, /* Retry needed for store */
177  /* All completed states. Includes
178  completed loads, TLB faults and skipped requests whose
179  seqNum's no longer match */
180  Complete
181  };
182 
184 
185  protected:
187  void markDelayed() { isTranslationDelayed = true; }
188 
191  void tryToSuppressFault();
192 
193  void disableMemAccess();
194  void completeDisabledMemAccess();
195 
196  public:
197  LSQRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_,
198  PacketDataPtr data_ = NULL, uint64_t *res_ = NULL);
199 
200  virtual ~LSQRequest();
201 
202  public:
204  void makePacket();
205 
207  bool skippedMemAccess() { return skipped; }
208 
211  void setSkipped() { skipped = true; }
212 
215  static AddrRangeCoverage containsAddrRangeOf(
216  Addr req1_addr, unsigned int req1_size,
217  Addr req2_addr, unsigned int req2_size);
218 
221  AddrRangeCoverage containsAddrRangeOf(LSQRequest *other_request);
222 
225  virtual void startAddrTranslation() = 0;
226 
231  virtual PacketPtr getHeadPacket() = 0;
232 
234  virtual void stepToNextPacket() = 0;
235 
237  virtual bool sentAllPackets() = 0;
238 
241  virtual bool hasPacketsInMemSystem() = 0;
242 
245  virtual void retireResponse(PacketPtr packet_) = 0;
246 
248  virtual bool isBarrier();
249 
252  bool needsToBeSentToStoreBuffer();
253 
255  void setState(LSQRequestState new_state);
256 
260  bool isComplete() const;
261 
263  void reportData(std::ostream &os) const;
264  };
265 
267 
268  friend std::ostream & operator <<(std::ostream &os,
270 
271  friend std::ostream & operator <<(std::ostream &os,
273 
274  protected:
277  {
278  protected:
280  void finish(const Fault &fault_, const RequestPtr &request_,
282  { }
283 
284  public:
287 
290  { fatal("No packets in a SpecialDataRequest"); }
291 
293  void stepToNextPacket() { }
294 
296  bool sentAllPackets() { return true; }
297 
299  bool hasPacketsInMemSystem() { return false; }
300 
303  void retireResponse(PacketPtr packet_) { }
304 
305  public:
307  /* Say this is a load, not actually relevant */
308  LSQRequest(port_, inst_, true, NULL, 0)
309  { }
310  };
311 
316  {
317  public:
319  SpecialDataRequest(port_, inst_)
320  { state = Failed; }
321  };
322 
326  {
327  public:
328  bool isBarrier() { return true; }
329 
330  public:
332  SpecialDataRequest(port_, inst_)
333  { state = Complete; }
334  };
335 
338  {
339  protected:
341  void finish(const Fault &fault_, const RequestPtr &request_,
343 
347 
350 
351  public:
353  void startAddrTranslation();
354 
356  PacketPtr getHeadPacket() { return packet; }
357 
359  void stepToNextPacket() { packetInFlight = true; packetSent = true; }
360 
362  bool hasPacketsInMemSystem() { return packetInFlight; }
363 
366  bool sentAllPackets() { return packetSent; }
367 
370  void retireResponse(PacketPtr packet_);
371 
372  public:
374  bool isLoad_, PacketDataPtr data_ = NULL, uint64_t *res_ = NULL) :
375  LSQRequest(port_, inst_, isLoad_, data_, res_),
376  packetInFlight(false),
377  packetSent(false)
378  { }
379  };
380 
382  {
383  protected:
386  protected:
388  unsigned int numFragments;
389 
392 
398 
400  unsigned int numIssuedFragments;
401 
403  unsigned int numRetiredFragments;
404 
408 
411 
412  protected:
414  void finish(const Fault &fault_, const RequestPtr &request_,
416 
417  public:
418  SplitDataRequest(LSQ &port_, MinorDynInstPtr inst_,
419  bool isLoad_, PacketDataPtr data_ = NULL,
420  uint64_t *res_ = NULL);
421 
422  ~SplitDataRequest();
423 
424  public:
427  void makeFragmentRequests();
428 
431  void makeFragmentPackets();
432 
437  void startAddrTranslation();
438 
440  PacketPtr getHeadPacket();
441 
443  void stepToNextPacket();
444 
446  { return numIssuedFragments != numRetiredFragments; }
447 
450  { return numIssuedFragments == numTranslatedFragments; }
451 
454  void retireResponse(PacketPtr packet_);
455 
457  void sendNextFragmentToTranslation();
458  };
459 
463  class StoreBuffer : public Named
464  {
465  public:
468 
470  const unsigned int numSlots;
471 
473  const unsigned int storeLimitPerCycle;
474 
475  public:
478 
481  unsigned int numUnissuedAccesses;
482 
483  public:
484  StoreBuffer(std::string name_, LSQ &lsq_,
485  unsigned int store_buffer_size,
486  unsigned int store_limit_per_cycle);
487 
488  public:
490  bool canInsert() const;
491 
493  void deleteRequest(LSQRequestPtr request);
494 
496  void insert(LSQRequestPtr request);
497 
503  AddrRangeCoverage canForwardDataToLoad(LSQRequestPtr request,
504  unsigned int &found_slot);
505 
508  void forwardStoreData(LSQRequestPtr load, unsigned int slot_number);
509 
512  unsigned int numUnissuedStores() { return numUnissuedAccesses; }
513 
517  void countIssuedStore(LSQRequestPtr request);
518 
520  bool isDrained() const { return slots.empty(); }
521 
523  void step();
524 
526  void minorTrace() const;
527  };
528 
529  protected:
534 
535  public:
538 
540  const unsigned int inMemorySystemLimit;
541 
543  const unsigned int lineWidth;
544 
545  public:
549  typedef Queue<LSQRequestPtr,
553 
567 
576 
577  /* The store buffer contains committed cacheable stores on
578  * their way to memory decoupled from subsequence instruction execution.
579  * Before trying to issue a cacheable read from 'requests' to memory,
580  * the store buffer is checked to see if a previous store contains the
581  * needed data (StoreBuffer::canForwardDataToLoad) which can be
582  * forwarded in lieu of a memory access. If there are outstanding
583  * stores in the transfers queue, they must be promoted to the store
584  * buffer (and so be commited) before they can be correctly checked
585  * for forwarding. */
587 
588  protected:
596 
598  unsigned int numAccessesInDTLB;
599 
602  unsigned int numStoresInTransfers;
603 
608 
611  LSQRequestPtr retryRequest;
612 
615 
616  protected:
620  void tryToSendToTransfers(LSQRequestPtr request);
621 
625  bool tryToSend(LSQRequestPtr request);
626 
628  void clearMemBarrier(MinorDynInstPtr inst);
629 
631  void moveFromRequestsToTransfers(LSQRequestPtr request);
632 
634  bool canSendToMemorySystem();
635 
637  void threadSnoop(LSQRequestPtr request);
638 
639  public:
640  LSQ(std::string name_, std::string dcache_port_name_,
641  MinorCPU &cpu_, Execute &execute_,
642  unsigned int max_accesses_in_memory_system, unsigned int line_width,
643  unsigned int requests_queue_size, unsigned int transfers_queue_size,
644  unsigned int store_buffer_size,
645  unsigned int store_buffer_cycle_store_limit);
646 
647  virtual ~LSQ();
648 
649  public:
657  void step();
658 
661  bool canRequest() { return requests.unreservedRemainingSpace() != 0; }
662 
667  LSQRequestPtr findResponse(MinorDynInstPtr inst);
668 
670  void popResponse(LSQRequestPtr response);
671 
673  bool canPushIntoStoreBuffer() const { return storeBuffer.canInsert(); }
674 
676  void sendStoreToStoreBuffer(LSQRequestPtr request);
677 
681  bool accessesInFlight() const
682  { return numAccessesIssuedToMemory != 0; }
683 
688 
691  { return lastMemBarrier[thread_id]; }
692 
694  bool isDrained();
695 
698  bool needsToTick();
699 
703  bool committed);
704 
707  Fault pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data,
708  unsigned int size, Addr addr, Request::Flags flags,
709  uint64_t *res, AtomicOpFunctorPtr amo_op,
710  const std::vector<bool>& byte_enable =
712 
716 
718  bool recvTimingResp(PacketPtr pkt);
719  void recvReqRetry();
720  void recvTimingSnoopReq(PacketPtr pkt);
721 
724 
725  void minorTrace() const;
726 };
727 
731 PacketPtr makePacketForRequest(const RequestPtr &request, bool isLoad,
732  Packet::SenderState *sender_state = NULL, PacketDataPtr data = NULL);
733 }
734 
735 #endif /* __CPU_MINOR_NEW_LSQ_HH__ */
MemoryState
State of memory access for head access.
Definition: lsq.hh:68
SpecialDataRequest(LSQ &port_, MinorDynInstPtr inst_)
Definition: lsq.hh:306
DcachePort dcachePort
Definition: lsq.hh:112
MinorDynInstPtr inst
Instruction which made this request.
Definition: lsq.hh:127
void stepToNextPacket()
Remember that the packet has been sent.
Definition: lsq.hh:359
SingleDataRequest is used for requests that don&#39;t fragment.
Definition: lsq.hh:337
const unsigned int numSlots
Number of slots, this is a bound on the size of slots.
Definition: lsq.hh:470
unsigned int numAccessesIssuedToMemory
The number of accesses which have been issued to the memory system but have not been committed/discar...
Definition: lsq.hh:607
Execute stage.
Definition: execute.hh:60
LSQQueue transfers
Once issued to memory (or, for stores, just had their state changed to StoreToStoreBuffer) LSQRequest...
Definition: lsq.hh:575
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:171
PacketDataPtr data
Dynamically allocated and populated data carried for building write packets.
Definition: lsq.hh:135
Contains class definitions for data flowing between pipeline stages in the top-level structure portio...
EventFunctionWrapper translationEvent
Event to step between translations.
Definition: lsq.hh:385
LSQQueue requests
requests contains LSQRequests which have been issued to the TLB by calling ExecContext::readMem/write...
Definition: lsq.hh:566
friend std::ostream & operator<<(std::ostream &os, MemoryState state)
Print MemoryState values as shown in the enum definition.
Definition: lsq.cc:1730
bool isTranslationDelayed
Address translation is delayed due to table walk.
Definition: lsq.hh:159
std::vector< Packet * > fragmentPackets
Packets matching fragmentRequests to issue fragments to memory.
Definition: lsq.hh:410
void minorTrace() const
Definition: lsq.cc:1658
unsigned int numIssuedFragments
Number of fragments already issued (<= numFragments)
Definition: lsq.hh:400
void popResponse(LSQRequestPtr response)
Sanity check and pop the head response.
Definition: lsq.cc:1514
void issuedMemBarrierInst(MinorDynInstPtr inst)
A memory barrier instruction has been issued, remember its execSeqNum that we can avoid issuing memor...
Definition: lsq.cc:1702
unsigned int numUnissuedAccesses
Number of occupied slots which have not yet issued a memory access.
Definition: lsq.hh:481
void pushFailedRequest(MinorDynInstPtr inst)
Push a predicate failed-representing request into the queues just to maintain commit order...
Definition: lsq.cc:1651
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
std::deque< LSQRequestPtr > slots
Queue of store requests on their way to memory.
Definition: lsq.hh:477
std::vector< RequestPtr > fragmentRequests
Fragment Requests corresponding to the address ranges of each fragment.
Definition: lsq.hh:407
unsigned int numStoresInTransfers
The number of stores in the transfers queue.
Definition: lsq.hh:602
uint8_t * PacketDataPtr
Definition: packet.hh:66
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
Definition: buffers.hh:486
const unsigned int storeLimitPerCycle
Maximum number of stores that can be issued per cycle.
Definition: lsq.hh:473
ip6_addr_t addr
Definition: inet.hh:330
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:228
void stepToNextPacket()
Step on numIssuedFragments.
Definition: lsq.hh:293
SingleDataRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_, PacketDataPtr data_=NULL, uint64_t *res_=NULL)
Definition: lsq.hh:373
Exposable data port.
Definition: lsq.hh:87
Special request types that don&#39;t actually issue memory requests.
Definition: lsq.hh:276
void retireResponse(PacketPtr packet_)
Keep the given packet as the response packet LSQRequest::packet.
Definition: lsq.hh:303
unsigned int numFragments
Number of fragments this request is split into.
Definition: lsq.hh:388
MinorCPUPort(const std::string &name_, MinorCPU &cpu_)
Definition: cpu.hh:105
Minor contains all the definitions within the MinorCPU apart from the CPU class itself.
Definition: activity.cc:44
bool canInsert() const
Can a new request be inserted into the queue?
Definition: lsq.cc:723
void startAddrTranslation()
Send single translation request.
Definition: lsq.hh:286
Bitfield< 4, 0 > mode
unsigned int numAccessesInMemorySystem
Count of the number of mem.
Definition: lsq.hh:595
LSQRequestPtr findResponse(MinorDynInstPtr inst)
Returns a response if it&#39;s at the head of the transfers queue and it&#39;s either complete or can be sent...
Definition: lsq.cc:1479
BarrierDataRequest(LSQ &port_, MinorDynInstPtr inst_)
Definition: lsq.hh:331
Wrapper for a queue type to act as a pipeline stage input queue.
Definition: buffers.hh:397
bool isBarrier()
Is this a request a barrier?
Definition: lsq.hh:328
ThreadContext is the external interface to all thread state for anything outside of the CPU...
This file contains miscellaneous classes and functions for formatting general trace information and a...
FailedDataRequest(LSQ &port_, MinorDynInstPtr inst_)
Definition: lsq.hh:318
Bitfield< 17 > os
Definition: misc.hh:803
bool sentAllPackets()
packetInFlight can become false again, so need to check packetSent
Definition: lsq.hh:366
Derived SenderState to carry data access info.
Definition: lsq.hh:118
LSQRequestState state
Definition: lsq.hh:183
bool isSnooping() const override
Determine if this master port is snooping or not.
Definition: lsq.hh:104
Provide a non-protected base class for Minor&#39;s Ports as derived classes are created by Fetch1 and Exe...
Definition: cpu.hh:98
std::vector< InstSeqNum > lastMemBarrier
Most recent execSeqNum of a memory barrier instruction or 0 if there are no in-flight barriers...
Definition: lsq.hh:533
Definition: trace.hh:147
bool canRequest()
Is their space in the request queue to be able to push a request by issuing an isMemRef instruction...
Definition: lsq.hh:661
Request for doing barrier accounting in the store buffer.
Definition: lsq.hh:325
void completeMemBarrierInst(MinorDynInstPtr inst, bool committed)
Complete a barrier instruction.
Definition: lsq.cc:916
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
Definition: buffers.hh:101
MemoryState state
Retry state of last issued memory transfer.
Definition: lsq.hh:537
bool skippedMemAccess()
Was no memory access attempted for this request?
Definition: lsq.hh:207
unsigned int numRetiredFragments
Number of fragments retired back to this request.
Definition: lsq.hh:403
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
Definition: lsq.hh:356
StoreBuffer storeBuffer
Definition: lsq.hh:586
PacketPtr makePacketForRequest(const RequestPtr &request, bool isLoad, Packet::SenderState *sender_state, PacketDataPtr data)
Make a suitable packet for the given request.
Definition: lsq.cc:1681
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
Definition: lsq.hh:289
bool issuedToMemory
This in an access other than a normal cacheable load that&#39;s visited the memory system.
Definition: lsq.hh:156
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseTLB::Mode mode)
TLB interace.
Definition: lsq.hh:280
Fault pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data, unsigned int size, Addr addr, Request::Flags flags, uint64_t *res, AtomicOpFunctorPtr amo_op, const std::vector< bool > &byte_enable=std::vector< bool >())
Single interface for readMem/writeMem/amoMem to issue requests into the LSQ.
Definition: lsq.cc:1576
bool tryToSend(LSQRequestPtr request)
Try to send (or resend) a memory request&#39;s next/only packet to the memory system. ...
Definition: lsq.cc:1167
bool isLoad
Load/store indication used for building packet.
Definition: lsq.hh:131
bool hasPacketsInMemSystem()
Has packet been sent.
Definition: lsq.hh:362
LSQ & lsq
My owner.
Definition: lsq.hh:91
MinorCPU::MinorCPUPort & getDcachePort()
Return the raw-bindable port.
Definition: lsq.hh:723
bool canSendToMemorySystem()
Can a request be sent to the memory system.
Definition: lsq.cc:1282
bool canPushIntoStoreBuffer() const
Must check this before trying to insert into the store buffer.
Definition: lsq.hh:673
uint64_t InstSeqNum
Definition: inst_seq.hh:37
FailedDataRequest represents requests from instructions that failed their predicates but need to ride...
Definition: lsq.hh:315
LSQRequest * LSQRequestPtr
Definition: lsq.hh:266
bool packetSent
Has the packet been at least sent to the memory system?
Definition: lsq.hh:349
unsigned int numInTranslationFragments
Number of fragments in the address translation mechanism.
Definition: lsq.hh:391
Classes for buffer, queue and FIFO behaviour.
void clearMemBarrier(MinorDynInstPtr inst)
Clear a barrier (if it&#39;s the last one marked up in lastMemBarrier)
Definition: lsq.cc:255
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
MinorCPU & cpu
My owner(s)
Definition: lsq.hh:63
bool sentAllPackets()
Have we stepped past the end of fragmentPackets?
Definition: lsq.hh:449
bool isDrained()
Is there nothing left in the LSQ.
Definition: lsq.cc:1549
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
unsigned int numUnissuedStores()
Number of stores in the store buffer which have not been completely issued to the memory system...
Definition: lsq.hh:512
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: lsq.hh:99
void tryToSendToTransfers(LSQRequestPtr request)
Try and issue a memory access for a translated request at the head of the requests queue...
Definition: lsq.cc:962
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a SimObject that sees the packet.
Definition: packet.hh:397
AddrRangeCoverage
Coverage of one address range with another.
Definition: lsq.hh:79
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: lsq.hh:102
void markDelayed()
BaseTLB::Translation interface.
Definition: lsq.hh:187
void step()
Step checks the queues to see if their are issuable transfers which were not otherwise picked up by t...
Definition: lsq.cc:1468
unsigned int numAccessesInDTLB
Number of requests in the DTLB in the requests queue.
Definition: lsq.hh:598
Mode
Definition: tlb.hh:57
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
void sendStoreToStoreBuffer(LSQRequestPtr request)
A store has been committed, please move it to the store buffer.
Definition: lsq.cc:1536
LSQRequestPtr retryRequest
The request (from either requests or the store buffer) which is currently waiting have its memory acc...
Definition: lsq.hh:611
bool recvTimingResp(PacketPtr pkt)
Memory interface.
Definition: lsq.cc:1289
uint64_t * res
Res from pushRequest.
Definition: lsq.hh:147
DcachePort(std::string name, LSQ &lsq_, MinorCPU &cpu)
Definition: lsq.hh:94
virtual ~LSQ()
Definition: lsq.cc:1450
bool skipped
Was skipped.
Definition: lsq.hh:152
LSQ & port
Owning port.
Definition: lsq.hh:124
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Definition: lsq.hh:106
bool hasPacketsInMemSystem()
True if this request has any issued packets in the memory system and so can&#39;t be interrupted until it...
Definition: lsq.hh:445
Top level definition of the Minor in-order CPU model.
Addr cacheBlockMask
Address Mask for a cache block (e.g.
Definition: lsq.hh:614
PacketPtr packet
Definition: lsq.hh:141
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
bool hasPacketsInMemSystem()
Never sends any requests.
Definition: lsq.hh:299
bool isDrained() const
Drained if there is absolutely nothing left in the buffer.
Definition: lsq.hh:520
LSQ(std::string name_, std::string dcache_port_name_, MinorCPU &cpu_, Execute &execute_, unsigned int max_accesses_in_memory_system, unsigned int line_width, unsigned int requests_queue_size, unsigned int transfers_queue_size, unsigned int store_buffer_size, unsigned int store_buffer_cycle_store_limit)
Definition: lsq.cc:1395
Store buffer.
Definition: lsq.hh:463
void recvReqRetry()
Definition: lsq.cc:1349
bool packetInFlight
Has my only packet been sent to the memory system but has not yet been responded to.
Definition: lsq.hh:346
LSQ & lsq
My owner.
Definition: lsq.hh:467
const unsigned int inMemorySystemLimit
Maximum number of in-flight accesses issued to the memory system.
Definition: lsq.hh:540
InstSeqNum getLastMemBarrier(ThreadID thread_id) const
Get the execSeqNum of the last issued memory barrier.
Definition: lsq.hh:690
const unsigned int lineWidth
Memory system access width (and snap) in bytes.
Definition: lsq.hh:543
MinorCPU is an in-order CPU model with four fixed pipeline stages:
Definition: cpu.hh:77
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: lsq.hh:109
RequestPtr request
The underlying request of this LSQRequest.
Definition: lsq.hh:144
void threadSnoop(LSQRequestPtr request)
Snoop other threads monitors on memory system accesses.
Definition: lsq.cc:1767
void setSkipped()
Set this request as having been skipped before a memory transfer was attempt.
Definition: lsq.hh:211
const char data[]
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
bool accessesInFlight() const
Are there any accesses other than normal cached loads in the memory system or having received respons...
Definition: lsq.hh:681
Queue< LSQRequestPtr, ReportTraitsPtrAdaptor< LSQRequestPtr >, NoBubbleTraits< LSQRequestPtr > > LSQQueue
The LSQ consists of three queues: requests, transfers and the store buffer storeBuffer.
Definition: lsq.hh:552
void recvTimingSnoopReq(PacketPtr pkt)
Definition: lsq.cc:1747
Execute & execute
Definition: lsq.hh:64
bool sentAllPackets()
Has no packets to send.
Definition: lsq.hh:296
void moveFromRequestsToTransfers(LSQRequestPtr request)
Move a request between queues.
Definition: lsq.cc:1265
bool needsToTick()
May need to be ticked next cycle as one of the queues contains an actionable transfers or address tra...
Definition: lsq.cc:1556
unsigned int numTranslatedFragments
Number of fragments that have completed address translation, (numTranslatedFragments + numInTranslati...
Definition: lsq.hh:397

Generated on Thu May 28 2020 16:21:30 for gem5 by doxygen 1.8.13