lsq.hh revision 3846:a0fe3210ce53
15647Sgblack@eecs.umich.edu/*
25647Sgblack@eecs.umich.edu * Copyright (c) 2004-2006 The Regents of The University of Michigan
35647Sgblack@eecs.umich.edu * All rights reserved.
45647Sgblack@eecs.umich.edu *
55647Sgblack@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
65647Sgblack@eecs.umich.edu * modification, are permitted provided that the following conditions are
75647Sgblack@eecs.umich.edu * met: redistributions of source code must retain the above copyright
85647Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
95647Sgblack@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
105647Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
115647Sgblack@eecs.umich.edu * documentation and/or other materials provided with the distribution;
125647Sgblack@eecs.umich.edu * neither the name of the copyright holders nor the names of its
135647Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
145647Sgblack@eecs.umich.edu * this software without specific prior written permission.
155647Sgblack@eecs.umich.edu *
165647Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
175647Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
185647Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
195647Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
205647Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
215647Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
225647Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
235647Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
245647Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
255647Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
265647Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
275647Sgblack@eecs.umich.edu *
285647Sgblack@eecs.umich.edu * Authors: Korey Sewell
295647Sgblack@eecs.umich.edu */
305647Sgblack@eecs.umich.edu
315647Sgblack@eecs.umich.edu#ifndef __CPU_O3_LSQ_HH__
325647Sgblack@eecs.umich.edu#define __CPU_O3_LSQ_HH__
335647Sgblack@eecs.umich.edu
349338SAndreas.Sandberg@arm.com#include <map>
35#include <queue>
36
37#include "config/full_system.hh"
38#include "cpu/inst_seq.hh"
39#include "cpu/o3/lsq_unit.hh"
40#include "mem/port.hh"
41#include "sim/sim_object.hh"
42
43template <class Impl>
44class LSQ {
45  public:
46    typedef typename Impl::Params Params;
47    typedef typename Impl::O3CPU O3CPU;
48    typedef typename Impl::DynInstPtr DynInstPtr;
49    typedef typename Impl::CPUPol::IEW IEW;
50    typedef typename Impl::CPUPol::LSQUnit LSQUnit;
51
52    /** SMT policy. */
53    enum LSQPolicy {
54        Dynamic,
55        Partitioned,
56        Threshold
57    };
58
59    /** Constructs an LSQ with the given parameters. */
60    LSQ(Params *params);
61
62    /** Returns the name of the LSQ. */
63    std::string name() const;
64
65    /** Registers statistics of each LSQ unit. */
66    void regStats();
67
68    /** Returns dcache port.
69     *  @todo: Dcache port needs to be moved up to this level for SMT
70     *  to work.  For now it just returns the port from one of the
71     *  threads.
72     */
73    Port *getDcachePort() { return &dcachePort; }
74
75    /** Sets the pointer to the list of active threads. */
76    void setActiveThreads(std::list<unsigned> *at_ptr);
77    /** Sets the CPU pointer. */
78    void setCPU(O3CPU *cpu_ptr);
79    /** Sets the IEW stage pointer. */
80    void setIEW(IEW *iew_ptr);
81    /** Switches out the LSQ. */
82    void switchOut();
83    /** Takes over execution from another CPU's thread. */
84    void takeOverFrom();
85
86    /** Number of entries needed for the given amount of threads.*/
87    int entryAmount(int num_threads);
88    void removeEntries(unsigned tid);
89    /** Reset the max entries for each thread. */
90    void resetEntries();
91    /** Resize the max entries for a thread. */
92    void resizeEntries(unsigned size, unsigned tid);
93
94    /** Ticks the LSQ. */
95    void tick();
96    /** Ticks a specific LSQ Unit. */
97    void tick(unsigned tid)
98    { thread[tid].tick(); }
99
100    /** Inserts a load into the LSQ. */
101    void insertLoad(DynInstPtr &load_inst);
102    /** Inserts a store into the LSQ. */
103    void insertStore(DynInstPtr &store_inst);
104
105    /** Executes a load. */
106    Fault executeLoad(DynInstPtr &inst);
107
108    /** Executes a store. */
109    Fault executeStore(DynInstPtr &inst);
110
111    /**
112     * Commits loads up until the given sequence number for a specific thread.
113     */
114    void commitLoads(InstSeqNum &youngest_inst, unsigned tid)
115    { thread[tid].commitLoads(youngest_inst); }
116
117    /**
118     * Commits stores up until the given sequence number for a specific thread.
119     */
120    void commitStores(InstSeqNum &youngest_inst, unsigned tid)
121    { thread[tid].commitStores(youngest_inst); }
122
123    /**
124     * Attempts to write back stores until all cache ports are used or the
125     * interface becomes blocked.
126     */
127    void writebackStores();
128    /** Same as above, but only for one thread. */
129    void writebackStores(unsigned tid);
130
131    /**
132     * Squash instructions from a thread until the specified sequence number.
133     */
134    void squash(const InstSeqNum &squashed_num, unsigned tid)
135    { thread[tid].squash(squashed_num); }
136
137    /** Returns whether or not there was a memory ordering violation. */
138    bool violation();
139    /**
140     * Returns whether or not there was a memory ordering violation for a
141     * specific thread.
142     */
143    bool violation(unsigned tid)
144    { return thread[tid].violation(); }
145
146    /** Returns if a load is blocked due to the memory system for a specific
147     *  thread.
148     */
149    bool loadBlocked(unsigned tid)
150    { return thread[tid].loadBlocked(); }
151
152    bool isLoadBlockedHandled(unsigned tid)
153    { return thread[tid].isLoadBlockedHandled(); }
154
155    void setLoadBlockedHandled(unsigned tid)
156    { thread[tid].setLoadBlockedHandled(); }
157
158    /** Gets the instruction that caused the memory ordering violation. */
159    DynInstPtr getMemDepViolator(unsigned tid)
160    { return thread[tid].getMemDepViolator(); }
161
162    /** Returns the head index of the load queue for a specific thread. */
163    int getLoadHead(unsigned tid)
164    { return thread[tid].getLoadHead(); }
165
166    /** Returns the sequence number of the head of the load queue. */
167    InstSeqNum getLoadHeadSeqNum(unsigned tid)
168    {
169        return thread[tid].getLoadHeadSeqNum();
170    }
171
172    /** Returns the head index of the store queue. */
173    int getStoreHead(unsigned tid)
174    { return thread[tid].getStoreHead(); }
175
176    /** Returns the sequence number of the head of the store queue. */
177    InstSeqNum getStoreHeadSeqNum(unsigned tid)
178    {
179        return thread[tid].getStoreHeadSeqNum();
180    }
181
182    /** Returns the number of instructions in all of the queues. */
183    int getCount();
184    /** Returns the number of instructions in the queues of one thread. */
185    int getCount(unsigned tid)
186    { return thread[tid].getCount(); }
187
188    /** Returns the total number of loads in the load queue. */
189    int numLoads();
190    /** Returns the total number of loads for a single thread. */
191    int numLoads(unsigned tid)
192    { return thread[tid].numLoads(); }
193
194    /** Returns the total number of stores in the store queue. */
195    int numStores();
196    /** Returns the total number of stores for a single thread. */
197    int numStores(unsigned tid)
198    { return thread[tid].numStores(); }
199
200    /** Returns the total number of loads that are ready. */
201    int numLoadsReady();
202    /** Returns the number of loads that are ready for a single thread. */
203    int numLoadsReady(unsigned tid)
204    { return thread[tid].numLoadsReady(); }
205
206    /** Returns the number of free entries. */
207    unsigned numFreeEntries();
208    /** Returns the number of free entries for a specific thread. */
209    unsigned numFreeEntries(unsigned tid);
210
211    /** Returns if the LSQ is full (either LQ or SQ is full). */
212    bool isFull();
213    /**
214     * Returns if the LSQ is full for a specific thread (either LQ or SQ is
215     * full).
216     */
217    bool isFull(unsigned tid);
218
219    /** Returns if any of the LQs are full. */
220    bool lqFull();
221    /** Returns if the LQ of a given thread is full. */
222    bool lqFull(unsigned tid);
223
224    /** Returns if any of the SQs are full. */
225    bool sqFull();
226    /** Returns if the SQ of a given thread is full. */
227    bool sqFull(unsigned tid);
228
229    /**
230     * Returns if the LSQ is stalled due to a memory operation that must be
231     * replayed.
232     */
233    bool isStalled();
234    /**
235     * Returns if the LSQ of a specific thread is stalled due to a memory
236     * operation that must be replayed.
237     */
238    bool isStalled(unsigned tid);
239
240    /** Returns whether or not there are any stores to write back to memory. */
241    bool hasStoresToWB();
242
243    /** Returns whether or not a specific thread has any stores to write back
244     * to memory.
245     */
246    bool hasStoresToWB(unsigned tid)
247    { return thread[tid].hasStoresToWB(); }
248
249    /** Returns the number of stores a specific thread has to write back. */
250    int  numStoresToWB(unsigned tid)
251    { return thread[tid].numStoresToWB(); }
252
253    /** Returns if the LSQ will write back to memory this cycle. */
254    bool willWB();
255    /** Returns if the LSQ of a specific thread will write back to memory this
256     * cycle.
257     */
258    bool willWB(unsigned tid)
259    { return thread[tid].willWB(); }
260
261    /** Returns if the cache is currently blocked. */
262    bool cacheBlocked()
263    { return retryTid != -1; }
264
265    /** Sets the retry thread id, indicating that one of the LSQUnits
266     * tried to access the cache but the cache was blocked. */
267    void setRetryTid(int tid)
268    { retryTid = tid; }
269
270    /** Debugging function to print out all instructions. */
271    void dumpInsts();
272    /** Debugging function to print out instructions from a specific thread. */
273    void dumpInsts(unsigned tid)
274    { thread[tid].dumpInsts(); }
275
276    /** Executes a read operation, using the load specified at the load index. */
277    template <class T>
278    Fault read(RequestPtr req, T &data, int load_idx);
279
280    /** Executes a store operation, using the store specified at the store
281     *   index.
282     */
283    template <class T>
284    Fault write(RequestPtr req, T &data, int store_idx);
285
286    /** DcachePort class for this LSQ.  Handles doing the
287     * communication with the cache/memory.
288     */
289    class DcachePort : public Port
290    {
291      protected:
292        /** Pointer to LSQ. */
293        LSQ *lsq;
294
295      public:
296        /** Default constructor. */
297        DcachePort(LSQ *_lsq)
298            : lsq(_lsq)
299        { }
300
301        bool snoopRangeSent;
302
303      protected:
304        /** Atomic version of receive.  Panics. */
305        virtual Tick recvAtomic(PacketPtr pkt);
306
307        /** Functional version of receive.  Panics. */
308        virtual void recvFunctional(PacketPtr pkt);
309
310        /** Receives status change.  Other than range changing, panics. */
311        virtual void recvStatusChange(Status status);
312
313        /** Returns the address ranges of this device. */
314        virtual void getDeviceAddressRanges(AddrRangeList &resp,
315                                            AddrRangeList &snoop)
316        { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,0)); }
317
318        /** Timing version of receive.  Handles writing back and
319         * completing the load or store that has returned from
320         * memory. */
321        virtual bool recvTiming(PacketPtr pkt);
322
323        /** Handles doing a retry of the previous send. */
324        virtual void recvRetry();
325    };
326
327    /** D-cache port. */
328    DcachePort dcachePort;
329
330  protected:
331    /** The LSQ policy for SMT mode. */
332    LSQPolicy lsqPolicy;
333
334    /** The LSQ units for individual threads. */
335    LSQUnit thread[Impl::MaxThreads];
336
337    /** The CPU pointer. */
338    O3CPU *cpu;
339
340    /** The IEW stage pointer. */
341    IEW *iewStage;
342
343    /** List of Active Threads in System. */
344    std::list<unsigned> *activeThreads;
345
346    /** Total Size of LQ Entries. */
347    unsigned LQEntries;
348    /** Total Size of SQ Entries. */
349    unsigned SQEntries;
350
351    /** Max LQ Size - Used to Enforce Sharing Policies. */
352    unsigned maxLQEntries;
353
354    /** Max SQ Size - Used to Enforce Sharing Policies. */
355    unsigned maxSQEntries;
356
357    /** Number of Threads. */
358    unsigned numThreads;
359
360    /** The thread id of the LSQ Unit that is currently waiting for a
361     * retry. */
362    int retryTid;
363};
364
365template <class Impl>
366template <class T>
367Fault
368LSQ<Impl>::read(RequestPtr req, T &data, int load_idx)
369{
370    unsigned tid = req->getThreadNum();
371
372    return thread[tid].read(req, data, load_idx);
373}
374
375template <class Impl>
376template <class T>
377Fault
378LSQ<Impl>::write(RequestPtr req, T &data, int store_idx)
379{
380    unsigned tid = req->getThreadNum();
381
382    return thread[tid].write(req, data, store_idx);
383}
384
385#endif // __CPU_O3_LSQ_HH__
386