includes.isa revision 7720
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 {{
372022SN/A#include <sstream>
382022SN/A#include <iostream>
392022SN/A#include <iomanip>
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 {{
484661Sksewell@umich.edu#include "arch/mips/isa_traits.hh"
494661Sksewell@umich.edu#include "base/cprintf.hh"
504661Sksewell@umich.edu#include "base/loader/symtab.hh"
514661Sksewell@umich.edu#include "cpu/thread_context.hh"
524661Sksewell@umich.edu#include "arch/mips/faults.hh"
534661Sksewell@umich.edu#include "arch/mips/isa_traits.hh"
544661Sksewell@umich.edu#include "arch/mips/pra_constants.hh"
554661Sksewell@umich.edu#include "arch/mips/dt_constants.hh"
564661Sksewell@umich.edu#include "arch/mips/mt_constants.hh"
574661Sksewell@umich.edu#include "arch/mips/utility.hh"
584661Sksewell@umich.edu#include "arch/mips/dsp.hh"
594661Sksewell@umich.edu#include "mem/packet.hh"
604661Sksewell@umich.edu
614661Sksewell@umich.edu#include <math.h>
623349Sbinkertn@umich.edu#if defined(linux)
633349Sbinkertn@umich.edu#include <fenv.h>
643349Sbinkertn@umich.edu#endif
653349Sbinkertn@umich.edu
662447SN/Ausing namespace MipsISA;
672022SN/A}};
682022SN/A
692022SN/Aoutput exec {{
702523SN/A#include "arch/mips/faults.hh"
712447SN/A#include "arch/mips/isa_traits.hh"
722686Sksewell@umich.edu#include "arch/mips/utility.hh"
734661Sksewell@umich.edu#include "arch/mips/dsp.hh"
746334Sgblack@eecs.umich.edu#include "arch/mips/mt.hh"
754661Sksewell@umich.edu#include "arch/mips/pra_constants.hh"
764661Sksewell@umich.edu#include "arch/mips/dt_constants.hh"
774661Sksewell@umich.edu#include "arch/mips/mt_constants.hh"
782686Sksewell@umich.edu
792022SN/A#include <math.h>
802022SN/A#if defined(linux)
812022SN/A#include <fenv.h>
822022SN/A#endif
832022SN/A
842022SN/A#include "cpu/base.hh"
852022SN/A#include "cpu/exetrace.hh"
864661Sksewell@umich.edu
873348Sbinkertn@umich.edu#include "mem/packet.hh"
883348Sbinkertn@umich.edu#include "mem/packet_access.hh"
894661Sksewell@umich.edu
902022SN/A#include "sim/sim_exit.hh"
914661Sksewell@umich.edu#include "sim/eventq.hh"
924661Sksewell@umich.edu#include "sim/sim_events.hh"
932447SN/A
942447SN/Ausing namespace MipsISA;
952022SN/A}};
962022SN/A
97