gem5  v21.0.1.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 <string>
49 #include <vector>
50 
51 #include "cpu/minor/buffers.hh"
52 #include "cpu/minor/cpu.hh"
53 #include "cpu/minor/pipe_data.hh"
54 #include "cpu/minor/trace.hh"
55 #include "mem/packet.hh"
56 
57 namespace Minor
58 {
59 
60 /* Forward declaration */
61 class Execute;
62 
63 class LSQ : public Named
64 {
65  protected:
69 
70  protected:
73  {
74  MemoryRunning, /* Default. Step dcache queues when possible. */
75  MemoryNeedsRetry /* Request rejected, will be asked to retry */
76  };
77 
79  friend std::ostream &operator <<(std::ostream &os,
81 
84  {
85  PartialAddrRangeCoverage, /* Two ranges partly overlap */
86  FullAddrRangeCoverage, /* One range fully covers another */
87  NoAddrRangeCoverage /* Two ranges are disjoint */
88  };
89 
92  {
93  protected:
95  LSQ &lsq;
96 
97  public:
98  DcachePort(std::string name, LSQ &lsq_, MinorCPU &cpu) :
99  MinorCPU::MinorCPUPort(name, cpu), lsq(lsq_)
100  { }
101 
102  protected:
103  bool recvTimingResp(PacketPtr pkt) override
104  { return lsq.recvTimingResp(pkt); }
105 
106  void recvReqRetry() override { lsq.recvReqRetry(); }
107 
108  bool isSnooping() const override { return true; }
109 
110  void recvTimingSnoopReq(PacketPtr pkt) override
111  { return lsq.recvTimingSnoopReq(pkt); }
112 
113  void recvFunctionalSnoop(PacketPtr pkt) override { }
114  };
115 
117 
118  public:
122  class LSQRequest :
123  public BaseTLB::Translation, /* For TLB lookups */
124  public Packet::SenderState /* For packing into a Packet */
125  {
126  public:
129 
132 
135  bool isLoad;
136 
140 
141  /* Requests carry packets on their way to the memory system.
142  * When a Packet returns from the memory system, its
143  * request needs to have its packet updated as this
144  * may have changed in flight */
146 
149 
151  uint64_t *res;
152 
156  bool skipped;
157 
161 
164 
166  {
167  NotIssued, /* Newly created */
168  InTranslation, /* TLB accessed, no reply yet */
169  Translated, /* Finished address translation */
170  Failed, /* The starting start of FailedDataRequests */
171  RequestIssuing, /* Load/store issued to memory in the requests
172  queue */
173  StoreToStoreBuffer, /* Store in transfers on its way to the
174  store buffer */
175  RequestNeedsRetry, /* Retry needed for load */
176  StoreInStoreBuffer, /* Store in the store buffer, before issuing
177  a memory transfer */
178  StoreBufferIssuing, /* Store in store buffer and has been
179  issued */
180  StoreBufferNeedsRetry, /* Retry needed for store */
181  /* All completed states. Includes
182  completed loads, TLB faults and skipped requests whose
183  seqNum's no longer match */
185  };
186 
188 
189  protected:
192 
195  void tryToSuppressFault();
196 
197  void disableMemAccess();
199 
200  public:
201  LSQRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_,
202  PacketDataPtr data_ = NULL, uint64_t *res_ = NULL);
203 
204  virtual ~LSQRequest();
205 
206  public:
208  void makePacket();
209 
211  bool skippedMemAccess() { return skipped; }
212 
215  void setSkipped() { skipped = true; }
216 
220  Addr req1_addr, unsigned int req1_size,
221  Addr req2_addr, unsigned int req2_size);
222 
226 
229  virtual void startAddrTranslation() = 0;
230 
235  virtual PacketPtr getHeadPacket() = 0;
236 
238  virtual void stepToNextPacket() = 0;
239 
241  virtual bool sentAllPackets() = 0;
242 
245  virtual bool hasPacketsInMemSystem() = 0;
246 
249  virtual void retireResponse(PacketPtr packet_) = 0;
250 
252  virtual bool isBarrier();
253 
257 
259  void setState(LSQRequestState new_state);
260 
264  bool isComplete() const;
265 
267  void reportData(std::ostream &os) const;
268  };
269 
271 
272  friend std::ostream & operator <<(std::ostream &os,
274 
275  friend std::ostream & operator <<(std::ostream &os,
277 
278  protected:
281  {
282  protected:
284  void finish(const Fault &fault_, const RequestPtr &request_,
286  { }
287 
288  public:
291 
294  { fatal("No packets in a SpecialDataRequest"); }
295 
297  void stepToNextPacket() { }
298 
300  bool sentAllPackets() { return true; }
301 
303  bool hasPacketsInMemSystem() { return false; }
304 
307  void retireResponse(PacketPtr packet_) { }
308 
309  public:
311  /* Say this is a load, not actually relevant */
312  LSQRequest(port_, inst_, true, NULL, 0)
313  { }
314  };
315 
320  {
321  public:
323  SpecialDataRequest(port_, inst_)
324  { state = Failed; }
325  };
326 
330  {
331  public:
332  bool isBarrier() { return true; }
333 
334  public:
336  SpecialDataRequest(port_, inst_)
337  { state = Complete; }
338  };
339 
342  {
343  protected:
345  void finish(const Fault &fault_, const RequestPtr &request_,
347 
351 
354 
355  public:
357  void startAddrTranslation();
358 
361 
363  void stepToNextPacket() { packetInFlight = true; packetSent = true; }
364 
367 
370  bool sentAllPackets() { return packetSent; }
371 
374  void retireResponse(PacketPtr packet_);
375 
376  public:
378  bool isLoad_, PacketDataPtr data_ = NULL, uint64_t *res_ = NULL) :
379  LSQRequest(port_, inst_, isLoad_, data_, res_),
380  packetInFlight(false),
381  packetSent(false)
382  { }
383  };
384 
386  {
387  protected:
390  protected:
392  unsigned int numFragments;
393 
396 
402 
404  unsigned int numIssuedFragments;
405 
407  unsigned int numRetiredFragments;
408 
412 
415 
416  protected:
418  void finish(const Fault &fault_, const RequestPtr &request_,
420 
421  public:
422  SplitDataRequest(LSQ &port_, MinorDynInstPtr inst_,
423  bool isLoad_, PacketDataPtr data_ = NULL,
424  uint64_t *res_ = NULL);
425 
427 
428  public:
431  void makeFragmentRequests();
432 
435  void makeFragmentPackets();
436 
441  void startAddrTranslation();
442 
445 
447  void stepToNextPacket();
448 
451 
455 
458  void retireResponse(PacketPtr packet_);
459 
462  };
463 
467  class StoreBuffer : public Named
468  {
469  public:
472 
474  const unsigned int numSlots;
475 
477  const unsigned int storeLimitPerCycle;
478 
479  public:
482 
485  unsigned int numUnissuedAccesses;
486 
487  public:
488  StoreBuffer(std::string name_, LSQ &lsq_,
489  unsigned int store_buffer_size,
490  unsigned int store_limit_per_cycle);
491 
492  public:
494  bool canInsert() const;
495 
497  void deleteRequest(LSQRequestPtr request);
498 
500  void insert(LSQRequestPtr request);
501 
508  unsigned int &found_slot);
509 
512  void forwardStoreData(LSQRequestPtr load, unsigned int slot_number);
513 
516  unsigned int numUnissuedStores() { return numUnissuedAccesses; }
517 
521  void countIssuedStore(LSQRequestPtr request);
522 
524  bool isDrained() const { return slots.empty(); }
525 
527  void step();
528 
530  void minorTrace() const;
531  };
532 
533  protected:
538 
539  public:
542 
544  const unsigned int inMemorySystemLimit;
545 
547  const unsigned int lineWidth;
548 
549  public:
553  typedef Queue<LSQRequestPtr,
557 
571 
580 
581  /* The store buffer contains committed cacheable stores on
582  * their way to memory decoupled from subsequence instruction execution.
583  * Before trying to issue a cacheable read from 'requests' to memory,
584  * the store buffer is checked to see if a previous store contains the
585  * needed data (StoreBuffer::canForwardDataToLoad) which can be
586  * forwarded in lieu of a memory access. If there are outstanding
587  * stores in the transfers queue, they must be promoted to the store
588  * buffer (and so be commited) before they can be correctly checked
589  * for forwarding. */
591 
592  protected:
600 
602  unsigned int numAccessesInDTLB;
603 
606  unsigned int numStoresInTransfers;
607 
612 
616 
619 
620  protected:
624  void tryToSendToTransfers(LSQRequestPtr request);
625 
629  bool tryToSend(LSQRequestPtr request);
630 
632  void clearMemBarrier(MinorDynInstPtr inst);
633 
636 
638  bool canSendToMemorySystem();
639 
641  void threadSnoop(LSQRequestPtr request);
642 
643  public:
644  LSQ(std::string name_, std::string dcache_port_name_,
645  MinorCPU &cpu_, Execute &execute_,
646  unsigned int max_accesses_in_memory_system, unsigned int line_width,
647  unsigned int requests_queue_size, unsigned int transfers_queue_size,
648  unsigned int store_buffer_size,
649  unsigned int store_buffer_cycle_store_limit);
650 
651  virtual ~LSQ();
652 
653  public:
661  void step();
662 
665  bool canRequest() { return requests.unreservedRemainingSpace() != 0; }
666 
672 
674  void popResponse(LSQRequestPtr response);
675 
677  bool canPushIntoStoreBuffer() const { return storeBuffer.canInsert(); }
678 
681 
685  bool accessesInFlight() const
686  { return numAccessesIssuedToMemory != 0; }
687 
692 
695  { return lastMemBarrier[thread_id]; }
696 
698  bool isDrained();
699 
702  bool needsToTick();
703 
707  bool committed);
708 
711  Fault pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data,
712  unsigned int size, Addr addr, Request::Flags flags,
713  uint64_t *res, AtomicOpFunctorPtr amo_op,
714  const std::vector<bool>& byte_enable =
716 
720 
722  bool recvTimingResp(PacketPtr pkt);
723  void recvReqRetry();
724  void recvTimingSnoopReq(PacketPtr pkt);
725 
728 
729  void minorTrace() const;
730 };
731 
735 PacketPtr makePacketForRequest(const RequestPtr &request, bool isLoad,
736  Packet::SenderState *sender_state = NULL, PacketDataPtr data = NULL);
737 }
738 
739 #endif /* __CPU_MINOR_NEW_LSQ_HH__ */
pipe_data.hh
Minor::LSQ::BarrierDataRequest::BarrierDataRequest
BarrierDataRequest(LSQ &port_, MinorDynInstPtr inst_)
Definition: lsq.hh:335
Minor::LSQ::getDcachePort
MinorCPU::MinorCPUPort & getDcachePort()
Return the raw-bindable port.
Definition: lsq.hh:727
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Minor::LSQ::LSQRequest::LSQRequestState
LSQRequestState
Definition: lsq.hh:165
AtomicOpFunctorPtr
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:239
Minor::LSQ::SingleDataRequest::retireResponse
void retireResponse(PacketPtr packet_)
Keep the given packet as the response packet LSQRequest::packet.
Definition: lsq.cc:322
Minor::LSQ::SplitDataRequest::SplitDataRequest
SplitDataRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_, PacketDataPtr data_=NULL, uint64_t *res_=NULL)
Definition: lsq.cc:389
Minor::LSQ::SpecialDataRequest::finish
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseTLB::Mode mode)
TLB interace.
Definition: lsq.hh:284
Minor::LSQ::popResponse
void popResponse(LSQRequestPtr response)
Sanity check and pop the head response.
Definition: lsq.cc:1518
Minor::LSQ::LSQRequest::RequestNeedsRetry
@ RequestNeedsRetry
Definition: lsq.hh:175
Minor::LSQ::SplitDataRequest::fragmentRequests
std::vector< RequestPtr > fragmentRequests
Fragment Requests corresponding to the address ranges of each fragment.
Definition: lsq.hh:411
Minor::LSQ::requests
LSQQueue requests
requests contains LSQRequests which have been issued to the TLB by calling ExecContext::readMem/write...
Definition: lsq.hh:570
Minor::LSQ::operator<<
friend std::ostream & operator<<(std::ostream &os, MemoryState state)
Print MemoryState values as shown in the enum definition.
Definition: lsq.cc:1734
X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
Minor::LSQ::DcachePort
Exposable data port.
Definition: lsq.hh:91
Minor::LSQ::LSQRequest::RequestIssuing
@ RequestIssuing
Definition: lsq.hh:171
Minor::LSQ::SingleDataRequest::packetInFlight
bool packetInFlight
Has my only packet been sent to the memory system but has not yet been responded to.
Definition: lsq.hh:350
MinorCPU::MinorCPUPort::cpu
MinorCPU & cpu
The enclosing cpu.
Definition: cpu.hh:102
Minor::LSQ::LSQRequest::StoreBufferNeedsRetry
@ StoreBufferNeedsRetry
Definition: lsq.hh:180
Minor::LSQ::SplitDataRequest::numTranslatedFragments
unsigned int numTranslatedFragments
Number of fragments that have completed address translation, (numTranslatedFragments + numInTranslati...
Definition: lsq.hh:401
Minor::LSQ::numAccessesIssuedToMemory
unsigned int numAccessesIssuedToMemory
The number of accesses which have been issued to the memory system but have not been committed/discar...
Definition: lsq.hh:611
data
const char data[]
Definition: circlebuf.test.cc:47
Minor::LSQ::LSQRequest::res
uint64_t * res
Res from pushRequest.
Definition: lsq.hh:151
Minor::LSQ::MemoryNeedsRetry
@ MemoryNeedsRetry
Definition: lsq.hh:75
Minor::LSQ::recvReqRetry
void recvReqRetry()
Definition: lsq.cc:1353
Minor::LSQ::pushFailedRequest
void pushFailedRequest(MinorDynInstPtr inst)
Push a predicate failed-representing request into the queues just to maintain commit order.
Definition: lsq.cc:1655
Minor::LSQ::tryToSendToTransfers
void tryToSendToTransfers(LSQRequestPtr request)
Try and issue a memory access for a translated request at the head of the requests queue.
Definition: lsq.cc:956
Minor::LSQ::LSQRequest::Failed
@ Failed
Definition: lsq.hh:170
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
Minor::LSQ::LSQRequest::LSQRequest
LSQRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_, PacketDataPtr data_=NULL, uint64_t *res_=NULL)
Definition: lsq.cc:56
Minor::LSQ::LSQRequest::skippedMemAccess
bool skippedMemAccess()
Was no memory access attempted for this request?
Definition: lsq.hh:211
Flags< FlagsType >
Minor::LSQ::transfers
LSQQueue transfers
Once issued to memory (or, for stores, just had their state changed to StoreToStoreBuffer) LSQRequest...
Definition: lsq.hh:579
Minor::LSQ::SplitDataRequest::finish
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseTLB::Mode mode)
TLB response interface.
Definition: lsq.cc:331
Minor::LSQ::LSQRequest::reportData
void reportData(std::ostream &os) const
MinorTrace report interface.
Definition: lsq.cc:183
Minor::LSQ::numAccessesInDTLB
unsigned int numAccessesInDTLB
Number of requests in the DTLB in the requests queue.
Definition: lsq.hh:602
Minor::LSQ::SplitDataRequest::retireResponse
void retireResponse(PacketPtr packet_)
For loads, paste the response data into the main response packet.
Definition: lsq.cc:621
Minor::LSQ::numAccessesInMemorySystem
unsigned int numAccessesInMemorySystem
Count of the number of mem.
Definition: lsq.hh:599
BaseTLB::Mode
Mode
Definition: tlb.hh:57
Minor::LSQ::FailedDataRequest::FailedDataRequest
FailedDataRequest(LSQ &port_, MinorDynInstPtr inst_)
Definition: lsq.hh:322
Minor::makePacketForRequest
PacketPtr makePacketForRequest(const RequestPtr &request, bool isLoad, Packet::SenderState *sender_state, PacketDataPtr data)
Make a suitable packet for the given request.
Definition: lsq.cc:1685
cpu.hh
Minor::LSQ::LSQRequest::completeDisabledMemAccess
void completeDisabledMemAccess()
Definition: lsq.cc:94
Minor::LSQ::LSQRequest::makePacket
void makePacket()
Make a packet to use with the memory transaction.
Definition: lsq.cc:1718
Minor::LSQ::FullAddrRangeCoverage
@ FullAddrRangeCoverage
Definition: lsq.hh:86
Minor::LSQ::accessesInFlight
bool accessesInFlight() const
Are there any accesses other than normal cached loads in the memory system or having received respons...
Definition: lsq.hh:685
PacketDataPtr
uint8_t * PacketDataPtr
Definition: packet.hh:68
Minor::LSQ::LSQRequest::isLoad
bool isLoad
Load/store indication used for building packet.
Definition: lsq.hh:135
Minor::LSQ::SplitDataRequest::numIssuedFragments
unsigned int numIssuedFragments
Number of fragments already issued (<= numFragments)
Definition: lsq.hh:404
Minor::LSQ::pushRequest
Fault pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data, unsigned int size, Addr addr, Request::Flags flags, uint64_t *res, AtomicOpFunctorPtr amo_op, const std::vector< bool > &byte_enable=std::vector< bool >())
Single interface for readMem/writeMem/amoMem to issue requests into the LSQ.
Definition: lsq.cc:1580
Minor::LSQ::step
void step()
Step checks the queues to see if their are issuable transfers which were not otherwise picked up by t...
Definition: lsq.cc:1472
Minor::LSQ::cpu
MinorCPU & cpu
My owner(s)
Definition: lsq.hh:67
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
std::vector< RequestPtr >
Minor::LSQ::LSQRequest::markDelayed
void markDelayed()
BaseTLB::Translation interface.
Definition: lsq.hh:191
Minor::LSQ::SplitDataRequest::numFragments
unsigned int numFragments
Number of fragments this request is split into.
Definition: lsq.hh:392
Minor::Queue::unreservedRemainingSpace
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
Definition: buffers.hh:488
Minor::LSQ::LSQRequest::stepToNextPacket
virtual void stepToNextPacket()=0
Step to the next packet for the next call to getHeadPacket.
Minor::LSQ::StoreBuffer::storeLimitPerCycle
const unsigned int storeLimitPerCycle
Maximum number of stores that can be issued per cycle.
Definition: lsq.hh:477
Minor::LSQ::LSQRequest::hasPacketsInMemSystem
virtual bool hasPacketsInMemSystem()=0
True if this request has any issued packets in the memory system and so can't be interrupted until it...
Minor::LSQ::cacheBlockMask
Addr cacheBlockMask
Address Mask for a cache block (e.g.
Definition: lsq.hh:618
Minor::ReportTraitsPtrAdaptor
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
Definition: buffers.hh:103
Minor::LSQ::SingleDataRequest::startAddrTranslation
void startAddrTranslation()
Send single translation request.
Definition: lsq.cc:298
Minor
Definition: activity.cc:44
Minor::LSQ::SpecialDataRequest::hasPacketsInMemSystem
bool hasPacketsInMemSystem()
Never sends any requests.
Definition: lsq.hh:303
packet.hh
EventFunctionWrapper
Definition: eventq.hh:1112
Minor::LSQ::LSQRequest::isTranslationDelayed
bool isTranslationDelayed
Address translation is delayed due to table walk.
Definition: lsq.hh:163
Minor::LSQ::SplitDataRequest::~SplitDataRequest
~SplitDataRequest()
Definition: lsq.cc:406
Minor::LSQ::execute
Execute & execute
Definition: lsq.hh:68
Minor::LSQ::SplitDataRequest::numInTranslationFragments
unsigned int numInTranslationFragments
Number of fragments in the address translation mechanism.
Definition: lsq.hh:395
Minor::LSQ::canRequest
bool canRequest()
Is their space in the request queue to be able to push a request by issuing an isMemRef instruction.
Definition: lsq.hh:665
Minor::LSQ::LSQRequest::data
PacketDataPtr data
Dynamically allocated and populated data carried for building write packets.
Definition: lsq.hh:139
Minor::LSQ::SplitDataRequest::numRetiredFragments
unsigned int numRetiredFragments
Number of fragments retired back to this request.
Definition: lsq.hh:407
Minor::LSQ::completeMemBarrierInst
void completeMemBarrierInst(MinorDynInstPtr inst, bool committed)
Complete a barrier instruction.
Definition: lsq.cc:910
Minor::LSQ::LSQRequest::packet
PacketPtr packet
Definition: lsq.hh:145
Minor::LSQ::SplitDataRequest::sentAllPackets
bool sentAllPackets()
Have we stepped past the end of fragmentPackets?
Definition: lsq.hh:453
Minor::LSQ::StoreBuffer::insert
void insert(LSQRequestPtr request)
Insert a request at the back of the queue.
Definition: lsq.cc:738
Minor::LSQ::MemoryRunning
@ MemoryRunning
Definition: lsq.hh:74
Minor::LSQ::DcachePort::recvTimingResp
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: lsq.hh:103
Minor::LSQ::LSQRequest::sentAllPackets
virtual bool sentAllPackets()=0
Have all packets been sent?
Minor::LSQ::SplitDataRequest::startAddrTranslation
void startAddrTranslation()
Start a loop of do { sendNextFragmentToTranslation ; translateTiming ; finish } while (numTranslatedF...
Definition: lsq.cc:580
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
Minor::LSQ::StoreBuffer::forwardStoreData
void forwardStoreData(LSQRequestPtr load, unsigned int slot_number)
Fill the given packet with appropriate date from slot slot_number.
Definition: lsq.cc:801
Minor::LSQ::StoreBuffer::lsq
LSQ & lsq
My owner.
Definition: lsq.hh:471
Minor::LSQ::SingleDataRequest::finish
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseTLB::Mode mode)
TLB interace.
Definition: lsq.cc:268
Minor::LSQ::LSQRequest::Translated
@ Translated
Definition: lsq.hh:169
Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:432
Minor::LSQ::SpecialDataRequest::SpecialDataRequest
SpecialDataRequest(LSQ &port_, MinorDynInstPtr inst_)
Definition: lsq.hh:310
MinorCPU
MinorCPU is an in-order CPU model with four fixed pipeline stages:
Definition: cpu.hh:77
Minor::LSQ::threadSnoop
void threadSnoop(LSQRequestPtr request)
Snoop other threads monitors on memory system accesses.
Definition: lsq.cc:1771
Minor::LSQ::SplitDataRequest::getHeadPacket
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
Definition: lsq.cc:605
Minor::LSQ::LSQRequest::NotIssued
@ NotIssued
Definition: lsq.hh:167
Minor::LSQ::SplitDataRequest::makeFragmentRequests
void makeFragmentRequests()
Make all the Requests for this transfer's fragments so that those requests can be sent for address tr...
Definition: lsq.cc:416
Minor::Queue
Wrapper for a queue type to act as a pipeline stage input queue.
Definition: buffers.hh:399
Minor::LSQ::StoreBuffer::isDrained
bool isDrained() const
Drained if there is absolutely nothing left in the buffer.
Definition: lsq.hh:524
Minor::LSQ::SplitDataRequest::makeFragmentPackets
void makeFragmentPackets()
Make the packets to go with the requests so they can be sent to the memory system.
Definition: lsq.cc:530
Minor::LSQ::SingleDataRequest::getHeadPacket
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
Definition: lsq.hh:360
Minor::LSQ::LSQRequest::needsToBeSentToStoreBuffer
bool needsToBeSentToStoreBuffer()
This request, once processed by the requests/transfers queues, will need to go to the store buffer.
Definition: lsq.cc:161
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MinorCPU::MinorCPUPort::MinorCPUPort
MinorCPUPort(const std::string &name_, MinorCPU &cpu_)
Definition: cpu.hh:105
Minor::LSQ::PartialAddrRangeCoverage
@ PartialAddrRangeCoverage
Definition: lsq.hh:85
Minor::LSQ::StoreBuffer::numSlots
const unsigned int numSlots
Number of slots, this is a bound on the size of slots.
Definition: lsq.hh:474
Minor::LSQ::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt)
Definition: lsq.cc:1751
Minor::LSQ::minorTrace
void minorTrace() const
Definition: lsq.cc:1662
Minor::LSQ::canPushIntoStoreBuffer
bool canPushIntoStoreBuffer() const
Must check this before trying to insert into the store buffer.
Definition: lsq.hh:677
Minor::LSQ::DcachePort::DcachePort
DcachePort(std::string name, LSQ &lsq_, MinorCPU &cpu)
Definition: lsq.hh:98
Minor::LSQ::NoAddrRangeCoverage
@ NoAddrRangeCoverage
Definition: lsq.hh:87
Minor::LSQ::StoreBuffer::numUnissuedStores
unsigned int numUnissuedStores()
Number of stores in the store buffer which have not been completely issued to the memory system.
Definition: lsq.hh:516
Minor::LSQ::needsToTick
bool needsToTick()
May need to be ticked next cycle as one of the queues contains an actionable transfers or address tra...
Definition: lsq.cc:1560
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
Minor::LSQ::SpecialDataRequest::sentAllPackets
bool sentAllPackets()
Has no packets to send.
Definition: lsq.hh:300
Minor::LSQ::SplitDataRequest
Definition: lsq.hh:385
Minor::LSQ::dcachePort
DcachePort dcachePort
Definition: lsq.hh:116
MinorCPU::MinorCPUPort
Provide a non-protected base class for Minor's Ports as derived classes are created by Fetch1 and Exe...
Definition: cpu.hh:98
BaseTLB::Translation
Definition: tlb.hh:59
Minor::LSQ::LSQRequest::disableMemAccess
void disableMemAccess()
Definition: lsq.cc:111
Minor::LSQ::BarrierDataRequest::isBarrier
bool isBarrier()
Is this a request a barrier?
Definition: lsq.hh:332
Minor::LSQ::SplitDataRequest::stepToNextPacket
void stepToNextPacket()
Step on numIssuedFragments.
Definition: lsq.cc:613
Minor::LSQ::StoreBuffer::minorTrace
void minorTrace() const
Report queue contents for MinorTrace.
Definition: lsq.cc:927
Minor::LSQ::LSQRequest::StoreInStoreBuffer
@ StoreInStoreBuffer
Definition: lsq.hh:176
Minor::LSQ::LSQRequest::Complete
@ Complete
Definition: lsq.hh:184
Minor::LSQ::StoreBuffer::numUnissuedAccesses
unsigned int numUnissuedAccesses
Number of occupied slots which have not yet issued a memory access.
Definition: lsq.hh:485
Minor::LSQ::SingleDataRequest::stepToNextPacket
void stepToNextPacket()
Remember that the packet has been sent.
Definition: lsq.hh:363
Minor::LSQ::LSQRequest::skipped
bool skipped
Was skipped.
Definition: lsq.hh:156
Minor::LSQ::tryToSend
bool tryToSend(LSQRequestPtr request)
Try to send (or resend) a memory request's next/only packet to the memory system.
Definition: lsq.cc:1171
Minor::LSQ::DcachePort::lsq
LSQ & lsq
My owner.
Definition: lsq.hh:95
InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:37
Minor::LSQ::StoreBuffer::canInsert
bool canInsert() const
Can a new request be inserted into the queue?
Definition: lsq.cc:717
Minor::LSQ::moveFromRequestsToTransfers
void moveFromRequestsToTransfers(LSQRequestPtr request)
Move a request between queues.
Definition: lsq.cc:1269
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Minor::LSQ::LSQRequest::InTranslation
@ InTranslation
Definition: lsq.hh:168
Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:106
Minor::LSQ::LSQRequest::containsAddrRangeOf
static AddrRangeCoverage containsAddrRangeOf(Addr req1_addr, unsigned int req1_size, Addr req2_addr, unsigned int req2_size)
Does address range req1 (req1_addr to req1_addr + req1_size - 1) fully cover, partially cover or not ...
Definition: lsq.cc:118
Minor::LSQ::LSQ
LSQ(std::string name_, std::string dcache_port_name_, MinorCPU &cpu_, Execute &execute_, unsigned int max_accesses_in_memory_system, unsigned int line_width, unsigned int requests_queue_size, unsigned int transfers_queue_size, unsigned int store_buffer_size, unsigned int store_buffer_cycle_store_limit)
Definition: lsq.cc:1399
Minor::LSQ::SplitDataRequest::sendNextFragmentToTranslation
void sendNextFragmentToTranslation()
Part of the address translation loop, see startAddTranslation.
Definition: lsq.cc:698
Minor::LSQ::storeBuffer
StoreBuffer storeBuffer
Definition: lsq.hh:590
Minor::LSQ::LSQRequest::request
RequestPtr request
The underlying request of this LSQRequest.
Definition: lsq.hh:148
Minor::LSQ::StoreBuffer::countIssuedStore
void countIssuedStore(LSQRequestPtr request)
Count a store being issued to memory by decrementing numUnissuedAccesses.
Definition: lsq.cc:831
Minor::LSQ::SpecialDataRequest
Special request types that don't actually issue memory requests.
Definition: lsq.hh:280
Minor::LSQ::LSQRequest::StoreBufferIssuing
@ StoreBufferIssuing
Definition: lsq.hh:178
Minor::LSQ::StoreBuffer
Store buffer.
Definition: lsq.hh:467
Minor::LSQ::LSQRequest::tryToSuppressFault
void tryToSuppressFault()
Instructions may want to suppress translation faults (e.g.
Definition: lsq.cc:75
Minor::LSQ::LSQRequest::issuedToMemory
bool issuedToMemory
This in an access other than a normal cacheable load that's visited the memory system.
Definition: lsq.hh:160
Minor::LSQ::SpecialDataRequest::stepToNextPacket
void stepToNextPacket()
Step on numIssuedFragments.
Definition: lsq.hh:297
Minor::LSQ::LSQRequest::getHeadPacket
virtual PacketPtr getHeadPacket()=0
Get the next packet to issue for this request.
Minor::LSQ::DcachePort::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Definition: lsq.hh:110
Minor::LSQ::retryRequest
LSQRequestPtr retryRequest
The request (from either requests or the store buffer) which is currently waiting have its memory acc...
Definition: lsq.hh:615
Named
Definition: trace.hh:150
Minor::LSQ::StoreBuffer::canForwardDataToLoad
AddrRangeCoverage canForwardDataToLoad(LSQRequestPtr request, unsigned int &found_slot)
Look for a store which satisfies the given load.
Definition: lsq.cc:760
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
Minor::LSQ::DcachePort::recvReqRetry
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: lsq.hh:106
Minor::LSQ::numStoresInTransfers
unsigned int numStoresInTransfers
The number of stores in the transfers queue.
Definition: lsq.hh:606
Minor::LSQ::LSQRequest::isComplete
bool isComplete() const
Has this request been completed.
Definition: lsq.cc:175
Minor::LSQ::FailedDataRequest
FailedDataRequest represents requests from instructions that failed their predicates but need to ride...
Definition: lsq.hh:319
Minor::LSQ::issuedMemBarrierInst
void issuedMemBarrierInst(MinorDynInstPtr inst)
A memory barrier instruction has been issued, remember its execSeqNum that we can avoid issuing memor...
Definition: lsq.cc:1706
Minor::LSQ::SingleDataRequest::SingleDataRequest
SingleDataRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_, PacketDataPtr data_=NULL, uint64_t *res_=NULL)
Definition: lsq.hh:377
Minor::LSQ::StoreBuffer::slots
std::deque< LSQRequestPtr > slots
Queue of store requests on their way to memory.
Definition: lsq.hh:481
Minor::LSQ::SingleDataRequest::sentAllPackets
bool sentAllPackets()
packetInFlight can become false again, so need to check packetSent
Definition: lsq.hh:370
Minor::LSQ::LSQRequest::inst
MinorDynInstPtr inst
Instruction which made this request.
Definition: lsq.hh:131
Minor::LSQ::LSQRequest::retireResponse
virtual void retireResponse(PacketPtr packet_)=0
Retire a response packet into the LSQRequest packet possibly completing this transfer.
Minor::LSQ::sendStoreToStoreBuffer
void sendStoreToStoreBuffer(LSQRequestPtr request)
A store has been committed, please move it to the store buffer.
Definition: lsq.cc:1540
Minor::LSQ::StoreBuffer::step
void step()
Try to issue more stores to memory.
Definition: lsq.cc:840
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Minor::LSQ::LSQRequest::setSkipped
void setSkipped()
Set this request as having been skipped before a memory transfer was attempt.
Definition: lsq.hh:215
std::deque< LSQRequestPtr >
Minor::LSQ::SingleDataRequest::packetSent
bool packetSent
Has the packet been at least sent to the memory system?
Definition: lsq.hh:353
Minor::LSQ::SingleDataRequest
SingleDataRequest is used for requests that don't fragment.
Definition: lsq.hh:341
Minor::LSQ::SplitDataRequest::hasPacketsInMemSystem
bool hasPacketsInMemSystem()
True if this request has any issued packets in the memory system and so can't be interrupted until it...
Definition: lsq.hh:449
Minor::LSQ::lastMemBarrier
std::vector< InstSeqNum > lastMemBarrier
Most recent execSeqNum of a memory barrier instruction or 0 if there are no in-flight barriers.
Definition: lsq.hh:537
Minor::LSQ::getLastMemBarrier
InstSeqNum getLastMemBarrier(ThreadID thread_id) const
Get the execSeqNum of the last issued memory barrier.
Definition: lsq.hh:694
Minor::LSQ::SpecialDataRequest::startAddrTranslation
void startAddrTranslation()
Send single translation request.
Definition: lsq.hh:290
Minor::LSQ::SpecialDataRequest::retireResponse
void retireResponse(PacketPtr packet_)
Keep the given packet as the response packet LSQRequest::packet.
Definition: lsq.hh:307
Minor::LSQ::BarrierDataRequest
Request for doing barrier accounting in the store buffer.
Definition: lsq.hh:329
Minor::LSQ::AddrRangeCoverage
AddrRangeCoverage
Coverage of one address range with another.
Definition: lsq.hh:83
Minor::LSQ::canSendToMemorySystem
bool canSendToMemorySystem()
Can a request be sent to the memory system.
Definition: lsq.cc:1286
Minor::LSQ::~LSQ
virtual ~LSQ()
Definition: lsq.cc:1454
Minor::LSQ::LSQRequest::setState
void setState(LSQRequestState new_state)
Set state and output trace output.
Definition: lsq.cc:167
Minor::NoBubbleTraits
...
Definition: buffers.hh:117
buffers.hh
Minor::LSQ::DcachePort::recvFunctionalSnoop
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: lsq.hh:113
Minor::LSQ::LSQRequestPtr
LSQRequest * LSQRequestPtr
Definition: lsq.hh:270
Minor::LSQ::LSQRequest::startAddrTranslation
virtual void startAddrTranslation()=0
Start the address translation process for this request.
RefCountingPtr< MinorDynInst >
Minor::LSQ
Definition: lsq.hh:63
Minor::LSQ::StoreBuffer::deleteRequest
void deleteRequest(LSQRequestPtr request)
Delete the given request and free the slot it occupied.
Definition: lsq.cc:724
Minor::LSQ::LSQRequest::~LSQRequest
virtual ~LSQRequest()
Definition: lsq.cc:1457
Minor::LSQ::LSQRequest::isBarrier
virtual bool isBarrier()
Is this a request a barrier?
Definition: lsq.cc:155
trace.hh
Minor::LSQ::MemoryState
MemoryState
State of memory access for head access.
Definition: lsq.hh:72
Minor::LSQ::isDrained
bool isDrained()
Is there nothing left in the LSQ.
Definition: lsq.cc:1553
Minor::LSQ::state
MemoryState state
Retry state of last issued memory transfer.
Definition: lsq.hh:541
Minor::LSQ::LSQRequest::StoreToStoreBuffer
@ StoreToStoreBuffer
Definition: lsq.hh:173
Minor::LSQ::LSQRequest::port
LSQ & port
Owning port.
Definition: lsq.hh:128
Minor::LSQ::LSQQueue
Queue< LSQRequestPtr, ReportTraitsPtrAdaptor< LSQRequestPtr >, NoBubbleTraits< LSQRequestPtr > > LSQQueue
The LSQ consists of three queues: requests, transfers and the store buffer storeBuffer.
Definition: lsq.hh:556
Minor::LSQ::SpecialDataRequest::getHeadPacket
PacketPtr getHeadPacket()
Get the head packet as counted by numIssuedFragments.
Definition: lsq.hh:293
Minor::LSQ::SingleDataRequest::hasPacketsInMemSystem
bool hasPacketsInMemSystem()
Has packet been sent.
Definition: lsq.hh:366
Minor::LSQ::LSQRequest::state
LSQRequestState state
Definition: lsq.hh:187
Minor::Execute
Execute stage.
Definition: execute.hh:63
Minor::LSQ::clearMemBarrier
void clearMemBarrier(MinorDynInstPtr inst)
Clear a barrier (if it's the last one marked up in lastMemBarrier)
Definition: lsq.cc:255
Minor::LSQ::findResponse
LSQRequestPtr findResponse(MinorDynInstPtr inst)
Returns a response if it's at the head of the transfers queue and it's either complete or can be sent...
Definition: lsq.cc:1483
Minor::LSQ::inMemorySystemLimit
const unsigned int inMemorySystemLimit
Maximum number of in-flight accesses issued to the memory system.
Definition: lsq.hh:544
Minor::LSQ::LSQRequest
Derived SenderState to carry data access info.
Definition: lsq.hh:122
Minor::LSQ::lineWidth
const unsigned int lineWidth
Memory system access width (and snap) in bytes.
Definition: lsq.hh:547
Minor::LSQ::DcachePort::isSnooping
bool isSnooping() const override
Determine if this request port is snooping or not.
Definition: lsq.hh:108
Minor::LSQ::SplitDataRequest::translationEvent
EventFunctionWrapper translationEvent
Event to step between translations.
Definition: lsq.hh:389
Minor::LSQ::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Memory interface.
Definition: lsq.cc:1293
Minor::LSQ::StoreBuffer::StoreBuffer
StoreBuffer(std::string name_, LSQ &lsq_, unsigned int store_buffer_size, unsigned int store_limit_per_cycle)
Definition: lsq.cc:1673
Minor::LSQ::SplitDataRequest::fragmentPackets
std::vector< Packet * > fragmentPackets
Packets matching fragmentRequests to issue fragments to memory.
Definition: lsq.hh:414

Generated on Tue Jun 22 2021 15:28:26 for gem5 by doxygen 1.8.17