sim_object.hh revision 5605
12SN/A/*
21762SN/A * Copyright (c) 2001-2005 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt
292665Ssaidi@eecs.umich.edu *          Nathan Binkert
302SN/A */
312SN/A
322SN/A/* @file
332SN/A * User Console Definitions
342SN/A */
352SN/A
362SN/A#ifndef __SIM_OBJECT_HH__
372SN/A#define __SIM_OBJECT_HH__
382SN/A
395491Sgblack@eecs.umich.edu#include <iostream>
405491Sgblack@eecs.umich.edu#include <list>
412SN/A#include <map>
425491Sgblack@eecs.umich.edu#include <string>
432SN/A#include <vector>
442SN/A
454762Snate@binkert.org#include "params/SimObject.hh"
465605Snate@binkert.org#include "sim/eventq.hh"
4756SN/A#include "sim/serialize.hh"
481127SN/A#include "sim/startup.hh"
492SN/A
502797Sktlim@umich.educlass BaseCPU;
512797Sktlim@umich.educlass Event;
522609SN/A
532SN/A/*
542SN/A * Abstract superclass for simulation objects.  Represents things that
552SN/A * correspond to physical components and can be specified via the
562SN/A * config file (CPUs, caches, etc.).
572SN/A */
585605Snate@binkert.orgclass SimObject
595605Snate@binkert.org    : public EventManager, public Serializable, protected StartupCallback
602SN/A{
611553SN/A  public:
622797Sktlim@umich.edu    enum State {
632901Ssaidi@eecs.umich.edu        Running,
642839Sktlim@umich.edu        Draining,
652901Ssaidi@eecs.umich.edu        Drained
662797Sktlim@umich.edu    };
673202Shsul@eecs.umich.edu
682901Ssaidi@eecs.umich.edu  private:
692901Ssaidi@eecs.umich.edu    State state;
702797Sktlim@umich.edu
71265SN/A  protected:
722797Sktlim@umich.edu    void changeState(State new_state) { state = new_state; }
731553SN/A
741553SN/A  public:
752797Sktlim@umich.edu    State getState() { return state; }
762797Sktlim@umich.edu
772SN/A  private:
782SN/A    typedef std::vector<SimObject *> SimObjectList;
792SN/A
802SN/A    // list of all instantiated simulation objects
812SN/A    static SimObjectList simObjectList;
822SN/A
834762Snate@binkert.org  protected:
844762Snate@binkert.org    const SimObjectParams *_params;
854762Snate@binkert.org
862SN/A  public:
874762Snate@binkert.org    typedef SimObjectParams Params;
884762Snate@binkert.org    const Params *params() const { return _params; }
894762Snate@binkert.org    SimObject(const Params *_params);
902SN/A    virtual ~SimObject() {}
912SN/A
925034Smilesck@eecs.umich.edu  public:
935034Smilesck@eecs.umich.edu
941553SN/A    virtual const std::string name() const { return params()->name; }
95265SN/A
961127SN/A    // initialization pass of all objects.
971127SN/A    // Gets invoked after construction, before unserialize.
98465SN/A    virtual void init();
99465SN/A    static void initAll();
100465SN/A
1012SN/A    // register statistics for this object
1022SN/A    virtual void regStats();
1032SN/A    virtual void regFormulas();
104330SN/A    virtual void resetStats();
1052SN/A
1062SN/A    // static: call reg_stats on all SimObjects
1072SN/A    static void regAllStats();
1082SN/A
109330SN/A    // static: call resetStats on all SimObjects
110330SN/A    static void resetAllStats();
111330SN/A
112395SN/A    // static: call nameOut() & serialize() on all SimObjects
113395SN/A    static void serializeAll(std::ostream &);
1142797Sktlim@umich.edu    static void unserializeAll(Checkpoint *cp);
115938SN/A
1162609SN/A    // Methods to drain objects in order to take checkpoints
1172609SN/A    // Or switch from timing -> atomic memory model
1182901Ssaidi@eecs.umich.edu    // Drain returns 0 if the simobject can drain immediately or
1192901Ssaidi@eecs.umich.edu    // the number of times the drain_event's process function will be called
1202901Ssaidi@eecs.umich.edu    // before the object will be done draining. Normally this should be 1
1212901Ssaidi@eecs.umich.edu    virtual unsigned int drain(Event *drain_event);
1222797Sktlim@umich.edu    virtual void resume();
1232797Sktlim@umich.edu    virtual void setMemoryMode(State new_mode);
1242797Sktlim@umich.edu    virtual void switchOut();
1252797Sktlim@umich.edu    virtual void takeOverFrom(BaseCPU *cpu);
1262609SN/A
1271031SN/A#ifdef DEBUG
1281031SN/A  public:
1291031SN/A    bool doDebugBreak;
1301031SN/A    static void debugObjectBreak(const std::string &objs);
1311031SN/A#endif
1321031SN/A
1335314Sstever@gmail.com    /**
1345314Sstever@gmail.com     * Find the SimObject with the given name and return a pointer to
1355315Sstever@gmail.com     * it.  Primarily used for interactive debugging.  Argument is
1365314Sstever@gmail.com     * char* rather than std::string to make it callable from gdb.
1375314Sstever@gmail.com     */
1385314Sstever@gmail.com    static SimObject *find(const char *name);
1395314Sstever@gmail.com
140938SN/A  public:
141938SN/A    void recordEvent(const std::string &stat);
1422SN/A};
1432SN/A
1442SN/A#endif // __SIM_OBJECT_HH__
145