insts.isa revision 7199:3e96b80d1b55
110399Sstephan.diestelhorst@arm.com// -*- mode:c++ -*-
211129Sali.jafri@arm.com
310399Sstephan.diestelhorst@arm.com// Copyright (c) 2010 ARM Limited
410399Sstephan.diestelhorst@arm.com// All rights reserved
510399Sstephan.diestelhorst@arm.com//
610399Sstephan.diestelhorst@arm.com// The license below extends only to copyright in the software and shall
710399Sstephan.diestelhorst@arm.com// not be construed as granting a license to any other intellectual
810399Sstephan.diestelhorst@arm.com// property including but not limited to intellectual property relating
910399Sstephan.diestelhorst@arm.com// to a hardware implementation of the functionality of the software
1010399Sstephan.diestelhorst@arm.com// licensed hereunder.  You may use the software subject to the license
1110399Sstephan.diestelhorst@arm.com// terms below provided that you ensure that this notice is replicated
1210399Sstephan.diestelhorst@arm.com// unmodified and in its entirety in all distributions of the software,
1310399Sstephan.diestelhorst@arm.com// modified or unmodified, in source code or in binary form.
1410399Sstephan.diestelhorst@arm.com//
1510399Sstephan.diestelhorst@arm.com// Redistribution and use in source and binary forms, with or without
1610399Sstephan.diestelhorst@arm.com// modification, are permitted provided that the following conditions are
1710399Sstephan.diestelhorst@arm.com// met: redistributions of source code must retain the above copyright
1810399Sstephan.diestelhorst@arm.com// notice, this list of conditions and the following disclaimer;
1910399Sstephan.diestelhorst@arm.com// redistributions in binary form must reproduce the above copyright
2010399Sstephan.diestelhorst@arm.com// notice, this list of conditions and the following disclaimer in the
2110399Sstephan.diestelhorst@arm.com// documentation and/or other materials provided with the distribution;
2210399Sstephan.diestelhorst@arm.com// neither the name of the copyright holders nor the names of its
2310399Sstephan.diestelhorst@arm.com// contributors may be used to endorse or promote products derived from
2410399Sstephan.diestelhorst@arm.com// this software without specific prior written permission.
2510399Sstephan.diestelhorst@arm.com//
2610399Sstephan.diestelhorst@arm.com// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2710399Sstephan.diestelhorst@arm.com// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2810399Sstephan.diestelhorst@arm.com// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2910399Sstephan.diestelhorst@arm.com// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
3010399Sstephan.diestelhorst@arm.com// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3110399Sstephan.diestelhorst@arm.com// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3210399Sstephan.diestelhorst@arm.com// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3310399Sstephan.diestelhorst@arm.com// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3410399Sstephan.diestelhorst@arm.com// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3510399Sstephan.diestelhorst@arm.com// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3610399Sstephan.diestelhorst@arm.com// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3711135Sandreas.hansson@arm.com//
3810399Sstephan.diestelhorst@arm.com// Authors: Gabe Black
3910399Sstephan.diestelhorst@arm.com
4010399Sstephan.diestelhorst@arm.com//Basic forms of various templates
4110399Sstephan.diestelhorst@arm.com##include "basic.isa"
4210399Sstephan.diestelhorst@arm.com
4310399Sstephan.diestelhorst@arm.com//Useful bits shared by memory instructions
4410399Sstephan.diestelhorst@arm.com##include "mem.isa"
4510399Sstephan.diestelhorst@arm.com
4610399Sstephan.diestelhorst@arm.com//Loads of a single item
4710399Sstephan.diestelhorst@arm.com##include "ldr.isa"
4810399Sstephan.diestelhorst@arm.com
4910399Sstephan.diestelhorst@arm.com//Miscellaneous instructions that don't fit elsewhere
5010399Sstephan.diestelhorst@arm.com##include "misc.isa"
5110399Sstephan.diestelhorst@arm.com
5210399Sstephan.diestelhorst@arm.com//Stores of a single item
5310888Sandreas.hansson@arm.com##include "str.isa"
5410399Sstephan.diestelhorst@arm.com
5510399Sstephan.diestelhorst@arm.com//Load/store multiple
5610399Sstephan.diestelhorst@arm.com##include "macromem.isa"
5710399Sstephan.diestelhorst@arm.com
5810399Sstephan.diestelhorst@arm.com//Data processing instructions
5910399Sstephan.diestelhorst@arm.com##include "data.isa"
6010399Sstephan.diestelhorst@arm.com
6110399Sstephan.diestelhorst@arm.com//Branches
6210399Sstephan.diestelhorst@arm.com##include "branch.isa"
6310399Sstephan.diestelhorst@arm.com
6410399Sstephan.diestelhorst@arm.com//Multiply
6510399Sstephan.diestelhorst@arm.com##include "mult.isa"
6610399Sstephan.diestelhorst@arm.com