lsq.hh revision 13954:2f400a5f2627
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 * Authors: Andrew Bardsley
38 */
39
40/**
41 * @file
42 *
43 *  A load/store queue that allows outstanding reads and writes.
44 *
45 */
46
47#ifndef __CPU_MINOR_NEW_LSQ_HH__
48#define __CPU_MINOR_NEW_LSQ_HH__
49
50#include "cpu/minor/buffers.hh"
51#include "cpu/minor/cpu.hh"
52#include "cpu/minor/pipe_data.hh"
53#include "cpu/minor/trace.hh"
54
55namespace Minor
56{
57
58/* Forward declaration */
59class Execute;
60
61class LSQ : public Named
62{
63  protected:
64    /** My owner(s) */
65    MinorCPU &cpu;
66    Execute &execute;
67
68  protected:
69    /** State of memory access for head access. */
70    enum MemoryState
71    {
72        MemoryRunning, /* Default. Step dcache queues when possible. */
73        MemoryNeedsRetry /* Request rejected, will be asked to retry */
74    };
75
76    /** Print MemoryState values as shown in the enum definition */
77    friend std::ostream &operator <<(std::ostream &os,
78        MemoryState state);
79
80    /** Coverage of one address range with another */
81    enum AddrRangeCoverage
82    {
83        PartialAddrRangeCoverage, /* Two ranges partly overlap */
84        FullAddrRangeCoverage, /* One range fully covers another */
85        NoAddrRangeCoverage /* Two ranges are disjoint */
86    };
87
88    /** Exposable data port */
89    class DcachePort : public MinorCPU::MinorCPUPort
90    {
91      protected:
92        /** My owner */
93        LSQ &lsq;
94
95      public:
96        DcachePort(std::string name, LSQ &lsq_, MinorCPU &cpu) :
97            MinorCPU::MinorCPUPort(name, cpu), lsq(lsq_)
98        { }
99
100      protected:
101        bool recvTimingResp(PacketPtr pkt) override
102        { return lsq.recvTimingResp(pkt); }
103
104        void recvReqRetry() override { lsq.recvReqRetry(); }
105
106        bool isSnooping() const override { return true; }
107
108        void recvTimingSnoopReq(PacketPtr pkt) override
109        { return lsq.recvTimingSnoopReq(pkt); }
110
111        void recvFunctionalSnoop(PacketPtr pkt) override { }
112    };
113
114    DcachePort dcachePort;
115
116  public:
117    /** Derived SenderState to carry data access info. through address
118     *  translation, the queues in this port and back from the memory
119     *  system. */
120    class LSQRequest :
121        public BaseTLB::Translation, /* For TLB lookups */
122        public Packet::SenderState /* For packing into a Packet */
123    {
124      public:
125        /** Owning port */
126        LSQ &port;
127
128        /** Instruction which made this request */
129        MinorDynInstPtr inst;
130
131        /** Load/store indication used for building packet.  This isn't
132         *  carried by Request so we need to keep it here */
133        bool isLoad;
134
135        /** Dynamically allocated and populated data carried for
136         *  building write packets */
137        PacketDataPtr data;
138
139        /* Requests carry packets on their way to the memory system.
140         *  When a Packet returns from the memory system, its
141         *  request needs to have its packet updated as this
142         *  may have changed in flight */
143        PacketPtr packet;
144
145        /** The underlying request of this LSQRequest */
146        RequestPtr request;
147
148        /** Fault generated performing this request */
149        Fault fault;
150
151        /** Res from pushRequest */
152        uint64_t *res;
153
154        /** Was skipped.  Set to indicate any reason (faulted, bad
155         *  stream sequence number, in a fault shadow) that this
156         *  request did not perform a memory transfer */
157        bool skipped;
158
159        /** This in an access other than a normal cacheable load
160         *  that's visited the memory system */
161        bool issuedToMemory;
162
163        enum LSQRequestState
164        {
165            NotIssued, /* Newly created */
166            InTranslation, /* TLB accessed, no reply yet */
167            Translated, /* Finished address translation */
168            Failed, /* The starting start of FailedDataRequests */
169            RequestIssuing, /* Load/store issued to memory in the requests
170                queue */
171            StoreToStoreBuffer, /* Store in transfers on its way to the
172                store buffer */
173            RequestNeedsRetry, /* Retry needed for load */
174            StoreInStoreBuffer, /* Store in the store buffer, before issuing
175                a memory transfer */
176            StoreBufferIssuing, /* Store in store buffer and has been
177                issued */
178            StoreBufferNeedsRetry, /* Retry needed for store */
179            /* All completed states.  Includes
180                completed loads, TLB faults and skipped requests whose
181                seqNum's no longer match */
182            Complete
183        };
184
185        LSQRequestState state;
186
187      protected:
188        /** BaseTLB::Translation interface */
189        void markDelayed() { }
190
191        void disableMemAccess();
192
193      public:
194        LSQRequest(LSQ &port_, MinorDynInstPtr inst_, bool isLoad_,
195            PacketDataPtr data_ = NULL, uint64_t *res_ = NULL);
196
197        virtual ~LSQRequest();
198
199      public:
200        /** Make a packet to use with the memory transaction */
201        void makePacket();
202
203        /** Was no memory access attempted for this request? */
204        bool skippedMemAccess() { return skipped; }
205
206        /** Set this request as having been skipped before a memory
207         *  transfer was attempt */
208        void setSkipped() { skipped = true; }
209
210        /** Does address range req1 (req1_addr to req1_addr + req1_size - 1)
211         *  fully cover, partially cover or not cover at all the range req2 */
212        static AddrRangeCoverage containsAddrRangeOf(
213            Addr req1_addr, unsigned int req1_size,
214            Addr req2_addr, unsigned int req2_size);
215
216        /** Does this request's address range fully cover the range
217         *  of other_request? */
218        AddrRangeCoverage containsAddrRangeOf(LSQRequest *other_request);
219
220        /** Start the address translation process for this request.  This
221         *  will issue a translation request to the TLB. */
222        virtual void startAddrTranslation() = 0;
223
224        /** Get the next packet to issue for this request.  For split
225         *  transfers, it will be necessary to step through the available
226         *  packets by calling do { getHeadPacket ; stepToNextPacket } while
227         *  (!sentAllPackets) and by retiring response using retireResponse */
228        virtual PacketPtr getHeadPacket() = 0;
229
230        /** Step to the next packet for the next call to getHeadPacket */
231        virtual void stepToNextPacket() = 0;
232
233        /** Have all packets been sent? */
234        virtual bool sentAllPackets() = 0;
235
236        /** True if this request has any issued packets in the memory
237         *  system and so can't be interrupted until it gets responses */
238        virtual bool hasPacketsInMemSystem() = 0;
239
240        /** Retire a response packet into the LSQRequest packet possibly
241         *  completing this transfer */
242        virtual void retireResponse(PacketPtr packet_) = 0;
243
244        /** Is this a request a barrier? */
245        virtual bool isBarrier();
246
247        /** This request, once processed by the requests/transfers
248         *  queues, will need to go to the store buffer */
249        bool needsToBeSentToStoreBuffer();
250
251        /** Set state and output trace output */
252        void setState(LSQRequestState new_state);
253
254        /** Has this request been completed.  This includes *all* reasons
255         *  for completion: successful transfers, faults, skipped because
256         *  of preceding faults */
257        bool isComplete() const;
258
259        /** MinorTrace report interface */
260        void reportData(std::ostream &os) const;
261    };
262
263    typedef LSQRequest *LSQRequestPtr;
264
265    friend std::ostream & operator <<(std::ostream &os,
266        AddrRangeCoverage state);
267
268    friend std::ostream & operator <<(std::ostream &os,
269        LSQRequest::LSQRequestState state);
270
271  protected:
272    /** Special request types that don't actually issue memory requests */
273    class SpecialDataRequest : public LSQRequest
274    {
275      protected:
276        /** TLB interace */
277        void finish(const Fault &fault_, const RequestPtr &request_,
278                    ThreadContext *tc, BaseTLB::Mode mode)
279        { }
280
281      public:
282        /** Send single translation request */
283        void startAddrTranslation() { }
284
285        /** Get the head packet as counted by numIssuedFragments */
286        PacketPtr getHeadPacket()
287        { fatal("No packets in a SpecialDataRequest"); }
288
289        /** Step on numIssuedFragments */
290        void stepToNextPacket() { }
291
292        /** Has no packets to send */
293        bool sentAllPackets() { return true; }
294
295        /** Never sends any requests */
296        bool hasPacketsInMemSystem() { return false; }
297
298        /** Keep the given packet as the response packet
299         *  LSQRequest::packet */
300        void retireResponse(PacketPtr packet_) { }
301
302      public:
303        SpecialDataRequest(LSQ &port_, MinorDynInstPtr inst_) :
304            /* Say this is a load, not actually relevant */
305            LSQRequest(port_, inst_, true, NULL, 0)
306        { }
307    };
308
309    /** FailedDataRequest represents requests from instructions that
310     *  failed their predicates but need to ride the requests/transfers
311     *  queues to maintain trace ordering */
312    class FailedDataRequest : public SpecialDataRequest
313    {
314      public:
315        FailedDataRequest(LSQ &port_, MinorDynInstPtr inst_) :
316            SpecialDataRequest(port_, inst_)
317        { state = Failed; }
318    };
319
320    /** Request for doing barrier accounting in the store buffer.  Not
321     *  for use outside that unit */
322    class BarrierDataRequest : public SpecialDataRequest
323    {
324      public:
325        bool isBarrier() { return true; }
326
327      public:
328        BarrierDataRequest(LSQ &port_, MinorDynInstPtr inst_) :
329            SpecialDataRequest(port_, inst_)
330        { state = Complete; }
331    };
332
333    /** SingleDataRequest is used for requests that don't fragment */
334    class SingleDataRequest : public LSQRequest
335    {
336      protected:
337        /** TLB interace */
338        void finish(const Fault &fault_, const RequestPtr &request_,
339                    ThreadContext *tc, BaseTLB::Mode mode);
340
341        /** Has my only packet been sent to the memory system but has not
342         *  yet been responded to */
343        bool packetInFlight;
344
345        /** Has the packet been at least sent to the memory system? */
346        bool packetSent;
347
348      public:
349        /** Send single translation request */
350        void startAddrTranslation();
351
352        /** Get the head packet as counted by numIssuedFragments */
353        PacketPtr getHeadPacket() { return packet; }
354
355        /** Remember that the packet has been sent */
356        void stepToNextPacket() { packetInFlight = true; packetSent = true; }
357
358        /** Has packet been sent */
359        bool hasPacketsInMemSystem() { return packetInFlight; }
360
361        /** packetInFlight can become false again, so need to check
362         *  packetSent */
363        bool sentAllPackets() { return packetSent; }
364
365        /** Keep the given packet as the response packet
366         *  LSQRequest::packet */
367        void retireResponse(PacketPtr packet_);
368
369      public:
370        SingleDataRequest(LSQ &port_, MinorDynInstPtr inst_,
371            bool isLoad_, PacketDataPtr data_ = NULL, uint64_t *res_ = NULL) :
372            LSQRequest(port_, inst_, isLoad_, data_, res_),
373            packetInFlight(false),
374            packetSent(false)
375        { }
376    };
377
378    class SplitDataRequest : public LSQRequest
379    {
380      protected:
381        /** Event to step between translations */
382        EventFunctionWrapper translationEvent;
383      protected:
384        /** Number of fragments this request is split into */
385        unsigned int numFragments;
386
387        /** Number of fragments in the address translation mechanism */
388        unsigned int numInTranslationFragments;
389
390        /** Number of fragments that have completed address translation,
391         *  (numTranslatedFragments + numInTranslationFragments) <=
392         *  numFragments.  When numTranslatedFramgents == numFragments,
393         *  translation is complete */
394        unsigned int numTranslatedFragments;
395
396        /** Number of fragments already issued (<= numFragments) */
397        unsigned int numIssuedFragments;
398
399        /** Number of fragments retired back to this request */
400        unsigned int numRetiredFragments;
401
402        /** Fragment Requests corresponding to the address ranges of
403         *  each fragment */
404        std::vector<RequestPtr> fragmentRequests;
405
406        /** Packets matching fragmentRequests to issue fragments to memory */
407        std::vector<Packet *> fragmentPackets;
408
409      protected:
410        /** TLB response interface */
411        void finish(const Fault &fault_, const RequestPtr &request_,
412                    ThreadContext *tc, BaseTLB::Mode mode);
413
414      public:
415        SplitDataRequest(LSQ &port_, MinorDynInstPtr inst_,
416            bool isLoad_, PacketDataPtr data_ = NULL,
417            uint64_t *res_ = NULL);
418
419        ~SplitDataRequest();
420
421      public:
422        /** Make all the Requests for this transfer's fragments so that those
423         *  requests can be sent for address translation */
424        void makeFragmentRequests();
425
426        /** Make the packets to go with the requests so they can be sent to
427         *  the memory system */
428        void makeFragmentPackets();
429
430        /** Start a loop of do { sendNextFragmentToTranslation ;
431         *  translateTiming ; finish } while (numTranslatedFragments !=
432         *  numFragments) to complete all this requests' fragments' address
433         *  translations */
434        void startAddrTranslation();
435
436        /** Get the head packet as counted by numIssuedFragments */
437        PacketPtr getHeadPacket();
438
439        /** Step on numIssuedFragments */
440        void stepToNextPacket();
441
442        bool hasPacketsInMemSystem()
443        { return numIssuedFragments != numRetiredFragments; }
444
445        /** Have we stepped past the end of fragmentPackets? */
446        bool sentAllPackets()
447        { return numIssuedFragments == numTranslatedFragments; }
448
449        /** For loads, paste the response data into the main
450         *  response packet */
451        void retireResponse(PacketPtr packet_);
452
453        /** Part of the address translation loop, see startAddTranslation */
454        void sendNextFragmentToTranslation();
455    };
456
457    /** Store buffer.  This contains stores which have been committed
458     *  but whose memory transfers have not yet been issued. Load data
459     *  can be forwarded out of the store buffer */
460    class StoreBuffer : public Named
461    {
462      public:
463        /** My owner */
464        LSQ &lsq;
465
466        /** Number of slots, this is a bound on the size of slots */
467        const unsigned int numSlots;
468
469        /** Maximum number of stores that can be issued per cycle */
470        const unsigned int storeLimitPerCycle;
471
472      public:
473        /** Queue of store requests on their way to memory */
474        std::deque<LSQRequestPtr> slots;
475
476        /** Number of occupied slots which have not yet issued a
477         *  memory access */
478        unsigned int numUnissuedAccesses;
479
480      public:
481        StoreBuffer(std::string name_, LSQ &lsq_,
482            unsigned int store_buffer_size,
483            unsigned int store_limit_per_cycle);
484
485      public:
486        /** Can a new request be inserted into the queue? */
487        bool canInsert() const;
488
489        /** Delete the given request and free the slot it occupied */
490        void deleteRequest(LSQRequestPtr request);
491
492        /** Insert a request at the back of the queue */
493        void insert(LSQRequestPtr request);
494
495        /** Look for a store which satisfies the given load.  Returns an
496         *  indication whether the forwarding request can be wholly,
497         *  partly or not all all satisfied.  If the request can be
498         *  wholly satisfied, the store buffer slot number which can be used
499         *  is returned in found_slot */
500        AddrRangeCoverage canForwardDataToLoad(LSQRequestPtr request,
501            unsigned int &found_slot);
502
503        /** Fill the given packet with appropriate date from slot
504         *  slot_number */
505        void forwardStoreData(LSQRequestPtr load, unsigned int slot_number);
506
507        /** Number of stores in the store buffer which have not been
508         *  completely issued to the memory system */
509        unsigned int numUnissuedStores() { return numUnissuedAccesses; }
510
511        /** Count a store being issued to memory by decrementing
512         *  numUnissuedAccesses.  Does not count barrier requests as they
513         *  will be handles as barriers are cleared from the buffer */
514        void countIssuedStore(LSQRequestPtr request);
515
516        /** Drained if there is absolutely nothing left in the buffer */
517        bool isDrained() const { return slots.empty(); }
518
519        /** Try to issue more stores to memory */
520        void step();
521
522        /** Report queue contents for MinorTrace */
523        void minorTrace() const;
524    };
525
526  protected:
527    /** Most recent execSeqNum of a memory barrier instruction or
528     *  0 if there are no in-flight barriers.  Useful as a
529     *  dependency for early-issued memory operations */
530    std::vector<InstSeqNum> lastMemBarrier;
531
532  public:
533    /** Retry state of last issued memory transfer */
534    MemoryState state;
535
536    /** Maximum number of in-flight accesses issued to the memory system */
537    const unsigned int inMemorySystemLimit;
538
539    /** Memory system access width (and snap) in bytes */
540    const unsigned int lineWidth;
541
542  public:
543    /** The LSQ consists of three queues: requests, transfers and the
544     *  store buffer storeBuffer. */
545
546    typedef Queue<LSQRequestPtr,
547        ReportTraitsPtrAdaptor<LSQRequestPtr>,
548        NoBubbleTraits<LSQRequestPtr> >
549        LSQQueue;
550
551    /** requests contains LSQRequests which have been issued to the TLB by
552     *  calling ExecContext::readMem/writeMem (which in turn calls
553     *  LSQ::pushRequest and LSQRequest::startAddrTranslation).  Once they
554     *  have a physical address, requests at the head of requests can be
555     *  issued to the memory system.  At this stage, it cannot be clear that
556     *  memory accesses *must* happen (that there are no preceding faults or
557     *  changes of flow of control) and so only cacheable reads are issued
558     *  to memory.
559     *  Cacheable stores are not issued at all (and just pass through
560     *  'transfers' in order) and all other transfers are stalled in requests
561     *  until their corresponding instructions are at the head of the
562     *  inMemInsts instruction queue and have the right streamSeqNum. */
563    LSQQueue requests;
564
565    /** Once issued to memory (or, for stores, just had their
566     *  state changed to StoreToStoreBuffer) LSQRequests pass through
567     *  transfers waiting for memory responses.  At the head of transfers,
568     *  Execute::commitInst can pick up the memory response for a request
569     *  using LSQ::findResponse.  Responses to be committed can then
570     *  have ExecContext::completeAcc on them.  Stores can then be pushed
571     *  into the store buffer.  All other transfers will then be complete. */
572    LSQQueue transfers;
573
574    /* The store buffer contains committed cacheable stores on
575     * their way to memory decoupled from subsequence instruction execution.
576     * Before trying to issue a cacheable read from 'requests' to memory,
577     * the store buffer is checked to see if a previous store contains the
578     * needed data (StoreBuffer::canForwardDataToLoad) which can be
579     * forwarded in lieu of a memory access.  If there are outstanding
580     * stores in the transfers queue, they must be promoted to the store
581     * buffer (and so be commited) before they can be correctly checked
582     * for forwarding. */
583    StoreBuffer storeBuffer;
584
585  protected:
586    /** Count of the number of mem. accesses which have left the
587     *  requests queue and are in the 'wild' in the memory system and who
588     *  *must not* be interrupted as they are not normal cacheable
589     *  accesses.  This is a count of the number of in-flight requests
590     *  with issuedToMemory set who have visited tryToSendRequest at least
591     *  once */
592    unsigned int numAccessesInMemorySystem;
593
594    /** Number of requests in the DTLB in the requests queue */
595    unsigned int numAccessesInDTLB;
596
597    /** The number of stores in the transfers queue.  Useful when
598     *  testing if the store buffer contains all the forwardable stores */
599    unsigned int numStoresInTransfers;
600
601    /** The number of accesses which have been issued to the memory
602     *  system but have not been committed/discarded *excluding*
603     *  cacheable normal loads which don't need to be tracked */
604    unsigned int numAccessesIssuedToMemory;
605
606    /** The request (from either requests or the store buffer) which is
607     *  currently waiting have its memory access retried */
608    LSQRequestPtr retryRequest;
609
610    /** Address Mask for a cache block (e.g. ~(cache_block_size-1)) */
611    Addr cacheBlockMask;
612
613  protected:
614    /** Try and issue a memory access for a translated request at the
615     *  head of the requests queue.  Also tries to move the request
616     *  between queues */
617    void tryToSendToTransfers(LSQRequestPtr request);
618
619    /** Try to send (or resend) a memory request's next/only packet to
620     *  the memory system.  Returns true if the request was successfully
621     *  sent to memory (and was also the last packet in a transfer) */
622    bool tryToSend(LSQRequestPtr request);
623
624    /** Clear a barrier (if it's the last one marked up in lastMemBarrier) */
625    void clearMemBarrier(MinorDynInstPtr inst);
626
627    /** Move a request between queues */
628    void moveFromRequestsToTransfers(LSQRequestPtr request);
629
630    /** Can a request be sent to the memory system */
631    bool canSendToMemorySystem();
632
633    /** Snoop other threads monitors on memory system accesses */
634    void threadSnoop(LSQRequestPtr request);
635
636  public:
637    LSQ(std::string name_, std::string dcache_port_name_,
638        MinorCPU &cpu_, Execute &execute_,
639        unsigned int max_accesses_in_memory_system, unsigned int line_width,
640        unsigned int requests_queue_size, unsigned int transfers_queue_size,
641        unsigned int store_buffer_size,
642        unsigned int store_buffer_cycle_store_limit);
643
644    virtual ~LSQ();
645
646  public:
647    /** Step checks the queues to see if their are issuable transfers
648     *  which were not otherwise picked up by tests at the end of other
649     *  events.
650     *
651     *  Steppable actions include deferred actions which couldn't be
652     *  cascaded on the end of a memory response/TLB response event
653     *  because of resource congestion. */
654    void step();
655
656    /** Is their space in the request queue to be able to push a request by
657     *  issuing an isMemRef instruction */
658    bool canRequest() { return requests.unreservedRemainingSpace() != 0; }
659
660    /** Returns a response if it's at the head of the transfers queue and
661     *  it's either complete or can be sent on to the store buffer.  After
662     *  calling, the request still remains on the transfer queue until
663     *  popResponse is called */
664    LSQRequestPtr findResponse(MinorDynInstPtr inst);
665
666    /** Sanity check and pop the head response */
667    void popResponse(LSQRequestPtr response);
668
669    /** Must check this before trying to insert into the store buffer */
670    bool canPushIntoStoreBuffer() const { return storeBuffer.canInsert(); }
671
672    /** A store has been committed, please move it to the store buffer */
673    void sendStoreToStoreBuffer(LSQRequestPtr request);
674
675    /** Are there any accesses other than normal cached loads in the
676     *  memory system or having received responses which need to be
677     *  handled for their instruction's to be completed */
678    bool accessesInFlight() const
679    { return numAccessesIssuedToMemory != 0; }
680
681    /** A memory barrier instruction has been issued, remember its
682     *  execSeqNum that we can avoid issuing memory ops until it is
683     *  committed */
684    void issuedMemBarrierInst(MinorDynInstPtr inst);
685
686    /** Get the execSeqNum of the last issued memory barrier */
687    InstSeqNum getLastMemBarrier(ThreadID thread_id) const
688    { return lastMemBarrier[thread_id]; }
689
690    /** Is there nothing left in the LSQ */
691    bool isDrained();
692
693    /** May need to be ticked next cycle as one of the queues contains
694     *  an actionable transfers or address translation */
695    bool needsToTick();
696
697    /** Complete a barrier instruction.  Where committed, makes a
698     *  BarrierDataRequest and pushed it into the store buffer */
699    void completeMemBarrierInst(MinorDynInstPtr inst,
700        bool committed);
701
702    /** Single interface for readMem/writeMem/amoMem to issue requests into
703     *  the LSQ */
704    void pushRequest(MinorDynInstPtr inst, bool isLoad, uint8_t *data,
705                     unsigned int size, Addr addr, Request::Flags flags,
706                     uint64_t *res, AtomicOpFunctor *amo_op,
707                     const std::vector<bool>& byteEnable =
708                         std::vector<bool>());
709
710    /** Push a predicate failed-representing request into the queues just
711     *  to maintain commit order */
712    void pushFailedRequest(MinorDynInstPtr inst);
713
714    /** Memory interface */
715    bool recvTimingResp(PacketPtr pkt);
716    void recvReqRetry();
717    void recvTimingSnoopReq(PacketPtr pkt);
718
719    /** Return the raw-bindable port */
720    MinorCPU::MinorCPUPort &getDcachePort() { return dcachePort; }
721
722    void minorTrace() const;
723};
724
725/** Make a suitable packet for the given request.  If the request is a store,
726 *  data will be the payload data.  If sender_state is NULL, it won't be
727 *  pushed into the packet as senderState */
728PacketPtr makePacketForRequest(const RequestPtr &request, bool isLoad,
729    Packet::SenderState *sender_state = NULL, PacketDataPtr data = NULL);
730}
731
732#endif /* __CPU_MINOR_NEW_LSQ_HH__ */
733