system.hh revision 1492
1/* 2 * Copyright (c) 2002-2004 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; 9 * redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution; 12 * neither the name of the copyright holders nor the names of its 13 * contributors may be used to endorse or promote products derived from 14 * this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29#ifndef __SYSTEM_HH__ 30#define __SYSTEM_HH__ 31 32#include <string> 33#include <vector> 34 35#include "base/statistics.hh" 36#include "cpu/pc_event.hh" 37#include "kern/system_events.hh" 38#include "sim/sim_object.hh" 39 40class MemoryController; 41class PhysicalMemory; 42class Platform; 43class RemoteGDB; 44class GDBListener; 45class SymbolTable; 46class ObjectFile; 47class ExecContext; 48namespace Kernel { class Binning; } 49 50class System : public SimObject 51{ 52 public: 53 MemoryController *memctrl; 54 PhysicalMemory *physmem; 55 Platform *platform; 56 PCEventQueue pcEventQueue; 57 uint64_t init_param; 58 59 std::vector<ExecContext *> execContexts; 60 61 /** kernel Symbol table */ 62 SymbolTable *kernelSymtab; 63 64 /** console symbol table */ 65 SymbolTable *consoleSymtab; 66 67 /** pal symbol table */ 68 SymbolTable *palSymtab; 69 70 /** Object pointer for the kernel code */ 71 ObjectFile *kernel; 72 73 /** Object pointer for the console code */ 74 ObjectFile *console; 75 76 /** Object pointer for the PAL code */ 77 ObjectFile *pal; 78 79 /** Begining of kernel code */ 80 Addr kernelStart; 81 82 /** End of kernel code */ 83 Addr kernelEnd; 84 85 /** Entry point in the kernel to start at */ 86 Addr kernelEntry; 87 88 Kernel::Binning *kernelBinning; 89 90#ifdef DEBUG 91 /** Event to halt the simulator if the console calls panic() */ 92 BreakPCEvent *consolePanicEvent; 93#endif 94 95 public: 96 std::vector<RemoteGDB *> remoteGDB; 97 std::vector<GDBListener *> gdbListen; 98 bool breakpoint(); 99 100 public: 101 struct Params 102 { 103 std::string name; 104 MemoryController *memctrl; 105 PhysicalMemory *physmem; 106 uint64_t init_param; 107 bool bin; 108 std::vector<std::string> binned_fns; 109 bool bin_int; 110 111 std::string kernel_path; 112 std::string console_path; 113 std::string palcode; 114 std::string boot_osflags; 115 116 std::string readfile; 117 uint64_t system_type; 118 uint64_t system_rev; 119 }; 120 Params *params; 121 122 System(Params *p); 123 ~System(); 124 125 void startup(); 126 127 public: 128 /** 129 * Returns the addess the kernel starts at. 130 * @return address the kernel starts at 131 */ 132 Addr getKernelStart() const { return kernelStart; } 133 134 /** 135 * Returns the addess the kernel ends at. 136 * @return address the kernel ends at 137 */ 138 Addr getKernelEnd() const { return kernelEnd; } 139 140 /** 141 * Returns the addess the entry point to the kernel code. 142 * @return entry point of the kernel code 143 */ 144 Addr getKernelEntry() const { return kernelEntry; } 145 146 int registerExecContext(ExecContext *xc); 147 void replaceExecContext(ExecContext *xc, int xcIndex); 148 149 void regStats(); 150 void serialize(std::ostream &os); 151 void unserialize(Checkpoint *cp, const std::string §ion); 152 153 public: 154 //////////////////////////////////////////// 155 // 156 // STATIC GLOBAL SYSTEM LIST 157 // 158 //////////////////////////////////////////// 159 160 static std::vector<System *> systemList; 161 static int numSystemsRunning; 162 163 static void printSystems(); 164}; 165 166#endif // __SYSTEM_HH__ 167