base.hh revision 10190:fb83d025d1c3
1/*
2 * Copyright (c) 2011-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder.  You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2002-2005 The Regents of The University of Michigan
15 * Copyright (c) 2011 Regents of the University of California
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 *          Nathan Binkert
43 *          Rick Strong
44 */
45
46#ifndef __CPU_BASE_HH__
47#define __CPU_BASE_HH__
48
49#include <vector>
50
51// Before we do anything else, check if this build is the NULL ISA,
52// and if so stop here
53#include "config/the_isa.hh"
54#if THE_ISA == NULL_ISA
55#include "arch/null/cpu_dummy.hh"
56#else
57#include "arch/interrupts.hh"
58#include "arch/isa_traits.hh"
59#include "arch/microcode_rom.hh"
60#include "base/statistics.hh"
61#include "mem/mem_object.hh"
62#include "sim/eventq.hh"
63#include "sim/full_system.hh"
64#include "sim/insttracer.hh"
65#include "sim/system.hh"
66
67struct BaseCPUParams;
68class CheckerCPU;
69class ThreadContext;
70
71class CPUProgressEvent : public Event
72{
73  protected:
74    Tick _interval;
75    Counter lastNumInst;
76    BaseCPU *cpu;
77    bool _repeatEvent;
78
79  public:
80    CPUProgressEvent(BaseCPU *_cpu, Tick ival = 0);
81
82    void process();
83
84    void interval(Tick ival) { _interval = ival; }
85    Tick interval() { return _interval; }
86
87    void repeatEvent(bool repeat) { _repeatEvent = repeat; }
88
89    virtual const char *description() const;
90};
91
92class BaseCPU : public MemObject
93{
94  protected:
95
96    // @todo remove me after debugging with legion done
97    Tick instCnt;
98    // every cpu has an id, put it in the base cpu
99    // Set at initialization, only time a cpuId might change is during a
100    // takeover (which should be done from within the BaseCPU anyway,
101    // therefore no setCpuId() method is provided
102    int _cpuId;
103
104    /** Each cpu will have a socket ID that corresponds to its physical location
105     * in the system. This is usually used to bucket cpu cores under single DVFS
106     * domain. This information may also be required by the OS to identify the
107     * cpu core grouping (as in the case of ARM via MPIDR register)
108     */
109    const uint32_t _socketId;
110
111    /** instruction side request id that must be placed in all requests */
112    MasterID _instMasterId;
113
114    /** data side request id that must be placed in all requests */
115    MasterID _dataMasterId;
116
117    /** An intrenal representation of a task identifier within gem5. This is
118     * used so the CPU can add which taskId (which is an internal representation
119     * of the OS process ID) to each request so components in the memory system
120     * can track which process IDs are ultimately interacting with them
121     */
122    uint32_t _taskId;
123
124    /** The current OS process ID that is executing on this processor. This is
125     * used to generate a taskId */
126    uint32_t _pid;
127
128    /** Is the CPU switched out or active? */
129    bool _switchedOut;
130
131    /** Cache the cache line size that we get from the system */
132    const unsigned int _cacheLineSize;
133
134  public:
135
136    /**
137     * Purely virtual method that returns a reference to the data
138     * port. All subclasses must implement this method.
139     *
140     * @return a reference to the data port
141     */
142    virtual MasterPort &getDataPort() = 0;
143
144    /**
145     * Purely virtual method that returns a reference to the instruction
146     * port. All subclasses must implement this method.
147     *
148     * @return a reference to the instruction port
149     */
150    virtual MasterPort &getInstPort() = 0;
151
152    /** Reads this CPU's ID. */
153    int cpuId() const { return _cpuId; }
154
155    /** Reads this CPU's Socket ID. */
156    uint32_t socketId() const { return _socketId; }
157
158    /** Reads this CPU's unique data requestor ID */
159    MasterID dataMasterId() { return _dataMasterId; }
160    /** Reads this CPU's unique instruction requestor ID */
161    MasterID instMasterId() { return _instMasterId; }
162
163    /**
164     * Get a master port on this CPU. All CPUs have a data and
165     * instruction port, and this method uses getDataPort and
166     * getInstPort of the subclasses to resolve the two ports.
167     *
168     * @param if_name the port name
169     * @param idx ignored index
170     *
171     * @return a reference to the port with the given name
172     */
173    BaseMasterPort &getMasterPort(const std::string &if_name,
174                                  PortID idx = InvalidPortID);
175
176    /** Get cpu task id */
177    uint32_t taskId() const { return _taskId; }
178    /** Set cpu task id */
179    void taskId(uint32_t id) { _taskId = id; }
180
181    uint32_t getPid() const { return _pid; }
182    void setPid(uint32_t pid) { _pid = pid; }
183
184    inline void workItemBegin() { numWorkItemsStarted++; }
185    inline void workItemEnd() { numWorkItemsCompleted++; }
186    // @todo remove me after debugging with legion done
187    Tick instCount() { return instCnt; }
188
189    TheISA::MicrocodeRom microcodeRom;
190
191  protected:
192    TheISA::Interrupts *interrupts;
193
194  public:
195    TheISA::Interrupts *
196    getInterruptController()
197    {
198        return interrupts;
199    }
200
201    virtual void wakeup() = 0;
202
203    void
204    postInterrupt(int int_num, int index)
205    {
206        interrupts->post(int_num, index);
207        if (FullSystem)
208            wakeup();
209    }
210
211    void
212    clearInterrupt(int int_num, int index)
213    {
214        interrupts->clear(int_num, index);
215    }
216
217    void
218    clearInterrupts()
219    {
220        interrupts->clearAll();
221    }
222
223    bool
224    checkInterrupts(ThreadContext *tc) const
225    {
226        return FullSystem && interrupts->checkInterrupts(tc);
227    }
228
229    class ProfileEvent : public Event
230    {
231      private:
232        BaseCPU *cpu;
233        Tick interval;
234
235      public:
236        ProfileEvent(BaseCPU *cpu, Tick interval);
237        void process();
238    };
239    ProfileEvent *profileEvent;
240
241  protected:
242    std::vector<ThreadContext *> threadContexts;
243
244    Trace::InstTracer * tracer;
245
246  public:
247
248    // Mask to align PCs to MachInst sized boundaries
249    static const Addr PCMask = ~((Addr)sizeof(TheISA::MachInst) - 1);
250
251    /// Provide access to the tracer pointer
252    Trace::InstTracer * getTracer() { return tracer; }
253
254    /// Notify the CPU that the indicated context is now active.  The
255    /// delay parameter indicates the number of ticks to wait before
256    /// executing (typically 0 or 1).
257    virtual void activateContext(ThreadID thread_num, Cycles delay) {}
258
259    /// Notify the CPU that the indicated context is now suspended.
260    virtual void suspendContext(ThreadID thread_num) {}
261
262    /// Notify the CPU that the indicated context is now deallocated.
263    virtual void deallocateContext(ThreadID thread_num) {}
264
265    /// Notify the CPU that the indicated context is now halted.
266    virtual void haltContext(ThreadID thread_num) {}
267
268   /// Given a Thread Context pointer return the thread num
269   int findContext(ThreadContext *tc);
270
271   /// Given a thread num get tho thread context for it
272   virtual ThreadContext *getContext(int tn) { return threadContexts[tn]; }
273
274   /// Get the number of thread contexts available
275   unsigned numContexts() { return threadContexts.size(); }
276
277  public:
278    typedef BaseCPUParams Params;
279    const Params *params() const
280    { return reinterpret_cast<const Params *>(_params); }
281    BaseCPU(Params *params, bool is_checker = false);
282    virtual ~BaseCPU();
283
284    virtual void init();
285    virtual void startup();
286    virtual void regStats();
287
288    virtual void activateWhenReady(ThreadID tid) {};
289
290    void registerThreadContexts();
291
292    /**
293     * Prepare for another CPU to take over execution.
294     *
295     * When this method exits, all internal state should have been
296     * flushed. After the method returns, the simulator calls
297     * takeOverFrom() on the new CPU with this CPU as its parameter.
298     */
299    virtual void switchOut();
300
301    /**
302     * Load the state of a CPU from the previous CPU object, invoked
303     * on all new CPUs that are about to be switched in.
304     *
305     * A CPU model implementing this method is expected to initialize
306     * its state from the old CPU and connect its memory (unless they
307     * are already connected) to the memories connected to the old
308     * CPU.
309     *
310     * @param cpu CPU to initialize read state from.
311     */
312    virtual void takeOverFrom(BaseCPU *cpu);
313
314    /**
315     * Flush all TLBs in the CPU.
316     *
317     * This method is mainly used to flush stale translations when
318     * switching CPUs. It is also exported to the Python world to
319     * allow it to request a TLB flush after draining the CPU to make
320     * it easier to compare traces when debugging
321     * handover/checkpointing.
322     */
323    void flushTLBs();
324
325    /**
326     * Determine if the CPU is switched out.
327     *
328     * @return True if the CPU is switched out, false otherwise.
329     */
330    bool switchedOut() const { return _switchedOut; }
331
332    /**
333     * Verify that the system is in a memory mode supported by the
334     * CPU.
335     *
336     * Implementations are expected to query the system for the
337     * current memory mode and ensure that it is what the CPU model
338     * expects. If the check fails, the implementation should
339     * terminate the simulation using fatal().
340     */
341    virtual void verifyMemoryMode() const { };
342
343    /**
344     *  Number of threads we're actually simulating (<= SMT_MAX_THREADS).
345     * This is a constant for the duration of the simulation.
346     */
347    ThreadID numThreads;
348
349    /**
350     * Vector of per-thread instruction-based event queues.  Used for
351     * scheduling events based on number of instructions committed by
352     * a particular thread.
353     */
354    EventQueue **comInstEventQueue;
355
356    /**
357     * Vector of per-thread load-based event queues.  Used for
358     * scheduling events based on number of loads committed by
359     *a particular thread.
360     */
361    EventQueue **comLoadEventQueue;
362
363    System *system;
364
365    /**
366     * Get the cache line size of the system.
367     */
368    inline unsigned int cacheLineSize() const { return _cacheLineSize; }
369
370    /**
371     * Serialize this object to the given output stream.
372     *
373     * @note CPU models should normally overload the serializeThread()
374     * method instead of the serialize() method as this provides a
375     * uniform data format for all CPU models and promotes better code
376     * reuse.
377     *
378     * @param os The stream to serialize to.
379     */
380    virtual void serialize(std::ostream &os);
381
382    /**
383     * Reconstruct the state of this object from a checkpoint.
384     *
385     * @note CPU models should normally overload the
386     * unserializeThread() method instead of the unserialize() method
387     * as this provides a uniform data format for all CPU models and
388     * promotes better code reuse.
389
390     * @param cp The checkpoint use.
391     * @param section The section name of this object.
392     */
393    virtual void unserialize(Checkpoint *cp, const std::string &section);
394
395    /**
396     * Serialize a single thread.
397     *
398     * @param os The stream to serialize to.
399     * @param tid ID of the current thread.
400     */
401    virtual void serializeThread(std::ostream &os, ThreadID tid) {};
402
403    /**
404     * Unserialize one thread.
405     *
406     * @param cp The checkpoint use.
407     * @param section The section name of this thread.
408     * @param tid ID of the current thread.
409     */
410    virtual void unserializeThread(Checkpoint *cp, const std::string &section,
411                                   ThreadID tid) {};
412
413    virtual Counter totalInsts() const = 0;
414
415    virtual Counter totalOps() const = 0;
416
417    /**
418     * Schedule an event that exits the simulation loops after a
419     * predefined number of instructions.
420     *
421     * This method is usually called from the configuration script to
422     * get an exit event some time in the future. It is typically used
423     * when the script wants to simulate for a specific number of
424     * instructions rather than ticks.
425     *
426     * @param tid Thread monitor.
427     * @param insts Number of instructions into the future.
428     * @param cause Cause to signal in the exit event.
429     */
430    void scheduleInstStop(ThreadID tid, Counter insts, const char *cause);
431
432    /**
433     * Schedule an event that exits the simulation loops after a
434     * predefined number of load operations.
435     *
436     * This method is usually called from the configuration script to
437     * get an exit event some time in the future. It is typically used
438     * when the script wants to simulate for a specific number of
439     * loads rather than ticks.
440     *
441     * @param tid Thread monitor.
442     * @param loads Number of load instructions into the future.
443     * @param cause Cause to signal in the exit event.
444     */
445    void scheduleLoadStop(ThreadID tid, Counter loads, const char *cause);
446
447    // Function tracing
448  private:
449    bool functionTracingEnabled;
450    std::ostream *functionTraceStream;
451    Addr currentFunctionStart;
452    Addr currentFunctionEnd;
453    Tick functionEntryTick;
454    void enableFunctionTrace();
455    void traceFunctionsInternal(Addr pc);
456
457  private:
458    static std::vector<BaseCPU *> cpuList;   //!< Static global cpu list
459
460  public:
461    void traceFunctions(Addr pc)
462    {
463        if (functionTracingEnabled)
464            traceFunctionsInternal(pc);
465    }
466
467    static int numSimulatedCPUs() { return cpuList.size(); }
468    static Counter numSimulatedInsts()
469    {
470        Counter total = 0;
471
472        int size = cpuList.size();
473        for (int i = 0; i < size; ++i)
474            total += cpuList[i]->totalInsts();
475
476        return total;
477    }
478
479    static Counter numSimulatedOps()
480    {
481        Counter total = 0;
482
483        int size = cpuList.size();
484        for (int i = 0; i < size; ++i)
485            total += cpuList[i]->totalOps();
486
487        return total;
488    }
489
490  public:
491    // Number of CPU cycles simulated
492    Stats::Scalar numCycles;
493    Stats::Scalar numWorkItemsStarted;
494    Stats::Scalar numWorkItemsCompleted;
495};
496
497#endif // THE_ISA == NULL_ISA
498
499#endif // __CPU_BASE_HH__
500