16019Shines@cs.fsu.edu// -*- mode:c++ -*-
26019Shines@cs.fsu.edu
314028Sgiacomo.gabrielli@arm.com// Copyright (c) 2010, 2012, 2017-2018 ARM Limited
47158Sgblack@eecs.umich.edu// All rights reserved
57158Sgblack@eecs.umich.edu//
67158Sgblack@eecs.umich.edu// The license below extends only to copyright in the software and shall
77158Sgblack@eecs.umich.edu// not be construed as granting a license to any other intellectual
87158Sgblack@eecs.umich.edu// property including but not limited to intellectual property relating
97158Sgblack@eecs.umich.edu// to a hardware implementation of the functionality of the software
107158Sgblack@eecs.umich.edu// licensed hereunder.  You may use the software subject to the license
117158Sgblack@eecs.umich.edu// terms below provided that you ensure that this notice is replicated
127158Sgblack@eecs.umich.edu// unmodified and in its entirety in all distributions of the software,
137158Sgblack@eecs.umich.edu// modified or unmodified, in source code or in binary form.
147158Sgblack@eecs.umich.edu//
156019Shines@cs.fsu.edu// Copyright (c) 2007-2008 The Florida State University
166019Shines@cs.fsu.edu// All rights reserved.
176019Shines@cs.fsu.edu//
186019Shines@cs.fsu.edu// Redistribution and use in source and binary forms, with or without
196019Shines@cs.fsu.edu// modification, are permitted provided that the following conditions are
206019Shines@cs.fsu.edu// met: redistributions of source code must retain the above copyright
216019Shines@cs.fsu.edu// notice, this list of conditions and the following disclaimer;
226019Shines@cs.fsu.edu// redistributions in binary form must reproduce the above copyright
236019Shines@cs.fsu.edu// notice, this list of conditions and the following disclaimer in the
246019Shines@cs.fsu.edu// documentation and/or other materials provided with the distribution;
256019Shines@cs.fsu.edu// neither the name of the copyright holders nor the names of its
266019Shines@cs.fsu.edu// contributors may be used to endorse or promote products derived from
276019Shines@cs.fsu.edu// this software without specific prior written permission.
286019Shines@cs.fsu.edu//
296019Shines@cs.fsu.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
306019Shines@cs.fsu.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
316019Shines@cs.fsu.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
326019Shines@cs.fsu.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
336019Shines@cs.fsu.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
346019Shines@cs.fsu.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
356019Shines@cs.fsu.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
366019Shines@cs.fsu.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
376019Shines@cs.fsu.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386019Shines@cs.fsu.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
396019Shines@cs.fsu.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
406019Shines@cs.fsu.edu//
416019Shines@cs.fsu.edu// Authors: Stephen Hines
426019Shines@cs.fsu.edu
436019Shines@cs.fsu.edu////////////////////////////////////////////////////////////////////
446019Shines@cs.fsu.edu//
456019Shines@cs.fsu.edu// Output include file directives.
466019Shines@cs.fsu.edu//
476019Shines@cs.fsu.edu
486019Shines@cs.fsu.eduoutput header {{
498229Snate@binkert.org#include <iostream>
506019Shines@cs.fsu.edu#include <sstream>
516019Shines@cs.fsu.edu
526253Sgblack@eecs.umich.edu#include "arch/arm/insts/branch.hh"
5310037SARM gem5 Developers#include "arch/arm/insts/branch64.hh"
5413168Smatt.horsnell@arm.com#include "arch/arm/insts/crypto.hh"
5510037SARM gem5 Developers#include "arch/arm/insts/data64.hh"
5610037SARM gem5 Developers#include "arch/arm/insts/fplib.hh"
576253Sgblack@eecs.umich.edu#include "arch/arm/insts/macromem.hh"
586253Sgblack@eecs.umich.edu#include "arch/arm/insts/mem.hh"
5910037SARM gem5 Developers#include "arch/arm/insts/mem64.hh"
607202Sgblack@eecs.umich.edu#include "arch/arm/insts/misc.hh"
6110037SARM gem5 Developers#include "arch/arm/insts/misc64.hh"
627158Sgblack@eecs.umich.edu#include "arch/arm/insts/mult.hh"
6310037SARM gem5 Developers#include "arch/arm/insts/neon64_mem.hh"
646253Sgblack@eecs.umich.edu#include "arch/arm/insts/pred_inst.hh"
6510611SAndreas.Sandberg@ARM.com#include "arch/arm/insts/pseudo.hh"
666253Sgblack@eecs.umich.edu#include "arch/arm/insts/static_inst.hh"
6713759Sgiacomo.gabrielli@arm.com#include "arch/arm/insts/sve.hh"
6813955Sgiacomo.gabrielli@arm.com#include "arch/arm/insts/sve_mem.hh"
697375Sgblack@eecs.umich.edu#include "arch/arm/insts/vfp.hh"
706019Shines@cs.fsu.edu#include "arch/arm/isa_traits.hh"
7114028Sgiacomo.gabrielli@arm.com#include "enums/DecoderFlavour.hh"
726019Shines@cs.fsu.edu#include "mem/packet.hh"
737678Sgblack@eecs.umich.edu#include "sim/faults.hh"
7414028Sgiacomo.gabrielli@arm.com
756019Shines@cs.fsu.edu}};
766019Shines@cs.fsu.edu
776019Shines@cs.fsu.eduoutput decoder {{
7810037SARM gem5 Developers#include <string>
7912159Sandreas.sandberg@arm.com
8012159Sandreas.sandberg@arm.com#include <gem5/asm/generic/m5ops.h>
8112159Sandreas.sandberg@arm.com
829022Sgblack@eecs.umich.edu#include "arch/arm/decoder.hh"
836019Shines@cs.fsu.edu#include "arch/arm/faults.hh"
8414028Sgiacomo.gabrielli@arm.com#include "arch/arm/insts/sve_macromem.hh"
857392Sgblack@eecs.umich.edu#include "arch/arm/intregs.hh"
866019Shines@cs.fsu.edu#include "arch/arm/isa_traits.hh"
876019Shines@cs.fsu.edu#include "arch/arm/utility.hh"
8814028Sgiacomo.gabrielli@arm.com#include "base/cprintf.hh"
898229Snate@binkert.org#include "base/loader/symtab.hh"
906019Shines@cs.fsu.edu#include "cpu/thread_context.hh"
916019Shines@cs.fsu.edu
926019Shines@cs.fsu.eduusing namespace ArmISA;
936019Shines@cs.fsu.edu}};
946019Shines@cs.fsu.edu
956019Shines@cs.fsu.eduoutput exec {{
968229Snate@binkert.org#include <cmath>
978229Snate@binkert.org
986019Shines@cs.fsu.edu#include "arch/arm/faults.hh"
9913759Sgiacomo.gabrielli@arm.com#include "arch/arm/isa.hh"
1006019Shines@cs.fsu.edu#include "arch/arm/isa_traits.hh"
1016019Shines@cs.fsu.edu#include "arch/arm/utility.hh"
1028442Sgblack@eecs.umich.edu#include "arch/generic/memhelpers.hh"
1036276Sgblack@eecs.umich.edu#include "base/condcodes.hh"
10412258Sgiacomo.travaglini@arm.com#include "base/crc.hh"
10510319SAndreas.Sandberg@ARM.com#include "cpu/base.hh"
1067350SAli.Saidi@ARM.com#include "sim/pseudo_inst.hh"
10714028Sgiacomo.gabrielli@arm.com
1086019Shines@cs.fsu.edu#if defined(linux)
1096019Shines@cs.fsu.edu#include <fenv.h>
11014028Sgiacomo.gabrielli@arm.com
1116019Shines@cs.fsu.edu#endif
1126019Shines@cs.fsu.edu
1137732SAli.Saidi@ARM.com#include "base/cp_annotate.hh"
1148232Snate@binkert.org#include "debug/Arm.hh"
1156019Shines@cs.fsu.edu#include "mem/packet.hh"
1166019Shines@cs.fsu.edu#include "mem/packet_access.hh"
1176019Shines@cs.fsu.edu#include "sim/sim_exit.hh"
1186019Shines@cs.fsu.edu
1196019Shines@cs.fsu.eduusing namespace ArmISA;
1208946Sandreas.hansson@arm.com
1216019Shines@cs.fsu.edu}};
1226019Shines@cs.fsu.edu
123