* v850-opc.c (insert_d16_15, extract_d16_15): New functions.
[deliverable/binutils-gdb.git] / opcodes / v850-opc.c
1 #include "ansidecl.h"
2 #include "opcode/v850.h"
3
4 /* TODO:
5
6 * All sld instructions will need special insert/extrat code. */
7
8 /* Local insertion and extraction functions. */
9 static unsigned long insert_d9 PARAMS ((unsigned long, long, const char **));
10 static long extract_d9 PARAMS ((unsigned long, int *));
11 static unsigned long insert_d22 PARAMS ((unsigned long, long, const char **));
12 static long extract_d22 PARAMS ((unsigned long, int *));
13 static unsigned long insert_d16_15 PARAMS ((unsigned long, long,
14 const char **));
15 static long extract_d16_15 PARAMS ((unsigned long, int *));
16
17 /* regular opcode */
18 #define OP(x) ((x & 0x3f) << 5)
19 #define OP_MASK OP(0x3f)
20
21 /* conditional branch opcode */
22 #define BOP(x) ((0x0b << 7) | (x & 0x0f))
23 #define BOP_MASK ((0x0b << 7) | 0x0f)
24
25 /* one-word opcodes */
26 #define one(x) ((unsigned int) (x))
27
28 /* two-word opcodes */
29 #define two(x,y) ((unsigned int) (x) | ((unsigned int) (y) << 16))
30
31
32 \f
33 const struct v850_operand v850_operands[] = {
34 #define UNUSED 0
35 { 0, 0, 0, 0, 0 },
36
37 /* The R1 field in a format 1, 6, 7, or 9 insn. */
38 #define R1 (UNUSED+1)
39 { 5, 0, 0, 0, V850_OPERAND_REG },
40
41 /* The R2 field in a format 1, 2, 4, 5, 6, 7, 9 insn. */
42 #define R2 (R1+1)
43 { 5, 11, 0, 0, V850_OPERAND_REG },
44
45 /* The IMM5 field in a format 2 insn. */
46 #define I5 (R2+1)
47 { 5, 0, 0, 0, V850_OPERAND_SIGNED },
48
49 #define I5U (I5+1)
50 { 5, 0, 0, 0, 0 },
51
52 /* The IMM16 field in a format 6 insn. */
53 #define I16 (I5U+1)
54 { 16, 16, 0, 0, V850_OPERAND_SIGNED },
55
56 /* The signed DISP7 field in a format 4 insn. */
57 #define D7S (I16+1)
58 { 7, 0, 0, 0, V850_OPERAND_SIGNED },
59
60 /* The DISP9 field in a format 3 insn. */
61 #define D9 (D7S+1)
62 { 9, 0, insert_d9, extract_d9, V850_OPERAND_SIGNED },
63
64 /* The DISP16 field in a format 6 insn. */
65 #define D16_15 (D9+1)
66 { 16, 16, insert_d16_15, extract_d16_15, V850_OPERAND_SIGNED },
67
68 /* The DISP22 field in a format 4 insn. */
69 #define D22 (D16_15+1)
70 { 22, 0, insert_d22, extract_d22, V850_OPERAND_SIGNED },
71
72 #define B3 (D22+1)
73 /* The 3 bit immediate field in format 8 insn. */
74 { 3, 11, 0, 0, 0 },
75
76 #define CCCC (B3+1)
77 /* The 4 bit condition code in a setf instruction */
78 { 4, 0, 0, 0, V850_OPERAND_CC },
79
80 /* The unsigned DISP8 field in a format 4 insn. */
81 #define D8 (CCCC+1)
82 { 8, 0, 0, 0, 0 },
83
84 /* System register operands. */
85 #define SR1 (D8+1)
86 { 5, 0, 0, 0, V850_OPERAND_SRG },
87
88 /* EP Register. */
89 #define EP (SR1+1)
90 { 0, 0, 0, 0, V850_OPERAND_EP },
91
92 /* The IMM16 field (unsigned0 in a format 6 insn. */
93 #define I16U (EP+1)
94 { 16, 16, 0, 0, 0},
95
96 /* The R2 field as a system register. */
97 #define SR2 (I16U+1)
98 { 5, 11, 0, 0, V850_OPERAND_SRG },
99
100 /* The DISP16 field in a format 8 insn. */
101 #define D16 (SR2+1)
102 { 16, 16, 0, 0, V850_OPERAND_SIGNED },
103
104 } ;
105
106 \f
107 /* reg-reg instruction format (Format I) */
108 #define IF1 {R1, R2}
109
110 /* imm-reg instruction format (Format II) */
111 #define IF2 {I5, R2}
112
113 /* conditional branch instruction format (Format III) */
114 #define IF3 {D9}
115
116 /* 16-bit load/store instruction (Format IV) */
117 #define IF4A {D7S, EP, R2}
118 #define IF4B {R2, D7S, EP}
119 #define IF4C {D8, EP, R2}
120 #define IF4D {R2, D8, EP}
121
122 /* Jump instruction (Format V) */
123 #define IF5 {D22}
124
125 /* 3 operand instruction (Format VI) */
126 #define IF6 {I16, R1, R2}
127
128 /* 3 operand instruction (Format VI) */
129 #define IF6U {I16U, R1, R2}
130
131 /* 32-bit load/store half/word instruction (Format VII) */
132 #define IF7A {D16_15, R1, R2}
133 #define IF7B {R2, D16_15, R1}
134
135 /* 32-bit load/store byte instruction (Format VII) */
136 #define IF7C {D16, R1, R2}
137 #define IF7D {R2, D16, R1}
138
139 /* Bit manipulation function. */
140
141
142 \f
143 /* The opcode table.
144
145 The format of the opcode table is:
146
147 NAME OPCODE MASK { OPERANDS }
148
149 NAME is the name of the instruction.
150 OPCODE is the instruction opcode.
151 MASK is the opcode mask; this is used to tell the disassembler
152 which bits in the actual opcode must match OPCODE.
153 OPERANDS is the list of operands.
154
155 The disassembler reads the table in order and prints the first
156 instruction which matches, so this table is sorted to put more
157 specific instructions before more general instructions. It is also
158 sorted by major opcode. */
159
160 const struct v850_opcode v850_opcodes[] = {
161 /* load/store instructions */
162 { "sld.b", one(0x0300), one(0x0780), IF4A, 2 },
163 { "sld.h", one(0x0400), one(0x0780), IF4A, 2 },
164 { "sld.w", one(0x0500), one(0x0781), IF4A, 2 },
165 { "sst.b", one(0x0380), one(0x0780), IF4B, 2 },
166 { "sst.h", one(0x0480), one(0x0780), IF4D, 2 },
167 { "sst.w", one(0x0501), one(0x0781), IF4D, 2 },
168
169 { "ld.b", two(0x0700,0x0000), two (0x07e0,0x0000), IF7C, 4 },
170 { "ld.h", two(0x0720,0x0000), two (0x07e0,0x0001), IF7A, 4 },
171 { "ld.w", two(0x0720,0x0001), two (0x07e0,0x0001), IF7A, 4 },
172 { "st.b", two(0x0740,0x0000), two (0x07e0,0x0000), IF7D, 4 },
173 { "st.h", two(0x0760,0x0000), two (0x07e0,0x0001), IF7B, 4 },
174 { "st.w", two(0x0760,0x0001), two (0x07e0,0x0001), IF7B, 4 },
175
176 /* arithmetic operation instructions */
177 { "mov", OP(0x00), OP_MASK, IF1, 2 },
178 { "mov", OP(0x10), OP_MASK, IF2, 2 },
179 { "movea", OP(0x31), OP_MASK, IF6, 4 },
180 { "movhi", OP(0x32), OP_MASK, IF6, 4 },
181 { "add", OP(0x0e), OP_MASK, IF1, 2 },
182 { "add", OP(0x12), OP_MASK, IF2, 2 },
183 { "addi", OP(0x30), OP_MASK, IF6, 4 },
184 { "sub", OP(0x0d), OP_MASK, IF1, 2 },
185 { "subr", OP(0x0c), OP_MASK, IF1, 2 },
186 { "mulh", OP(0x07), OP_MASK, IF1, 2 },
187 { "mulh", OP(0x17), OP_MASK, IF2, 2 },
188 { "mulhi", OP(0x37), OP_MASK, IF6, 4 },
189 { "divh", OP(0x02), OP_MASK, IF1, 2 },
190 { "cmp", OP(0x0f), OP_MASK, IF1, 2 },
191 { "cmp", OP(0x13), OP_MASK, IF2, 2 },
192 { "setf", two(0x07e0,0x0000), two(0x07f0,0xffff), {CCCC,R2}, 4 },
193
194 /* saturated operation instructions */
195 { "satadd", OP(0x06), OP_MASK, IF1, 2 },
196 { "satadd", OP(0x11), OP_MASK, IF2, 2 },
197 { "satsub", OP(0x05), OP_MASK, IF1, 2 },
198 { "satsubi", OP(0x33), OP_MASK, IF6, 4 },
199 { "satsubr", OP(0x04), OP_MASK, IF1, 2 },
200
201 /* logical operation instructions */
202 { "tst", OP(0x0b), OP_MASK, IF1, 2 },
203 { "or", OP(0x08), OP_MASK, IF1, 2 },
204 { "ori", OP(0x34), OP_MASK, IF6U, 4 },
205 { "and", OP(0x0a), OP_MASK, IF1, 2 },
206 { "andi", OP(0x36), OP_MASK, IF6U, 4 },
207 { "xor", OP(0x09), OP_MASK, IF1, 2 },
208 { "xori", OP(0x35), OP_MASK, IF6U, 4 },
209 { "not", OP(0x01), OP_MASK, IF1, 2 },
210 { "sar", OP(0x15), OP_MASK, {I5U, R2}, 2 },
211 { "sar", two(0x07e0,0x00a0), two(0x07e0,0xffff), {R1,R2}, 4 },
212 { "shl", OP(0x16), OP_MASK, {I5U, R2}, 2 },
213 { "shl", two(0x07e0,0x00c0), two(0x07e0,0xffff), {R1,R2}, 4 },
214 { "shr", OP(0x14), OP_MASK, {I5U, R2}, 2 },
215 { "shr", two(0x07e0,0x0080), two(0x07e0,0xffff), {R1,R2}, 4 },
216
217 /* branch instructions */
218 /* signed integer */
219 { "bgt", BOP(0xf), BOP_MASK, IF3, 2 },
220 { "bge", BOP(0xe), BOP_MASK, IF3, 2 },
221 { "blt", BOP(0x6), BOP_MASK, IF3, 2 },
222 { "ble", BOP(0x7), BOP_MASK, IF3, 2 },
223 /* unsigned integer */
224 { "bh", BOP(0xb), BOP_MASK, IF3, 2 },
225 { "bnh", BOP(0x3), BOP_MASK, IF3, 2 },
226 { "bl", BOP(0x1), BOP_MASK, IF3, 2 },
227 { "bnl", BOP(0x9), BOP_MASK, IF3, 2 },
228 /* common */
229 { "be", BOP(0x2), BOP_MASK, IF3, 2 },
230 { "bne", BOP(0xa), BOP_MASK, IF3, 2 },
231 /* others */
232 { "bv", BOP(0x0), BOP_MASK, IF3, 2 },
233 { "bnv", BOP(0x8), BOP_MASK, IF3, 2 },
234 { "bn", BOP(0x4), BOP_MASK, IF3, 2 },
235 { "bp", BOP(0xc), BOP_MASK, IF3, 2 },
236 { "bc", BOP(0x1), BOP_MASK, IF3, 2 },
237 { "bnc", BOP(0x9), BOP_MASK, IF3, 2 },
238 { "bz", BOP(0x2), BOP_MASK, IF3, 2 },
239 { "bnz", BOP(0xa), BOP_MASK, IF3, 2 },
240 { "br", BOP(0x5), BOP_MASK, IF3, 2 },
241 { "bsa", BOP(0xd), BOP_MASK, IF3, 2 },
242
243 { "jmp", one(0x0060), one(0xffe0), { R1}, 2 },
244 { "jarl", one(0x0780), one(0xf83f), { D22, R2 }, 4 },
245 { "jr", one(0x0780), one(0xffe0), { D22 }, 4 },
246
247 /* bit manipulation instructions */
248 { "set1", two(0x07c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
249 { "not1", two(0x47c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
250 { "clr1", two(0x87c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
251 { "tst1", two(0xc7c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
252
253 /* special instructions */
254 { "di", two(0x07e0,0x0160), two(0xffff,0xffff), {0}, 4 },
255 { "ei", two(0x87e0,0x0160), two(0xffff,0xffff), {0}, 4 },
256 { "halt", two(0x07e0,0x0120), two(0xffff,0xffff), {0}, 4 },
257 { "reti", two(0x07e0,0x0140), two(0xffff,0xffff), {0}, 4 },
258 { "trap", two(0x07e0,0x0100), two(0xffe0,0xffff), {I5U}, 4 },
259 { "ldsr", two(0x07e0,0x0020), two(0x07e0,0xffff), {R1,SR2}, 4 },
260 { "stsr", two(0x07e0,0x0040), two(0x07e0,0xffff), {SR1,R2}, 4 },
261 { "nop", one(0x00), one(0xffff), {0}, 2 },
262 { 0, 0, 0, {0}, 0 },
263
264 } ;
265
266 const int v850_num_opcodes =
267 sizeof (v850_opcodes) / sizeof (v850_opcodes[0]);
268
269 \f
270 /* The functions used to insert and extract complicated operands. */
271
272 static unsigned long
273 insert_d9 (insn, value, errmsg)
274 unsigned long insn;
275 long value;
276 const char **errmsg;
277 {
278 if (value > 255 || value <= -256)
279 *errmsg = "branch value out of range";
280
281 if ((value % 2) != 0)
282 *errmsg = "branch to odd offset";
283
284 return (insn | ((value & 0x1f0) << 7) | ((value & 0x0e) << 3));
285 }
286
287 static long
288 extract_d9 (insn, invalid)
289 unsigned long insn;
290 int *invalid;
291 {
292 long ret = ((insn & 0xf800) >> 7) | ((insn & 0x0070) >> 3);
293
294 if ((insn & 0x8000) != 0)
295 ret -= 0x0200;
296
297 return ret;
298 }
299
300 static unsigned long
301 insert_d22 (insn, value, errmsg)
302 unsigned long insn;
303 long value;
304 const char **errmsg;
305 {
306 if (value > 0xfffff || value <= -0x100000)
307 *errmsg = "branch value out of range";
308
309 if ((value % 2) != 0)
310 *errmsg = "branch to odd offset";
311
312 return (insn | ((value & 0xfffe) << 16) | ((value & 0x3f0000) >> 16));
313 }
314
315 static long
316 extract_d22 (insn, invalid)
317 unsigned long insn;
318 int *invalid;
319 {
320 int ret = ((insn & 0xfffe0000) >> 16) | ((insn & 0x3f) << 16);
321
322 return ((ret << 10) >> 10);
323 }
324
325 static unsigned long
326 insert_d16_15 (insn, value, errmsg)
327 unsigned long insn;
328 long value;
329 const char **errmsg;
330 {
331 if (value > 0x7fff || value <= -0x8000)
332 *errmsg = "value out of range";
333
334 if ((value % 2) != 0)
335 *errmsg = "load/store at odd offset";
336
337 return (insn | ((value & 0xfffe) << 16));
338 }
339
340 static long
341 extract_d16_15 (insn, invalid)
342 unsigned long insn;
343 int *invalid;
344 {
345 int ret = ((insn & 0xfffe0000) >> 16);
346
347 return ((ret << 16) >> 16);
348 }
This page took 0.045913 seconds and 5 git commands to generate.