]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - opcodes/m32r-dis.c
* elf32-s390.c (elf_s390_relocate_section): Use the "unresolved_reloc"
[thirdparty/binutils-gdb.git] / opcodes / m32r-dis.c
CommitLineData
252b5132
RH
1/* Disassembler interface for targets using CGEN. -*- C -*-
2 CGEN: Cpu tools GENerator
3
4THIS FILE IS MACHINE GENERATED WITH CGEN.
5- the resultant file is machine generated, cgen-dis.in isn't
6
060d22b0 7Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
252b5132
RH
8
9This file is part of the GNU Binutils and GDB, the GNU debugger.
10
11This program is free software; you can redistribute it and/or modify
12it under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2, or (at your option)
14any later version.
15
16This program is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19GNU General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with this program; if not, write to the Free Software Foundation, Inc.,
2359 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24
25/* ??? Eventually more and more of this stuff can go to cpu-independent files.
26 Keep that in mind. */
27
28#include "sysdep.h"
29#include <stdio.h>
30#include "ansidecl.h"
31#include "dis-asm.h"
32#include "bfd.h"
33#include "symcat.h"
34#include "m32r-desc.h"
35#include "m32r-opc.h"
36#include "opintl.h"
37
38/* Default text to print if an instruction isn't recognized. */
39#define UNKNOWN_INSN_MSG _("*unknown*")
40
41static void print_normal
42 PARAMS ((CGEN_CPU_DESC, PTR, long, unsigned int, bfd_vma, int));
43static void print_address
44 PARAMS ((CGEN_CPU_DESC, PTR, bfd_vma, unsigned int, bfd_vma, int));
45static void print_keyword
46 PARAMS ((CGEN_CPU_DESC, PTR, CGEN_KEYWORD *, long, unsigned int));
47static void print_insn_normal
48 PARAMS ((CGEN_CPU_DESC, PTR, const CGEN_INSN *, CGEN_FIELDS *,
49 bfd_vma, int));
fc05c67f 50static int print_insn
0e2ee3ca
NC
51 PARAMS ((CGEN_CPU_DESC, bfd_vma, disassemble_info *, char *, unsigned));
52static int default_print_insn
252b5132 53 PARAMS ((CGEN_CPU_DESC, bfd_vma, disassemble_info *));
fc05c67f
NC
54static int read_insn
55 PARAMS ((CGEN_CPU_DESC, bfd_vma, disassemble_info *, char *, int,
56 CGEN_EXTRACT_INFO *, unsigned long *));
252b5132
RH
57\f
58/* -- disassembler routines inserted here */
59
60/* -- dis.c */
0e2ee3ca
NC
61static void print_hash PARAMS ((CGEN_CPU_DESC, PTR, long, unsigned, bfd_vma, int));
62static int my_print_insn PARAMS ((CGEN_CPU_DESC, bfd_vma, disassemble_info *));
252b5132
RH
63
64/* Immediate values are prefixed with '#'. */
65
0e2ee3ca
NC
66#define CGEN_PRINT_NORMAL(cd, info, value, attrs, pc, length) \
67 do \
68 { \
69 if (CGEN_BOOL_ATTR ((attrs), CGEN_OPERAND_HASH_PREFIX)) \
70 (*info->fprintf_func) (info->stream, "#"); \
71 } \
72 while (0)
252b5132
RH
73
74/* Handle '#' prefixes as operands. */
75
76static void
77print_hash (cd, dis_info, value, attrs, pc, length)
0e2ee3ca 78 CGEN_CPU_DESC cd;
252b5132 79 PTR dis_info;
0e2ee3ca
NC
80 long value;
81 unsigned int attrs;
82 bfd_vma pc;
83 int length;
252b5132
RH
84{
85 disassemble_info *info = (disassemble_info *) dis_info;
86 (*info->fprintf_func) (info->stream, "#");
87}
88
0e2ee3ca 89#undef CGEN_PRINT_INSN
252b5132
RH
90#define CGEN_PRINT_INSN my_print_insn
91
92static int
93my_print_insn (cd, pc, info)
94 CGEN_CPU_DESC cd;
95 bfd_vma pc;
96 disassemble_info *info;
97{
98 char buffer[CGEN_MAX_INSN_SIZE];
99 char *buf = buffer;
100 int status;
101 int buflen = (pc & 3) == 0 ? 4 : 2;
102
103 /* Read the base part of the insn. */
104
105 status = (*info->read_memory_func) (pc, buf, buflen, info);
106 if (status != 0)
107 {
108 (*info->memory_error_func) (status, pc, info);
109 return -1;
110 }
111
112 /* 32 bit insn? */
113 if ((pc & 3) == 0 && (buf[0] & 0x80) != 0)
114 return print_insn (cd, pc, info, buf, buflen);
115
116 /* Print the first insn. */
117 if ((pc & 3) == 0)
118 {
119 if (print_insn (cd, pc, info, buf, 2) == 0)
120 (*info->fprintf_func) (info->stream, UNKNOWN_INSN_MSG);
121 buf += 2;
122 }
123
124 if (buf[0] & 0x80)
125 {
126 /* Parallel. */
127 (*info->fprintf_func) (info->stream, " || ");
128 buf[0] &= 0x7f;
129 }
130 else
131 (*info->fprintf_func) (info->stream, " -> ");
132
133 /* The "& 3" is to pass a consistent address.
134 Parallel insns arguably both begin on the word boundary.
135 Also, branch insns are calculated relative to the word boundary. */
136 if (print_insn (cd, pc & ~ (bfd_vma) 3, info, buf, 2) == 0)
137 (*info->fprintf_func) (info->stream, UNKNOWN_INSN_MSG);
138
139 return (pc & 3) ? 2 : 4;
140}
141
142/* -- */
143
0e2ee3ca
NC
144void m32r_cgen_print_operand
145 PARAMS ((CGEN_CPU_DESC, int, PTR, CGEN_FIELDS *,
146 void const *, bfd_vma, int));
147
252b5132
RH
148/* Main entry point for printing operands.
149 XINFO is a `void *' and not a `disassemble_info *' to not put a requirement
150 of dis-asm.h on cgen.h.
151
152 This function is basically just a big switch statement. Earlier versions
153 used tables to look up the function to use, but
154 - if the table contains both assembler and disassembler functions then
155 the disassembler contains much of the assembler and vice-versa,
156 - there's a lot of inlining possibilities as things grow,
157 - using a switch statement avoids the function call overhead.
158
159 This function could be moved into `print_insn_normal', but keeping it
160 separate makes clear the interface between `print_insn_normal' and each of
161 the handlers.
162*/
163
164void
165m32r_cgen_print_operand (cd, opindex, xinfo, fields, attrs, pc, length)
166 CGEN_CPU_DESC cd;
167 int opindex;
168 PTR xinfo;
169 CGEN_FIELDS *fields;
fc05c67f 170 void const *attrs ATTRIBUTE_UNUSED;
252b5132
RH
171 bfd_vma pc;
172 int length;
173{
174 disassemble_info *info = (disassemble_info *) xinfo;
175
176 switch (opindex)
177 {
1fa60b5d
DE
178 case M32R_OPERAND_ACC :
179 print_keyword (cd, info, & m32r_cgen_opval_h_accums, fields->f_acc, 0);
180 break;
181 case M32R_OPERAND_ACCD :
182 print_keyword (cd, info, & m32r_cgen_opval_h_accums, fields->f_accd, 0);
183 break;
184 case M32R_OPERAND_ACCS :
185 print_keyword (cd, info, & m32r_cgen_opval_h_accums, fields->f_accs, 0);
186 break;
252b5132
RH
187 case M32R_OPERAND_DCR :
188 print_keyword (cd, info, & m32r_cgen_opval_cr_names, fields->f_r1, 0);
189 break;
190 case M32R_OPERAND_DISP16 :
191 print_address (cd, info, fields->f_disp16, 0|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_PCREL_ADDR), pc, length);
192 break;
193 case M32R_OPERAND_DISP24 :
194 print_address (cd, info, fields->f_disp24, 0|(1<<CGEN_OPERAND_RELAX)|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_PCREL_ADDR), pc, length);
195 break;
196 case M32R_OPERAND_DISP8 :
197 print_address (cd, info, fields->f_disp8, 0|(1<<CGEN_OPERAND_RELAX)|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_PCREL_ADDR), pc, length);
198 break;
199 case M32R_OPERAND_DR :
200 print_keyword (cd, info, & m32r_cgen_opval_gr_names, fields->f_r1, 0);
201 break;
202 case M32R_OPERAND_HASH :
eb1b03df 203 print_hash (cd, info, 0, 0|(1<<CGEN_OPERAND_SIGNED), pc, length);
252b5132
RH
204 break;
205 case M32R_OPERAND_HI16 :
206 print_normal (cd, info, fields->f_hi16, 0|(1<<CGEN_OPERAND_SIGN_OPT), pc, length);
207 break;
1fa60b5d
DE
208 case M32R_OPERAND_IMM1 :
209 print_normal (cd, info, fields->f_imm1, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
210 break;
252b5132
RH
211 case M32R_OPERAND_SCR :
212 print_keyword (cd, info, & m32r_cgen_opval_cr_names, fields->f_r2, 0);
213 break;
214 case M32R_OPERAND_SIMM16 :
215 print_normal (cd, info, fields->f_simm16, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
216 break;
217 case M32R_OPERAND_SIMM8 :
218 print_normal (cd, info, fields->f_simm8, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
219 break;
220 case M32R_OPERAND_SLO16 :
221 print_normal (cd, info, fields->f_simm16, 0|(1<<CGEN_OPERAND_SIGNED), pc, length);
222 break;
223 case M32R_OPERAND_SR :
224 print_keyword (cd, info, & m32r_cgen_opval_gr_names, fields->f_r2, 0);
225 break;
226 case M32R_OPERAND_SRC1 :
227 print_keyword (cd, info, & m32r_cgen_opval_gr_names, fields->f_r1, 0);
228 break;
229 case M32R_OPERAND_SRC2 :
230 print_keyword (cd, info, & m32r_cgen_opval_gr_names, fields->f_r2, 0);
231 break;
232 case M32R_OPERAND_UIMM16 :
233 print_normal (cd, info, fields->f_uimm16, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
234 break;
235 case M32R_OPERAND_UIMM24 :
236 print_address (cd, info, fields->f_uimm24, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_ABS_ADDR), pc, length);
237 break;
238 case M32R_OPERAND_UIMM4 :
239 print_normal (cd, info, fields->f_uimm4, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
240 break;
241 case M32R_OPERAND_UIMM5 :
242 print_normal (cd, info, fields->f_uimm5, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
243 break;
244 case M32R_OPERAND_ULO16 :
245 print_normal (cd, info, fields->f_uimm16, 0, pc, length);
246 break;
247
248 default :
249 /* xgettext:c-format */
250 fprintf (stderr, _("Unrecognized field %d while printing insn.\n"),
251 opindex);
252 abort ();
253 }
254}
255
256cgen_print_fn * const m32r_cgen_print_handlers[] =
257{
258 print_insn_normal,
259};
260
261
262void
263m32r_cgen_init_dis (cd)
264 CGEN_CPU_DESC cd;
265{
266 m32r_cgen_init_opcode_table (cd);
267 m32r_cgen_init_ibld_table (cd);
268 cd->print_handlers = & m32r_cgen_print_handlers[0];
269 cd->print_operand = m32r_cgen_print_operand;
270}
271
272\f
273/* Default print handler. */
274
275static void
276print_normal (cd, dis_info, value, attrs, pc, length)
6bb95a0f 277 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
278 PTR dis_info;
279 long value;
280 unsigned int attrs;
fc05c67f
NC
281 bfd_vma pc ATTRIBUTE_UNUSED;
282 int length ATTRIBUTE_UNUSED;
252b5132
RH
283{
284 disassemble_info *info = (disassemble_info *) dis_info;
285
286#ifdef CGEN_PRINT_NORMAL
287 CGEN_PRINT_NORMAL (cd, info, value, attrs, pc, length);
288#endif
289
290 /* Print the operand as directed by the attributes. */
291 if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
292 ; /* nothing to do */
293 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SIGNED))
294 (*info->fprintf_func) (info->stream, "%ld", value);
295 else
296 (*info->fprintf_func) (info->stream, "0x%lx", value);
297}
298
299/* Default address handler. */
300
301static void
302print_address (cd, dis_info, value, attrs, pc, length)
6bb95a0f 303 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
304 PTR dis_info;
305 bfd_vma value;
306 unsigned int attrs;
6bb95a0f
DB
307 bfd_vma pc ATTRIBUTE_UNUSED;
308 int length ATTRIBUTE_UNUSED;
252b5132
RH
309{
310 disassemble_info *info = (disassemble_info *) dis_info;
311
312#ifdef CGEN_PRINT_ADDRESS
313 CGEN_PRINT_ADDRESS (cd, info, value, attrs, pc, length);
314#endif
315
316 /* Print the operand as directed by the attributes. */
317 if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
318 ; /* nothing to do */
319 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_PCREL_ADDR))
320 (*info->print_address_func) (value, info);
321 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_ABS_ADDR))
322 (*info->print_address_func) (value, info);
323 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SIGNED))
324 (*info->fprintf_func) (info->stream, "%ld", (long) value);
325 else
326 (*info->fprintf_func) (info->stream, "0x%lx", (long) value);
327}
328
329/* Keyword print handler. */
330
331static void
332print_keyword (cd, dis_info, keyword_table, value, attrs)
6bb95a0f 333 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
334 PTR dis_info;
335 CGEN_KEYWORD *keyword_table;
336 long value;
6bb95a0f 337 unsigned int attrs ATTRIBUTE_UNUSED;
252b5132
RH
338{
339 disassemble_info *info = (disassemble_info *) dis_info;
340 const CGEN_KEYWORD_ENTRY *ke;
341
342 ke = cgen_keyword_lookup_value (keyword_table, value);
343 if (ke != NULL)
344 (*info->fprintf_func) (info->stream, "%s", ke->name);
345 else
346 (*info->fprintf_func) (info->stream, "???");
347}
348\f
349/* Default insn printer.
350
351 DIS_INFO is defined as `PTR' so the disassembler needn't know anything
352 about disassemble_info. */
353
354static void
355print_insn_normal (cd, dis_info, insn, fields, pc, length)
356 CGEN_CPU_DESC cd;
357 PTR dis_info;
358 const CGEN_INSN *insn;
359 CGEN_FIELDS *fields;
360 bfd_vma pc;
361 int length;
362{
363 const CGEN_SYNTAX *syntax = CGEN_INSN_SYNTAX (insn);
364 disassemble_info *info = (disassemble_info *) dis_info;
b3466c39 365 const CGEN_SYNTAX_CHAR_TYPE *syn;
252b5132
RH
366
367 CGEN_INIT_PRINT (cd);
368
369 for (syn = CGEN_SYNTAX_STRING (syntax); *syn; ++syn)
370 {
371 if (CGEN_SYNTAX_MNEMONIC_P (*syn))
372 {
373 (*info->fprintf_func) (info->stream, "%s", CGEN_INSN_MNEMONIC (insn));
374 continue;
375 }
376 if (CGEN_SYNTAX_CHAR_P (*syn))
377 {
378 (*info->fprintf_func) (info->stream, "%c", CGEN_SYNTAX_CHAR (*syn));
379 continue;
380 }
381
382 /* We have an operand. */
383 m32r_cgen_print_operand (cd, CGEN_SYNTAX_FIELD (*syn), info,
384 fields, CGEN_INSN_ATTRS (insn), pc, length);
385 }
386}
387\f
6bb95a0f
DB
388/* Subroutine of print_insn. Reads an insn into the given buffers and updates
389 the extract info.
390 Returns 0 if all is well, non-zero otherwise. */
0e2ee3ca 391
252b5132 392static int
6bb95a0f 393read_insn (cd, pc, info, buf, buflen, ex_info, insn_value)
fc05c67f 394 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
395 bfd_vma pc;
396 disassemble_info *info;
397 char *buf;
398 int buflen;
6bb95a0f
DB
399 CGEN_EXTRACT_INFO *ex_info;
400 unsigned long *insn_value;
252b5132 401{
6bb95a0f
DB
402 int status = (*info->read_memory_func) (pc, buf, buflen, info);
403 if (status != 0)
404 {
405 (*info->memory_error_func) (status, pc, info);
406 return -1;
407 }
252b5132 408
6bb95a0f
DB
409 ex_info->dis_info = info;
410 ex_info->valid = (1 << buflen) - 1;
411 ex_info->insn_bytes = buf;
252b5132 412
b3466c39 413 *insn_value = bfd_get_bits (buf, buflen * 8, info->endian == BFD_ENDIAN_BIG);
6bb95a0f
DB
414 return 0;
415}
416
417/* Utility to print an insn.
418 BUF is the base part of the insn, target byte order, BUFLEN bytes long.
419 The result is the size of the insn in bytes or zero for an unknown insn
420 or -1 if an error occurs fetching data (memory_error_func will have
421 been called). */
422
423static int
424print_insn (cd, pc, info, buf, buflen)
425 CGEN_CPU_DESC cd;
426 bfd_vma pc;
427 disassemble_info *info;
428 char *buf;
0e2ee3ca 429 unsigned int buflen;
6bb95a0f 430{
fc7bc883 431 CGEN_INSN_INT insn_value;
6bb95a0f
DB
432 const CGEN_INSN_LIST *insn_list;
433 CGEN_EXTRACT_INFO ex_info;
b3466c39 434
52646233 435 /* Extract base part of instruction, just in case CGEN_DIS_* uses it. */
fc7bc883 436 insn_value = cgen_get_insn_value (cd, buf, buflen * 8);
52646233
FCE
437
438 /* Fill in ex_info fields like read_insn would. Don't actually call
439 read_insn, since the incoming buffer is already read (and possibly
440 modified a la m32r). */
441 ex_info.valid = (1 << buflen) - 1;
442 ex_info.dis_info = info;
443 ex_info.insn_bytes = buf;
6bb95a0f 444
252b5132
RH
445 /* The instructions are stored in hash lists.
446 Pick the first one and keep trying until we find the right one. */
447
448 insn_list = CGEN_DIS_LOOKUP_INSN (cd, buf, insn_value);
449 while (insn_list != NULL)
450 {
451 const CGEN_INSN *insn = insn_list->insn;
452 CGEN_FIELDS fields;
453 int length;
52646233 454 unsigned long insn_value_cropped;
252b5132 455
cfcdbe97 456#ifdef CGEN_VALIDATE_INSN_SUPPORTED
0e2ee3ca 457 /* Not needed as insn shouldn't be in hash lists if not supported. */
252b5132
RH
458 /* Supported by this cpu? */
459 if (! m32r_cgen_insn_supported (cd, insn))
cfcdbe97
AH
460 {
461 insn_list = CGEN_DIS_NEXT_INSN (insn_list);
462 continue;
463 }
252b5132
RH
464#endif
465
466 /* Basic bit mask must be correct. */
467 /* ??? May wish to allow target to defer this check until the extract
468 handler. */
52646233
FCE
469
470 /* Base size may exceed this instruction's size. Extract the
471 relevant part from the buffer. */
0e2ee3ca
NC
472 if ((unsigned) (CGEN_INSN_BITSIZE (insn) / 8) < buflen &&
473 (unsigned) (CGEN_INSN_BITSIZE (insn) / 8) <= sizeof (unsigned long))
52646233
FCE
474 insn_value_cropped = bfd_get_bits (buf, CGEN_INSN_BITSIZE (insn),
475 info->endian == BFD_ENDIAN_BIG);
476 else
477 insn_value_cropped = insn_value;
478
479 if ((insn_value_cropped & CGEN_INSN_BASE_MASK (insn))
252b5132
RH
480 == CGEN_INSN_BASE_VALUE (insn))
481 {
482 /* Printing is handled in two passes. The first pass parses the
483 machine insn and extracts the fields. The second pass prints
484 them. */
485
54faae25
NC
486 /* Make sure the entire insn is loaded into insn_value, if it
487 can fit. */
0e2ee3ca
NC
488 if (((unsigned) CGEN_INSN_BITSIZE (insn) > cd->base_insn_bitsize) &&
489 (unsigned) (CGEN_INSN_BITSIZE (insn) / 8) <= sizeof (unsigned long))
6bb95a0f
DB
490 {
491 unsigned long full_insn_value;
492 int rc = read_insn (cd, pc, info, buf,
493 CGEN_INSN_BITSIZE (insn) / 8,
494 & ex_info, & full_insn_value);
495 if (rc != 0)
496 return rc;
497 length = CGEN_EXTRACT_FN (cd, insn)
498 (cd, insn, &ex_info, full_insn_value, &fields, pc);
499 }
500 else
54faae25 501 length = CGEN_EXTRACT_FN (cd, insn)
fc7bc883 502 (cd, insn, &ex_info, insn_value_cropped, &fields, pc);
b3466c39 503
252b5132
RH
504 /* length < 0 -> error */
505 if (length < 0)
506 return length;
507 if (length > 0)
508 {
509 CGEN_PRINT_FN (cd, insn) (cd, info, insn, &fields, pc, length);
510 /* length is in bits, result is in bytes */
511 return length / 8;
512 }
513 }
514
515 insn_list = CGEN_DIS_NEXT_INSN (insn_list);
516 }
517
518 return 0;
519}
520
521/* Default value for CGEN_PRINT_INSN.
522 The result is the size of the insn in bytes or zero for an unknown insn
523 or -1 if an error occured fetching bytes. */
524
525#ifndef CGEN_PRINT_INSN
526#define CGEN_PRINT_INSN default_print_insn
0e2ee3ca 527#endif
252b5132
RH
528
529static int
530default_print_insn (cd, pc, info)
531 CGEN_CPU_DESC cd;
532 bfd_vma pc;
533 disassemble_info *info;
534{
535 char buf[CGEN_MAX_INSN_SIZE];
fc7bc883 536 int buflen;
252b5132
RH
537 int status;
538
fc7bc883
RH
539 /* Attempt to read the base part of the insn. */
540 buflen = cd->base_insn_bitsize / 8;
541 status = (*info->read_memory_func) (pc, buf, buflen, info);
542
543 /* Try again with the minimum part, if min < base. */
544 if (status != 0 && (cd->min_insn_bitsize < cd->base_insn_bitsize))
545 {
546 buflen = cd->min_insn_bitsize / 8;
547 status = (*info->read_memory_func) (pc, buf, buflen, info);
548 }
252b5132 549
252b5132
RH
550 if (status != 0)
551 {
552 (*info->memory_error_func) (status, pc, info);
553 return -1;
554 }
555
fc7bc883 556 return print_insn (cd, pc, info, buf, buflen);
252b5132
RH
557}
558
559/* Main entry point.
560 Print one instruction from PC on INFO->STREAM.
561 Return the size of the instruction (in bytes). */
562
563int
564print_insn_m32r (pc, info)
565 bfd_vma pc;
566 disassemble_info *info;
567{
568 static CGEN_CPU_DESC cd = 0;
6bb95a0f
DB
569 static int prev_isa;
570 static int prev_mach;
571 static int prev_endian;
252b5132
RH
572 int length;
573 int isa,mach;
574 int endian = (info->endian == BFD_ENDIAN_BIG
575 ? CGEN_ENDIAN_BIG
576 : CGEN_ENDIAN_LITTLE);
577 enum bfd_architecture arch;
578
579 /* ??? gdb will set mach but leave the architecture as "unknown" */
580#ifndef CGEN_BFD_ARCH
581#define CGEN_BFD_ARCH bfd_arch_m32r
582#endif
583 arch = info->arch;
584 if (arch == bfd_arch_unknown)
585 arch = CGEN_BFD_ARCH;
27fca2d8
PM
586
587 /* There's no standard way to compute the machine or isa number
252b5132 588 so we leave it to the target. */
27fca2d8
PM
589#ifdef CGEN_COMPUTE_MACH
590 mach = CGEN_COMPUTE_MACH (info);
591#else
592 mach = info->mach;
593#endif
594
252b5132
RH
595#ifdef CGEN_COMPUTE_ISA
596 isa = CGEN_COMPUTE_ISA (info);
597#else
598 isa = 0;
599#endif
600
252b5132
RH
601 /* If we've switched cpu's, close the current table and open a new one. */
602 if (cd
603 && (isa != prev_isa
604 || mach != prev_mach
605 || endian != prev_endian))
606 {
607 m32r_cgen_cpu_close (cd);
608 cd = 0;
609 }
610
611 /* If we haven't initialized yet, initialize the opcode table. */
612 if (! cd)
613 {
614 const bfd_arch_info_type *arch_type = bfd_lookup_arch (arch, mach);
615 const char *mach_name;
616
617 if (!arch_type)
618 abort ();
619 mach_name = arch_type->printable_name;
620
621 prev_isa = isa;
622 prev_mach = mach;
623 prev_endian = endian;
624 cd = m32r_cgen_cpu_open (CGEN_CPU_OPEN_ISAS, prev_isa,
625 CGEN_CPU_OPEN_BFDMACH, mach_name,
626 CGEN_CPU_OPEN_ENDIAN, prev_endian,
627 CGEN_CPU_OPEN_END);
628 if (!cd)
629 abort ();
630 m32r_cgen_init_dis (cd);
631 }
632
633 /* We try to have as much common code as possible.
634 But at this point some targets need to take over. */
635 /* ??? Some targets may need a hook elsewhere. Try to avoid this,
636 but if not possible try to move this hook elsewhere rather than
637 have two hooks. */
638 length = CGEN_PRINT_INSN (cd, pc, info);
639 if (length > 0)
640 return length;
641 if (length < 0)
642 return -1;
643
644 (*info->fprintf_func) (info->stream, UNKNOWN_INSN_MSG);
645 return cd->default_insn_bitsize / 8;
646}