system.hh revision 2650
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.
272158SN/A */
282158SN/A
292158SN/A#ifndef __ARCH_ALPHA_SYSTEM_HH__
302158SN/A#define __ARCH_ALPHA_SYSTEM_HH__
312158SN/A
322158SN/A#include <string>
332158SN/A#include <vector>
342158SN/A
352158SN/A#include "sim/system.hh"
362158SN/A#include "base/loader/symtab.hh"
372158SN/A#include "cpu/pc_event.hh"
382158SN/A#include "kern/system_events.hh"
392158SN/A#include "sim/sim_object.hh"
402158SN/A
412158SN/Aclass AlphaSystem : public System
422158SN/A{
432158SN/A  public:
442158SN/A    struct Params : public System::Params
452158SN/A    {
462158SN/A        std::string console_path;
472158SN/A        std::string palcode;
482158SN/A        uint64_t system_type;
492158SN/A        uint64_t system_rev;
502158SN/A    };
512158SN/A
522158SN/A    AlphaSystem(Params *p);
532158SN/A
542158SN/A    ~AlphaSystem();
552158SN/A
562158SN/A    virtual bool breakpoint();
572158SN/A
582158SN/A/**
592158SN/A * Serialization stuff
602158SN/A */
612158SN/A  public:
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
862158SN/A  protected:
872158SN/A    const Params *params() const { return (const Params *)_params; }
882158SN/A
892158SN/A    /** Add a function-based event to PALcode. */
902158SN/A    template <class T>
912158SN/A    T *AlphaSystem::addPalFuncEvent(const char *lbl)
922158SN/A    {
932158SN/A        return addFuncEvent<T>(palSymtab, lbl);
942158SN/A    }
952158SN/A
962158SN/A    /** Add a function-based event to the console code. */
972158SN/A    template <class T>
982158SN/A    T *AlphaSystem::addConsoleFuncEvent(const char *lbl)
992158SN/A    {
1002158SN/A        return addFuncEvent<T>(consoleSymtab, lbl);
1012158SN/A    }
1022158SN/A
1032158SN/A    virtual Addr fixFuncEventAddr(Addr addr);
1042158SN/A
1052158SN/A};
1062158SN/A
1072158SN/A#endif
1082158SN/A
109