system.hh revision 10466
1/*
2 * Copyright (c) 2012, 2014 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 *          Lisa Hsu
43 *          Nathan Binkert
44 *          Rick Strong
45 */
46
47#ifndef __SYSTEM_HH__
48#define __SYSTEM_HH__
49
50#include <string>
51#include <utility>
52#include <vector>
53
54#include "arch/isa_traits.hh"
55#include "base/loader/symtab.hh"
56#include "base/misc.hh"
57#include "base/statistics.hh"
58#include "config/the_isa.hh"
59#include "cpu/pc_event.hh"
60#include "enums/MemoryMode.hh"
61#include "kern/system_events.hh"
62#include "mem/mem_object.hh"
63#include "mem/port.hh"
64#include "mem/port_proxy.hh"
65#include "mem/physical.hh"
66#include "params/System.hh"
67
68class BaseCPU;
69class BaseRemoteGDB;
70class GDBListener;
71class ObjectFile;
72class Platform;
73class ThreadContext;
74
75class System : public MemObject
76{
77  private:
78
79    /**
80     * Private class for the system port which is only used as a
81     * master for debug access and for non-structural entities that do
82     * not have a port of their own.
83     */
84    class SystemPort : public MasterPort
85    {
86      public:
87
88        /**
89         * Create a system port with a name and an owner.
90         */
91        SystemPort(const std::string &_name, MemObject *_owner)
92            : MasterPort(_name, _owner)
93        { }
94        bool recvTimingResp(PacketPtr pkt)
95        { panic("SystemPort does not receive timing!\n"); return false; }
96        void recvRetry()
97        { panic("SystemPort does not expect retry!\n"); }
98    };
99
100    SystemPort _systemPort;
101
102  public:
103
104    /**
105     * After all objects have been created and all ports are
106     * connected, check that the system port is connected.
107     */
108    virtual void init();
109
110    /**
111     * Get a reference to the system port that can be used by
112     * non-structural simulation objects like processes or threads, or
113     * external entities like loaders and debuggers, etc, to access
114     * the memory system.
115     *
116     * @return a reference to the system port we own
117     */
118    MasterPort& getSystemPort() { return _systemPort; }
119
120    /**
121     * Additional function to return the Port of a memory object.
122     */
123    BaseMasterPort& getMasterPort(const std::string &if_name,
124                                  PortID idx = InvalidPortID);
125
126    /** @{ */
127    /**
128     * Is the system in atomic mode?
129     *
130     * There are currently two different atomic memory modes:
131     * 'atomic', which supports caches; and 'atomic_noncaching', which
132     * bypasses caches. The latter is used by hardware virtualized
133     * CPUs. SimObjects are expected to use Port::sendAtomic() and
134     * Port::recvAtomic() when accessing memory in this mode.
135     */
136    bool isAtomicMode() const {
137        return memoryMode == Enums::atomic ||
138            memoryMode == Enums::atomic_noncaching;
139    }
140
141    /**
142     * Is the system in timing mode?
143     *
144     * SimObjects are expected to use Port::sendTiming() and
145     * Port::recvTiming() when accessing memory in this mode.
146     */
147    bool isTimingMode() const {
148        return memoryMode == Enums::timing;
149    }
150
151    /**
152     * Should caches be bypassed?
153     *
154     * Some CPUs need to bypass caches to allow direct memory
155     * accesses, which is required for hardware virtualization.
156     */
157    bool bypassCaches() const {
158        return memoryMode == Enums::atomic_noncaching;
159    }
160    /** @} */
161
162    /** @{ */
163    /**
164     * Get the memory mode of the system.
165     *
166     * \warn This should only be used by the Python world. The C++
167     * world should use one of the query functions above
168     * (isAtomicMode(), isTimingMode(), bypassCaches()).
169     */
170    Enums::MemoryMode getMemoryMode() const { return memoryMode; }
171
172    /**
173     * Change the memory mode of the system.
174     *
175     * \warn This should only be called by the Python!
176     *
177     * @param mode Mode to change to (atomic/timing/...)
178     */
179    void setMemoryMode(Enums::MemoryMode mode);
180    /** @} */
181
182    /**
183     * Get the cache line size of the system.
184     */
185    unsigned int cacheLineSize() const { return _cacheLineSize; }
186
187#if THE_ISA != NULL_ISA
188    PCEventQueue pcEventQueue;
189#endif
190
191    std::vector<ThreadContext *> threadContexts;
192    int _numContexts;
193
194    ThreadContext *getThreadContext(ThreadID tid)
195    {
196        return threadContexts[tid];
197    }
198
199    int numContexts()
200    {
201        assert(_numContexts == (int)threadContexts.size());
202        return _numContexts;
203    }
204
205    /** Return number of running (non-halted) thread contexts in
206     * system.  These threads could be Active or Suspended. */
207    int numRunningContexts();
208
209    Addr pagePtr;
210
211    uint64_t init_param;
212
213    /** Port to physical memory used for writing object files into ram at
214     * boot.*/
215    PortProxy physProxy;
216
217    /** kernel symbol table */
218    SymbolTable *kernelSymtab;
219
220    /** Object pointer for the kernel code */
221    ObjectFile *kernel;
222
223    /** Begining of kernel code */
224    Addr kernelStart;
225
226    /** End of kernel code */
227    Addr kernelEnd;
228
229    /** Entry point in the kernel to start at */
230    Addr kernelEntry;
231
232    /** Mask that should be anded for binary/symbol loading.
233     * This allows one two different OS requirements for the same ISA to be
234     * handled.  Some OSes are compiled for a virtual address and need to be
235     * loaded into physical memory that starts at address 0, while other
236     * bare metal tools generate images that start at address 0.
237     */
238    Addr loadAddrMask;
239
240    /** Offset that should be used for binary/symbol loading.
241     * This further allows more flexibily than the loadAddrMask allows alone in
242     * loading kernels and similar. The loadAddrOffset is applied after the
243     * loadAddrMask.
244     */
245    Addr loadAddrOffset;
246
247  protected:
248    uint64_t nextPID;
249
250  public:
251    uint64_t allocatePID()
252    {
253        return nextPID++;
254    }
255
256    /** Get a pointer to access the physical memory of the system */
257    PhysicalMemory& getPhysMem() { return physmem; }
258
259    /** Amount of physical memory that is still free */
260    Addr freeMemSize() const;
261
262    /** Amount of physical memory that exists */
263    Addr memSize() const;
264
265    /**
266     * Check if a physical address is within a range of a memory that
267     * is part of the global address map.
268     *
269     * @param addr A physical address
270     * @return Whether the address corresponds to a memory
271     */
272    bool isMemAddr(Addr addr) const;
273
274     /**
275     * Get the page bytes for the ISA.
276     */
277    Addr getPageBytes() const { return TheISA::PageBytes; }
278
279    /**
280     * Get the number of bits worth of in-page adress for the ISA.
281     */
282    Addr getPageShift() const { return TheISA::PageShift; }
283
284  protected:
285
286    PhysicalMemory physmem;
287
288    Enums::MemoryMode memoryMode;
289
290    const unsigned int _cacheLineSize;
291
292    uint64_t workItemsBegin;
293    uint64_t workItemsEnd;
294    uint32_t numWorkIds;
295    std::vector<bool> activeCpus;
296
297    /** This array is a per-sytem list of all devices capable of issuing a
298     * memory system request and an associated string for each master id.
299     * It's used to uniquely id any master in the system by name for things
300     * like cache statistics.
301     */
302    std::vector<std::string> masterIds;
303
304  public:
305
306    /** Request an id used to create a request object in the system. All objects
307     * that intend to issues requests into the memory system must request an id
308     * in the init() phase of startup. All master ids must be fixed by the
309     * regStats() phase that immediately preceeds it. This allows objects in the
310     * memory system to understand how many masters may exist and
311     * appropriately name the bins of their per-master stats before the stats
312     * are finalized
313     */
314    MasterID getMasterId(std::string req_name);
315
316    /** Get the name of an object for a given request id.
317     */
318    std::string getMasterName(MasterID master_id);
319
320    /** Get the number of masters registered in the system */
321    MasterID maxMasters()
322    {
323        return masterIds.size();
324    }
325
326    virtual void regStats();
327    /**
328     * Called by pseudo_inst to track the number of work items started by this
329     * system.
330     */
331    uint64_t
332    incWorkItemsBegin()
333    {
334        return ++workItemsBegin;
335    }
336
337    /**
338     * Called by pseudo_inst to track the number of work items completed by
339     * this system.
340     */
341    uint64_t
342    incWorkItemsEnd()
343    {
344        return ++workItemsEnd;
345    }
346
347    /**
348     * Called by pseudo_inst to mark the cpus actively executing work items.
349     * Returns the total number of cpus that have executed work item begin or
350     * ends.
351     */
352    int
353    markWorkItem(int index)
354    {
355        int count = 0;
356        assert(index < activeCpus.size());
357        activeCpus[index] = true;
358        for (std::vector<bool>::iterator i = activeCpus.begin();
359             i < activeCpus.end(); i++) {
360            if (*i) count++;
361        }
362        return count;
363    }
364
365    inline void workItemBegin(uint32_t tid, uint32_t workid)
366    {
367        std::pair<uint32_t,uint32_t> p(tid, workid);
368        lastWorkItemStarted[p] = curTick();
369    }
370
371    void workItemEnd(uint32_t tid, uint32_t workid);
372
373    /**
374     * Fix up an address used to match PCs for hooking simulator
375     * events on to target function executions.  See comment in
376     * system.cc for details.
377     */
378    virtual Addr fixFuncEventAddr(Addr addr)
379    {
380        panic("Base fixFuncEventAddr not implemented.\n");
381    }
382
383    /** @{ */
384    /**
385     * Add a function-based event to the given function, to be looked
386     * up in the specified symbol table.
387     *
388     * The ...OrPanic flavor of the method causes the simulator to
389     * panic if the symbol can't be found.
390     *
391     * @param symtab Symbol table to use for look up.
392     * @param lbl Function to hook the event to.
393     * @param desc Description to be passed to the event.
394     * @param args Arguments to be forwarded to the event constructor.
395     */
396    template <class T, typename... Args>
397    T *addFuncEvent(const SymbolTable *symtab, const char *lbl,
398                    const std::string &desc, Args... args)
399    {
400        Addr addr M5_VAR_USED = 0; // initialize only to avoid compiler warning
401
402#if THE_ISA != NULL_ISA
403        if (symtab->findAddress(lbl, addr)) {
404            T *ev = new T(&pcEventQueue, desc, fixFuncEventAddr(addr),
405                          std::forward<Args>(args)...);
406            return ev;
407        }
408#endif
409
410        return NULL;
411    }
412
413    template <class T>
414    T *addFuncEvent(const SymbolTable *symtab, const char *lbl)
415    {
416        return addFuncEvent<T>(symtab, lbl, lbl);
417    }
418
419    template <class T, typename... Args>
420    T *addFuncEventOrPanic(const SymbolTable *symtab, const char *lbl,
421                           Args... args)
422    {
423        T *e(addFuncEvent<T>(symtab, lbl, std::forward<Args>(args)...));
424        if (!e)
425            panic("Failed to find symbol '%s'", lbl);
426        return e;
427    }
428    /** @} */
429
430    /** @{ */
431    /**
432     * Add a function-based event to a kernel symbol.
433     *
434     * These functions work like their addFuncEvent() and
435     * addFuncEventOrPanic() counterparts. The only difference is that
436     * they automatically use the kernel symbol table. All arguments
437     * are forwarded to the underlying method.
438     *
439     * @see addFuncEvent()
440     * @see addFuncEventOrPanic()
441     *
442     * @param lbl Function to hook the event to.
443     * @param args Arguments to be passed to addFuncEvent
444     */
445    template <class T, typename... Args>
446    T *addKernelFuncEvent(const char *lbl, Args... args)
447    {
448        return addFuncEvent<T>(kernelSymtab, lbl,
449                               std::forward<Args>(args)...);
450    }
451
452    template <class T, typename... Args>
453    T *addKernelFuncEventOrPanic(const char *lbl, Args... args)
454    {
455        T *e(addFuncEvent<T>(kernelSymtab, lbl,
456                             std::forward<Args>(args)...));
457        if (!e)
458            panic("Failed to find kernel symbol '%s'", lbl);
459        return e;
460    }
461    /** @} */
462
463  public:
464    std::vector<BaseRemoteGDB *> remoteGDB;
465    std::vector<GDBListener *> gdbListen;
466    bool breakpoint();
467
468  public:
469    typedef SystemParams Params;
470
471  protected:
472    Params *_params;
473
474  public:
475    System(Params *p);
476    ~System();
477
478    void initState();
479
480    const Params *params() const { return (const Params *)_params; }
481
482  public:
483
484    /**
485     * Returns the addess the kernel starts at.
486     * @return address the kernel starts at
487     */
488    Addr getKernelStart() const { return kernelStart; }
489
490    /**
491     * Returns the addess the kernel ends at.
492     * @return address the kernel ends at
493     */
494    Addr getKernelEnd() const { return kernelEnd; }
495
496    /**
497     * Returns the addess the entry point to the kernel code.
498     * @return entry point of the kernel code
499     */
500    Addr getKernelEntry() const { return kernelEntry; }
501
502    /// Allocate npages contiguous unused physical pages
503    /// @return Starting address of first page
504    Addr allocPhysPages(int npages);
505
506    int registerThreadContext(ThreadContext *tc, int assigned=-1);
507    void replaceThreadContext(ThreadContext *tc, int context_id);
508
509    void serialize(std::ostream &os);
510    void unserialize(Checkpoint *cp, const std::string &section);
511
512    unsigned int drain(DrainManager *dm);
513    void drainResume();
514
515  public:
516    Counter totalNumInsts;
517    EventQueue instEventQueue;
518    std::map<std::pair<uint32_t,uint32_t>, Tick>  lastWorkItemStarted;
519    std::map<uint32_t, Stats::Histogram*> workItemStats;
520
521    ////////////////////////////////////////////
522    //
523    // STATIC GLOBAL SYSTEM LIST
524    //
525    ////////////////////////////////////////////
526
527    static std::vector<System *> systemList;
528    static int numSystemsRunning;
529
530    static void printSystems();
531
532    // For futex system call
533    std::map<uint64_t, std::list<ThreadContext *> * > futexMap;
534
535  protected:
536
537    /**
538     * If needed, serialize additional symbol table entries for a
539     * specific subclass of this sytem. Currently this is used by
540     * Alpha and MIPS.
541     *
542     * @param os stream to serialize to
543     */
544    virtual void serializeSymtab(std::ostream &os) {}
545
546    /**
547     * If needed, unserialize additional symbol table entries for a
548     * specific subclass of this system.
549     *
550     * @param cp checkpoint to unserialize from
551     * @param section relevant section in the checkpoint
552     */
553    virtual void unserializeSymtab(Checkpoint *cp,
554                                   const std::string &section) {}
555
556};
557
558void printSystems();
559
560#endif // __SYSTEM_HH__
561