lsq_unit.hh revision 8506
12292SN/A/*
22329SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan
32292SN/A * All rights reserved.
42292SN/A *
52292SN/A * Redistribution and use in source and binary forms, with or without
62292SN/A * modification, are permitted provided that the following conditions are
72292SN/A * met: redistributions of source code must retain the above copyright
82292SN/A * notice, this list of conditions and the following disclaimer;
92292SN/A * redistributions in binary form must reproduce the above copyright
102292SN/A * notice, this list of conditions and the following disclaimer in the
112292SN/A * documentation and/or other materials provided with the distribution;
122292SN/A * neither the name of the copyright holders nor the names of its
132292SN/A * contributors may be used to endorse or promote products derived from
142292SN/A * this software without specific prior written permission.
152292SN/A *
162292SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172292SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182292SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192292SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202292SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212292SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222292SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232292SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242292SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252292SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262292SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272689Sktlim@umich.edu *
282689Sktlim@umich.edu * Authors: Kevin Lim
292689Sktlim@umich.edu *          Korey Sewell
302292SN/A */
312292SN/A
322292SN/A#ifndef __CPU_O3_LSQ_UNIT_HH__
332292SN/A#define __CPU_O3_LSQ_UNIT_HH__
342292SN/A
352329SN/A#include <algorithm>
364395Ssaidi@eecs.umich.edu#include <cstring>
372292SN/A#include <map>
382292SN/A#include <queue>
392292SN/A
402329SN/A#include "arch/faults.hh"
418506Sgblack@eecs.umich.edu#include "arch/isa_traits.hh"
423326Sktlim@umich.edu#include "arch/locked_mem.hh"
438481Sgblack@eecs.umich.edu#include "arch/mmapped_ipr.hh"
448229Snate@binkert.org#include "base/fast_alloc.hh"
458229Snate@binkert.org#include "base/hashmap.hh"
462292SN/A#include "config/full_system.hh"
476658Snate@binkert.org#include "config/the_isa.hh"
482292SN/A#include "cpu/inst_seq.hh"
498230Snate@binkert.org#include "cpu/timebuf.hh"
508232Snate@binkert.org#include "debug/LSQUnit.hh"
513348Sbinkertn@umich.edu#include "mem/packet.hh"
522669Sktlim@umich.edu#include "mem/port.hh"
532292SN/A
545529Snate@binkert.orgclass DerivO3CPUParams;
555529Snate@binkert.org
562292SN/A/**
572329SN/A * Class that implements the actual LQ and SQ for each specific
582329SN/A * thread.  Both are circular queues; load entries are freed upon
592329SN/A * committing, while store entries are freed once they writeback. The
602329SN/A * LSQUnit tracks if there are memory ordering violations, and also
612329SN/A * detects partial load to store forwarding cases (a store only has
622329SN/A * part of a load's data) that requires the load to wait until the
632329SN/A * store writes back. In the former case it holds onto the instruction
642329SN/A * until the dependence unit looks at it, and in the latter it stalls
652329SN/A * the LSQ until the store writes back. At that point the load is
662329SN/A * replayed.
672292SN/A */
682292SN/Atemplate <class Impl>
692292SN/Aclass LSQUnit {
702292SN/A  public:
712733Sktlim@umich.edu    typedef typename Impl::O3CPU O3CPU;
722292SN/A    typedef typename Impl::DynInstPtr DynInstPtr;
732292SN/A    typedef typename Impl::CPUPol::IEW IEW;
742907Sktlim@umich.edu    typedef typename Impl::CPUPol::LSQ LSQ;
752292SN/A    typedef typename Impl::CPUPol::IssueStruct IssueStruct;
762292SN/A
772292SN/A  public:
782292SN/A    /** Constructs an LSQ unit. init() must be called prior to use. */
792292SN/A    LSQUnit();
802292SN/A
812292SN/A    /** Initializes the LSQ unit with the specified number of entries. */
825529Snate@binkert.org    void init(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params,
835529Snate@binkert.org            LSQ *lsq_ptr, unsigned maxLQEntries, unsigned maxSQEntries,
845529Snate@binkert.org            unsigned id);
852292SN/A
862292SN/A    /** Returns the name of the LSQ unit. */
872292SN/A    std::string name() const;
882292SN/A
892727Sktlim@umich.edu    /** Registers statistics. */
902727Sktlim@umich.edu    void regStats();
912727Sktlim@umich.edu
922907Sktlim@umich.edu    /** Sets the pointer to the dcache port. */
934329Sktlim@umich.edu    void setDcachePort(Port *dcache_port);
942907Sktlim@umich.edu
952348SN/A    /** Switches out LSQ unit. */
962307SN/A    void switchOut();
972307SN/A
982348SN/A    /** Takes over from another CPU's thread. */
992307SN/A    void takeOverFrom();
1002307SN/A
1012348SN/A    /** Returns if the LSQ is switched out. */
1022307SN/A    bool isSwitchedOut() { return switchedOut; }
1032307SN/A
1042292SN/A    /** Ticks the LSQ unit, which in this case only resets the number of
1052292SN/A     * used cache ports.
1062292SN/A     * @todo: Move the number of used ports up to the LSQ level so it can
1072292SN/A     * be shared by all LSQ units.
1082292SN/A     */
1092292SN/A    void tick() { usedPorts = 0; }
1102292SN/A
1112292SN/A    /** Inserts an instruction. */
1122292SN/A    void insert(DynInstPtr &inst);
1132292SN/A    /** Inserts a load instruction. */
1142292SN/A    void insertLoad(DynInstPtr &load_inst);
1152292SN/A    /** Inserts a store instruction. */
1162292SN/A    void insertStore(DynInstPtr &store_inst);
1172292SN/A
1188199SAli.Saidi@ARM.com    /** Check for ordering violations in the LSQ
1198199SAli.Saidi@ARM.com     * @param load_idx index to start checking at
1208199SAli.Saidi@ARM.com     * @param inst the instruction to check
1218199SAli.Saidi@ARM.com     */
1228199SAli.Saidi@ARM.com    Fault checkViolations(int load_idx, DynInstPtr &inst);
1238199SAli.Saidi@ARM.com
1242292SN/A    /** Executes a load instruction. */
1252292SN/A    Fault executeLoad(DynInstPtr &inst);
1262292SN/A
1272329SN/A    Fault executeLoad(int lq_idx) { panic("Not implemented"); return NoFault; }
1282292SN/A    /** Executes a store instruction. */
1292292SN/A    Fault executeStore(DynInstPtr &inst);
1302292SN/A
1312292SN/A    /** Commits the head load. */
1322292SN/A    void commitLoad();
1332292SN/A    /** Commits loads older than a specific sequence number. */
1342292SN/A    void commitLoads(InstSeqNum &youngest_inst);
1352292SN/A
1362292SN/A    /** Commits stores older than a specific sequence number. */
1372292SN/A    void commitStores(InstSeqNum &youngest_inst);
1382292SN/A
1392292SN/A    /** Writes back stores. */
1402292SN/A    void writebackStores();
1412292SN/A
1422790Sktlim@umich.edu    /** Completes the data access that has been returned from the
1432790Sktlim@umich.edu     * memory system. */
1442669Sktlim@umich.edu    void completeDataAccess(PacketPtr pkt);
1452669Sktlim@umich.edu
1462292SN/A    /** Clears all the entries in the LQ. */
1472292SN/A    void clearLQ();
1482292SN/A
1492292SN/A    /** Clears all the entries in the SQ. */
1502292SN/A    void clearSQ();
1512292SN/A
1522292SN/A    /** Resizes the LQ to a given size. */
1532292SN/A    void resizeLQ(unsigned size);
1542292SN/A
1552292SN/A    /** Resizes the SQ to a given size. */
1562292SN/A    void resizeSQ(unsigned size);
1572292SN/A
1582292SN/A    /** Squashes all instructions younger than a specific sequence number. */
1592292SN/A    void squash(const InstSeqNum &squashed_num);
1602292SN/A
1612292SN/A    /** Returns if there is a memory ordering violation. Value is reset upon
1622292SN/A     * call to getMemDepViolator().
1632292SN/A     */
1642292SN/A    bool violation() { return memDepViolator; }
1652292SN/A
1662292SN/A    /** Returns the memory ordering violator. */
1672292SN/A    DynInstPtr getMemDepViolator();
1682292SN/A
1692329SN/A    /** Returns if a load became blocked due to the memory system. */
1702292SN/A    bool loadBlocked()
1712292SN/A    { return isLoadBlocked; }
1722292SN/A
1732348SN/A    /** Clears the signal that a load became blocked. */
1742292SN/A    void clearLoadBlocked()
1752292SN/A    { isLoadBlocked = false; }
1762292SN/A
1772348SN/A    /** Returns if the blocked load was handled. */
1782292SN/A    bool isLoadBlockedHandled()
1792292SN/A    { return loadBlockedHandled; }
1802292SN/A
1812348SN/A    /** Records the blocked load as being handled. */
1822292SN/A    void setLoadBlockedHandled()
1832292SN/A    { loadBlockedHandled = true; }
1842292SN/A
1852292SN/A    /** Returns the number of free entries (min of free LQ and SQ entries). */
1862292SN/A    unsigned numFreeEntries();
1872292SN/A
1882292SN/A    /** Returns the number of loads ready to execute. */
1892292SN/A    int numLoadsReady();
1902292SN/A
1912292SN/A    /** Returns the number of loads in the LQ. */
1922292SN/A    int numLoads() { return loads; }
1932292SN/A
1942292SN/A    /** Returns the number of stores in the SQ. */
1952292SN/A    int numStores() { return stores; }
1962292SN/A
1972292SN/A    /** Returns if either the LQ or SQ is full. */
1982292SN/A    bool isFull() { return lqFull() || sqFull(); }
1992292SN/A
2002292SN/A    /** Returns if the LQ is full. */
2012292SN/A    bool lqFull() { return loads >= (LQEntries - 1); }
2022292SN/A
2032292SN/A    /** Returns if the SQ is full. */
2042292SN/A    bool sqFull() { return stores >= (SQEntries - 1); }
2052292SN/A
2062292SN/A    /** Returns the number of instructions in the LSQ. */
2072292SN/A    unsigned getCount() { return loads + stores; }
2082292SN/A
2092292SN/A    /** Returns if there are any stores to writeback. */
2102292SN/A    bool hasStoresToWB() { return storesToWB; }
2112292SN/A
2122292SN/A    /** Returns the number of stores to writeback. */
2132292SN/A    int numStoresToWB() { return storesToWB; }
2142292SN/A
2152292SN/A    /** Returns if the LSQ unit will writeback on this cycle. */
2162292SN/A    bool willWB() { return storeQueue[storeWBIdx].canWB &&
2172678Sktlim@umich.edu                        !storeQueue[storeWBIdx].completed &&
2182678Sktlim@umich.edu                        !isStoreBlocked; }
2192292SN/A
2202907Sktlim@umich.edu    /** Handles doing the retry. */
2212907Sktlim@umich.edu    void recvRetry();
2222907Sktlim@umich.edu
2232292SN/A  private:
2242698Sktlim@umich.edu    /** Writes back the instruction, sending it to IEW. */
2252678Sktlim@umich.edu    void writeback(DynInstPtr &inst, PacketPtr pkt);
2262678Sktlim@umich.edu
2276974Stjones1@inf.ed.ac.uk    /** Writes back a store that couldn't be completed the previous cycle. */
2286974Stjones1@inf.ed.ac.uk    void writebackPendingStore();
2296974Stjones1@inf.ed.ac.uk
2302698Sktlim@umich.edu    /** Handles completing the send of a store to memory. */
2313349Sbinkertn@umich.edu    void storePostSend(PacketPtr pkt);
2322693Sktlim@umich.edu
2332292SN/A    /** Completes the store at the specified index. */
2342292SN/A    void completeStore(int store_idx);
2352292SN/A
2366974Stjones1@inf.ed.ac.uk    /** Attempts to send a store to the cache. */
2376974Stjones1@inf.ed.ac.uk    bool sendStore(PacketPtr data_pkt);
2386974Stjones1@inf.ed.ac.uk
2392292SN/A    /** Increments the given store index (circular queue). */
2402292SN/A    inline void incrStIdx(int &store_idx);
2412292SN/A    /** Decrements the given store index (circular queue). */
2422292SN/A    inline void decrStIdx(int &store_idx);
2432292SN/A    /** Increments the given load index (circular queue). */
2442292SN/A    inline void incrLdIdx(int &load_idx);
2452292SN/A    /** Decrements the given load index (circular queue). */
2462292SN/A    inline void decrLdIdx(int &load_idx);
2472292SN/A
2482329SN/A  public:
2492329SN/A    /** Debugging function to dump instructions in the LSQ. */
2502329SN/A    void dumpInsts();
2512329SN/A
2522292SN/A  private:
2532292SN/A    /** Pointer to the CPU. */
2542733Sktlim@umich.edu    O3CPU *cpu;
2552292SN/A
2562292SN/A    /** Pointer to the IEW stage. */
2572292SN/A    IEW *iewStage;
2582292SN/A
2592907Sktlim@umich.edu    /** Pointer to the LSQ. */
2602907Sktlim@umich.edu    LSQ *lsq;
2612669Sktlim@umich.edu
2622907Sktlim@umich.edu    /** Pointer to the dcache port.  Used only for sending. */
2632907Sktlim@umich.edu    Port *dcachePort;
2642292SN/A
2652698Sktlim@umich.edu    /** Derived class to hold any sender state the LSQ needs. */
2665386Sstever@gmail.com    class LSQSenderState : public Packet::SenderState, public FastAlloc
2672678Sktlim@umich.edu    {
2682678Sktlim@umich.edu      public:
2692698Sktlim@umich.edu        /** Default constructor. */
2702678Sktlim@umich.edu        LSQSenderState()
2716974Stjones1@inf.ed.ac.uk            : noWB(false), isSplit(false), pktToSend(false), outstanding(1),
2726974Stjones1@inf.ed.ac.uk              mainPkt(NULL), pendingPacket(NULL)
2732678Sktlim@umich.edu        { }
2742678Sktlim@umich.edu
2752698Sktlim@umich.edu        /** Instruction who initiated the access to memory. */
2762678Sktlim@umich.edu        DynInstPtr inst;
2772698Sktlim@umich.edu        /** Whether or not it is a load. */
2782678Sktlim@umich.edu        bool isLoad;
2792698Sktlim@umich.edu        /** The LQ/SQ index of the instruction. */
2802678Sktlim@umich.edu        int idx;
2812698Sktlim@umich.edu        /** Whether or not the instruction will need to writeback. */
2822678Sktlim@umich.edu        bool noWB;
2836974Stjones1@inf.ed.ac.uk        /** Whether or not this access is split in two. */
2846974Stjones1@inf.ed.ac.uk        bool isSplit;
2856974Stjones1@inf.ed.ac.uk        /** Whether or not there is a packet that needs sending. */
2866974Stjones1@inf.ed.ac.uk        bool pktToSend;
2876974Stjones1@inf.ed.ac.uk        /** Number of outstanding packets to complete. */
2886974Stjones1@inf.ed.ac.uk        int outstanding;
2896974Stjones1@inf.ed.ac.uk        /** The main packet from a split load, used during writeback. */
2906974Stjones1@inf.ed.ac.uk        PacketPtr mainPkt;
2916974Stjones1@inf.ed.ac.uk        /** A second packet from a split store that needs sending. */
2926974Stjones1@inf.ed.ac.uk        PacketPtr pendingPacket;
2936974Stjones1@inf.ed.ac.uk
2946974Stjones1@inf.ed.ac.uk        /** Completes a packet and returns whether the access is finished. */
2956974Stjones1@inf.ed.ac.uk        inline bool complete() { return --outstanding == 0; }
2962678Sktlim@umich.edu    };
2972678Sktlim@umich.edu
2982698Sktlim@umich.edu    /** Writeback event, specifically for when stores forward data to loads. */
2992678Sktlim@umich.edu    class WritebackEvent : public Event {
3002678Sktlim@umich.edu      public:
3012678Sktlim@umich.edu        /** Constructs a writeback event. */
3022678Sktlim@umich.edu        WritebackEvent(DynInstPtr &_inst, PacketPtr pkt, LSQUnit *lsq_ptr);
3032678Sktlim@umich.edu
3042678Sktlim@umich.edu        /** Processes the writeback event. */
3052678Sktlim@umich.edu        void process();
3062678Sktlim@umich.edu
3072678Sktlim@umich.edu        /** Returns the description of this event. */
3085336Shines@cs.fsu.edu        const char *description() const;
3092678Sktlim@umich.edu
3102678Sktlim@umich.edu      private:
3112698Sktlim@umich.edu        /** Instruction whose results are being written back. */
3122678Sktlim@umich.edu        DynInstPtr inst;
3132678Sktlim@umich.edu
3142698Sktlim@umich.edu        /** The packet that would have been sent to memory. */
3152678Sktlim@umich.edu        PacketPtr pkt;
3162678Sktlim@umich.edu
3172678Sktlim@umich.edu        /** The pointer to the LSQ unit that issued the store. */
3182678Sktlim@umich.edu        LSQUnit<Impl> *lsqPtr;
3192678Sktlim@umich.edu    };
3202678Sktlim@umich.edu
3212292SN/A  public:
3222292SN/A    struct SQEntry {
3232292SN/A        /** Constructs an empty store queue entry. */
3242292SN/A        SQEntry()
3254326Sgblack@eecs.umich.edu            : inst(NULL), req(NULL), size(0),
3262292SN/A              canWB(0), committed(0), completed(0)
3274326Sgblack@eecs.umich.edu        {
3284395Ssaidi@eecs.umich.edu            std::memset(data, 0, sizeof(data));
3294326Sgblack@eecs.umich.edu        }
3302292SN/A
3312292SN/A        /** Constructs a store queue entry for a given instruction. */
3322292SN/A        SQEntry(DynInstPtr &_inst)
3336974Stjones1@inf.ed.ac.uk            : inst(_inst), req(NULL), sreqLow(NULL), sreqHigh(NULL), size(0),
3346974Stjones1@inf.ed.ac.uk              isSplit(0), canWB(0), committed(0), completed(0)
3354326Sgblack@eecs.umich.edu        {
3364395Ssaidi@eecs.umich.edu            std::memset(data, 0, sizeof(data));
3374326Sgblack@eecs.umich.edu        }
3382292SN/A
3392292SN/A        /** The store instruction. */
3402292SN/A        DynInstPtr inst;
3412669Sktlim@umich.edu        /** The request for the store. */
3422669Sktlim@umich.edu        RequestPtr req;
3436974Stjones1@inf.ed.ac.uk        /** The split requests for the store. */
3446974Stjones1@inf.ed.ac.uk        RequestPtr sreqLow;
3456974Stjones1@inf.ed.ac.uk        RequestPtr sreqHigh;
3462292SN/A        /** The size of the store. */
3472292SN/A        int size;
3482292SN/A        /** The store data. */
3497786SAli.Saidi@ARM.com        char data[16];
3506974Stjones1@inf.ed.ac.uk        /** Whether or not the store is split into two requests. */
3516974Stjones1@inf.ed.ac.uk        bool isSplit;
3522292SN/A        /** Whether or not the store can writeback. */
3532292SN/A        bool canWB;
3542292SN/A        /** Whether or not the store is committed. */
3552292SN/A        bool committed;
3562292SN/A        /** Whether or not the store is completed. */
3572292SN/A        bool completed;
3582292SN/A    };
3592329SN/A
3602292SN/A  private:
3612292SN/A    /** The LSQUnit thread id. */
3626221Snate@binkert.org    ThreadID lsqID;
3632292SN/A
3642292SN/A    /** The store queue. */
3652292SN/A    std::vector<SQEntry> storeQueue;
3662292SN/A
3672292SN/A    /** The load queue. */
3682292SN/A    std::vector<DynInstPtr> loadQueue;
3692292SN/A
3702329SN/A    /** The number of LQ entries, plus a sentinel entry (circular queue).
3712329SN/A     *  @todo: Consider having var that records the true number of LQ entries.
3722329SN/A     */
3732292SN/A    unsigned LQEntries;
3742329SN/A    /** The number of SQ entries, plus a sentinel entry (circular queue).
3752329SN/A     *  @todo: Consider having var that records the true number of SQ entries.
3762329SN/A     */
3772292SN/A    unsigned SQEntries;
3782292SN/A
3798199SAli.Saidi@ARM.com    /** The number of places to shift addresses in the LSQ before checking
3808199SAli.Saidi@ARM.com     * for dependency violations
3818199SAli.Saidi@ARM.com     */
3828199SAli.Saidi@ARM.com    unsigned depCheckShift;
3838199SAli.Saidi@ARM.com
3848199SAli.Saidi@ARM.com    /** Should loads be checked for dependency issues */
3858199SAli.Saidi@ARM.com    bool checkLoads;
3868199SAli.Saidi@ARM.com
3872292SN/A    /** The number of load instructions in the LQ. */
3882292SN/A    int loads;
3892329SN/A    /** The number of store instructions in the SQ. */
3902292SN/A    int stores;
3912292SN/A    /** The number of store instructions in the SQ waiting to writeback. */
3922292SN/A    int storesToWB;
3932292SN/A
3942292SN/A    /** The index of the head instruction in the LQ. */
3952292SN/A    int loadHead;
3962292SN/A    /** The index of the tail instruction in the LQ. */
3972292SN/A    int loadTail;
3982292SN/A
3992292SN/A    /** The index of the head instruction in the SQ. */
4002292SN/A    int storeHead;
4012329SN/A    /** The index of the first instruction that may be ready to be
4022329SN/A     * written back, and has not yet been written back.
4032292SN/A     */
4042292SN/A    int storeWBIdx;
4052292SN/A    /** The index of the tail instruction in the SQ. */
4062292SN/A    int storeTail;
4072292SN/A
4082292SN/A    /// @todo Consider moving to a more advanced model with write vs read ports
4092292SN/A    /** The number of cache ports available each cycle. */
4102292SN/A    int cachePorts;
4112292SN/A
4122292SN/A    /** The number of used cache ports in this cycle. */
4132292SN/A    int usedPorts;
4142292SN/A
4152348SN/A    /** Is the LSQ switched out. */
4162307SN/A    bool switchedOut;
4172307SN/A
4182292SN/A    //list<InstSeqNum> mshrSeqNums;
4192292SN/A
4202292SN/A    /** Wire to read information from the issue stage time queue. */
4212292SN/A    typename TimeBuffer<IssueStruct>::wire fromIssue;
4222292SN/A
4232292SN/A    /** Whether or not the LSQ is stalled. */
4242292SN/A    bool stalled;
4252292SN/A    /** The store that causes the stall due to partial store to load
4262292SN/A     * forwarding.
4272292SN/A     */
4282292SN/A    InstSeqNum stallingStoreIsn;
4292292SN/A    /** The index of the above store. */
4302292SN/A    int stallingLoadIdx;
4312292SN/A
4322698Sktlim@umich.edu    /** The packet that needs to be retried. */
4332698Sktlim@umich.edu    PacketPtr retryPkt;
4342693Sktlim@umich.edu
4352698Sktlim@umich.edu    /** Whehter or not a store is blocked due to the memory system. */
4362678Sktlim@umich.edu    bool isStoreBlocked;
4372678Sktlim@umich.edu
4382329SN/A    /** Whether or not a load is blocked due to the memory system. */
4392292SN/A    bool isLoadBlocked;
4402292SN/A
4412348SN/A    /** Has the blocked load been handled. */
4422292SN/A    bool loadBlockedHandled;
4432292SN/A
4442348SN/A    /** The sequence number of the blocked load. */
4452292SN/A    InstSeqNum blockedLoadSeqNum;
4462292SN/A
4472292SN/A    /** The oldest load that caused a memory ordering violation. */
4482292SN/A    DynInstPtr memDepViolator;
4492292SN/A
4506974Stjones1@inf.ed.ac.uk    /** Whether or not there is a packet that couldn't be sent because of
4516974Stjones1@inf.ed.ac.uk     * a lack of cache ports. */
4526974Stjones1@inf.ed.ac.uk    bool hasPendingPkt;
4536974Stjones1@inf.ed.ac.uk
4546974Stjones1@inf.ed.ac.uk    /** The packet that is pending free cache ports. */
4556974Stjones1@inf.ed.ac.uk    PacketPtr pendingPkt;
4566974Stjones1@inf.ed.ac.uk
4572292SN/A    // Will also need how many read/write ports the Dcache has.  Or keep track
4582292SN/A    // of that in stage that is one level up, and only call executeLoad/Store
4592292SN/A    // the appropriate number of times.
4602727Sktlim@umich.edu    /** Total number of loads forwaded from LSQ stores. */
4615999Snate@binkert.org    Stats::Scalar lsqForwLoads;
4622307SN/A
4633126Sktlim@umich.edu    /** Total number of loads ignored due to invalid addresses. */
4645999Snate@binkert.org    Stats::Scalar invAddrLoads;
4653126Sktlim@umich.edu
4663126Sktlim@umich.edu    /** Total number of squashed loads. */
4675999Snate@binkert.org    Stats::Scalar lsqSquashedLoads;
4683126Sktlim@umich.edu
4693126Sktlim@umich.edu    /** Total number of responses from the memory system that are
4703126Sktlim@umich.edu     * ignored due to the instruction already being squashed. */
4715999Snate@binkert.org    Stats::Scalar lsqIgnoredResponses;
4723126Sktlim@umich.edu
4733126Sktlim@umich.edu    /** Tota number of memory ordering violations. */
4745999Snate@binkert.org    Stats::Scalar lsqMemOrderViolation;
4753126Sktlim@umich.edu
4762727Sktlim@umich.edu    /** Total number of squashed stores. */
4775999Snate@binkert.org    Stats::Scalar lsqSquashedStores;
4782727Sktlim@umich.edu
4792727Sktlim@umich.edu    /** Total number of software prefetches ignored due to invalid addresses. */
4805999Snate@binkert.org    Stats::Scalar invAddrSwpfs;
4812727Sktlim@umich.edu
4822727Sktlim@umich.edu    /** Ready loads blocked due to partial store-forwarding. */
4835999Snate@binkert.org    Stats::Scalar lsqBlockedLoads;
4842727Sktlim@umich.edu
4852727Sktlim@umich.edu    /** Number of loads that were rescheduled. */
4865999Snate@binkert.org    Stats::Scalar lsqRescheduledLoads;
4872727Sktlim@umich.edu
4882727Sktlim@umich.edu    /** Number of times the LSQ is blocked due to the cache. */
4895999Snate@binkert.org    Stats::Scalar lsqCacheBlocked;
4902727Sktlim@umich.edu
4912292SN/A  public:
4922292SN/A    /** Executes the load at the given index. */
4937520Sgblack@eecs.umich.edu    Fault read(Request *req, Request *sreqLow, Request *sreqHigh,
4947520Sgblack@eecs.umich.edu               uint8_t *data, int load_idx);
4952292SN/A
4962292SN/A    /** Executes the store at the given index. */
4977520Sgblack@eecs.umich.edu    Fault write(Request *req, Request *sreqLow, Request *sreqHigh,
4987520Sgblack@eecs.umich.edu                uint8_t *data, int store_idx);
4992292SN/A
5002292SN/A    /** Returns the index of the head load instruction. */
5012292SN/A    int getLoadHead() { return loadHead; }
5022292SN/A    /** Returns the sequence number of the head load instruction. */
5032292SN/A    InstSeqNum getLoadHeadSeqNum()
5042292SN/A    {
5052292SN/A        if (loadQueue[loadHead]) {
5062292SN/A            return loadQueue[loadHead]->seqNum;
5072292SN/A        } else {
5082292SN/A            return 0;
5092292SN/A        }
5102292SN/A
5112292SN/A    }
5122292SN/A
5132292SN/A    /** Returns the index of the head store instruction. */
5142292SN/A    int getStoreHead() { return storeHead; }
5152292SN/A    /** Returns the sequence number of the head store instruction. */
5162292SN/A    InstSeqNum getStoreHeadSeqNum()
5172292SN/A    {
5182292SN/A        if (storeQueue[storeHead].inst) {
5192292SN/A            return storeQueue[storeHead].inst->seqNum;
5202292SN/A        } else {
5212292SN/A            return 0;
5222292SN/A        }
5232292SN/A
5242292SN/A    }
5252292SN/A
5262292SN/A    /** Returns whether or not the LSQ unit is stalled. */
5272292SN/A    bool isStalled()  { return stalled; }
5282292SN/A};
5292292SN/A
5302292SN/Atemplate <class Impl>
5312292SN/AFault
5326974Stjones1@inf.ed.ac.ukLSQUnit<Impl>::read(Request *req, Request *sreqLow, Request *sreqHigh,
5337520Sgblack@eecs.umich.edu                    uint8_t *data, int load_idx)
5342292SN/A{
5352669Sktlim@umich.edu    DynInstPtr load_inst = loadQueue[load_idx];
5362292SN/A
5372669Sktlim@umich.edu    assert(load_inst);
5382669Sktlim@umich.edu
5392669Sktlim@umich.edu    assert(!load_inst->isExecuted());
5402292SN/A
5412292SN/A    // Make sure this isn't an uncacheable access
5422292SN/A    // A bit of a hackish way to get uncached accesses to work only if they're
5432292SN/A    // at the head of the LSQ and are ready to commit (at the head of the ROB
5442292SN/A    // too).
5453172Sstever@eecs.umich.edu    if (req->isUncacheable() &&
5462731Sktlim@umich.edu        (load_idx != loadHead || !load_inst->isAtCommit())) {
5472669Sktlim@umich.edu        iewStage->rescheduleMemInst(load_inst);
5482727Sktlim@umich.edu        ++lsqRescheduledLoads;
5497720Sgblack@eecs.umich.edu        DPRINTF(LSQUnit, "Uncachable load [sn:%lli] PC %s\n",
5507720Sgblack@eecs.umich.edu                load_inst->seqNum, load_inst->pcState());
5514032Sktlim@umich.edu
5524032Sktlim@umich.edu        // Must delete request now that it wasn't handed off to
5534032Sktlim@umich.edu        // memory.  This is quite ugly.  @todo: Figure out the proper
5544032Sktlim@umich.edu        // place to really handle request deletes.
5554032Sktlim@umich.edu        delete req;
5566974Stjones1@inf.ed.ac.uk        if (TheISA::HasUnalignedMemAcc && sreqLow) {
5576974Stjones1@inf.ed.ac.uk            delete sreqLow;
5586974Stjones1@inf.ed.ac.uk            delete sreqHigh;
5596974Stjones1@inf.ed.ac.uk        }
5602292SN/A        return TheISA::genMachineCheckFault();
5612292SN/A    }
5622292SN/A
5632292SN/A    // Check the SQ for any previous stores that might lead to forwarding
5642669Sktlim@umich.edu    int store_idx = load_inst->sqIdx;
5652292SN/A
5662292SN/A    int store_size = 0;
5672292SN/A
5682292SN/A    DPRINTF(LSQUnit, "Read called, load idx: %i, store idx: %i, "
5696974Stjones1@inf.ed.ac.uk            "storeHead: %i addr: %#x%s\n",
5706974Stjones1@inf.ed.ac.uk            load_idx, store_idx, storeHead, req->getPaddr(),
5716974Stjones1@inf.ed.ac.uk            sreqLow ? " split" : "");
5722292SN/A
5736102Sgblack@eecs.umich.edu    if (req->isLLSC()) {
5746974Stjones1@inf.ed.ac.uk        assert(!sreqLow);
5753326Sktlim@umich.edu        // Disable recording the result temporarily.  Writing to misc
5763326Sktlim@umich.edu        // regs normally updates the result, but this is not the
5773326Sktlim@umich.edu        // desired behavior when handling store conditionals.
5783326Sktlim@umich.edu        load_inst->recordResult = false;
5793326Sktlim@umich.edu        TheISA::handleLockedRead(load_inst.get(), req);
5803326Sktlim@umich.edu        load_inst->recordResult = true;
5812292SN/A    }
5822292SN/A
5838481Sgblack@eecs.umich.edu    if (req->isMmappedIpr()) {
5848481Sgblack@eecs.umich.edu        assert(!load_inst->memData);
5858481Sgblack@eecs.umich.edu        load_inst->memData = new uint8_t[64];
5868481Sgblack@eecs.umich.edu
5878481Sgblack@eecs.umich.edu        ThreadContext *thread = cpu->tcBase(lsqID);
5888481Sgblack@eecs.umich.edu        Tick delay;
5898481Sgblack@eecs.umich.edu        PacketPtr data_pkt =
5908481Sgblack@eecs.umich.edu            new Packet(req, MemCmd::ReadReq, Packet::Broadcast);
5918481Sgblack@eecs.umich.edu
5928481Sgblack@eecs.umich.edu        if (!TheISA::HasUnalignedMemAcc || !sreqLow) {
5938481Sgblack@eecs.umich.edu            data_pkt->dataStatic(load_inst->memData);
5948481Sgblack@eecs.umich.edu            delay = TheISA::handleIprRead(thread, data_pkt);
5958481Sgblack@eecs.umich.edu        } else {
5968481Sgblack@eecs.umich.edu            assert(sreqLow->isMmappedIpr() && sreqHigh->isMmappedIpr());
5978481Sgblack@eecs.umich.edu            PacketPtr fst_data_pkt =
5988481Sgblack@eecs.umich.edu                new Packet(sreqLow, MemCmd::ReadReq, Packet::Broadcast);
5998481Sgblack@eecs.umich.edu            PacketPtr snd_data_pkt =
6008481Sgblack@eecs.umich.edu                new Packet(sreqHigh, MemCmd::ReadReq, Packet::Broadcast);
6018481Sgblack@eecs.umich.edu
6028481Sgblack@eecs.umich.edu            fst_data_pkt->dataStatic(load_inst->memData);
6038481Sgblack@eecs.umich.edu            snd_data_pkt->dataStatic(load_inst->memData + sreqLow->getSize());
6048481Sgblack@eecs.umich.edu
6058481Sgblack@eecs.umich.edu            delay = TheISA::handleIprRead(thread, fst_data_pkt);
6068481Sgblack@eecs.umich.edu            unsigned delay2 = TheISA::handleIprRead(thread, snd_data_pkt);
6078481Sgblack@eecs.umich.edu            if (delay2 > delay)
6088481Sgblack@eecs.umich.edu                delay = delay2;
6098481Sgblack@eecs.umich.edu
6108481Sgblack@eecs.umich.edu            delete sreqLow;
6118481Sgblack@eecs.umich.edu            delete sreqHigh;
6128481Sgblack@eecs.umich.edu            delete fst_data_pkt;
6138481Sgblack@eecs.umich.edu            delete snd_data_pkt;
6148481Sgblack@eecs.umich.edu        }
6158481Sgblack@eecs.umich.edu        WritebackEvent *wb = new WritebackEvent(load_inst, data_pkt, this);
6168481Sgblack@eecs.umich.edu        cpu->schedule(wb, curTick() + delay);
6178481Sgblack@eecs.umich.edu        return NoFault;
6188481Sgblack@eecs.umich.edu    }
6198481Sgblack@eecs.umich.edu
6202292SN/A    while (store_idx != -1) {
6212292SN/A        // End once we've reached the top of the LSQ
6222292SN/A        if (store_idx == storeWBIdx) {
6232292SN/A            break;
6242292SN/A        }
6252292SN/A
6262292SN/A        // Move the index to one younger
6272292SN/A        if (--store_idx < 0)
6282292SN/A            store_idx += SQEntries;
6292292SN/A
6302292SN/A        assert(storeQueue[store_idx].inst);
6312292SN/A
6322292SN/A        store_size = storeQueue[store_idx].size;
6332292SN/A
6342292SN/A        if (store_size == 0)
6352292SN/A            continue;
6364032Sktlim@umich.edu        else if (storeQueue[store_idx].inst->uncacheable())
6374032Sktlim@umich.edu            continue;
6384032Sktlim@umich.edu
6394032Sktlim@umich.edu        assert(storeQueue[store_idx].inst->effAddrValid);
6402292SN/A
6412292SN/A        // Check if the store data is within the lower and upper bounds of
6422292SN/A        // addresses that the request needs.
6432292SN/A        bool store_has_lower_limit =
6442669Sktlim@umich.edu            req->getVaddr() >= storeQueue[store_idx].inst->effAddr;
6452292SN/A        bool store_has_upper_limit =
6462669Sktlim@umich.edu            (req->getVaddr() + req->getSize()) <=
6472669Sktlim@umich.edu            (storeQueue[store_idx].inst->effAddr + store_size);
6482292SN/A        bool lower_load_has_store_part =
6492669Sktlim@umich.edu            req->getVaddr() < (storeQueue[store_idx].inst->effAddr +
6502292SN/A                           store_size);
6512292SN/A        bool upper_load_has_store_part =
6522669Sktlim@umich.edu            (req->getVaddr() + req->getSize()) >
6532669Sktlim@umich.edu            storeQueue[store_idx].inst->effAddr;
6542292SN/A
6552292SN/A        // If the store's data has all of the data needed, we can forward.
6564032Sktlim@umich.edu        if ((store_has_lower_limit && store_has_upper_limit)) {
6572329SN/A            // Get shift amount for offset into the store's data.
6588316Sgeoffrey.blake@arm.com            int shift_amt = req->getVaddr() - storeQueue[store_idx].inst->effAddr;
6592292SN/A
6607520Sgblack@eecs.umich.edu            memcpy(data, storeQueue[store_idx].data + shift_amt,
6617520Sgblack@eecs.umich.edu                   req->getSize());
6623803Sgblack@eecs.umich.edu
6632669Sktlim@umich.edu            assert(!load_inst->memData);
6642669Sktlim@umich.edu            load_inst->memData = new uint8_t[64];
6652292SN/A
6664326Sgblack@eecs.umich.edu            memcpy(load_inst->memData,
6674326Sgblack@eecs.umich.edu                    storeQueue[store_idx].data + shift_amt, req->getSize());
6682292SN/A
6692292SN/A            DPRINTF(LSQUnit, "Forwarding from store idx %i to load to "
6702292SN/A                    "addr %#x, data %#x\n",
6712693Sktlim@umich.edu                    store_idx, req->getVaddr(), data);
6722678Sktlim@umich.edu
6734022Sstever@eecs.umich.edu            PacketPtr data_pkt = new Packet(req, MemCmd::ReadReq,
6744022Sstever@eecs.umich.edu                                            Packet::Broadcast);
6752678Sktlim@umich.edu            data_pkt->dataStatic(load_inst->memData);
6762678Sktlim@umich.edu
6772678Sktlim@umich.edu            WritebackEvent *wb = new WritebackEvent(load_inst, data_pkt, this);
6782292SN/A
6792292SN/A            // We'll say this has a 1 cycle load-store forwarding latency
6802292SN/A            // for now.
6812292SN/A            // @todo: Need to make this a parameter.
6827823Ssteve.reinhardt@amd.com            cpu->schedule(wb, curTick());
6832678Sktlim@umich.edu
6846974Stjones1@inf.ed.ac.uk            // Don't need to do anything special for split loads.
6856974Stjones1@inf.ed.ac.uk            if (TheISA::HasUnalignedMemAcc && sreqLow) {
6866974Stjones1@inf.ed.ac.uk                delete sreqLow;
6876974Stjones1@inf.ed.ac.uk                delete sreqHigh;
6886974Stjones1@inf.ed.ac.uk            }
6896974Stjones1@inf.ed.ac.uk
6902727Sktlim@umich.edu            ++lsqForwLoads;
6912292SN/A            return NoFault;
6922292SN/A        } else if ((store_has_lower_limit && lower_load_has_store_part) ||
6932292SN/A                   (store_has_upper_limit && upper_load_has_store_part) ||
6942292SN/A                   (lower_load_has_store_part && upper_load_has_store_part)) {
6952292SN/A            // This is the partial store-load forwarding case where a store
6962292SN/A            // has only part of the load's data.
6972292SN/A
6982292SN/A            // If it's already been written back, then don't worry about
6992292SN/A            // stalling on it.
7002292SN/A            if (storeQueue[store_idx].completed) {
7014032Sktlim@umich.edu                panic("Should not check one of these");
7022292SN/A                continue;
7032292SN/A            }
7042292SN/A
7052292SN/A            // Must stall load and force it to retry, so long as it's the oldest
7062292SN/A            // load that needs to do so.
7072292SN/A            if (!stalled ||
7082292SN/A                (stalled &&
7092669Sktlim@umich.edu                 load_inst->seqNum <
7102292SN/A                 loadQueue[stallingLoadIdx]->seqNum)) {
7112292SN/A                stalled = true;
7122292SN/A                stallingStoreIsn = storeQueue[store_idx].inst->seqNum;
7132292SN/A                stallingLoadIdx = load_idx;
7142292SN/A            }
7152292SN/A
7162292SN/A            // Tell IQ/mem dep unit that this instruction will need to be
7172292SN/A            // rescheduled eventually
7182669Sktlim@umich.edu            iewStage->rescheduleMemInst(load_inst);
7192927Sktlim@umich.edu            iewStage->decrWb(load_inst->seqNum);
7204032Sktlim@umich.edu            load_inst->clearIssued();
7212727Sktlim@umich.edu            ++lsqRescheduledLoads;
7222292SN/A
7232292SN/A            // Do not generate a writeback event as this instruction is not
7242292SN/A            // complete.
7252292SN/A            DPRINTF(LSQUnit, "Load-store forwarding mis-match. "
7262292SN/A                    "Store idx %i to load addr %#x\n",
7272669Sktlim@umich.edu                    store_idx, req->getVaddr());
7282292SN/A
7294032Sktlim@umich.edu            // Must delete request now that it wasn't handed off to
7304032Sktlim@umich.edu            // memory.  This is quite ugly.  @todo: Figure out the
7314032Sktlim@umich.edu            // proper place to really handle request deletes.
7324032Sktlim@umich.edu            delete req;
7336974Stjones1@inf.ed.ac.uk            if (TheISA::HasUnalignedMemAcc && sreqLow) {
7346974Stjones1@inf.ed.ac.uk                delete sreqLow;
7356974Stjones1@inf.ed.ac.uk                delete sreqHigh;
7366974Stjones1@inf.ed.ac.uk            }
7374032Sktlim@umich.edu
7382292SN/A            return NoFault;
7392292SN/A        }
7402292SN/A    }
7412292SN/A
7422292SN/A    // If there's no forwarding case, then go access memory
7437720Sgblack@eecs.umich.edu    DPRINTF(LSQUnit, "Doing memory access for inst [sn:%lli] PC %s\n",
7447720Sgblack@eecs.umich.edu            load_inst->seqNum, load_inst->pcState());
7452292SN/A
7462669Sktlim@umich.edu    assert(!load_inst->memData);
7472669Sktlim@umich.edu    load_inst->memData = new uint8_t[64];
7482292SN/A
7492292SN/A    ++usedPorts;
7502292SN/A
7512907Sktlim@umich.edu    // if we the cache is not blocked, do cache access
7526974Stjones1@inf.ed.ac.uk    bool completedFirst = false;
7532907Sktlim@umich.edu    if (!lsq->cacheBlocked()) {
7546974Stjones1@inf.ed.ac.uk        MemCmd command =
7556974Stjones1@inf.ed.ac.uk            req->isLLSC() ? MemCmd::LoadLockedReq : MemCmd::ReadReq;
7566974Stjones1@inf.ed.ac.uk        PacketPtr data_pkt = new Packet(req, command, Packet::Broadcast);
7576974Stjones1@inf.ed.ac.uk        PacketPtr fst_data_pkt = NULL;
7586974Stjones1@inf.ed.ac.uk        PacketPtr snd_data_pkt = NULL;
7596974Stjones1@inf.ed.ac.uk
7603228Sktlim@umich.edu        data_pkt->dataStatic(load_inst->memData);
7613228Sktlim@umich.edu
7623228Sktlim@umich.edu        LSQSenderState *state = new LSQSenderState;
7633228Sktlim@umich.edu        state->isLoad = true;
7643228Sktlim@umich.edu        state->idx = load_idx;
7653228Sktlim@umich.edu        state->inst = load_inst;
7663228Sktlim@umich.edu        data_pkt->senderState = state;
7673228Sktlim@umich.edu
7686974Stjones1@inf.ed.ac.uk        if (!TheISA::HasUnalignedMemAcc || !sreqLow) {
7696974Stjones1@inf.ed.ac.uk
7706974Stjones1@inf.ed.ac.uk            // Point the first packet at the main data packet.
7716974Stjones1@inf.ed.ac.uk            fst_data_pkt = data_pkt;
7726974Stjones1@inf.ed.ac.uk        } else {
7736974Stjones1@inf.ed.ac.uk
7746974Stjones1@inf.ed.ac.uk            // Create the split packets.
7756974Stjones1@inf.ed.ac.uk            fst_data_pkt = new Packet(sreqLow, command, Packet::Broadcast);
7766974Stjones1@inf.ed.ac.uk            snd_data_pkt = new Packet(sreqHigh, command, Packet::Broadcast);
7776974Stjones1@inf.ed.ac.uk
7786974Stjones1@inf.ed.ac.uk            fst_data_pkt->dataStatic(load_inst->memData);
7796974Stjones1@inf.ed.ac.uk            snd_data_pkt->dataStatic(load_inst->memData + sreqLow->getSize());
7806974Stjones1@inf.ed.ac.uk
7816974Stjones1@inf.ed.ac.uk            fst_data_pkt->senderState = state;
7826974Stjones1@inf.ed.ac.uk            snd_data_pkt->senderState = state;
7836974Stjones1@inf.ed.ac.uk
7846974Stjones1@inf.ed.ac.uk            state->isSplit = true;
7856974Stjones1@inf.ed.ac.uk            state->outstanding = 2;
7866974Stjones1@inf.ed.ac.uk            state->mainPkt = data_pkt;
7876974Stjones1@inf.ed.ac.uk        }
7886974Stjones1@inf.ed.ac.uk
7896974Stjones1@inf.ed.ac.uk        if (!dcachePort->sendTiming(fst_data_pkt)) {
7903228Sktlim@umich.edu            // Delete state and data packet because a load retry
7913228Sktlim@umich.edu            // initiates a pipeline restart; it does not retry.
7923228Sktlim@umich.edu            delete state;
7934032Sktlim@umich.edu            delete data_pkt->req;
7943228Sktlim@umich.edu            delete data_pkt;
7956974Stjones1@inf.ed.ac.uk            if (TheISA::HasUnalignedMemAcc && sreqLow) {
7966974Stjones1@inf.ed.ac.uk                delete fst_data_pkt->req;
7976974Stjones1@inf.ed.ac.uk                delete fst_data_pkt;
7986974Stjones1@inf.ed.ac.uk                delete snd_data_pkt->req;
7996974Stjones1@inf.ed.ac.uk                delete snd_data_pkt;
8007511Stjones1@inf.ed.ac.uk                sreqLow = NULL;
8017511Stjones1@inf.ed.ac.uk                sreqHigh = NULL;
8026974Stjones1@inf.ed.ac.uk            }
8033228Sktlim@umich.edu
8044032Sktlim@umich.edu            req = NULL;
8054032Sktlim@umich.edu
8062907Sktlim@umich.edu            // If the access didn't succeed, tell the LSQ by setting
8072907Sktlim@umich.edu            // the retry thread id.
8082907Sktlim@umich.edu            lsq->setRetryTid(lsqID);
8096974Stjones1@inf.ed.ac.uk        } else if (TheISA::HasUnalignedMemAcc && sreqLow) {
8106974Stjones1@inf.ed.ac.uk            completedFirst = true;
8116974Stjones1@inf.ed.ac.uk
8126974Stjones1@inf.ed.ac.uk            // The first packet was sent without problems, so send this one
8136974Stjones1@inf.ed.ac.uk            // too. If there is a problem with this packet then the whole
8146974Stjones1@inf.ed.ac.uk            // load will be squashed, so indicate this to the state object.
8156974Stjones1@inf.ed.ac.uk            // The first packet will return in completeDataAccess and be
8166974Stjones1@inf.ed.ac.uk            // handled there.
8176974Stjones1@inf.ed.ac.uk            ++usedPorts;
8186974Stjones1@inf.ed.ac.uk            if (!dcachePort->sendTiming(snd_data_pkt)) {
8196974Stjones1@inf.ed.ac.uk
8206974Stjones1@inf.ed.ac.uk                // The main packet will be deleted in completeDataAccess.
8216974Stjones1@inf.ed.ac.uk                delete snd_data_pkt->req;
8226974Stjones1@inf.ed.ac.uk                delete snd_data_pkt;
8236974Stjones1@inf.ed.ac.uk
8246974Stjones1@inf.ed.ac.uk                state->complete();
8256974Stjones1@inf.ed.ac.uk
8266974Stjones1@inf.ed.ac.uk                req = NULL;
8277511Stjones1@inf.ed.ac.uk                sreqHigh = NULL;
8286974Stjones1@inf.ed.ac.uk
8296974Stjones1@inf.ed.ac.uk                lsq->setRetryTid(lsqID);
8306974Stjones1@inf.ed.ac.uk            }
8312907Sktlim@umich.edu        }
8322907Sktlim@umich.edu    }
8332907Sktlim@umich.edu
8342907Sktlim@umich.edu    // If the cache was blocked, or has become blocked due to the access,
8352907Sktlim@umich.edu    // handle it.
8362907Sktlim@umich.edu    if (lsq->cacheBlocked()) {
8374032Sktlim@umich.edu        if (req)
8384032Sktlim@umich.edu            delete req;
8396974Stjones1@inf.ed.ac.uk        if (TheISA::HasUnalignedMemAcc && sreqLow && !completedFirst) {
8406974Stjones1@inf.ed.ac.uk            delete sreqLow;
8416974Stjones1@inf.ed.ac.uk            delete sreqHigh;
8426974Stjones1@inf.ed.ac.uk        }
8434032Sktlim@umich.edu
8442727Sktlim@umich.edu        ++lsqCacheBlocked;
8453014Srdreslin@umich.edu
8468315Sgeoffrey.blake@arm.com        // If the first part of a split access succeeds, then let the LSQ
8478315Sgeoffrey.blake@arm.com        // handle the decrWb when completeDataAccess is called upon return
8488315Sgeoffrey.blake@arm.com        // of the requested first part of data
8498315Sgeoffrey.blake@arm.com        if (!completedFirst)
8508315Sgeoffrey.blake@arm.com            iewStage->decrWb(load_inst->seqNum);
8518315Sgeoffrey.blake@arm.com
8522669Sktlim@umich.edu        // There's an older load that's already going to squash.
8532669Sktlim@umich.edu        if (isLoadBlocked && blockedLoadSeqNum < load_inst->seqNum)
8542669Sktlim@umich.edu            return NoFault;
8552292SN/A
8562669Sktlim@umich.edu        // Record that the load was blocked due to memory.  This
8572669Sktlim@umich.edu        // load will squash all instructions after it, be
8582669Sktlim@umich.edu        // refetched, and re-executed.
8592669Sktlim@umich.edu        isLoadBlocked = true;
8602669Sktlim@umich.edu        loadBlockedHandled = false;
8612669Sktlim@umich.edu        blockedLoadSeqNum = load_inst->seqNum;
8622669Sktlim@umich.edu        // No fault occurred, even though the interface is blocked.
8632669Sktlim@umich.edu        return NoFault;
8642292SN/A    }
8652292SN/A
8662669Sktlim@umich.edu    return NoFault;
8672292SN/A}
8682292SN/A
8692292SN/Atemplate <class Impl>
8702292SN/AFault
8716974Stjones1@inf.ed.ac.ukLSQUnit<Impl>::write(Request *req, Request *sreqLow, Request *sreqHigh,
8727520Sgblack@eecs.umich.edu                     uint8_t *data, int store_idx)
8732292SN/A{
8742292SN/A    assert(storeQueue[store_idx].inst);
8752292SN/A
8762292SN/A    DPRINTF(LSQUnit, "Doing write to store idx %i, addr %#x data %#x"
8772292SN/A            " | storeHead:%i [sn:%i]\n",
8782669Sktlim@umich.edu            store_idx, req->getPaddr(), data, storeHead,
8792292SN/A            storeQueue[store_idx].inst->seqNum);
8802329SN/A
8812292SN/A    storeQueue[store_idx].req = req;
8826974Stjones1@inf.ed.ac.uk    storeQueue[store_idx].sreqLow = sreqLow;
8836974Stjones1@inf.ed.ac.uk    storeQueue[store_idx].sreqHigh = sreqHigh;
8847520Sgblack@eecs.umich.edu    unsigned size = req->getSize();
8857520Sgblack@eecs.umich.edu    storeQueue[store_idx].size = size;
8867520Sgblack@eecs.umich.edu    assert(size <= sizeof(storeQueue[store_idx].data));
8877509Stjones1@inf.ed.ac.uk
8887509Stjones1@inf.ed.ac.uk    // Split stores can only occur in ISAs with unaligned memory accesses.  If
8897509Stjones1@inf.ed.ac.uk    // a store request has been split, sreqLow and sreqHigh will be non-null.
8907509Stjones1@inf.ed.ac.uk    if (TheISA::HasUnalignedMemAcc && sreqLow) {
8917509Stjones1@inf.ed.ac.uk        storeQueue[store_idx].isSplit = true;
8927509Stjones1@inf.ed.ac.uk    }
8934326Sgblack@eecs.umich.edu
8947520Sgblack@eecs.umich.edu    memcpy(storeQueue[store_idx].data, data, size);
8952329SN/A
8962292SN/A    // This function only writes the data to the store queue, so no fault
8972292SN/A    // can happen here.
8982292SN/A    return NoFault;
8992292SN/A}
9002292SN/A
9012292SN/A#endif // __CPU_O3_LSQ_UNIT_HH__
902