Deleted Added
sdiff udiff text old ( 4519:f8da6b45573f ) new ( 4528:f0b19ee67a7b )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 The Hewlett-Packard Development Company
4// All rights reserved.
5//
6// Redistribution and use of this software in source and binary forms,
7// with or without modification, are permitted provided that the
8// following conditions are met:

--- 58 unchanged lines hidden (view full) ---

67////////////////////////////////////////////////////////////////////
68//
69// Namespace statement. Everything below this line will be in the
70// SparcISAInst namespace.
71//
72
73namespace X86ISA;
74
75//Include the base class for x86 instructions, and some support code.
76##include "base.isa"
77
78//Include the definitions for the instruction formats
79##include "formats/formats.isa"
80
81//Include the operand_types and operand definitions. These are needed by
82//the microop definitions.
83##include "operands.isa"
84
85//Include the definitions of the micro ops.
86//These are StaticInst classes which stand on their own and make up an
87//internal instruction set.
88##include "microops/microops.isa"
89
90//Include code to build macroops.
91##include "macroop.isa"
92
93//Include the simple microcode assembler. This will hopefully stay
94//unspecialized for x86 and can later be made available to other ISAs.
95##include "microasm.isa"
96
97//Include code to specialize an instruction template to operate on
98//a particular set of operands. This is specific to x86 and the x86
99//microcode ISA.
100##include "specialize.isa"
101
102//Include the bitfield definitions
103##include "bitfields.isa"
104
105//Include the decoder definition
106##include "decoder/decoder.isa"