insts.isa revision 13587:9d4da35335af
12SN/A// -*- mode:c++ -*-
22190SN/A
32SN/A// Copyright (c) 2010-2014 ARM Limited
42SN/A// All rights reserved
52SN/A//
62SN/A// The license below extends only to copyright in the software and shall
72SN/A// not be construed as granting a license to any other intellectual
82SN/A// property including but not limited to intellectual property relating
92SN/A// to a hardware implementation of the functionality of the software
102SN/A// licensed hereunder.  You may use the software subject to the license
112SN/A// terms below provided that you ensure that this notice is replicated
122SN/A// unmodified and in its entirety in all distributions of the software,
132SN/A// modified or unmodified, in source code or in binary form.
142SN/A//
152SN/A// Redistribution and use in source and binary forms, with or without
162SN/A// modification, are permitted provided that the following conditions are
172SN/A// met: redistributions of source code must retain the above copyright
182SN/A// notice, this list of conditions and the following disclaimer;
192SN/A// redistributions in binary form must reproduce the above copyright
202SN/A// notice, this list of conditions and the following disclaimer in the
212SN/A// documentation and/or other materials provided with the distribution;
222SN/A// neither the name of the copyright holders nor the names of its
232SN/A// contributors may be used to endorse or promote products derived from
242SN/A// this software without specific prior written permission.
252SN/A//
262SN/A// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
272665SN/A// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
282665SN/A// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
292SN/A// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
302SN/A// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
312680Sktlim@umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
322680Sktlim@umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
332SN/A// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
342972Sgblack@eecs.umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
353453Sgblack@eecs.umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
361858SN/A// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
372423SN/A//
382190SN/A// Authors: Gabe Black
3956SN/A
40217SN/A//AArch64 instructions
413776Sgblack@eecs.umich.edu##include "aarch64.isa"
422036SN/A
432SN/A//Useful bits shared by memory instructions
442190SN/A##include "mem.isa"
452190SN/A
463453Sgblack@eecs.umich.edu//Loads of a single item
473453Sgblack@eecs.umich.edu##include "ldr.isa"
483453Sgblack@eecs.umich.edu
493453Sgblack@eecs.umich.edu//Loads of a single item, AArch64
503453Sgblack@eecs.umich.edu##include "ldr64.isa"
512190SN/A
522313SN/A//Miscellaneous instructions that don't fit elsewhere
532235SN/A##include "misc.isa"
542423SN/A##include "misc64.isa"
552521SN/A
562521SN/Asplit exec;
572190SN/Asplit decoder;
582190SN/A
593548Sgblack@eecs.umich.edu//Stores of a single item, AArch64
603548Sgblack@eecs.umich.edu##include "str64.isa"
613548Sgblack@eecs.umich.edu
623548Sgblack@eecs.umich.edu//Stores of a single item
632330SN/A##include "str.isa"
642SN/A
652680Sktlim@umich.edu//Load/store multiple
662680Sktlim@umich.edu##include "macromem.isa"
672680Sktlim@umich.edu
682680Sktlim@umich.edusplit exec;
692680Sktlim@umich.edu
702680Sktlim@umich.edu//Data processing instructions
712680Sktlim@umich.edu##include "data.isa"
722680Sktlim@umich.edu
732680Sktlim@umich.edu//AArch64 data processing instructions
742680Sktlim@umich.edu##include "data64.isa"
752680Sktlim@umich.edu
762682Sktlim@umich.edu//Branches
772680Sktlim@umich.edu##include "branch.isa"
782680Sktlim@umich.edu##include "branch64.isa"
792680Sktlim@umich.edu
802680Sktlim@umich.edu//Multiply
812680Sktlim@umich.edu##include "mult.isa"
822SN/A
832107SN/A//Divide
842107SN/A##include "div.isa"
852107SN/A
862190SN/A//VFP
872455SN/A##include "fp.isa"
882455SN/A##include "fp64.isa"
892107SN/A
902159SN/Asplit exec;
912SN/A
92246SN/A//Neon
93246SN/A##include "neon.isa"
94246SN/A
95246SN/A//AArch64 Neon
96246SN/A##include "neon64.isa"
97246SN/Asplit decoder;
98246SN/A##include "neon64_mem.isa"
99246SN/A
100246SN/A//m5 Pseudo-ops
101246SN/A##include "m5ops.isa"
102246SN/A
103246SN/A//Crypto
104246SN/A##include "crypto.isa"
1052190SN/A
106246SN/A//Crypto
107246SN/A##include "crypto64.isa"
108246SN/A