main.isa revision 2030
12131SN/A// -*- mode:c++ -*-
22131SN/A
32131SN/A//Copyright (c) 2003, 2004, 2005
42131SN/A//The Regents of The University of Michigan
52131SN/A//All Rights Reserved
62131SN/A
72131SN/A//This code is part of the M5 simulator, developed by Nathan Binkert,
82131SN/A//Erik Hallnor, Steve Raasch, and Steve Reinhardt, with contributions
92131SN/A//from Ron Dreslinski, Dave Greene, Lisa Hsu, Kevin Lim, Ali Saidi,
102131SN/A//and Andrew Schultz.
112131SN/A
122131SN/A//Permission is granted to use, copy, create derivative works and
132131SN/A//redistribute this software and such derivative works for any purpose,
142131SN/A//so long as the copyright notice above, this grant of permission, and
152131SN/A//the disclaimer below appear in all copies made; and so long as the
162131SN/A//name of The University of Michigan is not used in any advertising or
172131SN/A//publicity pertaining to the use or distribution of this software
182131SN/A//without specific, written prior authorization.
192131SN/A
202131SN/A//THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE
212131SN/A//UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND WITHOUT
222131SN/A//WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER EXPRESS OR
232131SN/A//IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
242131SN/A//MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF
252131SN/A//THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR ANY DAMAGES,
262131SN/A//INCLUDING DIRECT, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
272665Ssaidi@eecs.umich.edu//DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION
282665Ssaidi@eecs.umich.edu//WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER
292131SN/A//ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
302131SN/A
312239SN/A////////////////////////////////////////////////////////////////////
322447SN/A//
332447SN/A// SPARC ISA description file.
342447SN/A//
352131SN/A////////////////////////////////////////////////////////////////////
362447SN/A
372447SN/A//Include the C++ include directives
382131SN/A##include "m5/arch/sparc/isa_desc/includes.h"
392479SN/A
402447SN/A////////////////////////////////////////////////////////////////////
412447SN/A//
422131SN/A// Namespace statement.  Everything below this line will be in the
432479SN/A// SparcISAInst namespace.
442447SN/A//
452447SN/A
462447SN/Anamespace SparcISA;
472447SN/A
482447SN/A//Include the bitfield definitions
492447SN/A##include "m5/arch/sparc/isa_desc/bitfields.h"
502447SN/A
512447SN/A//Include the operand_types and operand definitions
522447SN/A##include "m5/arch/sparc/isa_desc/operands.h"
532447SN/A
542447SN/A//Include the base class for sparc instructions, and some support code
552447SN/A##include "m5/arch/sparc/isa_desc/base.h"
562447SN/A
572447SN/A//Include the definitions for the instruction formats
582447SN/A##include "m5/arch/sparc/isa_desc/formats.h"
592447SN/A
602447SN/A//Include the decoder definition
612447SN/A##include "m5/arch/sparc/isa_desc/decoder.h"
622447SN/A