]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/binutils/include/opcode/s390.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / binutils / include / opcode / s390.h
1 /* s390.h -- Header file for S390 opcode table
2    Copyright 2000, 2001, 2003 Free Software Foundation, Inc.
3    Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
4
5    This file is part of BFD, the Binary File Descriptor library.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
20    02110-1301, USA.  */
21
22 #ifndef S390_H
23 #define S390_H
24
25 /* List of instruction sets variations. */
26
27 enum s390_opcode_mode_val
28   {
29     S390_OPCODE_ESA = 0,
30     S390_OPCODE_ZARCH
31   };
32
33 enum s390_opcode_cpu_val
34   {
35     S390_OPCODE_G5 = 0,
36     S390_OPCODE_G6,
37     S390_OPCODE_Z900,
38     S390_OPCODE_Z990,
39     S390_OPCODE_Z9_109,
40     S390_OPCODE_Z9_EC
41   };
42
43 /* The opcode table is an array of struct s390_opcode.  */
44
45 struct s390_opcode
46   {
47     /* The opcode name.  */
48     const char * name;
49
50     /* The opcode itself.  Those bits which will be filled in with
51        operands are zeroes.  */
52     unsigned char opcode[6];
53
54     /* The opcode mask.  This is used by the disassembler.  This is a
55        mask containing ones indicating those bits which must match the
56        opcode field, and zeroes indicating those bits which need not
57        match (and are presumably filled in by operands).  */
58     unsigned char mask[6];
59
60     /* The opcode length in bytes. */
61     int oplen;
62
63     /* An array of operand codes.  Each code is an index into the
64        operand table.  They appear in the order which the operands must
65        appear in assembly code, and are terminated by a zero.  */
66     unsigned char operands[6];
67
68     /* Bitmask of execution modes this opcode is available for.  */
69     unsigned int modes;
70
71     /* First cpu this opcode is available for.  */
72     enum s390_opcode_cpu_val min_cpu;
73   };
74
75 /* The table itself is sorted by major opcode number, and is otherwise
76    in the order in which the disassembler should consider
77    instructions.  */
78 extern const struct s390_opcode s390_opcodes[];
79 extern const int                s390_num_opcodes;
80
81 /* A opcode format table for the .insn pseudo mnemonic.  */
82 extern const struct s390_opcode s390_opformats[];
83 extern const int                s390_num_opformats;
84
85 /* Values defined for the flags field of a struct powerpc_opcode.  */
86
87 /* The operands table is an array of struct s390_operand.  */
88
89 struct s390_operand
90   {
91     /* The number of bits in the operand.  */
92     int bits;
93
94     /* How far the operand is left shifted in the instruction.  */
95     int shift;
96
97     /* One bit syntax flags.  */
98     unsigned long flags;
99   };
100
101 /* Elements in the table are retrieved by indexing with values from
102    the operands field of the powerpc_opcodes table.  */
103
104 extern const struct s390_operand s390_operands[];
105
106 /* Values defined for the flags field of a struct s390_operand.  */
107
108 /* This operand names a register.  The disassembler uses this to print
109    register names with a leading 'r'.  */
110 #define S390_OPERAND_GPR 0x1
111
112 /* This operand names a floating point register.  The disassembler
113    prints these with a leading 'f'. */
114 #define S390_OPERAND_FPR 0x2
115
116 /* This operand names an access register.  The disassembler
117    prints these with a leading 'a'.  */
118 #define S390_OPERAND_AR 0x4
119
120 /* This operand names a control register.  The disassembler
121    prints these with a leading 'c'.  */
122 #define S390_OPERAND_CR 0x8
123
124 /* This operand is a displacement.  */
125 #define S390_OPERAND_DISP 0x10
126
127 /* This operand names a base register.  */
128 #define S390_OPERAND_BASE 0x20
129
130 /* This operand names an index register, it can be skipped.  */
131 #define S390_OPERAND_INDEX 0x40
132
133 /* This operand is a relative branch displacement.  The disassembler
134    prints these symbolically if possible.  */
135 #define S390_OPERAND_PCREL 0x80
136
137 /* This operand takes signed values.  */
138 #define S390_OPERAND_SIGNED 0x100
139
140 /* This operand is a length.  */
141 #define S390_OPERAND_LENGTH 0x200
142
143 /* This operand is optional. Only a single operand at the end of
144    the instruction may be optional.  */
145 #define S390_OPERAND_OPTIONAL 0x400
146
147         #endif /* S390_H */