includes.isa revision 8607
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"
558607Sgblack@eecs.umich.edu#include "arch/mips/pagetable.hh"
564661Sksewell@umich.edu#include "arch/mips/pra_constants.hh"
578607Sgblack@eecs.umich.edu#include "arch/mips/tlb.hh"
584661Sksewell@umich.edu#include "arch/mips/utility.hh"
598229Snate@binkert.org#include "base/loader/symtab.hh"
608229Snate@binkert.org#include "base/cprintf.hh"
618229Snate@binkert.org#include "cpu/thread_context.hh"
624661Sksewell@umich.edu#include "mem/packet.hh"
633349Sbinkertn@umich.edu#if defined(linux)
643349Sbinkertn@umich.edu#include <fenv.h>
653349Sbinkertn@umich.edu#endif
663349Sbinkertn@umich.edu
672447SN/Ausing namespace MipsISA;
682022SN/A}};
692022SN/A
702022SN/Aoutput exec {{
718229Snate@binkert.org#include <math.h>
728229Snate@binkert.org
738442Sgblack@eecs.umich.edu#include "arch/generic/memhelpers.hh"
748229Snate@binkert.org#include "arch/mips/dsp.hh"
758229Snate@binkert.org#include "arch/mips/dt_constants.hh"
762523SN/A#include "arch/mips/faults.hh"
772447SN/A#include "arch/mips/isa_traits.hh"
788229Snate@binkert.org#include "arch/mips/mt.hh"
798229Snate@binkert.org#include "arch/mips/mt_constants.hh"
808564Sgblack@eecs.umich.edu#include "arch/mips/pagetable.hh"
818229Snate@binkert.org#include "arch/mips/pra_constants.hh"
828564Sgblack@eecs.umich.edu#include "arch/mips/tlb.hh"
832686Sksewell@umich.edu#include "arch/mips/utility.hh"
842022SN/A#if defined(linux)
852022SN/A#include <fenv.h>
862022SN/A#endif
872022SN/A
888564Sgblack@eecs.umich.edu#include "base/condcodes.hh"
892022SN/A#include "cpu/base.hh"
902022SN/A#include "cpu/exetrace.hh"
918232Snate@binkert.org#include "debug/MipsPRA.hh"
923348Sbinkertn@umich.edu#include "mem/packet.hh"
933348Sbinkertn@umich.edu#include "mem/packet_access.hh"
944661Sksewell@umich.edu#include "sim/eventq.hh"
954661Sksewell@umich.edu#include "sim/sim_events.hh"
968229Snate@binkert.org#include "sim/sim_exit.hh"
972447SN/A
982447SN/Ausing namespace MipsISA;
992022SN/A}};
1002022SN/A
101