main.isa revision 2649
12038SN/A// -*- mode:c++ -*- 22038SN/A 32038SN/A// Copyright (c) 2003-2005 The Regents of The University of Michigan 42038SN/A// All rights reserved. 52038SN/A// 62038SN/A// Redistribution and use in source and binary forms, with or without 72038SN/A// modification, are permitted provided that the following conditions are 82038SN/A// met: redistributions of source code must retain the above copyright 92038SN/A// notice, this list of conditions and the following disclaimer; 102038SN/A// redistributions in binary form must reproduce the above copyright 112038SN/A// notice, this list of conditions and the following disclaimer in the 122038SN/A// documentation and/or other materials provided with the distribution; 132038SN/A// neither the name of the copyright holders nor the names of its 142038SN/A// contributors may be used to endorse or promote products derived from 152038SN/A// this software without specific prior written permission. 162038SN/A// 172038SN/A// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182038SN/A// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192038SN/A// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202038SN/A// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212038SN/A// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222038SN/A// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232038SN/A// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242038SN/A// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252038SN/A// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262038SN/A// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272038SN/A// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282038SN/A 292649Ssaidi@eecs.umich.edu//////////////////////////////////////////////////////////////////// 302649Ssaidi@eecs.umich.edu// 312649Ssaidi@eecs.umich.edu// MIPS ISA description file. 322649Ssaidi@eecs.umich.edu// 332649Ssaidi@eecs.umich.edu//////////////////////////////////////////////////////////////////// 342649Ssaidi@eecs.umich.edu 352649Ssaidi@eecs.umich.edu//Include the C++ include directives 362504SN/A##include "includes.isa" 372038SN/A 382038SN/A//////////////////////////////////////////////////////////////////// 392038SN/A// 402038SN/A// Namespace statement. Everything below this line will be in the 412038SN/A// MipsISAInst namespace. 422038SN/A// 432038SN/A 442038SN/Anamespace MipsISA; 452038SN/A 462038SN/A//Include the bitfield definitions 472504SN/A##include "bitfields.isa" 482038SN/A 492038SN/A//Include the operand_types and operand definitions 502504SN/A##include "operands.isa" 512038SN/A 522038SN/A//Include the base class for mips instructions, and some support code 532504SN/A##include "base.isa" 542038SN/A 552038SN/A//Include the definitions for the instruction formats 562504SN/A##include "formats/formats.isa" 572038SN/A 582038SN/A//Include the decoder definition 592504SN/A##include "decoder.isa" 60