main.isa revision 2030
16928SN/A// -*- mode:c++ -*-
210350Sandreas.hansson@arm.com
36928SN/A//Copyright (c) 2003, 2004, 2005
4//The Regents of The University of Michigan
5//All Rights Reserved
6
7//This code is part of the M5 simulator, developed by Nathan Binkert,
8//Erik Hallnor, Steve Raasch, and Steve Reinhardt, with contributions
9//from Ron Dreslinski, Dave Greene, Lisa Hsu, Kevin Lim, Ali Saidi,
10//and Andrew Schultz.
11
12//Permission is granted to use, copy, create derivative works and
13//redistribute this software and such derivative works for any purpose,
14//so long as the copyright notice above, this grant of permission, and
15//the disclaimer below appear in all copies made; and so long as the
16//name of The University of Michigan is not used in any advertising or
17//publicity pertaining to the use or distribution of this software
18//without specific, written prior authorization.
19
20//THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE
21//UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND WITHOUT
22//WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER EXPRESS OR
23//IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
24//MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF
25//THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR ANY DAMAGES,
26//INCLUDING DIRECT, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
27//DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION
28//WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER
29//ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
30
31////////////////////////////////////////////////////////////////////
32//
33// SPARC ISA description file.
34//
35////////////////////////////////////////////////////////////////////
36
37//Include the C++ include directives
38##include "m5/arch/sparc/isa_desc/includes.h"
39
40////////////////////////////////////////////////////////////////////
41//
42// Namespace statement.  Everything below this line will be in the
43// SparcISAInst namespace.
44//
45
46namespace SparcISA;
47
48//Include the bitfield definitions
49##include "m5/arch/sparc/isa_desc/bitfields.h"
50
51//Include the operand_types and operand definitions
52##include "m5/arch/sparc/isa_desc/operands.h"
53
54//Include the base class for sparc instructions, and some support code
55##include "m5/arch/sparc/isa_desc/base.h"
56
57//Include the definitions for the instruction formats
58##include "m5/arch/sparc/isa_desc/formats.h"
59
60//Include the decoder definition
61##include "m5/arch/sparc/isa_desc/decoder.h"
62