base.hh revision 393
1/*
2 * Copyright (c) 2003 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
29#ifndef __SIMPLE_CPU_HH__
30#define __SIMPLE_CPU_HH__
31
32#include "cpu/base_cpu.hh"
33#include "sim/eventq.hh"
34#include "base/loader/symtab.hh"
35#include "cpu/pc_event.hh"
36#include "base/statistics.hh"
37
38
39// forward declarations
40#ifdef FULL_SYSTEM
41class Processor;
42class Kernel;
43class AlphaItb;
44class AlphaDtb;
45class PhysicalMemory;
46
47class RemoteGDB;
48class GDBListener;
49#endif // FULL_SYSTEM
50
51class MemInterface;
52class Checkpoint;
53
54namespace Trace {
55    class InstRecord;
56}
57
58class SimpleCPU : public BaseCPU
59{
60  public:
61    // main simulation loop (one cycle)
62    void tick();
63
64  private:
65    class TickEvent : public Event
66    {
67      private:
68        SimpleCPU *cpu;
69
70      public:
71        TickEvent(SimpleCPU *c);
72        void process();
73        const char *description();
74    };
75
76    TickEvent tickEvent;
77
78    /// Schedule tick event, regardless of its current state.
79    void scheduleTickEvent(int delay)
80    {
81        if (tickEvent.squashed())
82            tickEvent.reschedule(curTick + delay);
83        else if (!tickEvent.scheduled())
84            tickEvent.schedule(curTick + delay);
85    }
86
87    /// Unschedule tick event, regardless of its current state.
88    void unscheduleTickEvent()
89    {
90        if (tickEvent.scheduled())
91            tickEvent.squash();
92    }
93
94  private:
95    Trace::InstRecord *traceData;
96    template<typename T>
97    void trace_data(T data) {
98      if (traceData) {
99        traceData->setData(data);
100      }
101    };
102
103  public:
104    //
105    enum Status {
106        Running,
107        Idle,
108        IcacheMissStall,
109        IcacheMissComplete,
110        DcacheMissStall,
111        SwitchedOut
112    };
113
114  private:
115    Status _status;
116
117  public:
118    void post_interrupt(int int_num, int index);
119
120    void zero_fill_64(Addr addr) {
121      static int warned = 0;
122      if (!warned) {
123        warn ("WH64 is not implemented");
124        warned = 1;
125      }
126    };
127
128#ifdef FULL_SYSTEM
129
130    SimpleCPU(const std::string &_name,
131              System *_system,
132              Counter max_insts_any_thread, Counter max_insts_all_threads,
133              Counter max_loads_any_thread, Counter max_loads_all_threads,
134              AlphaItb *itb, AlphaDtb *dtb, FunctionalMemory *mem,
135              MemInterface *icache_interface, MemInterface *dcache_interface,
136              Tick freq);
137
138#else
139
140    SimpleCPU(const std::string &_name, Process *_process,
141              Counter max_insts_any_thread,
142              Counter max_insts_all_threads,
143              Counter max_loads_any_thread,
144              Counter max_loads_all_threads,
145              MemInterface *icache_interface, MemInterface *dcache_interface);
146
147#endif
148
149    virtual ~SimpleCPU();
150
151    // execution context
152    ExecContext *xc;
153
154    void switchOut();
155    void takeOverFrom(BaseCPU *oldCPU);
156
157#ifdef FULL_SYSTEM
158    Addr dbg_vtophys(Addr addr);
159
160    bool interval_stats;
161#endif
162
163    // L1 instruction cache
164    MemInterface *icacheInterface;
165
166    // L1 data cache
167    MemInterface *dcacheInterface;
168
169    // current instruction
170    MachInst inst;
171
172    // Refcounted pointer to the one memory request.
173    MemReqPtr memReq;
174
175    class CacheCompletionEvent : public Event
176    {
177      private:
178        SimpleCPU *cpu;
179
180      public:
181        CacheCompletionEvent(SimpleCPU *_cpu);
182
183        virtual void process();
184        virtual const char *description();
185    };
186
187    CacheCompletionEvent cacheCompletionEvent;
188
189    Status status() const { return _status; }
190
191    virtual void activateContext(int thread_num, int delay);
192    virtual void suspendContext(int thread_num);
193    virtual void deallocateContext(int thread_num);
194    virtual void haltContext(int thread_num);
195
196    // statistics
197    virtual void regStats();
198    virtual void resetStats();
199
200    // number of simulated instructions
201    Counter numInst;
202    Counter startNumInst;
203    Statistics::Formula numInsts;
204
205    // number of simulated memory references
206    Statistics::Scalar<> numMemRefs;
207
208    // number of simulated loads
209    Counter numLoad;
210    Counter startNumLoad;
211
212    // number of idle cycles
213    Statistics::Average<> notIdleFraction;
214    Statistics::Formula idleFraction;
215
216    // number of cycles stalled for I-cache misses
217    Statistics::Scalar<> icacheStallCycles;
218    Counter lastIcacheStall;
219
220    // number of cycles stalled for D-cache misses
221    Statistics::Scalar<> dcacheStallCycles;
222    Counter lastDcacheStall;
223
224    void processCacheCompletion();
225
226    virtual void serialize(std::ostream &os);
227    virtual void unserialize(Checkpoint *cp, const std::string &section);
228
229    template <class T>
230    Fault read(Addr addr, T& data, unsigned flags);
231
232    template <class T>
233    Fault write(T data, Addr addr, unsigned flags,
234                        uint64_t *res);
235
236    Fault prefetch(Addr addr, unsigned flags)
237    {
238        // need to do this...
239        return No_Fault;
240    }
241
242    void writeHint(Addr addr, int size)
243    {
244        // need to do this...
245    }
246};
247
248#endif // __SIMPLE_CPU_HH__
249