system.hh revision 8706
12158SN/A/*
22158SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
32158SN/A * All rights reserved.
42158SN/A *
52158SN/A * Redistribution and use in source and binary forms, with or without
62158SN/A * modification, are permitted provided that the following conditions are
72158SN/A * met: redistributions of source code must retain the above copyright
82158SN/A * notice, this list of conditions and the following disclaimer;
92158SN/A * redistributions in binary form must reproduce the above copyright
102158SN/A * notice, this list of conditions and the following disclaimer in the
112158SN/A * documentation and/or other materials provided with the distribution;
122158SN/A * neither the name of the copyright holders nor the names of its
132158SN/A * contributors may be used to endorse or promote products derived from
142158SN/A * this software without specific prior written permission.
152158SN/A *
162158SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172158SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182158SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192158SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202158SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212158SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222158SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232158SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242158SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252158SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262158SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Ali Saidi
292760Sbinkertn@umich.edu *          Nathan Binkert
302158SN/A */
312158SN/A
322158SN/A#ifndef __ARCH_ALPHA_SYSTEM_HH__
332158SN/A#define __ARCH_ALPHA_SYSTEM_HH__
342158SN/A
352158SN/A#include <string>
362158SN/A#include <vector>
372158SN/A
382158SN/A#include "base/loader/symtab.hh"
392158SN/A#include "cpu/pc_event.hh"
402158SN/A#include "kern/system_events.hh"
414762Snate@binkert.org#include "params/AlphaSystem.hh"
422158SN/A#include "sim/sim_object.hh"
434762Snate@binkert.org#include "sim/system.hh"
442158SN/A
452158SN/Aclass AlphaSystem : public System
462158SN/A{
472158SN/A  public:
484762Snate@binkert.org    typedef AlphaSystemParams Params;
492158SN/A    AlphaSystem(Params *p);
502158SN/A    ~AlphaSystem();
512158SN/A
522158SN/A  public:
538706Sandreas.hansson@arm.com
548706Sandreas.hansson@arm.com    /**
558706Sandreas.hansson@arm.com     * Initialise the state of the system.
568706Sandreas.hansson@arm.com     */
578706Sandreas.hansson@arm.com    virtual void initState();
588706Sandreas.hansson@arm.com
595569Snate@binkert.org    /**
605569Snate@binkert.org     * Serialization stuff
615569Snate@binkert.org     */
622158SN/A    virtual void serialize(std::ostream &os);
632158SN/A    virtual void unserialize(Checkpoint *cp, const std::string &section);
642158SN/A
652158SN/A    /**
662158SN/A     * Set the m5AlphaAccess pointer in the console
672158SN/A     */
682158SN/A    void setAlphaAccess(Addr access);
692158SN/A
702158SN/A    /** console symbol table */
712158SN/A    SymbolTable *consoleSymtab;
722158SN/A
732158SN/A    /** pal symbol table */
742158SN/A    SymbolTable *palSymtab;
752158SN/A
762158SN/A    /** Object pointer for the console code */
772158SN/A    ObjectFile *console;
782158SN/A
792158SN/A    /** Object pointer for the PAL code */
802158SN/A    ObjectFile *pal;
812158SN/A
822158SN/A#ifndef NDEBUG
832158SN/A    /** Event to halt the simulator if the console calls panic() */
842158SN/A    BreakPCEvent *consolePanicEvent;
852158SN/A#endif
865569Snate@binkert.org
872158SN/A  protected:
882158SN/A    const Params *params() const { return (const Params *)_params; }
892158SN/A
902158SN/A    /** Add a function-based event to PALcode. */
912158SN/A    template <class T>
925569Snate@binkert.org    T *
935569Snate@binkert.org    addPalFuncEvent(const char *lbl)
942158SN/A    {
952158SN/A        return addFuncEvent<T>(palSymtab, lbl);
962158SN/A    }
972158SN/A
982158SN/A    /** Add a function-based event to the console code. */
992158SN/A    template <class T>
1005569Snate@binkert.org    T *
1015569Snate@binkert.org    addConsoleFuncEvent(const char *lbl)
1022158SN/A    {
1032158SN/A        return addFuncEvent<T>(consoleSymtab, lbl);
1042158SN/A    }
1052158SN/A
1062158SN/A    virtual Addr fixFuncEventAddr(Addr addr);
1072158SN/A};
1082158SN/A
1095569Snate@binkert.org#endif // __ARCH_ALPHA_SYSTEM_HH__
1102158SN/A
111