cpu.hh revision 2817:273f7fb94f83
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 *          Korey Sewell
30 */
31
32#ifndef __CPU_O3_CPU_HH__
33#define __CPU_O3_CPU_HH__
34
35#include <iostream>
36#include <list>
37#include <queue>
38#include <set>
39#include <vector>
40
41#include "arch/isa_traits.hh"
42#include "base/statistics.hh"
43#include "base/timebuf.hh"
44#include "config/full_system.hh"
45#include "cpu/activity.hh"
46#include "cpu/base.hh"
47#include "cpu/simple_thread.hh"
48#include "cpu/o3/comm.hh"
49#include "cpu/o3/cpu_policy.hh"
50#include "cpu/o3/scoreboard.hh"
51#include "cpu/o3/thread_state.hh"
52//#include "cpu/o3/thread_context.hh"
53#include "sim/process.hh"
54
55template <class>
56class Checker;
57class ThreadContext;
58template <class>
59class O3ThreadContext;
60class MemObject;
61class Process;
62
63class BaseO3CPU : public BaseCPU
64{
65    //Stuff that's pretty ISA independent will go here.
66  public:
67    typedef BaseCPU::Params Params;
68
69    BaseO3CPU(Params *params);
70
71    void regStats();
72
73    /** Sets this CPU's ID. */
74    void setCpuId(int id) { cpu_id = id; }
75
76    /** Reads this CPU's ID. */
77    int readCpuId() { return cpu_id; }
78
79  protected:
80    int cpu_id;
81};
82
83/**
84 * FullO3CPU class, has each of the stages (fetch through commit)
85 * within it, as well as all of the time buffers between stages.  The
86 * tick() function for the CPU is defined here.
87 */
88template <class Impl>
89class FullO3CPU : public BaseO3CPU
90{
91  public:
92    typedef TheISA::FloatReg FloatReg;
93    typedef TheISA::FloatRegBits FloatRegBits;
94
95    // Typedefs from the Impl here.
96    typedef typename Impl::CPUPol CPUPolicy;
97    typedef typename Impl::Params Params;
98    typedef typename Impl::DynInstPtr DynInstPtr;
99
100    typedef O3ThreadState<Impl> Thread;
101
102    typedef typename std::list<DynInstPtr>::iterator ListIt;
103
104    friend class O3ThreadContext<Impl>;
105  public:
106    enum Status {
107        Running,
108        Idle,
109        Halted,
110        Blocked,
111        SwitchedOut
112    };
113
114    /** Overall CPU status. */
115    Status _status;
116
117  private:
118    class TickEvent : public Event
119    {
120      private:
121        /** Pointer to the CPU. */
122        FullO3CPU<Impl> *cpu;
123
124      public:
125        /** Constructs a tick event. */
126        TickEvent(FullO3CPU<Impl> *c);
127
128        /** Processes a tick event, calling tick() on the CPU. */
129        void process();
130        /** Returns the description of the tick event. */
131        const char *description();
132    };
133
134    /** The tick event used for scheduling CPU ticks. */
135    TickEvent tickEvent;
136
137    /** Schedule tick event, regardless of its current state. */
138    void scheduleTickEvent(int delay)
139    {
140        if (tickEvent.squashed())
141            tickEvent.reschedule(curTick + cycles(delay));
142        else if (!tickEvent.scheduled())
143            tickEvent.schedule(curTick + cycles(delay));
144    }
145
146    /** Unschedule tick event, regardless of its current state. */
147    void unscheduleTickEvent()
148    {
149        if (tickEvent.scheduled())
150            tickEvent.squash();
151    }
152
153  public:
154    /** Constructs a CPU with the given parameters. */
155    FullO3CPU(Params *params);
156    /** Destructor. */
157    ~FullO3CPU();
158
159    /** Registers statistics. */
160    void fullCPURegStats();
161
162    /** Ticks CPU, calling tick() on each stage, and checking the overall
163     *  activity to see if the CPU should deschedule itself.
164     */
165    void tick();
166
167    /** Initialize the CPU */
168    void init();
169
170    /** Setup CPU to insert a thread's context */
171    void insertThread(unsigned tid);
172
173    /** Remove all of a thread's context from CPU */
174    void removeThread(unsigned tid);
175
176    /** Count the Total Instructions Committed in the CPU. */
177    virtual Counter totalInstructions() const
178    {
179        Counter total(0);
180
181        for (int i=0; i < thread.size(); i++)
182            total += thread[i]->numInst;
183
184        return total;
185    }
186
187    /** Add Thread to Active Threads List. */
188    void activateContext(int tid, int delay);
189
190    /** Remove Thread from Active Threads List */
191    void suspendContext(int tid);
192
193    /** Remove Thread from Active Threads List &&
194     *  Remove Thread Context from CPU.
195     */
196    void deallocateContext(int tid);
197
198    /** Remove Thread from Active Threads List &&
199     *  Remove Thread Context from CPU.
200     */
201    void haltContext(int tid);
202
203    /** Activate a Thread When CPU Resources are Available. */
204    void activateWhenReady(int tid);
205
206    /** Add or Remove a Thread Context in the CPU. */
207    void doContextSwitch();
208
209    /** Update The Order In Which We Process Threads. */
210    void updateThreadPriority();
211
212    /** Executes a syscall on this cycle.
213     *  ---------------------------------------
214     *  Note: this is a virtual function. CPU-Specific
215     *  functionality defined in derived classes
216     */
217    virtual void syscall(int tid) { panic("Unimplemented!"); }
218
219    /** Switches out this CPU. */
220    void switchOut(Sampler *sampler);
221
222    /** Signals to this CPU that a stage has completed switching out. */
223    void signalSwitched();
224
225    /** Takes over from another CPU. */
226    void takeOverFrom(BaseCPU *oldCPU);
227
228    /** Get the current instruction sequence number, and increment it. */
229    InstSeqNum getAndIncrementInstSeq()
230    { return globalSeqNum++; }
231
232#if FULL_SYSTEM
233    /** Check if this address is a valid instruction address. */
234    bool validInstAddr(Addr addr) { return true; }
235
236    /** Check if this address is a valid data address. */
237    bool validDataAddr(Addr addr) { return true; }
238
239    /** Get instruction asid. */
240    int getInstAsid(unsigned tid)
241    { return regFile.miscRegs[tid].getInstAsid(); }
242
243    /** Get data asid. */
244    int getDataAsid(unsigned tid)
245    { return regFile.miscRegs[tid].getDataAsid(); }
246#else
247    /** Get instruction asid. */
248    int getInstAsid(unsigned tid)
249    { return thread[tid]->getInstAsid(); }
250
251    /** Get data asid. */
252    int getDataAsid(unsigned tid)
253    { return thread[tid]->getDataAsid(); }
254
255#endif
256
257    /** Register accessors.  Index refers to the physical register index. */
258    uint64_t readIntReg(int reg_idx);
259
260    FloatReg readFloatReg(int reg_idx);
261
262    FloatReg readFloatReg(int reg_idx, int width);
263
264    FloatRegBits readFloatRegBits(int reg_idx);
265
266    FloatRegBits readFloatRegBits(int reg_idx, int width);
267
268    void setIntReg(int reg_idx, uint64_t val);
269
270    void setFloatReg(int reg_idx, FloatReg val);
271
272    void setFloatReg(int reg_idx, FloatReg val, int width);
273
274    void setFloatRegBits(int reg_idx, FloatRegBits val);
275
276    void setFloatRegBits(int reg_idx, FloatRegBits val, int width);
277
278    uint64_t readArchIntReg(int reg_idx, unsigned tid);
279
280    float readArchFloatRegSingle(int reg_idx, unsigned tid);
281
282    double readArchFloatRegDouble(int reg_idx, unsigned tid);
283
284    uint64_t readArchFloatRegInt(int reg_idx, unsigned tid);
285
286    /** Architectural register accessors.  Looks up in the commit
287     * rename table to obtain the true physical index of the
288     * architected register first, then accesses that physical
289     * register.
290     */
291    void setArchIntReg(int reg_idx, uint64_t val, unsigned tid);
292
293    void setArchFloatRegSingle(int reg_idx, float val, unsigned tid);
294
295    void setArchFloatRegDouble(int reg_idx, double val, unsigned tid);
296
297    void setArchFloatRegInt(int reg_idx, uint64_t val, unsigned tid);
298
299    /** Reads the commit PC of a specific thread. */
300    uint64_t readPC(unsigned tid);
301
302    /** Sets the commit PC of a specific thread. */
303    void setPC(Addr new_PC, unsigned tid);
304
305    /** Reads the next PC of a specific thread. */
306    uint64_t readNextPC(unsigned tid);
307
308    /** Sets the next PC of a specific thread. */
309    void setNextPC(uint64_t val, unsigned tid);
310
311    /** Reads the next NPC of a specific thread. */
312    uint64_t readNextNPC(unsigned tid);
313
314    /** Sets the next NPC of a specific thread. */
315    void setNextNPC(uint64_t val, unsigned tid);
316
317    /** Function to add instruction onto the head of the list of the
318     *  instructions.  Used when new instructions are fetched.
319     */
320    ListIt addInst(DynInstPtr &inst);
321
322    /** Function to tell the CPU that an instruction has completed. */
323    void instDone(unsigned tid);
324
325    /** Add Instructions to the CPU Remove List*/
326    void addToRemoveList(DynInstPtr &inst);
327
328    /** Remove an instruction from the front end of the list.  There's
329     *  no restriction on location of the instruction.
330     */
331    void removeFrontInst(DynInstPtr &inst);
332
333    /** Remove all instructions that are not currently in the ROB. */
334    void removeInstsNotInROB(unsigned tid);
335
336    /** Remove all instructions younger than the given sequence number. */
337    void removeInstsUntil(const InstSeqNum &seq_num,unsigned tid);
338
339    /** Removes the instruction pointed to by the iterator. */
340    inline void squashInstIt(const ListIt &instIt, const unsigned &tid);
341
342    /** Cleans up all instructions on the remove list. */
343    void cleanUpRemovedInsts();
344
345    /** Debug function to print all instructions on the list. */
346    void dumpInsts();
347
348  public:
349    /** List of all the instructions in flight. */
350    std::list<DynInstPtr> instList;
351
352    /** List of all the instructions that will be removed at the end of this
353     *  cycle.
354     */
355    std::queue<ListIt> removeList;
356
357#ifdef DEBUG
358    /** Debug structure to keep track of the sequence numbers still in
359     * flight.
360     */
361    std::set<InstSeqNum> snList;
362#endif
363
364    /** Records if instructions need to be removed this cycle due to
365     *  being retired or squashed.
366     */
367    bool removeInstsThisCycle;
368
369  protected:
370    /** The fetch stage. */
371    typename CPUPolicy::Fetch fetch;
372
373    /** The decode stage. */
374    typename CPUPolicy::Decode decode;
375
376    /** The dispatch stage. */
377    typename CPUPolicy::Rename rename;
378
379    /** The issue/execute/writeback stages. */
380    typename CPUPolicy::IEW iew;
381
382    /** The commit stage. */
383    typename CPUPolicy::Commit commit;
384
385    /** The register file. */
386    typename CPUPolicy::RegFile regFile;
387
388    /** The free list. */
389    typename CPUPolicy::FreeList freeList;
390
391    /** The rename map. */
392    typename CPUPolicy::RenameMap renameMap[Impl::MaxThreads];
393
394    /** The commit rename map. */
395    typename CPUPolicy::RenameMap commitRenameMap[Impl::MaxThreads];
396
397    /** The re-order buffer. */
398    typename CPUPolicy::ROB rob;
399
400    /** Active Threads List */
401    std::list<unsigned> activeThreads;
402
403    /** Integer Register Scoreboard */
404    Scoreboard scoreboard;
405
406  public:
407    /** Enum to give each stage a specific index, so when calling
408     *  activateStage() or deactivateStage(), they can specify which stage
409     *  is being activated/deactivated.
410     */
411    enum StageIdx {
412        FetchIdx,
413        DecodeIdx,
414        RenameIdx,
415        IEWIdx,
416        CommitIdx,
417        NumStages };
418
419    /** Typedefs from the Impl to get the structs that each of the
420     *  time buffers should use.
421     */
422    typedef typename CPUPolicy::TimeStruct TimeStruct;
423
424    typedef typename CPUPolicy::FetchStruct FetchStruct;
425
426    typedef typename CPUPolicy::DecodeStruct DecodeStruct;
427
428    typedef typename CPUPolicy::RenameStruct RenameStruct;
429
430    typedef typename CPUPolicy::IEWStruct IEWStruct;
431
432    /** The main time buffer to do backwards communication. */
433    TimeBuffer<TimeStruct> timeBuffer;
434
435    /** The fetch stage's instruction queue. */
436    TimeBuffer<FetchStruct> fetchQueue;
437
438    /** The decode stage's instruction queue. */
439    TimeBuffer<DecodeStruct> decodeQueue;
440
441    /** The rename stage's instruction queue. */
442    TimeBuffer<RenameStruct> renameQueue;
443
444    /** The IEW stage's instruction queue. */
445    TimeBuffer<IEWStruct> iewQueue;
446
447  private:
448    /** The activity recorder; used to tell if the CPU has any
449     * activity remaining or if it can go to idle and deschedule
450     * itself.
451     */
452    ActivityRecorder activityRec;
453
454  public:
455    /** Records that there was time buffer activity this cycle. */
456    void activityThisCycle() { activityRec.activity(); }
457
458    /** Changes a stage's status to active within the activity recorder. */
459    void activateStage(const StageIdx idx)
460    { activityRec.activateStage(idx); }
461
462    /** Changes a stage's status to inactive within the activity recorder. */
463    void deactivateStage(const StageIdx idx)
464    { activityRec.deactivateStage(idx); }
465
466    /** Wakes the CPU, rescheduling the CPU if it's not already active. */
467    void wakeCPU();
468
469    /** Gets a free thread id. Use if thread ids change across system. */
470    int getFreeTid();
471
472  public:
473    /** Returns a pointer to a thread context. */
474    ThreadContext *tcBase(unsigned tid)
475    {
476        return thread[tid]->getTC();
477    }
478
479    /** The global sequence number counter. */
480    InstSeqNum globalSeqNum;
481
482    /** Pointer to the checker, which can dynamically verify
483     * instruction results at run time.  This can be set to NULL if it
484     * is not being used.
485     */
486    Checker<DynInstPtr> *checker;
487
488#if FULL_SYSTEM
489    /** Pointer to the system. */
490    System *system;
491
492    /** Pointer to physical memory. */
493    PhysicalMemory *physmem;
494#endif
495
496    /** Pointer to memory. */
497    MemObject *mem;
498
499    /** Pointer to the sampler */
500    Sampler *sampler;
501
502    /** Counter of how many stages have completed switching out. */
503    int switchCount;
504
505    /** Pointers to all of the threads in the CPU. */
506    std::vector<Thread *> thread;
507
508    /** Pointer to the icache interface. */
509    MemInterface *icacheInterface;
510    /** Pointer to the dcache interface. */
511    MemInterface *dcacheInterface;
512
513    /** Whether or not the CPU should defer its registration. */
514    bool deferRegistration;
515
516    /** Is there a context switch pending? */
517    bool contextSwitch;
518
519    /** Threads Scheduled to Enter CPU */
520    std::list<int> cpuWaitList;
521
522    /** The cycle that the CPU was last running, used for statistics. */
523    Tick lastRunningCycle;
524
525    /** Number of Threads CPU can process */
526    unsigned numThreads;
527
528    /** Mapping for system thread id to cpu id */
529    std::map<unsigned,unsigned> threadMap;
530
531    /** Available thread ids in the cpu*/
532    std::vector<unsigned> tids;
533
534    /** Stat for total number of times the CPU is descheduled. */
535    Stats::Scalar<> timesIdled;
536    /** Stat for total number of cycles the CPU spends descheduled. */
537    Stats::Scalar<> idleCycles;
538    /** Stat for the number of committed instructions per thread. */
539    Stats::Vector<> committedInsts;
540    /** Stat for the total number of committed instructions. */
541    Stats::Scalar<> totalCommittedInsts;
542    /** Stat for the CPI per thread. */
543    Stats::Formula cpi;
544    /** Stat for the total CPI. */
545    Stats::Formula totalCpi;
546    /** Stat for the IPC per thread. */
547    Stats::Formula ipc;
548    /** Stat for the total IPC. */
549    Stats::Formula totalIpc;
550};
551
552#endif // __CPU_O3_CPU_HH__
553