16019Shines@cs.fsu.edu// -*- mode:c++ -*-
26019Shines@cs.fsu.edu
313759Sgiacomo.gabrielli@arm.com// Copyright (c) 2010-2011, 2017 ARM Limited
47117Sgblack@eecs.umich.edu// All rights reserved
57117Sgblack@eecs.umich.edu//
67117Sgblack@eecs.umich.edu// The license below extends only to copyright in the software and shall
77117Sgblack@eecs.umich.edu// not be construed as granting a license to any other intellectual
87117Sgblack@eecs.umich.edu// property including but not limited to intellectual property relating
97117Sgblack@eecs.umich.edu// to a hardware implementation of the functionality of the software
107117Sgblack@eecs.umich.edu// licensed hereunder.  You may use the software subject to the license
117117Sgblack@eecs.umich.edu// terms below provided that you ensure that this notice is replicated
127117Sgblack@eecs.umich.edu// unmodified and in its entirety in all distributions of the software,
137117Sgblack@eecs.umich.edu// modified or unmodified, in source code or in binary form.
147117Sgblack@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//Templates from this format are used later
446019Shines@cs.fsu.edu//Include the basic format
456019Shines@cs.fsu.edu##include "basic.isa"
466019Shines@cs.fsu.edu
4710037SARM gem5 Developers//Include support for decoding AArch64 instructions
4810037SARM gem5 Developers##include "aarch64.isa"
4910037SARM gem5 Developers
5010037SARM gem5 Developers//Include support for decoding AArch64 NEON instructions
5110037SARM gem5 Developers##include "neon64.isa"
5210037SARM gem5 Developers
5313759Sgiacomo.gabrielli@arm.com//Include support for decoding SVE instructions (AArch64-only)
5413759Sgiacomo.gabrielli@arm.com##include "sve_top_level.isa"
5513759Sgiacomo.gabrielli@arm.com##include "sve_2nd_level.isa"
5613759Sgiacomo.gabrielli@arm.com
576019Shines@cs.fsu.edu//Include support for predicated instructions
586019Shines@cs.fsu.edu##include "pred.isa"
596019Shines@cs.fsu.edu
606019Shines@cs.fsu.edu//Include the float formats
616019Shines@cs.fsu.edu##include "fp.isa"
626019Shines@cs.fsu.edu
636019Shines@cs.fsu.edu//Include the mem format
646019Shines@cs.fsu.edu##include "mem.isa"
656019Shines@cs.fsu.edu
666019Shines@cs.fsu.edu//Include the macro-mem format
676019Shines@cs.fsu.edu##include "macromem.isa"
686019Shines@cs.fsu.edu
696019Shines@cs.fsu.edu//Include the branch format
706019Shines@cs.fsu.edu##include "branch.isa"
716019Shines@cs.fsu.edu
727199Sgblack@eecs.umich.edu//Miscellaneous instructions that don't fit elsewhere
737199Sgblack@eecs.umich.edu##include "misc.isa"
747199Sgblack@eecs.umich.edu
757401SAli.Saidi@ARM.com//Include the breakpoint format
767401SAli.Saidi@ARM.com##include "breakpoint.isa"
777401SAli.Saidi@ARM.com
787139Sgblack@eecs.umich.edu//Include the formats for data processing instructions
797139Sgblack@eecs.umich.edu##include "data.isa"
807161Sgblack@eecs.umich.edu
817161Sgblack@eecs.umich.edu//Include the formats for multiply instructions
827161Sgblack@eecs.umich.edu##include "mult.isa"
837191Sgblack@eecs.umich.edu
847191Sgblack@eecs.umich.edu//Unconditional instructions
857191Sgblack@eecs.umich.edu##include "uncond.isa"
867732SAli.Saidi@ARM.com
877732SAli.Saidi@ARM.com//M5 Psuedo-ops
887732SAli.Saidi@ARM.com##include "m5ops.isa"
8910611SAndreas.Sandberg@ARM.com
9013170Sgiacomo.travaglini@arm.com//Crypto Ops
9113170Sgiacomo.travaglini@arm.com##include "crypto64.isa"
9213170Sgiacomo.travaglini@arm.com
9310611SAndreas.Sandberg@ARM.com//gem5-internal pseudo instructions
9410611SAndreas.Sandberg@ARM.com##include "pseudo.isa"
95