includes.isa revision 9022
16691Stjones1@inf.ed.ac.uk// -*- mode:c++ -*-
26691Stjones1@inf.ed.ac.uk
36691Stjones1@inf.ed.ac.uk// Copyright (c) 2010 ARM Limited
46691Stjones1@inf.ed.ac.uk// All rights reserved
56691Stjones1@inf.ed.ac.uk//
66691Stjones1@inf.ed.ac.uk// The license below extends only to copyright in the software and shall
76691Stjones1@inf.ed.ac.uk// not be construed as granting a license to any other intellectual
86691Stjones1@inf.ed.ac.uk// property including but not limited to intellectual property relating
96691Stjones1@inf.ed.ac.uk// to a hardware implementation of the functionality of the software
106691Stjones1@inf.ed.ac.uk// licensed hereunder.  You may use the software subject to the license
116691Stjones1@inf.ed.ac.uk// terms below provided that you ensure that this notice is replicated
126691Stjones1@inf.ed.ac.uk// unmodified and in its entirety in all distributions of the software,
136691Stjones1@inf.ed.ac.uk// modified or unmodified, in source code or in binary form.
146691Stjones1@inf.ed.ac.uk//
156691Stjones1@inf.ed.ac.uk// Copyright (c) 2007-2008 The Florida State University
166691Stjones1@inf.ed.ac.uk// All rights reserved.
176691Stjones1@inf.ed.ac.uk//
186691Stjones1@inf.ed.ac.uk// Redistribution and use in source and binary forms, with or without
196691Stjones1@inf.ed.ac.uk// modification, are permitted provided that the following conditions are
206691Stjones1@inf.ed.ac.uk// met: redistributions of source code must retain the above copyright
216691Stjones1@inf.ed.ac.uk// notice, this list of conditions and the following disclaimer;
226691Stjones1@inf.ed.ac.uk// redistributions in binary form must reproduce the above copyright
236691Stjones1@inf.ed.ac.uk// notice, this list of conditions and the following disclaimer in the
246691Stjones1@inf.ed.ac.uk// documentation and/or other materials provided with the distribution;
256691Stjones1@inf.ed.ac.uk// neither the name of the copyright holders nor the names of its
266691Stjones1@inf.ed.ac.uk// contributors may be used to endorse or promote products derived from
276691Stjones1@inf.ed.ac.uk// this software without specific prior written permission.
286691Stjones1@inf.ed.ac.uk//
296691Stjones1@inf.ed.ac.uk// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
306691Stjones1@inf.ed.ac.uk// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
316691Stjones1@inf.ed.ac.uk// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
326691Stjones1@inf.ed.ac.uk// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
336691Stjones1@inf.ed.ac.uk// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
346691Stjones1@inf.ed.ac.uk// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
356691Stjones1@inf.ed.ac.uk// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
366691Stjones1@inf.ed.ac.uk// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
376691Stjones1@inf.ed.ac.uk// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386691Stjones1@inf.ed.ac.uk// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
396691Stjones1@inf.ed.ac.uk// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
406691Stjones1@inf.ed.ac.uk//
416691Stjones1@inf.ed.ac.uk// Authors: Stephen Hines
426691Stjones1@inf.ed.ac.uk
436691Stjones1@inf.ed.ac.uk////////////////////////////////////////////////////////////////////
446691Stjones1@inf.ed.ac.uk//
456691Stjones1@inf.ed.ac.uk// Output include file directives.
466691Stjones1@inf.ed.ac.uk//
476691Stjones1@inf.ed.ac.uk
486691Stjones1@inf.ed.ac.ukoutput header {{
496691Stjones1@inf.ed.ac.uk#include <iostream>
506691Stjones1@inf.ed.ac.uk#include <sstream>
516691Stjones1@inf.ed.ac.uk
526691Stjones1@inf.ed.ac.uk#include "arch/arm/insts/branch.hh"
536691Stjones1@inf.ed.ac.uk#include "arch/arm/insts/macromem.hh"
547811Ssteve.reinhardt@amd.com#include "arch/arm/insts/mem.hh"
556691Stjones1@inf.ed.ac.uk#include "arch/arm/insts/misc.hh"
566691Stjones1@inf.ed.ac.uk#include "arch/arm/insts/mult.hh"
576691Stjones1@inf.ed.ac.uk#include "arch/arm/insts/pred_inst.hh"
58#include "arch/arm/insts/static_inst.hh"
59#include "arch/arm/insts/vfp.hh"
60#include "arch/arm/isa_traits.hh"
61#include "mem/packet.hh"
62#include "sim/faults.hh"
63}};
64
65output decoder {{
66#include "arch/arm/decoder.hh"
67#include "arch/arm/faults.hh"
68#include "arch/arm/intregs.hh"
69#include "arch/arm/isa_traits.hh"
70#include "arch/arm/utility.hh"
71#include "base/loader/symtab.hh"
72#include "base/cprintf.hh"
73#include "cpu/thread_context.hh"
74
75using namespace ArmISA;
76}};
77
78output exec {{
79#include <cmath>
80
81#include "arch/arm/faults.hh"
82#include "arch/arm/isa_traits.hh"
83#include "arch/arm/utility.hh"
84#include "arch/generic/memhelpers.hh"
85#include "base/condcodes.hh"
86#include "sim/pseudo_inst.hh"
87#if defined(linux)
88#include <fenv.h>
89#endif
90
91#include "base/cp_annotate.hh"
92#include "debug/Arm.hh"
93#include "mem/packet.hh"
94#include "mem/packet_access.hh"
95#include "sim/sim_exit.hh"
96
97using namespace ArmISA;
98
99}};
100
101