base.hh revision 10408:a59c189de383
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.
255    virtual void activateContext(ThreadID thread_num) {}
256
257    /// Notify the CPU that the indicated context is now suspended.
258    virtual void suspendContext(ThreadID thread_num) {}
259
260    /// Notify the CPU that the indicated context is now halted.
261    virtual void haltContext(ThreadID thread_num) {}
262
263   /// Given a Thread Context pointer return the thread num
264   int findContext(ThreadContext *tc);
265
266   /// Given a thread num get tho thread context for it
267   virtual ThreadContext *getContext(int tn) { return threadContexts[tn]; }
268
269   /// Get the number of thread contexts available
270   unsigned numContexts() { return threadContexts.size(); }
271
272  public:
273    typedef BaseCPUParams Params;
274    const Params *params() const
275    { return reinterpret_cast<const Params *>(_params); }
276    BaseCPU(Params *params, bool is_checker = false);
277    virtual ~BaseCPU();
278
279    virtual void init();
280    virtual void startup();
281    virtual void regStats();
282
283    void registerThreadContexts();
284
285    /**
286     * Prepare for another CPU to take over execution.
287     *
288     * When this method exits, all internal state should have been
289     * flushed. After the method returns, the simulator calls
290     * takeOverFrom() on the new CPU with this CPU as its parameter.
291     */
292    virtual void switchOut();
293
294    /**
295     * Load the state of a CPU from the previous CPU object, invoked
296     * on all new CPUs that are about to be switched in.
297     *
298     * A CPU model implementing this method is expected to initialize
299     * its state from the old CPU and connect its memory (unless they
300     * are already connected) to the memories connected to the old
301     * CPU.
302     *
303     * @param cpu CPU to initialize read state from.
304     */
305    virtual void takeOverFrom(BaseCPU *cpu);
306
307    /**
308     * Flush all TLBs in the CPU.
309     *
310     * This method is mainly used to flush stale translations when
311     * switching CPUs. It is also exported to the Python world to
312     * allow it to request a TLB flush after draining the CPU to make
313     * it easier to compare traces when debugging
314     * handover/checkpointing.
315     */
316    void flushTLBs();
317
318    /**
319     * Determine if the CPU is switched out.
320     *
321     * @return True if the CPU is switched out, false otherwise.
322     */
323    bool switchedOut() const { return _switchedOut; }
324
325    /**
326     * Verify that the system is in a memory mode supported by the
327     * CPU.
328     *
329     * Implementations are expected to query the system for the
330     * current memory mode and ensure that it is what the CPU model
331     * expects. If the check fails, the implementation should
332     * terminate the simulation using fatal().
333     */
334    virtual void verifyMemoryMode() const { };
335
336    /**
337     *  Number of threads we're actually simulating (<= SMT_MAX_THREADS).
338     * This is a constant for the duration of the simulation.
339     */
340    ThreadID numThreads;
341
342    /**
343     * Vector of per-thread instruction-based event queues.  Used for
344     * scheduling events based on number of instructions committed by
345     * a particular thread.
346     */
347    EventQueue **comInstEventQueue;
348
349    /**
350     * Vector of per-thread load-based event queues.  Used for
351     * scheduling events based on number of loads committed by
352     *a particular thread.
353     */
354    EventQueue **comLoadEventQueue;
355
356    System *system;
357
358    /**
359     * Get the cache line size of the system.
360     */
361    inline unsigned int cacheLineSize() const { return _cacheLineSize; }
362
363    /**
364     * Serialize this object to the given output stream.
365     *
366     * @note CPU models should normally overload the serializeThread()
367     * method instead of the serialize() method as this provides a
368     * uniform data format for all CPU models and promotes better code
369     * reuse.
370     *
371     * @param os The stream to serialize to.
372     */
373    virtual void serialize(std::ostream &os);
374
375    /**
376     * Reconstruct the state of this object from a checkpoint.
377     *
378     * @note CPU models should normally overload the
379     * unserializeThread() method instead of the unserialize() method
380     * as this provides a uniform data format for all CPU models and
381     * promotes better code reuse.
382
383     * @param cp The checkpoint use.
384     * @param section The section name of this object.
385     */
386    virtual void unserialize(Checkpoint *cp, const std::string &section);
387
388    /**
389     * Serialize a single thread.
390     *
391     * @param os The stream to serialize to.
392     * @param tid ID of the current thread.
393     */
394    virtual void serializeThread(std::ostream &os, ThreadID tid) {};
395
396    /**
397     * Unserialize one thread.
398     *
399     * @param cp The checkpoint use.
400     * @param section The section name of this thread.
401     * @param tid ID of the current thread.
402     */
403    virtual void unserializeThread(Checkpoint *cp, const std::string &section,
404                                   ThreadID tid) {};
405
406    virtual Counter totalInsts() const = 0;
407
408    virtual Counter totalOps() const = 0;
409
410    /**
411     * Schedule an event that exits the simulation loops after a
412     * predefined number of instructions.
413     *
414     * This method is usually called from the configuration script to
415     * get an exit event some time in the future. It is typically used
416     * when the script wants to simulate for a specific number of
417     * instructions rather than ticks.
418     *
419     * @param tid Thread monitor.
420     * @param insts Number of instructions into the future.
421     * @param cause Cause to signal in the exit event.
422     */
423    void scheduleInstStop(ThreadID tid, Counter insts, const char *cause);
424
425    /**
426     * Schedule an event that exits the simulation loops after a
427     * predefined number of load operations.
428     *
429     * This method is usually called from the configuration script to
430     * get an exit event some time in the future. It is typically used
431     * when the script wants to simulate for a specific number of
432     * loads rather than ticks.
433     *
434     * @param tid Thread monitor.
435     * @param loads Number of load instructions into the future.
436     * @param cause Cause to signal in the exit event.
437     */
438    void scheduleLoadStop(ThreadID tid, Counter loads, const char *cause);
439
440    // Function tracing
441  private:
442    bool functionTracingEnabled;
443    std::ostream *functionTraceStream;
444    Addr currentFunctionStart;
445    Addr currentFunctionEnd;
446    Tick functionEntryTick;
447    void enableFunctionTrace();
448    void traceFunctionsInternal(Addr pc);
449
450  private:
451    static std::vector<BaseCPU *> cpuList;   //!< Static global cpu list
452
453  public:
454    void traceFunctions(Addr pc)
455    {
456        if (functionTracingEnabled)
457            traceFunctionsInternal(pc);
458    }
459
460    static int numSimulatedCPUs() { return cpuList.size(); }
461    static Counter numSimulatedInsts()
462    {
463        Counter total = 0;
464
465        int size = cpuList.size();
466        for (int i = 0; i < size; ++i)
467            total += cpuList[i]->totalInsts();
468
469        return total;
470    }
471
472    static Counter numSimulatedOps()
473    {
474        Counter total = 0;
475
476        int size = cpuList.size();
477        for (int i = 0; i < size; ++i)
478            total += cpuList[i]->totalOps();
479
480        return total;
481    }
482
483  public:
484    // Number of CPU cycles simulated
485    Stats::Scalar numCycles;
486    Stats::Scalar numWorkItemsStarted;
487    Stats::Scalar numWorkItemsCompleted;
488};
489
490#endif // THE_ISA == NULL_ISA
491
492#endif // __CPU_BASE_HH__
493