formats.isa revision 7165:03693c2eec78
12817Sksewell@umich.edu// -*- mode:c++ -*-
22817Sksewell@umich.edu
32817Sksewell@umich.edu// Copyright (c) 2010 ARM Limited
42817Sksewell@umich.edu// All rights reserved
52817Sksewell@umich.edu//
62817Sksewell@umich.edu// The license below extends only to copyright in the software and shall
72817Sksewell@umich.edu// not be construed as granting a license to any other intellectual
82817Sksewell@umich.edu// property including but not limited to intellectual property relating
92817Sksewell@umich.edu// to a hardware implementation of the functionality of the software
102817Sksewell@umich.edu// licensed hereunder.  You may use the software subject to the license
112817Sksewell@umich.edu// terms below provided that you ensure that this notice is replicated
122817Sksewell@umich.edu// unmodified and in its entirety in all distributions of the software,
132817Sksewell@umich.edu// modified or unmodified, in source code or in binary form.
142817Sksewell@umich.edu//
152817Sksewell@umich.edu// Copyright (c) 2007-2008 The Florida State University
162817Sksewell@umich.edu// All rights reserved.
172817Sksewell@umich.edu//
182817Sksewell@umich.edu// Redistribution and use in source and binary forms, with or without
192817Sksewell@umich.edu// modification, are permitted provided that the following conditions are
202817Sksewell@umich.edu// met: redistributions of source code must retain the above copyright
212817Sksewell@umich.edu// notice, this list of conditions and the following disclaimer;
222817Sksewell@umich.edu// redistributions in binary form must reproduce the above copyright
232817Sksewell@umich.edu// notice, this list of conditions and the following disclaimer in the
242817Sksewell@umich.edu// documentation and/or other materials provided with the distribution;
252817Sksewell@umich.edu// neither the name of the copyright holders nor the names of its
262817Sksewell@umich.edu// contributors may be used to endorse or promote products derived from
272817Sksewell@umich.edu// this software without specific prior written permission.
282817Sksewell@umich.edu//
294202Sbinkertn@umich.edu// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
302817Sksewell@umich.edu// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
312817Sksewell@umich.edu// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
322817Sksewell@umich.edu// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
334202Sbinkertn@umich.edu// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
342817Sksewell@umich.edu// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
355192Ssaidi@eecs.umich.edu// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
365192Ssaidi@eecs.umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
375192Ssaidi@eecs.umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
385192Ssaidi@eecs.umich.edu// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
395192Ssaidi@eecs.umich.edu// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
405192Ssaidi@eecs.umich.edu//
415192Ssaidi@eecs.umich.edu// Authors: Stephen Hines
425192Ssaidi@eecs.umich.edu
435192Ssaidi@eecs.umich.edu//Templates from this format are used later
445192Ssaidi@eecs.umich.edu//Include the basic format
454202Sbinkertn@umich.edu##include "basic.isa"
464486Sbinkertn@umich.edu
474486Sbinkertn@umich.edu//Include support for predicated instructions
484486Sbinkertn@umich.edu##include "pred.isa"
494486Sbinkertn@umich.edu
504202Sbinkertn@umich.edu//Include the float formats
514202Sbinkertn@umich.edu##include "fp.isa"
524202Sbinkertn@umich.edu
534202Sbinkertn@umich.edu//Include the mem format
544202Sbinkertn@umich.edu##include "mem.isa"
554202Sbinkertn@umich.edu
564202Sbinkertn@umich.edu//Include the macro-mem format
574202Sbinkertn@umich.edu##include "macromem.isa"
584202Sbinkertn@umich.edu
594202Sbinkertn@umich.edu//Include the branch format
604202Sbinkertn@umich.edu##include "branch.isa"
614202Sbinkertn@umich.edu
624202Sbinkertn@umich.edu//Include the unimplemented format
634202Sbinkertn@umich.edu##include "unimp.isa"
644202Sbinkertn@umich.edu
654202Sbinkertn@umich.edu//Include the unknown format
664202Sbinkertn@umich.edu##include "unknown.isa"
674202Sbinkertn@umich.edu
682817Sksewell@umich.edu//Include the formats for data processing instructions
695192Ssaidi@eecs.umich.edu##include "data.isa"
705192Ssaidi@eecs.umich.edu
715192Ssaidi@eecs.umich.edu//Include the formats for multiply instructions
725192Ssaidi@eecs.umich.edu##include "mult.isa"
735192Ssaidi@eecs.umich.edu