system.cc revision 9147
15222Sksewell@umich.edu/* 25268Sksewell@umich.edu * Copyright (c) 2002-2005 The Regents of The University of Michigan 35254Sksewell@umich.edu * Copyright (c) 2007 MIPS Technologies, Inc. 45254Sksewell@umich.edu * All rights reserved. 55222Sksewell@umich.edu * 65254Sksewell@umich.edu * Redistribution and use in source and binary forms, with or without 75254Sksewell@umich.edu * modification, are permitted provided that the following conditions are 85254Sksewell@umich.edu * met: redistributions of source code must retain the above copyright 95254Sksewell@umich.edu * notice, this list of conditions and the following disclaimer; 105254Sksewell@umich.edu * redistributions in binary form must reproduce the above copyright 115254Sksewell@umich.edu * notice, this list of conditions and the following disclaimer in the 125254Sksewell@umich.edu * documentation and/or other materials provided with the distribution; 135254Sksewell@umich.edu * neither the name of the copyright holders nor the names of its 145254Sksewell@umich.edu * contributors may be used to endorse or promote products derived from 155254Sksewell@umich.edu * this software without specific prior written permission. 165222Sksewell@umich.edu * 175254Sksewell@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 185254Sksewell@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 195254Sksewell@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 205254Sksewell@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 215254Sksewell@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 225254Sksewell@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 235254Sksewell@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 245254Sksewell@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 255254Sksewell@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 265254Sksewell@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 275254Sksewell@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 285222Sksewell@umich.edu * 295254Sksewell@umich.edu * Authors: Ali Saidi 305254Sksewell@umich.edu * Nathan Binkert 315222Sksewell@umich.edu * Jaidev Patwardhan 325222Sksewell@umich.edu */ 335222Sksewell@umich.edu 345222Sksewell@umich.edu#include "arch/mips/system.hh" 355222Sksewell@umich.edu#include "arch/vtophys.hh" 365222Sksewell@umich.edu#include "base/loader/hex_file.hh" 375222Sksewell@umich.edu#include "base/loader/object_file.hh" 385222Sksewell@umich.edu#include "base/loader/symtab.hh" 395222Sksewell@umich.edu#include "base/trace.hh" 405222Sksewell@umich.edu#include "mem/physical.hh" 415222Sksewell@umich.edu#include "params/MipsSystem.hh" 425222Sksewell@umich.edu#include "sim/byteswap.hh" 435222Sksewell@umich.edu 445222Sksewell@umich.eduusing namespace LittleEndianGuest; 455222Sksewell@umich.edu 465222Sksewell@umich.eduMipsSystem::MipsSystem(Params *p) : System(p) 475222Sksewell@umich.edu{ 485222Sksewell@umich.edu} 495222Sksewell@umich.edu 505222Sksewell@umich.eduMipsSystem::~MipsSystem() 515222Sksewell@umich.edu{ 525222Sksewell@umich.edu} 535222Sksewell@umich.edu 545222Sksewell@umich.eduAddr 555222Sksewell@umich.eduMipsSystem::fixFuncEventAddr(Addr addr) 565222Sksewell@umich.edu{ 575222Sksewell@umich.edu return addr; 585222Sksewell@umich.edu} 595222Sksewell@umich.edu 605222Sksewell@umich.eduvoid 615222Sksewell@umich.eduMipsSystem::setMipsAccess(Addr access) 625222Sksewell@umich.edu{} 635222Sksewell@umich.edu 645222Sksewell@umich.edubool 655222Sksewell@umich.eduMipsSystem::breakpoint() 665222Sksewell@umich.edu{ 675222Sksewell@umich.edu return 0; 685222Sksewell@umich.edu} 695222Sksewell@umich.edu 705222Sksewell@umich.eduvoid 715222Sksewell@umich.eduMipsSystem::serialize(std::ostream &os) 725222Sksewell@umich.edu{ 735222Sksewell@umich.edu System::serialize(os); 745222Sksewell@umich.edu} 755222Sksewell@umich.edu 765222Sksewell@umich.edu 775222Sksewell@umich.eduvoid 785222Sksewell@umich.eduMipsSystem::unserialize(Checkpoint *cp, const std::string §ion) 795222Sksewell@umich.edu{ 805222Sksewell@umich.edu System::unserialize(cp,section); 815222Sksewell@umich.edu} 825222Sksewell@umich.edu 835222Sksewell@umich.eduMipsSystem * 845222Sksewell@umich.eduMipsSystemParams::create() 855222Sksewell@umich.edu{ 865222Sksewell@umich.edu return new MipsSystem(this); 875222Sksewell@umich.edu} 885222Sksewell@umich.edu 895222Sksewell@umich.edu