fetch.hh revision 2871:7ed5c9ef3eb6
112852Sgabeblack@google.com/*
212852Sgabeblack@google.com * Copyright (c) 2004-2006 The Regents of The University of Michigan
312852Sgabeblack@google.com * All rights reserved.
412852Sgabeblack@google.com *
512852Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
612852Sgabeblack@google.com * modification, are permitted provided that the following conditions are
712852Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
812852Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
912852Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
1012852Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1112852Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1212852Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1312852Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1412852Sgabeblack@google.com * this software without specific prior written permission.
1512852Sgabeblack@google.com *
1612852Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1712852Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1812852Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1912852Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2012852Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2112852Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2212852Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2312852Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2412852Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2512852Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2612852Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2712852Sgabeblack@google.com *
2812852Sgabeblack@google.com * Authors: Kevin Lim
2912852Sgabeblack@google.com *          Korey Sewell
3012852Sgabeblack@google.com */
3112852Sgabeblack@google.com
3212852Sgabeblack@google.com#ifndef __CPU_O3_FETCH_HH__
3312852Sgabeblack@google.com#define __CPU_O3_FETCH_HH__
3412852Sgabeblack@google.com
3512852Sgabeblack@google.com#include "arch/utility.hh"
3612852Sgabeblack@google.com#include "base/statistics.hh"
3712852Sgabeblack@google.com#include "base/timebuf.hh"
3812852Sgabeblack@google.com#include "cpu/pc_event.hh"
3912852Sgabeblack@google.com#include "mem/packet_impl.hh"
4012852Sgabeblack@google.com#include "mem/port.hh"
4112852Sgabeblack@google.com#include "sim/eventq.hh"
4212852Sgabeblack@google.com
4312852Sgabeblack@google.com/**
4412852Sgabeblack@google.com * DefaultFetch class handles both single threaded and SMT fetch. Its
4512852Sgabeblack@google.com * width is specified by the parameters; each cycle it tries to fetch
4612852Sgabeblack@google.com * that many instructions. It supports using a branch predictor to
4712852Sgabeblack@google.com * predict direction and targets.
4812852Sgabeblack@google.com * It supports the idling functionality of the CPU by indicating to
4912852Sgabeblack@google.com * the CPU when it is active and inactive.
5012852Sgabeblack@google.com */
5112852Sgabeblack@google.comtemplate <class Impl>
5212852Sgabeblack@google.comclass DefaultFetch
5312852Sgabeblack@google.com{
5412852Sgabeblack@google.com  public:
5512852Sgabeblack@google.com    /** Typedefs from Impl. */
5612852Sgabeblack@google.com    typedef typename Impl::CPUPol CPUPol;
5712852Sgabeblack@google.com    typedef typename Impl::DynInst DynInst;
5812852Sgabeblack@google.com    typedef typename Impl::DynInstPtr DynInstPtr;
5912852Sgabeblack@google.com    typedef typename Impl::O3CPU O3CPU;
6012852Sgabeblack@google.com    typedef typename Impl::Params Params;
6112852Sgabeblack@google.com
6212852Sgabeblack@google.com    /** Typedefs from the CPU policy. */
6312852Sgabeblack@google.com    typedef typename CPUPol::BPredUnit BPredUnit;
6412852Sgabeblack@google.com    typedef typename CPUPol::FetchStruct FetchStruct;
6512852Sgabeblack@google.com    typedef typename CPUPol::TimeStruct TimeStruct;
6612852Sgabeblack@google.com
6712852Sgabeblack@google.com    /** Typedefs from ISA. */
6812852Sgabeblack@google.com    typedef TheISA::MachInst MachInst;
6912852Sgabeblack@google.com    typedef TheISA::ExtMachInst ExtMachInst;
7012852Sgabeblack@google.com
7112852Sgabeblack@google.com    /** IcachePort class for DefaultFetch.  Handles doing the
7212852Sgabeblack@google.com     * communication with the cache/memory.
7312852Sgabeblack@google.com     */
7412852Sgabeblack@google.com    class IcachePort : public Port
7512852Sgabeblack@google.com    {
7612852Sgabeblack@google.com      protected:
7712852Sgabeblack@google.com        /** Pointer to fetch. */
7812852Sgabeblack@google.com        DefaultFetch<Impl> *fetch;
7912852Sgabeblack@google.com
8012852Sgabeblack@google.com      public:
8112852Sgabeblack@google.com        /** Default constructor. */
8212852Sgabeblack@google.com        IcachePort(DefaultFetch<Impl> *_fetch)
8312852Sgabeblack@google.com            : Port(_fetch->name() + "-iport"), fetch(_fetch)
8412852Sgabeblack@google.com        { }
8512852Sgabeblack@google.com
8612852Sgabeblack@google.com      protected:
8712852Sgabeblack@google.com        /** Atomic version of receive.  Panics. */
8812852Sgabeblack@google.com        virtual Tick recvAtomic(PacketPtr pkt);
8912852Sgabeblack@google.com
9012852Sgabeblack@google.com        /** Functional version of receive.  Panics. */
9112852Sgabeblack@google.com        virtual void recvFunctional(PacketPtr pkt);
9212852Sgabeblack@google.com
9312852Sgabeblack@google.com        /** Receives status change.  Other than range changing, panics. */
9412852Sgabeblack@google.com        virtual void recvStatusChange(Status status);
9512852Sgabeblack@google.com
9612852Sgabeblack@google.com        /** Returns the address ranges of this device. */
9712852Sgabeblack@google.com        virtual void getDeviceAddressRanges(AddrRangeList &resp,
9812852Sgabeblack@google.com                                            AddrRangeList &snoop)
9912852Sgabeblack@google.com        { resp.clear(); snoop.clear(); }
10012852Sgabeblack@google.com
10112852Sgabeblack@google.com        /** Timing version of receive.  Handles setting fetch to the
10212852Sgabeblack@google.com         * proper status to start fetching. */
10312852Sgabeblack@google.com        virtual bool recvTiming(PacketPtr pkt);
10412852Sgabeblack@google.com
105        /** Handles doing a retry of a failed fetch. */
106        virtual void recvRetry();
107    };
108
109  public:
110    /** Overall fetch status. Used to determine if the CPU can
111     * deschedule itsef due to a lack of activity.
112     */
113    enum FetchStatus {
114        Active,
115        Inactive
116    };
117
118    /** Individual thread status. */
119    enum ThreadStatus {
120        Running,
121        Idle,
122        Squashing,
123        Blocked,
124        Fetching,
125        TrapPending,
126        QuiescePending,
127        SwitchOut,
128        IcacheWaitResponse,
129        IcacheWaitRetry,
130        IcacheAccessComplete
131    };
132
133    /** Fetching Policy, Add new policies here.*/
134    enum FetchPriority {
135        SingleThread,
136        RoundRobin,
137        Branch,
138        IQ,
139        LSQ
140    };
141
142  private:
143    /** Fetch status. */
144    FetchStatus _status;
145
146    /** Per-thread status. */
147    ThreadStatus fetchStatus[Impl::MaxThreads];
148
149    /** Fetch policy. */
150    FetchPriority fetchPolicy;
151
152    /** List that has the threads organized by priority. */
153    std::list<unsigned> priorityList;
154
155  public:
156    /** DefaultFetch constructor. */
157    DefaultFetch(Params *params);
158
159    /** Returns the name of fetch. */
160    std::string name() const;
161
162    /** Registers statistics. */
163    void regStats();
164
165    /** Returns the icache port. */
166    Port *getIcachePort() { return icachePort; }
167
168    /** Sets CPU pointer. */
169    void setCPU(O3CPU *cpu_ptr);
170
171    /** Sets the main backwards communication time buffer pointer. */
172    void setTimeBuffer(TimeBuffer<TimeStruct> *time_buffer);
173
174    /** Sets pointer to list of active threads. */
175    void setActiveThreads(std::list<unsigned> *at_ptr);
176
177    /** Sets pointer to time buffer used to communicate to the next stage. */
178    void setFetchQueue(TimeBuffer<FetchStruct> *fq_ptr);
179
180    /** Initialize stage. */
181    void initStage();
182
183    /** Processes cache completion event. */
184    void processCacheCompletion(PacketPtr pkt);
185
186    /** Begins the drain of the fetch stage. */
187    bool drain();
188
189    /** Resumes execution after a drain. */
190    void resume();
191
192    /** Tells fetch stage to prepare to be switched out. */
193    void switchOut();
194
195    /** Takes over from another CPU's thread. */
196    void takeOverFrom();
197
198    /** Checks if the fetch stage is switched out. */
199    bool isSwitchedOut() { return switchedOut; }
200
201    /** Tells fetch to wake up from a quiesce instruction. */
202    void wakeFromQuiesce();
203
204  private:
205    /** Changes the status of this stage to active, and indicates this
206     * to the CPU.
207     */
208    inline void switchToActive();
209
210    /** Changes the status of this stage to inactive, and indicates
211     * this to the CPU.
212     */
213    inline void switchToInactive();
214
215    /**
216     * Looks up in the branch predictor to see if the next PC should be
217     * either next PC+=MachInst or a branch target.
218     * @param next_PC Next PC variable passed in by reference.  It is
219     * expected to be set to the current PC; it will be updated with what
220     * the next PC will be.
221     * @return Whether or not a branch was predicted as taken.
222     */
223    bool lookupAndUpdateNextPC(DynInstPtr &inst, Addr &next_PC);
224
225    /**
226     * Fetches the cache line that contains fetch_PC.  Returns any
227     * fault that happened.  Puts the data into the class variable
228     * cacheData.
229     * @param fetch_PC The PC address that is being fetched from.
230     * @param ret_fault The fault reference that will be set to the result of
231     * the icache access.
232     * @param tid Thread id.
233     * @return Any fault that occured.
234     */
235    bool fetchCacheLine(Addr fetch_PC, Fault &ret_fault, unsigned tid);
236
237    /** Squashes a specific thread and resets the PC. */
238    inline void doSquash(const Addr &new_PC, unsigned tid);
239
240    /** Squashes a specific thread and resets the PC. Also tells the CPU to
241     * remove any instructions between fetch and decode that should be sqaushed.
242     */
243    void squashFromDecode(const Addr &new_PC, const InstSeqNum &seq_num,
244                          unsigned tid);
245
246    /** Checks if a thread is stalled. */
247    bool checkStall(unsigned tid) const;
248
249    /** Updates overall fetch stage status; to be called at the end of each
250     * cycle. */
251    FetchStatus updateFetchStatus();
252
253  public:
254    /** Squashes a specific thread and resets the PC. Also tells the CPU to
255     * remove any instructions that are not in the ROB. The source of this
256     * squash should be the commit stage.
257     */
258    void squash(const Addr &new_PC, unsigned tid);
259
260    /** Ticks the fetch stage, processing all inputs signals and fetching
261     * as many instructions as possible.
262     */
263    void tick();
264
265    /** Checks all input signals and updates the status as necessary.
266     *  @return: Returns if the status has changed due to input signals.
267     */
268    bool checkSignalsAndUpdate(unsigned tid);
269
270    /** Does the actual fetching of instructions and passing them on to the
271     * next stage.
272     * @param status_change fetch() sets this variable if there was a status
273     * change (ie switching to IcacheMissStall).
274     */
275    void fetch(bool &status_change);
276
277    /** Align a PC to the start of an I-cache block. */
278    Addr icacheBlockAlignPC(Addr addr)
279    {
280        addr = TheISA::realPCToFetchPC(addr);
281        return (addr & ~(cacheBlkMask));
282    }
283
284  private:
285    /** Handles retrying the fetch access. */
286    void recvRetry();
287
288    /** Returns the appropriate thread to fetch, given the fetch policy. */
289    int getFetchingThread(FetchPriority &fetch_priority);
290
291    /** Returns the appropriate thread to fetch using a round robin policy. */
292    int roundRobin();
293
294    /** Returns the appropriate thread to fetch using the IQ count policy. */
295    int iqCount();
296
297    /** Returns the appropriate thread to fetch using the LSQ count policy. */
298    int lsqCount();
299
300    /** Returns the appropriate thread to fetch using the branch count policy. */
301    int branchCount();
302
303  private:
304    /** Pointer to the O3CPU. */
305    O3CPU *cpu;
306
307    /** Time buffer interface. */
308    TimeBuffer<TimeStruct> *timeBuffer;
309
310    /** Wire to get decode's information from backwards time buffer. */
311    typename TimeBuffer<TimeStruct>::wire fromDecode;
312
313    /** Wire to get rename's information from backwards time buffer. */
314    typename TimeBuffer<TimeStruct>::wire fromRename;
315
316    /** Wire to get iew's information from backwards time buffer. */
317    typename TimeBuffer<TimeStruct>::wire fromIEW;
318
319    /** Wire to get commit's information from backwards time buffer. */
320    typename TimeBuffer<TimeStruct>::wire fromCommit;
321
322    /** Internal fetch instruction queue. */
323    TimeBuffer<FetchStruct> *fetchQueue;
324
325    //Might be annoying how this name is different than the queue.
326    /** Wire used to write any information heading to decode. */
327    typename TimeBuffer<FetchStruct>::wire toDecode;
328
329    MemObject *mem;
330
331    /** Icache interface. */
332    IcachePort *icachePort;
333
334    /** BPredUnit. */
335    BPredUnit branchPred;
336
337    /** Per-thread fetch PC. */
338    Addr PC[Impl::MaxThreads];
339
340    /** Per-thread next PC. */
341    Addr nextPC[Impl::MaxThreads];
342
343#if THE_ISA != ALPHA_ISA
344    /** Per-thread next Next PC.
345     *  This is not a real register but is used for
346     *  architectures that use a branch-delay slot.
347     *  (such as MIPS or Sparc)
348     */
349    Addr nextNPC[Impl::MaxThreads];
350#endif
351
352    /** Memory request used to access cache. */
353    RequestPtr memReq[Impl::MaxThreads];
354
355    /** Variable that tracks if fetch has written to the time buffer this
356     * cycle. Used to tell CPU if there is activity this cycle.
357     */
358    bool wroteToTimeBuffer;
359
360    /** Tracks how many instructions has been fetched this cycle. */
361    int numInst;
362
363    /** Source of possible stalls. */
364    struct Stalls {
365        bool decode;
366        bool rename;
367        bool iew;
368        bool commit;
369    };
370
371    /** Tracks which stages are telling fetch to stall. */
372    Stalls stalls[Impl::MaxThreads];
373
374    /** Decode to fetch delay, in ticks. */
375    unsigned decodeToFetchDelay;
376
377    /** Rename to fetch delay, in ticks. */
378    unsigned renameToFetchDelay;
379
380    /** IEW to fetch delay, in ticks. */
381    unsigned iewToFetchDelay;
382
383    /** Commit to fetch delay, in ticks. */
384    unsigned commitToFetchDelay;
385
386    /** The width of fetch in instructions. */
387    unsigned fetchWidth;
388
389    /** Is the cache blocked?  If so no threads can access it. */
390    bool cacheBlocked;
391
392    /** The packet that is waiting to be retried. */
393    PacketPtr retryPkt;
394
395    /** The thread that is waiting on the cache to tell fetch to retry. */
396    int retryTid;
397
398    /** Cache block size. */
399    int cacheBlkSize;
400
401    /** Mask to get a cache block's address. */
402    Addr cacheBlkMask;
403
404    /** The cache line being fetched. */
405    uint8_t *cacheData[Impl::MaxThreads];
406
407    /** Size of instructions. */
408    int instSize;
409
410    /** Icache stall statistics. */
411    Counter lastIcacheStall[Impl::MaxThreads];
412
413    /** List of Active Threads */
414    std::list<unsigned> *activeThreads;
415
416    /** Number of threads. */
417    unsigned numThreads;
418
419    /** Number of threads that are actively fetching. */
420    unsigned numFetchingThreads;
421
422    /** Thread ID being fetched. */
423    int threadFetched;
424
425    /** Checks if there is an interrupt pending.  If there is, fetch
426     * must stop once it is not fetching PAL instructions.
427     */
428    bool interruptPending;
429
430    /** Is there a drain pending. */
431    bool drainPending;
432
433    /** Records if fetch is switched out. */
434    bool switchedOut;
435
436    // @todo: Consider making these vectors and tracking on a per thread basis.
437    /** Stat for total number of cycles stalled due to an icache miss. */
438    Stats::Scalar<> icacheStallCycles;
439    /** Stat for total number of fetched instructions. */
440    Stats::Scalar<> fetchedInsts;
441    /** Total number of fetched branches. */
442    Stats::Scalar<> fetchedBranches;
443    /** Stat for total number of predicted branches. */
444    Stats::Scalar<> predictedBranches;
445    /** Stat for total number of cycles spent fetching. */
446    Stats::Scalar<> fetchCycles;
447    /** Stat for total number of cycles spent squashing. */
448    Stats::Scalar<> fetchSquashCycles;
449    /** Stat for total number of cycles spent blocked due to other stages in
450     * the pipeline.
451     */
452    Stats::Scalar<> fetchIdleCycles;
453    /** Total number of cycles spent blocked. */
454    Stats::Scalar<> fetchBlockedCycles;
455    /** Total number of cycles spent in any other state. */
456    Stats::Scalar<> fetchMiscStallCycles;
457    /** Stat for total number of fetched cache lines. */
458    Stats::Scalar<> fetchedCacheLines;
459    /** Total number of outstanding icache accesses that were dropped
460     * due to a squash.
461     */
462    Stats::Scalar<> fetchIcacheSquashes;
463    /** Distribution of number of instructions fetched each cycle. */
464    Stats::Distribution<> fetchNisnDist;
465    /** Rate of how often fetch was idle. */
466    Stats::Formula idleRate;
467    /** Number of branch fetches per cycle. */
468    Stats::Formula branchRate;
469    /** Number of instruction fetched per cycle. */
470    Stats::Formula fetchRate;
471};
472
473#endif //__CPU_O3_FETCH_HH__
474