includes.isa revision 5268
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"
422022SN/A#include "cpu/static_inst.hh"
433349Sbinkertn@umich.edu#include "mem/packet.hh"
442022SN/A}};
452022SN/A
462022SN/Aoutput decoder {{
474661Sksewell@umich.edu#include "arch/mips/isa_traits.hh"
484661Sksewell@umich.edu#include "base/cprintf.hh"
494661Sksewell@umich.edu#include "base/loader/symtab.hh"
504661Sksewell@umich.edu#include "cpu/thread_context.hh"
514661Sksewell@umich.edu#include "arch/mips/faults.hh"
524661Sksewell@umich.edu#include "arch/mips/isa_traits.hh"
534661Sksewell@umich.edu#include "arch/mips/pra_constants.hh"
544661Sksewell@umich.edu#include "arch/mips/dt_constants.hh"
554661Sksewell@umich.edu#include "arch/mips/mt_constants.hh"
564661Sksewell@umich.edu#include "arch/mips/utility.hh"
574661Sksewell@umich.edu#include "arch/mips/dsp.hh"
584661Sksewell@umich.edu#include "mem/packet.hh"
594661Sksewell@umich.edu
604661Sksewell@umich.edu#include <math.h>
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 {{
692523SN/A#include "arch/mips/faults.hh"
702447SN/A#include "arch/mips/isa_traits.hh"
712686Sksewell@umich.edu#include "arch/mips/utility.hh"
724661Sksewell@umich.edu#include "arch/mips/dsp.hh"
734661Sksewell@umich.edu#include "arch/mips/pra_constants.hh"
744661Sksewell@umich.edu#include "arch/mips/dt_constants.hh"
754661Sksewell@umich.edu#include "arch/mips/mt_constants.hh"
762686Sksewell@umich.edu
772022SN/A#include <math.h>
782022SN/A#if defined(linux)
792022SN/A#include <fenv.h>
802022SN/A#endif
812022SN/A
822022SN/A#include "cpu/base.hh"
832022SN/A#include "cpu/exetrace.hh"
844661Sksewell@umich.edu
853348Sbinkertn@umich.edu#include "mem/packet.hh"
863348Sbinkertn@umich.edu#include "mem/packet_access.hh"
874661Sksewell@umich.edu
882022SN/A#include "sim/sim_exit.hh"
894661Sksewell@umich.edu#include "sim/eventq.hh"
904661Sksewell@umich.edu#include "sim/sim_events.hh"
912447SN/A
922447SN/Ausing namespace MipsISA;
932022SN/A}};
942022SN/A
95