includes.isa revision 8564
12686Sksewell@umich.edu// -*- mode:c++ -*-
22686Sksewell@umich.edu
35268Sksewell@umich.edu// Copyright (c) 2007 MIPS Technologies, Inc.
45268Sksewell@umich.edu// All rights reserved.
55268Sksewell@umich.edu//
65268Sksewell@umich.edu// Redistribution and use in source and binary forms, with or without
75268Sksewell@umich.edu// modification, are permitted provided that the following conditions are
85268Sksewell@umich.edu// met: redistributions of source code must retain the above copyright
95268Sksewell@umich.edu// notice, this list of conditions and the following disclaimer;
105268Sksewell@umich.edu// redistributions in binary form must reproduce the above copyright
115268Sksewell@umich.edu// notice, this list of conditions and the following disclaimer in the
125268Sksewell@umich.edu// documentation and/or other materials provided with the distribution;
135268Sksewell@umich.edu// neither the name of the copyright holders nor the names of its
145268Sksewell@umich.edu// contributors may be used to endorse or promote products derived from
155268Sksewell@umich.edu// this software without specific prior written permission.
165268Sksewell@umich.edu//
175268Sksewell@umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185268Sksewell@umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195268Sksewell@umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205268Sksewell@umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215268Sksewell@umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225268Sksewell@umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235268Sksewell@umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245268Sksewell@umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255268Sksewell@umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265268Sksewell@umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275268Sksewell@umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285268Sksewell@umich.edu//
295268Sksewell@umich.edu// Authors: Korey Sewell
302706Sksewell@umich.edu
312022SN/A////////////////////////////////////////////////////////////////////
322022SN/A//
332022SN/A// Output include file directives.
342022SN/A//
352022SN/A
362022SN/Aoutput header {{
378229Snate@binkert.org#include <iomanip>
388229Snate@binkert.org#include <iostream>
392022SN/A#include <sstream>
402022SN/A
413349Sbinkertn@umich.edu#include "arch/mips/isa_traits.hh"
427720Sgblack@eecs.umich.edu#include "arch/mips/types.hh"
432022SN/A#include "cpu/static_inst.hh"
443349Sbinkertn@umich.edu#include "mem/packet.hh"
452022SN/A}};
462022SN/A
472022SN/Aoutput decoder {{
488229Snate@binkert.org#include <math.h>
498229Snate@binkert.org
508229Snate@binkert.org#include "arch/mips/dsp.hh"
518229Snate@binkert.org#include "arch/mips/dt_constants.hh"
524661Sksewell@umich.edu#include "arch/mips/faults.hh"
534661Sksewell@umich.edu#include "arch/mips/isa_traits.hh"
548229Snate@binkert.org#include "arch/mips/mt_constants.hh"
554661Sksewell@umich.edu#include "arch/mips/pra_constants.hh"
564661Sksewell@umich.edu#include "arch/mips/utility.hh"
578229Snate@binkert.org#include "base/loader/symtab.hh"
588229Snate@binkert.org#include "base/cprintf.hh"
598229Snate@binkert.org#include "cpu/thread_context.hh"
604661Sksewell@umich.edu#include "mem/packet.hh"
613349Sbinkertn@umich.edu#if defined(linux)
623349Sbinkertn@umich.edu#include <fenv.h>
633349Sbinkertn@umich.edu#endif
643349Sbinkertn@umich.edu
652447SN/Ausing namespace MipsISA;
662022SN/A}};
672022SN/A
682022SN/Aoutput exec {{
698229Snate@binkert.org#include <math.h>
708229Snate@binkert.org
718442Sgblack@eecs.umich.edu#include "arch/generic/memhelpers.hh"
728229Snate@binkert.org#include "arch/mips/dsp.hh"
738229Snate@binkert.org#include "arch/mips/dt_constants.hh"
742523SN/A#include "arch/mips/faults.hh"
752447SN/A#include "arch/mips/isa_traits.hh"
768229Snate@binkert.org#include "arch/mips/mt.hh"
778229Snate@binkert.org#include "arch/mips/mt_constants.hh"
788564Sgblack@eecs.umich.edu#include "arch/mips/pagetable.hh"
798229Snate@binkert.org#include "arch/mips/pra_constants.hh"
808564Sgblack@eecs.umich.edu#include "arch/mips/tlb.hh"
812686Sksewell@umich.edu#include "arch/mips/utility.hh"
822022SN/A#if defined(linux)
832022SN/A#include <fenv.h>
842022SN/A#endif
852022SN/A
868564Sgblack@eecs.umich.edu#include "base/condcodes.hh"
872022SN/A#include "cpu/base.hh"
882022SN/A#include "cpu/exetrace.hh"
898232Snate@binkert.org#include "debug/MipsPRA.hh"
903348Sbinkertn@umich.edu#include "mem/packet.hh"
913348Sbinkertn@umich.edu#include "mem/packet_access.hh"
924661Sksewell@umich.edu#include "sim/eventq.hh"
934661Sksewell@umich.edu#include "sim/sim_events.hh"
948229Snate@binkert.org#include "sim/sim_exit.hh"
952447SN/A
962447SN/Ausing namespace MipsISA;
972022SN/A}};
982022SN/A
99