fetch.hh revision 1755
15081Sgblack@eecs.umich.edu/*
25081Sgblack@eecs.umich.edu * Copyright (c) 2004-2005 The Regents of The University of Michigan
35081Sgblack@eecs.umich.edu * All rights reserved.
45081Sgblack@eecs.umich.edu *
55081Sgblack@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
65081Sgblack@eecs.umich.edu * modification, are permitted provided that the following conditions are
75081Sgblack@eecs.umich.edu * met: redistributions of source code must retain the above copyright
85081Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
95081Sgblack@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
105081Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
115081Sgblack@eecs.umich.edu * documentation and/or other materials provided with the distribution;
125081Sgblack@eecs.umich.edu * neither the name of the copyright holders nor the names of its
135081Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
145081Sgblack@eecs.umich.edu * this software without specific prior written permission.
155081Sgblack@eecs.umich.edu *
165081Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
175081Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
185081Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
195081Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
205081Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
215081Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
225081Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
235081Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
245081Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
255081Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
265081Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
275081Sgblack@eecs.umich.edu */
285081Sgblack@eecs.umich.edu
295081Sgblack@eecs.umich.edu// Todo: SMT fetch,
305081Sgblack@eecs.umich.edu// Add a way to get a stage's current status.
315081Sgblack@eecs.umich.edu
325081Sgblack@eecs.umich.edu#ifndef __CPU_O3_CPU_SIMPLE_FETCH_HH__
335081Sgblack@eecs.umich.edu#define __CPU_O3_CPU_SIMPLE_FETCH_HH__
345081Sgblack@eecs.umich.edu
355081Sgblack@eecs.umich.edu#include "base/statistics.hh"
365081Sgblack@eecs.umich.edu#include "base/timebuf.hh"
375081Sgblack@eecs.umich.edu#include "cpu/pc_event.hh"
385081Sgblack@eecs.umich.edu#include "mem/mem_interface.hh"
395081Sgblack@eecs.umich.edu#include "sim/eventq.hh"
405081Sgblack@eecs.umich.edu
415081Sgblack@eecs.umich.edu/**
425081Sgblack@eecs.umich.edu * SimpleFetch class to fetch a single instruction each cycle.  SimpleFetch
435081Sgblack@eecs.umich.edu * will stall if there's an Icache miss, but otherwise assumes a one cycle
445081Sgblack@eecs.umich.edu * Icache hit.
455081Sgblack@eecs.umich.edu */
465081Sgblack@eecs.umich.edu
475081Sgblack@eecs.umich.edutemplate <class Impl>
485081Sgblack@eecs.umich.educlass SimpleFetch
495081Sgblack@eecs.umich.edu{
505081Sgblack@eecs.umich.edu  public:
515081Sgblack@eecs.umich.edu    /** Typedefs from Impl. */
525081Sgblack@eecs.umich.edu    typedef typename Impl::ISA ISA;
535081Sgblack@eecs.umich.edu    typedef typename Impl::CPUPol CPUPol;
545081Sgblack@eecs.umich.edu    typedef typename Impl::DynInst DynInst;
555081Sgblack@eecs.umich.edu    typedef typename Impl::DynInstPtr DynInstPtr;
565081Sgblack@eecs.umich.edu    typedef typename Impl::FullCPU FullCPU;
576525Sgblack@eecs.umich.edu    typedef typename Impl::Params Params;
586525Sgblack@eecs.umich.edu
596525Sgblack@eecs.umich.edu    typedef typename CPUPol::BPredUnit BPredUnit;
606525Sgblack@eecs.umich.edu    typedef typename CPUPol::FetchStruct FetchStruct;
616525Sgblack@eecs.umich.edu    typedef typename CPUPol::TimeStruct TimeStruct;
626525Sgblack@eecs.umich.edu
636525Sgblack@eecs.umich.edu    /** Typedefs from ISA. */
646525Sgblack@eecs.umich.edu    typedef typename ISA::MachInst MachInst;
656525Sgblack@eecs.umich.edu
666525Sgblack@eecs.umich.edu  public:
676525Sgblack@eecs.umich.edu    enum Status {
686525Sgblack@eecs.umich.edu        Running,
696525Sgblack@eecs.umich.edu        Idle,
706525Sgblack@eecs.umich.edu        Squashing,
716525Sgblack@eecs.umich.edu        Blocked,
726525Sgblack@eecs.umich.edu        IcacheMissStall,
736525Sgblack@eecs.umich.edu        IcacheMissComplete
746525Sgblack@eecs.umich.edu    };
756525Sgblack@eecs.umich.edu
766525Sgblack@eecs.umich.edu    // May eventually need statuses on a per thread basis.
776525Sgblack@eecs.umich.edu    Status _status;
786525Sgblack@eecs.umich.edu
796525Sgblack@eecs.umich.edu    bool stalled;
806525Sgblack@eecs.umich.edu
816607Sgblack@eecs.umich.edu  public:
826607Sgblack@eecs.umich.edu    class CacheCompletionEvent : public Event
836607Sgblack@eecs.umich.edu    {
846607Sgblack@eecs.umich.edu      private:
856608Sgblack@eecs.umich.edu        SimpleFetch *fetch;
866608Sgblack@eecs.umich.edu
876608Sgblack@eecs.umich.edu      public:
886608Sgblack@eecs.umich.edu        CacheCompletionEvent(SimpleFetch *_fetch);
896608Sgblack@eecs.umich.edu
906520Sgblack@eecs.umich.edu        virtual void process();
915081Sgblack@eecs.umich.edu        virtual const char *description();
925081Sgblack@eecs.umich.edu    };
935081Sgblack@eecs.umich.edu
94  public:
95    /** SimpleFetch constructor. */
96    SimpleFetch(Params &params);
97
98    void regStats();
99
100    void setCPU(FullCPU *cpu_ptr);
101
102    void setTimeBuffer(TimeBuffer<TimeStruct> *time_buffer);
103
104    void setFetchQueue(TimeBuffer<FetchStruct> *fq_ptr);
105
106    void processCacheCompletion();
107
108  private:
109    /**
110     * Looks up in the branch predictor to see if the next PC should be
111     * either next PC+=MachInst or a branch target.
112     * @params next_PC Next PC variable passed in by reference.  It is
113     * expected to be set to the current PC; it will be updated with what
114     * the next PC will be.
115     * @return Whether or not a branch was predicted as taken.
116     */
117    bool lookupAndUpdateNextPC(DynInstPtr &inst, Addr &next_PC);
118
119    /**
120     * Fetches the cache line that contains fetch_PC.  Returns any
121     * fault that happened.  Puts the data into the class variable
122     * cacheData.
123     * @params fetch_PC The PC address that is being fetched from.
124     * @return Any fault that occured.
125     */
126    Fault fetchCacheLine(Addr fetch_PC);
127
128    inline void doSquash(const Addr &new_PC);
129
130    void squashFromDecode(const Addr &new_PC, const InstSeqNum &seq_num);
131
132  public:
133    // Figure out PC vs next PC and how it should be updated
134    void squash(const Addr &new_PC);
135
136    void tick();
137
138    void fetch();
139
140    // Align an address (typically a PC) to the start of an I-cache block.
141    // We fold in the PISA 64- to 32-bit conversion here as well.
142    Addr icacheBlockAlignPC(Addr addr)
143    {
144        addr = ISA::realPCToFetchPC(addr);
145        return (addr & ~(cacheBlkMask));
146    }
147
148  private:
149    /** Pointer to the FullCPU. */
150    FullCPU *cpu;
151
152    /** Time buffer interface. */
153    TimeBuffer<TimeStruct> *timeBuffer;
154
155    /** Wire to get decode's information from backwards time buffer. */
156    typename TimeBuffer<TimeStruct>::wire fromDecode;
157
158    /** Wire to get rename's information from backwards time buffer. */
159    typename TimeBuffer<TimeStruct>::wire fromRename;
160
161    /** Wire to get iew's information from backwards time buffer. */
162    typename TimeBuffer<TimeStruct>::wire fromIEW;
163
164    /** Wire to get commit's information from backwards time buffer. */
165    typename TimeBuffer<TimeStruct>::wire fromCommit;
166
167    /** Internal fetch instruction queue. */
168    TimeBuffer<FetchStruct> *fetchQueue;
169
170    //Might be annoying how this name is different than the queue.
171    /** Wire used to write any information heading to decode. */
172    typename TimeBuffer<FetchStruct>::wire toDecode;
173
174    /** Icache interface. */
175    MemInterface *icacheInterface;
176
177    /** BPredUnit. */
178    BPredUnit branchPred;
179
180    /** Memory request used to access cache. */
181    MemReqPtr memReq;
182
183    /** Decode to fetch delay, in ticks. */
184    unsigned decodeToFetchDelay;
185
186    /** Rename to fetch delay, in ticks. */
187    unsigned renameToFetchDelay;
188
189    /** IEW to fetch delay, in ticks. */
190    unsigned iewToFetchDelay;
191
192    /** Commit to fetch delay, in ticks. */
193    unsigned commitToFetchDelay;
194
195    /** The width of fetch in instructions. */
196    unsigned fetchWidth;
197
198    /** Cache block size. */
199    int cacheBlkSize;
200
201    /** Mask to get a cache block's address. */
202    Addr cacheBlkMask;
203
204    /** The cache line being fetched. */
205    uint8_t *cacheData;
206
207    /** Size of instructions. */
208    int instSize;
209
210    /** Icache stall statistics. */
211    Counter lastIcacheStall;
212
213    Stats::Scalar<> icacheStallCycles;
214    Stats::Scalar<> fetchedInsts;
215    Stats::Scalar<> predictedBranches;
216    Stats::Scalar<> fetchCycles;
217    Stats::Scalar<> fetchSquashCycles;
218    Stats::Scalar<> fetchBlockedCycles;
219    Stats::Scalar<> fetchedCacheLines;
220
221    Stats::Distribution<> fetch_nisn_dist;
222};
223
224#endif //__CPU_O3_CPU_SIMPLE_FETCH_HH__
225