system.hh revision 2680
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 292158SN/A */ 302158SN/A 312158SN/A#ifndef __ARCH_ALPHA_SYSTEM_HH__ 322158SN/A#define __ARCH_ALPHA_SYSTEM_HH__ 332158SN/A 342158SN/A#include <string> 352158SN/A#include <vector> 362158SN/A 372158SN/A#include "sim/system.hh" 382158SN/A#include "base/loader/symtab.hh" 392158SN/A#include "cpu/pc_event.hh" 402158SN/A#include "kern/system_events.hh" 412158SN/A#include "sim/sim_object.hh" 422158SN/A 432158SN/Aclass AlphaSystem : public System 442158SN/A{ 452158SN/A public: 462158SN/A struct Params : public System::Params 472158SN/A { 482158SN/A std::string console_path; 492158SN/A std::string palcode; 502158SN/A uint64_t system_type; 512158SN/A uint64_t system_rev; 522158SN/A }; 532158SN/A 542158SN/A AlphaSystem(Params *p); 552158SN/A 562158SN/A ~AlphaSystem(); 572158SN/A 582158SN/A virtual bool breakpoint(); 592158SN/A 602158SN/A/** 612158SN/A * Serialization stuff 622158SN/A */ 632158SN/A public: 642158SN/A virtual void serialize(std::ostream &os); 652158SN/A virtual void unserialize(Checkpoint *cp, const std::string §ion); 662158SN/A 672158SN/A /** 682158SN/A * Set the m5AlphaAccess pointer in the console 692158SN/A */ 702158SN/A void setAlphaAccess(Addr access); 712158SN/A 722158SN/A /** console symbol table */ 732158SN/A SymbolTable *consoleSymtab; 742158SN/A 752158SN/A /** pal symbol table */ 762158SN/A SymbolTable *palSymtab; 772158SN/A 782158SN/A /** Object pointer for the console code */ 792158SN/A ObjectFile *console; 802158SN/A 812158SN/A /** Object pointer for the PAL code */ 822158SN/A ObjectFile *pal; 832158SN/A 842158SN/A#ifndef NDEBUG 852158SN/A /** Event to halt the simulator if the console calls panic() */ 862158SN/A BreakPCEvent *consolePanicEvent; 872158SN/A#endif 882158SN/A protected: 892158SN/A const Params *params() const { return (const Params *)_params; } 902158SN/A 912158SN/A /** Add a function-based event to PALcode. */ 922158SN/A template <class T> 932158SN/A T *AlphaSystem::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> 1002158SN/A T *AlphaSystem::addConsoleFuncEvent(const char *lbl) 1012158SN/A { 1022158SN/A return addFuncEvent<T>(consoleSymtab, lbl); 1032158SN/A } 1042158SN/A 1052158SN/A virtual Addr fixFuncEventAddr(Addr addr); 1062158SN/A 1072158SN/A}; 1082158SN/A 1092158SN/A#endif 1102158SN/A 111