formats.isa revision 7191:b2b54b8b3e5b
15335Shines@cs.fsu.edu// -*- mode:c++ -*-
24486Sbinkertn@umich.edu
34486Sbinkertn@umich.edu// Copyright (c) 2010 ARM Limited
44486Sbinkertn@umich.edu// All rights reserved
54486Sbinkertn@umich.edu//
64486Sbinkertn@umich.edu// The license below extends only to copyright in the software and shall
74486Sbinkertn@umich.edu// not be construed as granting a license to any other intellectual
84486Sbinkertn@umich.edu// property including but not limited to intellectual property relating
94486Sbinkertn@umich.edu// to a hardware implementation of the functionality of the software
104486Sbinkertn@umich.edu// licensed hereunder.  You may use the software subject to the license
114486Sbinkertn@umich.edu// terms below provided that you ensure that this notice is replicated
124486Sbinkertn@umich.edu// unmodified and in its entirety in all distributions of the software,
134486Sbinkertn@umich.edu// modified or unmodified, in source code or in binary form.
144486Sbinkertn@umich.edu//
154486Sbinkertn@umich.edu// Copyright (c) 2007-2008 The Florida State University
164486Sbinkertn@umich.edu// All rights reserved.
174486Sbinkertn@umich.edu//
184486Sbinkertn@umich.edu// Redistribution and use in source and binary forms, with or without
194486Sbinkertn@umich.edu// modification, are permitted provided that the following conditions are
204486Sbinkertn@umich.edu// met: redistributions of source code must retain the above copyright
214486Sbinkertn@umich.edu// notice, this list of conditions and the following disclaimer;
224486Sbinkertn@umich.edu// redistributions in binary form must reproduce the above copyright
234486Sbinkertn@umich.edu// notice, this list of conditions and the following disclaimer in the
244486Sbinkertn@umich.edu// documentation and/or other materials provided with the distribution;
254486Sbinkertn@umich.edu// neither the name of the copyright holders nor the names of its
264486Sbinkertn@umich.edu// contributors may be used to endorse or promote products derived from
274486Sbinkertn@umich.edu// this software without specific prior written permission.
284486Sbinkertn@umich.edu//
296654Snate@binkert.org// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
306654Snate@binkert.org// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
316654Snate@binkert.org// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
323102SN/A// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
333102SN/A// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
346654Snate@binkert.org// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
352998SN/A// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
364776Sgblack@eecs.umich.edu// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
374776Sgblack@eecs.umich.edu// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
386654Snate@binkert.org// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
392667SN/A// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
404776Sgblack@eecs.umich.edu//
414776Sgblack@eecs.umich.edu// Authors: Stephen Hines
426654Snate@binkert.org
436023Snate@binkert.org//Templates from this format are used later
446654Snate@binkert.org//Include the basic format
455647Sgblack@eecs.umich.edu##include "basic.isa"
466654Snate@binkert.org
476022Sgblack@eecs.umich.edu//Include support for predicated instructions
486654Snate@binkert.org##include "pred.isa"
495647Sgblack@eecs.umich.edu
506654Snate@binkert.org//Include the float formats
516022Sgblack@eecs.umich.edu##include "fp.isa"
526654Snate@binkert.org
535647Sgblack@eecs.umich.edu//Include the mem format
546654Snate@binkert.org##include "mem.isa"
556022Sgblack@eecs.umich.edu
566654Snate@binkert.org//Include the macro-mem format
575647Sgblack@eecs.umich.edu##include "macromem.isa"
586654Snate@binkert.org
596116Snate@binkert.org//Include the branch format
606654Snate@binkert.org##include "branch.isa"
615647Sgblack@eecs.umich.edu
626691Stjones1@inf.ed.ac.uk//Include the unimplemented format
636691Stjones1@inf.ed.ac.uk##include "unimp.isa"
646691Stjones1@inf.ed.ac.uk
656691Stjones1@inf.ed.ac.uk//Include the unknown format
664486Sbinkertn@umich.edu##include "unknown.isa"
675529Snate@binkert.org
681366SN/A//Include the formats for data processing instructions
691310SN/A##include "data.isa"
701310SN/A
712901SN/A//Include the formats for multiply instructions
725712Shsul@eecs.umich.edu##include "mult.isa"
735529Snate@binkert.org
745529Snate@binkert.org//Unconditional instructions
755529Snate@binkert.org##include "uncond.isa"
765529Snate@binkert.org