system.cc revision 2902
12689Sktlim@umich.edu/*
22689Sktlim@umich.edu * Copyright (c) 2003-2006 The Regents of The University of Michigan
32689Sktlim@umich.edu * All rights reserved.
42689Sktlim@umich.edu *
52689Sktlim@umich.edu * Redistribution and use in source and binary forms, with or without
62689Sktlim@umich.edu * modification, are permitted provided that the following conditions are
72689Sktlim@umich.edu * met: redistributions of source code must retain the above copyright
82689Sktlim@umich.edu * notice, this list of conditions and the following disclaimer;
92689Sktlim@umich.edu * redistributions in binary form must reproduce the above copyright
102689Sktlim@umich.edu * notice, this list of conditions and the following disclaimer in the
112689Sktlim@umich.edu * documentation and/or other materials provided with the distribution;
122689Sktlim@umich.edu * neither the name of the copyright holders nor the names of its
132689Sktlim@umich.edu * contributors may be used to endorse or promote products derived from
142689Sktlim@umich.edu * this software without specific prior written permission.
152689Sktlim@umich.edu *
162689Sktlim@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172689Sktlim@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182689Sktlim@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192689Sktlim@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202689Sktlim@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212689Sktlim@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222689Sktlim@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232689Sktlim@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242689Sktlim@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252689Sktlim@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262689Sktlim@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272689Sktlim@umich.edu *
282689Sktlim@umich.edu * Authors: Steve Reinhardt
292689Sktlim@umich.edu *          Lisa Hsu
302689Sktlim@umich.edu *          Nathan Binkert
312689Sktlim@umich.edu *          Ali Saidi
322689Sktlim@umich.edu */
332689Sktlim@umich.edu
342521SN/A#include "arch/isa_traits.hh"
351070SN/A#include "base/loader/object_file.hh"
361070SN/A#include "base/loader/symtab.hh"
372521SN/A#include "base/trace.hh"
382680Sktlim@umich.edu#include "cpu/thread_context.hh"
392521SN/A#include "mem/mem_object.hh"
402522SN/A#include "mem/physical.hh"
411711SN/A#include "sim/builder.hh"
422037SN/A#include "sim/byteswap.hh"
4356SN/A#include "sim/system.hh"
442378SN/A#if FULL_SYSTEM
452521SN/A#include "arch/vtophys.hh"
462378SN/A#include "base/remote_gdb.hh"
472378SN/A#include "kern/kernel_stats.hh"
482378SN/A#endif
492SN/A
502SN/Ausing namespace std;
512107SN/Ausing namespace TheISA;
522SN/A
532SN/Avector<System *> System::systemList;
542SN/A
552SN/Aint System::numSystemsRunning = 0;
562SN/A
571070SN/ASystem::System(Params *p)
582378SN/A    : SimObject(p->name), physmem(p->physmem), numcpus(0),
592378SN/A#if FULL_SYSTEM
602521SN/A      init_param(p->init_param),
612640Sstever@eecs.umich.edu      functionalPort(p->name + "-fport"),
622640Sstever@eecs.umich.edu      virtPort(p->name + "-vport"),
632378SN/A#else
642378SN/A      page_ptr(0),
652378SN/A#endif
662902Ssaidi@eecs.umich.edu      memoryMode(p->mem_mode), _params(p)
672SN/A{
681070SN/A    // add self to global system list
691070SN/A    systemList.push_back(this);
701070SN/A
712378SN/A#if FULL_SYSTEM
721070SN/A    kernelSymtab = new SymbolTable;
731074SN/A    debugSymbolTable = new SymbolTable;
741070SN/A
752520SN/A
762520SN/A    /**
772520SN/A     * Get a functional port to memory
782520SN/A     */
792520SN/A    Port *mem_port;
802520SN/A    mem_port = physmem->getPort("functional");
812520SN/A    functionalPort.setPeer(mem_port);
822520SN/A    mem_port->setPeer(&functionalPort);
832520SN/A
842521SN/A    mem_port = physmem->getPort("functional");
852521SN/A    virtPort.setPeer(mem_port);
862521SN/A    mem_port->setPeer(&virtPort);
872521SN/A
882520SN/A
891070SN/A    /**
902158SN/A     * Load the kernel code into memory
911070SN/A     */
921070SN/A    // Load kernel code
932158SN/A    kernel = createObjectFile(params()->kernel_path);
941070SN/A    if (kernel == NULL)
952158SN/A        fatal("Could not load kernel file %s", params()->kernel_path);
961070SN/A
971070SN/A    // Load program sections into memory
982520SN/A    kernel->loadSections(&functionalPort, LoadAddrMask);
991070SN/A
1001070SN/A    // setup entry points
1011070SN/A    kernelStart = kernel->textBase();
1021070SN/A    kernelEnd = kernel->bssBase() + kernel->bssSize();
1031070SN/A    kernelEntry = kernel->entryPoint();
1041070SN/A
1051070SN/A    // load symbols
1061070SN/A    if (!kernel->loadGlobalSymbols(kernelSymtab))
1071070SN/A        panic("could not load kernel symbols\n");
1081070SN/A
1091070SN/A    if (!kernel->loadLocalSymbols(kernelSymtab))
1101070SN/A        panic("could not load kernel local symbols\n");
1111070SN/A
1121082SN/A    if (!kernel->loadGlobalSymbols(debugSymbolTable))
1131074SN/A        panic("could not load kernel symbols\n");
1141074SN/A
1151074SN/A    if (!kernel->loadLocalSymbols(debugSymbolTable))
1161074SN/A        panic("could not load kernel local symbols\n");
1171074SN/A
1181070SN/A    DPRINTF(Loader, "Kernel start = %#x\n", kernelStart);
1191070SN/A    DPRINTF(Loader, "Kernel end   = %#x\n", kernelEnd);
1201070SN/A    DPRINTF(Loader, "Kernel entry = %#x\n", kernelEntry);
1211070SN/A    DPRINTF(Loader, "Kernel loaded...\n");
1222378SN/A#endif // FULL_SYSTEM
1232378SN/A
1241070SN/A    // increment the number of running systms
125878SN/A    numSystemsRunning++;
1262SN/A}
1272SN/A
1282SN/ASystem::~System()
1292SN/A{
1302378SN/A#if FULL_SYSTEM
1311070SN/A    delete kernelSymtab;
1321070SN/A    delete kernel;
1332378SN/A#else
1342378SN/A    panic("System::fixFuncEventAddr needs to be rewritten "
1352378SN/A          "to work with syscall emulation");
1362378SN/A#endif // FULL_SYSTEM}
1372SN/A}
1382SN/A
1392378SN/A#if FULL_SYSTEM
1401885SN/A
1412SN/A
1421808SN/Aint rgdb_wait = -1;
1431808SN/A
1442378SN/A#endif // FULL_SYSTEM
1452378SN/A
1462901Ssaidi@eecs.umich.edu
1472901Ssaidi@eecs.umich.eduvoid
1482901Ssaidi@eecs.umich.eduSystem::setMemoryMode(MemoryMode mode)
1492901Ssaidi@eecs.umich.edu{
1502901Ssaidi@eecs.umich.edu    assert(getState() == Drained);
1512901Ssaidi@eecs.umich.edu    memoryMode = mode;
1522901Ssaidi@eecs.umich.edu}
1532901Ssaidi@eecs.umich.edu
154180SN/Aint
1552680Sktlim@umich.eduSystem::registerThreadContext(ThreadContext *tc, int id)
1562SN/A{
1571806SN/A    if (id == -1) {
1582680Sktlim@umich.edu        for (id = 0; id < threadContexts.size(); id++) {
1592680Sktlim@umich.edu            if (!threadContexts[id])
1601806SN/A                break;
1611806SN/A        }
1621806SN/A    }
1631806SN/A
1642680Sktlim@umich.edu    if (threadContexts.size() <= id)
1652680Sktlim@umich.edu        threadContexts.resize(id + 1);
1661806SN/A
1672680Sktlim@umich.edu    if (threadContexts[id])
1681806SN/A        panic("Cannot have two CPUs with the same id (%d)\n", id);
1691806SN/A
1702680Sktlim@umich.edu    threadContexts[id] = tc;
1711806SN/A    numcpus++;
1721070SN/A
1732378SN/A#if FULL_SYSTEM
1742680Sktlim@umich.edu    RemoteGDB *rgdb = new RemoteGDB(this, tc);
1751806SN/A    GDBListener *gdbl = new GDBListener(rgdb, 7000 + id);
1761070SN/A    gdbl->listen();
1771070SN/A    /**
1781070SN/A     * Uncommenting this line waits for a remote debugger to connect
1791070SN/A     * to the simulator before continuing.
1801070SN/A     */
1811808SN/A    if (rgdb_wait != -1 && rgdb_wait == id)
1821808SN/A        gdbl->accept();
1831070SN/A
1841806SN/A    if (remoteGDB.size() <= id) {
1851806SN/A        remoteGDB.resize(id + 1);
1861070SN/A    }
1871070SN/A
1881806SN/A    remoteGDB[id] = rgdb;
1892378SN/A#endif // FULL_SYSTEM
1901070SN/A
1911806SN/A    return id;
192180SN/A}
19375SN/A
194180SN/Avoid
1951129SN/ASystem::startup()
1961129SN/A{
1972114SN/A    int i;
1982680Sktlim@umich.edu    for (i = 0; i < threadContexts.size(); i++)
1992680Sktlim@umich.edu        threadContexts[i]->activate(0);
2001129SN/A}
2011129SN/A
2021129SN/Avoid
2032680Sktlim@umich.eduSystem::replaceThreadContext(ThreadContext *tc, int id)
204180SN/A{
2052680Sktlim@umich.edu    if (id >= threadContexts.size()) {
2062680Sktlim@umich.edu        panic("replaceThreadContext: bad id, %d >= %d\n",
2072680Sktlim@umich.edu              id, threadContexts.size());
208180SN/A    }
209180SN/A
2102680Sktlim@umich.edu    threadContexts[id] = tc;
2112378SN/A#if FULL_SYSTEM
2122680Sktlim@umich.edu    remoteGDB[id]->replaceThreadContext(tc);
2132378SN/A#endif // FULL_SYSTEM
2142SN/A}
2152SN/A
2162378SN/A#if !FULL_SYSTEM
2172378SN/AAddr
2182378SN/ASystem::new_page()
2192378SN/A{
2202378SN/A    Addr return_addr = page_ptr << LogVMPageSize;
2212378SN/A    ++page_ptr;
2222378SN/A    return return_addr;
2232378SN/A}
2242378SN/A#endif
2252378SN/A
2261070SN/Avoid
2271070SN/ASystem::serialize(ostream &os)
2281070SN/A{
2292378SN/A#if FULL_SYSTEM
2301984SN/A    kernelSymtab->serialize("kernel_symtab", os);
2312378SN/A#endif // FULL_SYSTEM
2321070SN/A}
2331070SN/A
2341070SN/A
2351070SN/Avoid
2361070SN/ASystem::unserialize(Checkpoint *cp, const string &section)
2371070SN/A{
2382378SN/A#if FULL_SYSTEM
2391984SN/A    kernelSymtab->unserialize("kernel_symtab", cp, section);
2402378SN/A#endif // FULL_SYSTEM
2411070SN/A}
2422SN/A
2432SN/Avoid
2442SN/ASystem::printSystems()
2452SN/A{
2462SN/A    vector<System *>::iterator i = systemList.begin();
2472SN/A    vector<System *>::iterator end = systemList.end();
2482SN/A    for (; i != end; ++i) {
2492SN/A        System *sys = *i;
2502SN/A        cerr << "System " << sys->name() << ": " << hex << sys << endl;
2512SN/A    }
2522SN/A}
2532SN/A
2542SN/Avoid
2552SN/AprintSystems()
2562SN/A{
2572SN/A    System::printSystems();
2582SN/A}
2592SN/A
2602902Ssaidi@eecs.umich.educonst char *System::MemoryModeStrings[3] = {"invalid", "atomic",
2612902Ssaidi@eecs.umich.edu    "timing"};
2622902Ssaidi@eecs.umich.edu
2632424SN/A#if FULL_SYSTEM
2642424SN/A
2652424SN/A// In full system mode, only derived classes (e.g. AlphaLinuxSystem)
2662424SN/A// can be created directly.
2672424SN/A
2682158SN/ADEFINE_SIM_OBJECT_CLASS_NAME("System", System)
2692SN/A
2702424SN/A#else
2712424SN/A
2722424SN/ABEGIN_DECLARE_SIM_OBJECT_PARAMS(System)
2732424SN/A
2742522SN/A    SimObjectParam<PhysicalMemory *> physmem;
2752902Ssaidi@eecs.umich.edu    SimpleEnumParam<System::MemoryMode> mem_mode;
2762424SN/A
2772424SN/AEND_DECLARE_SIM_OBJECT_PARAMS(System)
2782424SN/A
2792424SN/ABEGIN_INIT_SIM_OBJECT_PARAMS(System)
2802424SN/A
2812902Ssaidi@eecs.umich.edu    INIT_PARAM(physmem, "physical memory"),
2822902Ssaidi@eecs.umich.edu    INIT_ENUM_PARAM(mem_mode, "Memory Mode, (1=atomic, 2=timing)",
2832902Ssaidi@eecs.umich.edu            System::MemoryModeStrings)
2842424SN/A
2852424SN/AEND_INIT_SIM_OBJECT_PARAMS(System)
2862424SN/A
2872424SN/ACREATE_SIM_OBJECT(System)
2882424SN/A{
2892424SN/A    System::Params *p = new System::Params;
2902424SN/A    p->name = getInstanceName();
2912424SN/A    p->physmem = physmem;
2922902Ssaidi@eecs.umich.edu    p->mem_mode = mem_mode;
2932424SN/A    return new System(p);
2942424SN/A}
2952424SN/A
2962424SN/AREGISTER_SIM_OBJECT("System", System)
2972424SN/A
2982424SN/A#endif
299