]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - opcodes/h8300-dis.c
* h8300-dis.c (bfd_h8_disassemble): Print "exr" when
[thirdparty/binutils-gdb.git] / opcodes / h8300-dis.c
CommitLineData
9c06680d
DE
1/* Disassemble h8300 instructions.
2 Copyright (C) 1993 Free Software Foundation, Inc.
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation; either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program; if not, write to the Free Software
25b344a4 16Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
9c06680d
DE
17
18#define DEFINE_TABLE
19
20#define h8_opcodes h8ops
21#include "opcode/h8300.h"
22#include "dis-asm.h"
23
24
25/* Run through the opcodes and sort them into order to make them easy
26 to disassemble
27 */
28static void
29bfd_h8_disassemble_init ()
30{
31 unsigned int i;
32
33
34 struct h8_opcode *p;
35
36 for (p = h8_opcodes; p->name; p++)
37 {
38 int n1 = 0;
39 int n2 = 0;
40
41 if ((int) p->data.nib[0] < 16)
42 {
43 n1 = (int) p->data.nib[0];
44 }
45 else
46 n1 = 0;
47 if ((int) p->data.nib[1] < 16)
48 {
49 n2 = (int) p->data.nib[1];
50 }
51 else
52 n2 = 0;
53
54 /* Just make sure there are an even number of nibbles in it, and
55 that the count is the same s the length */
56 for (i = 0; p->data.nib[i] != E; i++)
57 /*EMPTY*/ ;
58 if (i & 1)
59 abort ();
60 p->length = i / 2;
61 }
62
63}
64
65
66unsigned int
25b344a4 67bfd_h8_disassemble (addr, info, mode)
9c06680d
DE
68 bfd_vma addr;
69 disassemble_info *info;
25b344a4 70 int mode;
9c06680d
DE
71{
72 /* Find the first entry in the table for this opcode */
73 static CONST char *regnames[] =
74 {
75 "r0h", "r1h", "r2h", "r3h", "r4h", "r5h", "r6h", "r7h",
76 "r0l", "r1l", "r2l", "r3l", "r4l", "r5l", "r6l", "r7l"};
77
78 static CONST char *wregnames[] =
79 {
80 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
81 "e0", "e1", "e2", "e3", "e4", "e5", "e6", "e7"
82 };
83
84 static CONST char *lregnames[] =
85 {
86 "er0", "er1", "er2", "er3", "er4", "er5", "er6", "er7",
87 "er0", "er1", "er2", "er3", "er4", "er5", "er6", "er7"
88 }
89 ;
90
91 int rs = 0;
92 int rd = 0;
93 int rdisp = 0;
94 int abs = 0;
25b344a4 95 int bit = 0;
9c06680d 96 int plen = 0;
fea3fe64 97 static boolean init = 0;
9c06680d 98 struct h8_opcode *q = h8_opcodes;
25b344a4 99 char CONST **pregnames = mode != 0 ? lregnames : wregnames;
9c06680d 100 int status;
fea3fe64
SS
101 int l;
102
9c06680d
DE
103 unsigned char data[20];
104 void *stream = info->stream;
105 fprintf_ftype fprintf = info->fprintf_func;
106
107 if (!init)
108 {
109 bfd_h8_disassemble_init ();
fea3fe64 110 init = 1;
9c06680d
DE
111 }
112
113 status = info->read_memory_func(addr, data, 2, info);
114 if (status != 0)
115 {
116 info->memory_error_func(status, addr, info);
117 return -1;
118 }
fea3fe64
SS
119 for (l = 2; status == 0 && l < 10; l+=2)
120 {
121 status = info->read_memory_func(addr+l, data+l, 2, info);
122 }
123
9c06680d
DE
124
125
126 /* Find the exact opcode/arg combo */
127 while (q->name)
128 {
129 op_type *nib;
130 unsigned int len = 0;
131
132 nib = q->data.nib;
133
134 while (1)
135 {
136 op_type looking_for = *nib;
137 int thisnib = data[len >> 1];
138
139 thisnib = (len & 1) ? (thisnib & 0xf) : ((thisnib >> 4) & 0xf);
140
fea3fe64 141 if (looking_for < 16 && looking_for >=0)
9c06680d
DE
142 {
143
144 if (looking_for != thisnib)
145 goto fail;
146 }
147
148 else
149 {
150
151 if ((int) looking_for & (int) B31)
152 {
153 if (! (((int) thisnib & 0x8) != 0))
154 goto fail;
155 looking_for = (op_type) ((int) looking_for & ~(int) B31);
156 }
157 if ((int) looking_for & (int) B30)
158 {
159 if (!(((int) thisnib & 0x8) == 0))
160 goto fail;
161 looking_for = (op_type) ((int) looking_for & ~(int) B30);
162 }
163
164 if (looking_for & DBIT)
165 {
166 if ((looking_for & 5) != (thisnib &5)) goto fail;
167 abs = (thisnib & 0x8) ? 2 : 1;
168 }
169
170 else if (looking_for & (REG | IND|INC|DEC))
171 {
172 if (looking_for & SRC)
173 {
174 rs = thisnib;
175 }
176 else
177 {
178 rd = thisnib;
179 }
180 }
181 else if (looking_for & L_16)
182 {
183 abs = (data[len >> 1]) * 256 + data[(len + 2) >> 1];
184 plen = 16;
185
186 }
187 else if(looking_for & ABSJMP)
188 {
189 abs =
190 (data[1] << 16)
191 | (data[2] << 8)
192 | (data[3]);
193 }
fea3fe64
SS
194 else if(looking_for & MEMIND)
195 {
196 abs = data[1];
197 }
9c06680d
DE
198 else if (looking_for & L_32)
199 {
200 int i = len >> 1;
201 abs = (data[i] << 24)
202 | (data[i + 1] << 16)
203 | (data[i + 2] << 8)
204 | (data[i+ 3]);
205
206 plen =32;
207
208 }
209 else if (looking_for & L_24)
210 {
211 int i = len >> 1;
212 abs = (data[i] << 16) | (data[i + 1] << 8)| (data[i+
213 2]);
214 plen =24;
215 }
216 else if (looking_for & IGNORE)
217 {
218
219 }
220 else if (looking_for & DISPREG)
221 {
222 rdisp = thisnib;
223 }
224 else if (looking_for & KBIT)
225 {
226 switch (thisnib)
227 {
228 case 9:
229 abs = 4;
230 break;
231 case 8:
232 abs = 2;
233 break;
234 case 0:
235 abs = 1;
236 break;
81fc72a7
JL
237 default:
238 goto fail;
9c06680d
DE
239 }
240 }
241 else if (looking_for & L_8)
242 {
243 plen = 8;
244 abs = data[len >> 1];
245 }
246 else if (looking_for & L_3)
247 {
bf0b880f 248 bit = thisnib & 0x7;
25b344a4
JL
249 }
250 else if (looking_for & L_2)
251 {
252 plen = 2;
bf0b880f 253 abs = thisnib & 0x3;
9c06680d
DE
254 }
255 else if (looking_for == E)
256 {
257
258 {
259 int i;
260
261 for (i = 0; i < q->length; i++)
262 {
263 fprintf (stream, "%02x ", data[i]);
264 }
265 for (; i < 6; i++)
266 {
267 fprintf (stream, " ");
268 }
269 }
270 fprintf (stream, "%s\t", q->name);
271 /* Fill in the args */
272 {
273 op_type *args = q->args.nib;
274 int hadone = 0;
275
276
277 while (*args != E)
278 {
279 int x = *args;
280 if (hadone)
281 fprintf (stream, ",");
282
283
25b344a4
JL
284 if (x & L_3)
285 {
286 fprintf (stream, "#0x%x", (unsigned) bit);
287 }
288 else if (x & (IMM|KBIT|DBIT))
9c06680d 289 {
9c06680d
DE
290 fprintf (stream, "#0x%x", (unsigned) abs);
291 }
292 else if (x & REG)
293 {
294 int rn = (x & DST) ? rd : rs;
295 switch (x & SIZE)
296 {
297 case L_8:
298 fprintf (stream, "%s", regnames[rn]);
299 break;
300 case L_16:
301 fprintf (stream, "%s", wregnames[rn]);
302 break;
303 case L_P:
304 case L_32:
305 fprintf (stream, "%s", lregnames[rn]);
306 break;
307
308 }
309 }
310
311 else if (x & INC)
312 {
313 fprintf (stream, "@%s+", pregnames[rs]);
314 }
315 else if (x & DEC)
316 {
317 fprintf (stream, "@-%s", pregnames[rd]);
318 }
319
320 else if (x & IND)
321 {
322 int rn = (x & DST) ? rd : rs;
323 fprintf (stream, "@%s", pregnames[rn]);
324 }
325
25b344a4
JL
326 else if (x & ABS8MEM)
327 {
328 fprintf (stream, "@0x%x:8", (unsigned) abs);
329 }
330
331 else if (x & (ABS|ABSJMP))
9c06680d
DE
332 {
333 fprintf (stream, "@0x%x:%d", (unsigned) abs, plen);
334 }
335
336 else if (x & MEMIND)
337 {
338 fprintf (stream, "@@%d (%x)", abs, abs);
339 }
340
341 else if (x & PCREL)
342 {
25b344a4
JL
343 if (x & L_16)
344 {
345 abs +=2;
346 fprintf (stream, ".%s%d (%x)", (short) abs > 0 ? "+" : "", (short) abs,
347 addr + (short) abs + 2);
348 }
349 else {
350 fprintf (stream, ".%s%d (%x)", (char) abs > 0 ? "+" : "", (char) abs,
351 addr + (char) abs + 2);
352 }
9c06680d
DE
353 }
354 else if (x & DISP)
355 {
356 fprintf (stream, "@(0x%x:%d,%s)", abs,plen, pregnames[rdisp]);
357 }
358
359 else if (x & CCR)
360 {
9c06680d
DE
361 fprintf (stream, "ccr");
362 }
b3ef936e
JL
363 else if (x & EXR)
364 {
365 fprintf (stream, "exr");
366 }
9c06680d
DE
367
368 else
369 fprintf (stream, "Hmmmm %x", x);
370 hadone = 1;
371 args++;
372 }
373 }
374 return q->length;
375 }
376
377
378 else
379 {
380 fprintf (stream, "Dont understand %x \n", looking_for);
381 }
382 }
383
384 len++;
385 nib++;
386 }
387
388 fail:
389 q++;
390 }
391
392 /* Fell of the end */
393 fprintf (stream, "%02x %02x .word\tH'%x,H'%x",
394 data[0], data[1],
395 data[0], data[1]);
396 return 2;
397}
398
399int
400print_insn_h8300 (addr, info)
401bfd_vma addr;
402disassemble_info *info;
403{
404 return bfd_h8_disassemble (addr, info , 0);
405}
406
25b344a4 407int
9c06680d
DE
408print_insn_h8300h (addr, info)
409bfd_vma addr;
410disassemble_info *info;
411{
412 return bfd_h8_disassemble (addr, info , 1);
413}
414
25b344a4
JL
415int
416print_insn_h8300s (addr, info)
417bfd_vma addr;
418disassemble_info *info;
419{
420 return bfd_h8_disassemble (addr, info , 2);
421}