16019Shines@cs.fsu.edu// -*- mode:c++ -*-
26019Shines@cs.fsu.edu
37117Sgblack@eecs.umich.edu// Copyright (c) 2010 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////////////////////////////////////////////////////////////////////
446019Shines@cs.fsu.edu//
456019Shines@cs.fsu.edu// ARM ISA description file.
466019Shines@cs.fsu.edu//
476019Shines@cs.fsu.edu////////////////////////////////////////////////////////////////////
486019Shines@cs.fsu.edu
496019Shines@cs.fsu.edu//Include the C++ include directives
506019Shines@cs.fsu.edu##include "includes.isa"
516019Shines@cs.fsu.edu
526019Shines@cs.fsu.edu////////////////////////////////////////////////////////////////////
536019Shines@cs.fsu.edu//
546019Shines@cs.fsu.edu// Namespace statement.  Everything below this line will be in the
556019Shines@cs.fsu.edu// ArmISAInst namespace.
566019Shines@cs.fsu.edu//
576019Shines@cs.fsu.edunamespace ArmISA;
586019Shines@cs.fsu.edu
596019Shines@cs.fsu.edu//Include the bitfield definitions
606019Shines@cs.fsu.edu##include "bitfields.isa"
616019Shines@cs.fsu.edu
626019Shines@cs.fsu.edu//Include the operand_types and operand definitions
636019Shines@cs.fsu.edu##include "operands.isa"
646019Shines@cs.fsu.edu
657119Sgblack@eecs.umich.edu//Templates for the C++ versions of the instructions
667119Sgblack@eecs.umich.edu##include "templates/templates.isa"
677119Sgblack@eecs.umich.edu
687119Sgblack@eecs.umich.edu//Include manually defined instructions
697119Sgblack@eecs.umich.edu##include "insts/insts.isa"
707119Sgblack@eecs.umich.edu
716019Shines@cs.fsu.edu//Include the definitions for the instruction formats
726019Shines@cs.fsu.edu##include "formats/formats.isa"
736019Shines@cs.fsu.edu
746019Shines@cs.fsu.edu//Include the decoder definition
757117Sgblack@eecs.umich.edu##include "decoder/decoder.isa"
76