includes.isa revision 3348
12567SN/A// -*- mode:c++ -*-
22567SN/A
32567SN/A// Copyright (c) 2006 The Regents of The University of Michigan
42567SN/A// All rights reserved.
52567SN/A//
62567SN/A// Redistribution and use in source and binary forms, with or without
72567SN/A// modification, are permitted provided that the following conditions are
82567SN/A// met: redistributions of source code must retain the above copyright
92567SN/A// notice, this list of conditions and the following disclaimer;
102567SN/A// redistributions in binary form must reproduce the above copyright
112567SN/A// notice, this list of conditions and the following disclaimer in the
122567SN/A// documentation and/or other materials provided with the distribution;
132567SN/A// neither the name of the copyright holders nor the names of its
142567SN/A// contributors may be used to endorse or promote products derived from
152567SN/A// this software without specific prior written permission.
162567SN/A//
172567SN/A// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182567SN/A// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192567SN/A// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202567SN/A// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212567SN/A// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222567SN/A// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232567SN/A// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242567SN/A// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252567SN/A// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262567SN/A// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272665Ssaidi@eecs.umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu//
292567SN/A// Authors: Korey Sewell
302567SN/A
312567SN/A////////////////////////////////////////////////////////////////////
322567SN/A//
332567SN/A// Output include file directives.
342567SN/A//
352567SN/A
362567SN/Aoutput header {{
372567SN/A#include <sstream>
382567SN/A#include <iostream>
392567SN/A#include <iomanip>
402567SN/A
412567SN/A#include "cpu/static_inst.hh"
422567SN/A#include "arch/mips/isa_traits.hh"
432567SN/A}};
442567SN/A
453745Sgblack@eecs.umich.eduoutput decoder {{
463745Sgblack@eecs.umich.edu#include "arch/mips/isa_traits.hh"
473745Sgblack@eecs.umich.edu#include "base/cprintf.hh"
483745Sgblack@eecs.umich.edu#include "base/loader/symtab.hh"
492567SN/A#include "cpu/thread_context.hh"
502567SN/A#include "arch/mips/faults.hh"
512567SN/A#include "arch/mips/isa_traits.hh"
522567SN/A#include "arch/mips/utility.hh"
533745Sgblack@eecs.umich.edu
543745Sgblack@eecs.umich.edu#include <math.h>
553745Sgblack@eecs.umich.edu#if defined(linux)
562567SN/A#include <fenv.h>
573584Ssaidi@eecs.umich.edu#endif
583584Ssaidi@eecs.umich.edu
593584Ssaidi@eecs.umich.eduusing namespace MipsISA;
603584Ssaidi@eecs.umich.edu}};
612567SN/A
623745Sgblack@eecs.umich.eduoutput exec {{
633745Sgblack@eecs.umich.edu#include "arch/mips/faults.hh"
643745Sgblack@eecs.umich.edu#include "arch/mips/isa_traits.hh"
653745Sgblack@eecs.umich.edu#include "arch/mips/utility.hh"
663745Sgblack@eecs.umich.edu
673745Sgblack@eecs.umich.edu#include <math.h>
683745Sgblack@eecs.umich.edu#if defined(linux)
693745Sgblack@eecs.umich.edu#include <fenv.h>
703745Sgblack@eecs.umich.edu#endif
713745Sgblack@eecs.umich.edu
723745Sgblack@eecs.umich.edu#ifdef FULL_SYSTEM
733745Sgblack@eecs.umich.edu//#include "arch/alpha/pseudo_inst.hh"
742567SN/A#endif
752567SN/A#include "cpu/base.hh"
762567SN/A#include "cpu/exetrace.hh"
772567SN/A#include "mem/packet.hh"
783584Ssaidi@eecs.umich.edu#include "mem/packet_access.hh"
792567SN/A#include "sim/sim_exit.hh"
802567SN/A
812567SN/Ausing namespace MipsISA;
822567SN/A}};
833584Ssaidi@eecs.umich.edu
842567SN/A