* cgen.h (struct cgen_maybe_multi_ifield): Add "const PTR p" to union.
[deliverable/binutils-gdb.git] / opcodes / fr30-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 "fr30-desc.h"
35#include "fr30-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
0e2ee3ca
NC
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));
50static int print_insn
51 PARAMS ((CGEN_CPU_DESC, bfd_vma, disassemble_info *, char *, unsigned));
52static int default_print_insn
53 PARAMS ((CGEN_CPU_DESC, bfd_vma, disassemble_info *));
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_register_list
62 PARAMS ((PTR, long, long, int));
63static void print_hi_register_list_ld
64 PARAMS ((CGEN_CPU_DESC, PTR, long, unsigned, bfd_vma, int));
65static void print_low_register_list_ld
66 PARAMS ((CGEN_CPU_DESC, PTR, long, unsigned, bfd_vma, int));
67static void print_hi_register_list_st
68 PARAMS ((CGEN_CPU_DESC, PTR, long, unsigned, bfd_vma, int));
69static void print_low_register_list_st
70 PARAMS ((CGEN_CPU_DESC, PTR, long, unsigned, bfd_vma, int));
71static void print_m4
72 PARAMS ((CGEN_CPU_DESC, PTR, long, unsigned, bfd_vma, int));
252b5132
RH
73
74static void
75print_register_list (dis_info, value, offset, load_store)
76 PTR dis_info;
77 long value;
78 long offset;
79 int load_store; /* 0 == load, 1 == store */
80{
81 disassemble_info *info = dis_info;
82 int mask;
83 int index = 0;
84 char* comma = "";
85
86 if (load_store)
87 mask = 0x80;
88 else
89 mask = 1;
90
91 if (value & mask)
92 {
93 (*info->fprintf_func) (info->stream, "r%i", index + offset);
94 comma = ",";
95 }
96
97 for (index = 1; index <= 7; ++index)
98 {
99 if (load_store)
100 mask >>= 1;
101 else
102 mask <<= 1;
103
104 if (value & mask)
105 {
106 (*info->fprintf_func) (info->stream, "%sr%i", comma, index + offset);
107 comma = ",";
108 }
109 }
110}
111
112static void
113print_hi_register_list_ld (cd, dis_info, value, attrs, pc, length)
9a2e995d 114 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
115 PTR dis_info;
116 long value;
9a2e995d
GH
117 unsigned int attrs ATTRIBUTE_UNUSED;
118 bfd_vma pc ATTRIBUTE_UNUSED;
119 int length ATTRIBUTE_UNUSED;
252b5132
RH
120{
121 print_register_list (dis_info, value, 8, 0/*load*/);
122}
123
124static void
125print_low_register_list_ld (cd, dis_info, value, attrs, pc, length)
9a2e995d 126 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
127 PTR dis_info;
128 long value;
9a2e995d
GH
129 unsigned int attrs ATTRIBUTE_UNUSED;
130 bfd_vma pc ATTRIBUTE_UNUSED;
131 int length ATTRIBUTE_UNUSED;
252b5132
RH
132{
133 print_register_list (dis_info, value, 0, 0/*load*/);
134}
135
136static void
137print_hi_register_list_st (cd, dis_info, value, attrs, pc, length)
9a2e995d 138 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
139 PTR dis_info;
140 long value;
9a2e995d
GH
141 unsigned int attrs ATTRIBUTE_UNUSED;
142 bfd_vma pc ATTRIBUTE_UNUSED;
143 int length ATTRIBUTE_UNUSED;
252b5132
RH
144{
145 print_register_list (dis_info, value, 8, 1/*store*/);
146}
147
148static void
149print_low_register_list_st (cd, dis_info, value, attrs, pc, length)
9a2e995d 150 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
151 PTR dis_info;
152 long value;
9a2e995d
GH
153 unsigned int attrs ATTRIBUTE_UNUSED;
154 bfd_vma pc ATTRIBUTE_UNUSED;
155 int length ATTRIBUTE_UNUSED;
252b5132
RH
156{
157 print_register_list (dis_info, value, 0, 1/*store*/);
158}
159
160static void
161print_m4 (cd, dis_info, value, attrs, pc, length)
9a2e995d 162 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
163 PTR dis_info;
164 long value;
9a2e995d
GH
165 unsigned int attrs ATTRIBUTE_UNUSED;
166 bfd_vma pc ATTRIBUTE_UNUSED;
167 int length ATTRIBUTE_UNUSED;
252b5132
RH
168{
169 disassemble_info *info = (disassemble_info *) dis_info;
170 (*info->fprintf_func) (info->stream, "%ld", value);
171}
172/* -- */
173
0e2ee3ca
NC
174void fr30_cgen_print_operand
175 PARAMS ((CGEN_CPU_DESC, int, PTR, CGEN_FIELDS *,
176 void const *, bfd_vma, int));
177
252b5132
RH
178/* Main entry point for printing operands.
179 XINFO is a `void *' and not a `disassemble_info *' to not put a requirement
180 of dis-asm.h on cgen.h.
181
182 This function is basically just a big switch statement. Earlier versions
183 used tables to look up the function to use, but
184 - if the table contains both assembler and disassembler functions then
185 the disassembler contains much of the assembler and vice-versa,
186 - there's a lot of inlining possibilities as things grow,
187 - using a switch statement avoids the function call overhead.
188
189 This function could be moved into `print_insn_normal', but keeping it
190 separate makes clear the interface between `print_insn_normal' and each of
9a2e995d 191 the handlers. */
252b5132
RH
192
193void
194fr30_cgen_print_operand (cd, opindex, xinfo, fields, attrs, pc, length)
195 CGEN_CPU_DESC cd;
196 int opindex;
197 PTR xinfo;
198 CGEN_FIELDS *fields;
d5b2f4d6 199 void const *attrs ATTRIBUTE_UNUSED;
252b5132
RH
200 bfd_vma pc;
201 int length;
202{
203 disassemble_info *info = (disassemble_info *) xinfo;
204
205 switch (opindex)
206 {
207 case FR30_OPERAND_CRI :
208 print_keyword (cd, info, & fr30_cgen_opval_cr_names, fields->f_CRi, 0);
209 break;
210 case FR30_OPERAND_CRJ :
211 print_keyword (cd, info, & fr30_cgen_opval_cr_names, fields->f_CRj, 0);
212 break;
213 case FR30_OPERAND_R13 :
eb1b03df 214 print_keyword (cd, info, & fr30_cgen_opval_h_r13, 0, 0);
252b5132
RH
215 break;
216 case FR30_OPERAND_R14 :
eb1b03df 217 print_keyword (cd, info, & fr30_cgen_opval_h_r14, 0, 0);
252b5132
RH
218 break;
219 case FR30_OPERAND_R15 :
eb1b03df 220 print_keyword (cd, info, & fr30_cgen_opval_h_r15, 0, 0);
252b5132
RH
221 break;
222 case FR30_OPERAND_RI :
223 print_keyword (cd, info, & fr30_cgen_opval_gr_names, fields->f_Ri, 0);
224 break;
225 case FR30_OPERAND_RIC :
226 print_keyword (cd, info, & fr30_cgen_opval_gr_names, fields->f_Ric, 0);
227 break;
228 case FR30_OPERAND_RJ :
229 print_keyword (cd, info, & fr30_cgen_opval_gr_names, fields->f_Rj, 0);
230 break;
231 case FR30_OPERAND_RJC :
232 print_keyword (cd, info, & fr30_cgen_opval_gr_names, fields->f_Rjc, 0);
233 break;
234 case FR30_OPERAND_RS1 :
235 print_keyword (cd, info, & fr30_cgen_opval_dr_names, fields->f_Rs1, 0);
236 break;
237 case FR30_OPERAND_RS2 :
238 print_keyword (cd, info, & fr30_cgen_opval_dr_names, fields->f_Rs2, 0);
239 break;
240 case FR30_OPERAND_CC :
241 print_normal (cd, info, fields->f_cc, 0, pc, length);
242 break;
243 case FR30_OPERAND_CCC :
244 print_normal (cd, info, fields->f_ccc, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
245 break;
246 case FR30_OPERAND_DIR10 :
247 print_normal (cd, info, fields->f_dir10, 0, pc, length);
248 break;
249 case FR30_OPERAND_DIR8 :
250 print_normal (cd, info, fields->f_dir8, 0, pc, length);
251 break;
252 case FR30_OPERAND_DIR9 :
253 print_normal (cd, info, fields->f_dir9, 0, pc, length);
254 break;
255 case FR30_OPERAND_DISP10 :
256 print_normal (cd, info, fields->f_disp10, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
257 break;
258 case FR30_OPERAND_DISP8 :
259 print_normal (cd, info, fields->f_disp8, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
260 break;
261 case FR30_OPERAND_DISP9 :
262 print_normal (cd, info, fields->f_disp9, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
263 break;
264 case FR30_OPERAND_I20 :
265 print_normal (cd, info, fields->f_i20, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_VIRTUAL), pc, length);
266 break;
267 case FR30_OPERAND_I32 :
268 print_normal (cd, info, fields->f_i32, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_SIGN_OPT), pc, length);
269 break;
270 case FR30_OPERAND_I8 :
271 print_normal (cd, info, fields->f_i8, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
272 break;
273 case FR30_OPERAND_LABEL12 :
274 print_address (cd, info, fields->f_rel12, 0|(1<<CGEN_OPERAND_PCREL_ADDR), pc, length);
275 break;
276 case FR30_OPERAND_LABEL9 :
277 print_address (cd, info, fields->f_rel9, 0|(1<<CGEN_OPERAND_PCREL_ADDR), pc, length);
278 break;
279 case FR30_OPERAND_M4 :
280 print_m4 (cd, info, fields->f_m4, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
281 break;
282 case FR30_OPERAND_PS :
eb1b03df 283 print_keyword (cd, info, & fr30_cgen_opval_h_ps, 0, 0);
252b5132
RH
284 break;
285 case FR30_OPERAND_REGLIST_HI_LD :
286 print_hi_register_list_ld (cd, info, fields->f_reglist_hi_ld, 0, pc, length);
287 break;
288 case FR30_OPERAND_REGLIST_HI_ST :
289 print_hi_register_list_st (cd, info, fields->f_reglist_hi_st, 0, pc, length);
290 break;
291 case FR30_OPERAND_REGLIST_LOW_LD :
292 print_low_register_list_ld (cd, info, fields->f_reglist_low_ld, 0, pc, length);
293 break;
294 case FR30_OPERAND_REGLIST_LOW_ST :
295 print_low_register_list_st (cd, info, fields->f_reglist_low_st, 0, pc, length);
296 break;
297 case FR30_OPERAND_S10 :
298 print_normal (cd, info, fields->f_s10, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
299 break;
300 case FR30_OPERAND_U10 :
301 print_normal (cd, info, fields->f_u10, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
302 break;
303 case FR30_OPERAND_U4 :
304 print_normal (cd, info, fields->f_u4, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
305 break;
306 case FR30_OPERAND_U4C :
307 print_normal (cd, info, fields->f_u4c, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
308 break;
309 case FR30_OPERAND_U8 :
310 print_normal (cd, info, fields->f_u8, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
311 break;
312 case FR30_OPERAND_UDISP6 :
313 print_normal (cd, info, fields->f_udisp6, 0|(1<<CGEN_OPERAND_HASH_PREFIX), pc, length);
314 break;
315
316 default :
317 /* xgettext:c-format */
318 fprintf (stderr, _("Unrecognized field %d while printing insn.\n"),
319 opindex);
320 abort ();
321 }
322}
323
324cgen_print_fn * const fr30_cgen_print_handlers[] =
325{
326 print_insn_normal,
327};
328
329
330void
331fr30_cgen_init_dis (cd)
332 CGEN_CPU_DESC cd;
333{
334 fr30_cgen_init_opcode_table (cd);
335 fr30_cgen_init_ibld_table (cd);
336 cd->print_handlers = & fr30_cgen_print_handlers[0];
337 cd->print_operand = fr30_cgen_print_operand;
338}
339
340\f
341/* Default print handler. */
342
343static void
344print_normal (cd, dis_info, value, attrs, pc, length)
6bb95a0f 345 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
346 PTR dis_info;
347 long value;
348 unsigned int attrs;
6bb95a0f
DB
349 bfd_vma pc ATTRIBUTE_UNUSED;
350 int length ATTRIBUTE_UNUSED;
252b5132
RH
351{
352 disassemble_info *info = (disassemble_info *) dis_info;
353
354#ifdef CGEN_PRINT_NORMAL
355 CGEN_PRINT_NORMAL (cd, info, value, attrs, pc, length);
356#endif
357
358 /* Print the operand as directed by the attributes. */
359 if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
360 ; /* nothing to do */
361 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SIGNED))
362 (*info->fprintf_func) (info->stream, "%ld", value);
363 else
364 (*info->fprintf_func) (info->stream, "0x%lx", value);
365}
366
367/* Default address handler. */
368
369static void
370print_address (cd, dis_info, value, attrs, pc, length)
6bb95a0f 371 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
372 PTR dis_info;
373 bfd_vma value;
374 unsigned int attrs;
6bb95a0f
DB
375 bfd_vma pc ATTRIBUTE_UNUSED;
376 int length ATTRIBUTE_UNUSED;
252b5132
RH
377{
378 disassemble_info *info = (disassemble_info *) dis_info;
379
380#ifdef CGEN_PRINT_ADDRESS
381 CGEN_PRINT_ADDRESS (cd, info, value, attrs, pc, length);
382#endif
383
384 /* Print the operand as directed by the attributes. */
385 if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
386 ; /* nothing to do */
387 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_PCREL_ADDR))
388 (*info->print_address_func) (value, info);
389 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_ABS_ADDR))
390 (*info->print_address_func) (value, info);
391 else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SIGNED))
392 (*info->fprintf_func) (info->stream, "%ld", (long) value);
393 else
394 (*info->fprintf_func) (info->stream, "0x%lx", (long) value);
395}
396
397/* Keyword print handler. */
398
399static void
400print_keyword (cd, dis_info, keyword_table, value, attrs)
6bb95a0f 401 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
402 PTR dis_info;
403 CGEN_KEYWORD *keyword_table;
404 long value;
6bb95a0f 405 unsigned int attrs ATTRIBUTE_UNUSED;
252b5132
RH
406{
407 disassemble_info *info = (disassemble_info *) dis_info;
408 const CGEN_KEYWORD_ENTRY *ke;
409
410 ke = cgen_keyword_lookup_value (keyword_table, value);
411 if (ke != NULL)
412 (*info->fprintf_func) (info->stream, "%s", ke->name);
413 else
414 (*info->fprintf_func) (info->stream, "???");
415}
416\f
417/* Default insn printer.
418
419 DIS_INFO is defined as `PTR' so the disassembler needn't know anything
420 about disassemble_info. */
421
422static void
423print_insn_normal (cd, dis_info, insn, fields, pc, length)
424 CGEN_CPU_DESC cd;
425 PTR dis_info;
426 const CGEN_INSN *insn;
427 CGEN_FIELDS *fields;
428 bfd_vma pc;
429 int length;
430{
431 const CGEN_SYNTAX *syntax = CGEN_INSN_SYNTAX (insn);
432 disassemble_info *info = (disassemble_info *) dis_info;
b3466c39 433 const CGEN_SYNTAX_CHAR_TYPE *syn;
252b5132
RH
434
435 CGEN_INIT_PRINT (cd);
436
437 for (syn = CGEN_SYNTAX_STRING (syntax); *syn; ++syn)
438 {
439 if (CGEN_SYNTAX_MNEMONIC_P (*syn))
440 {
441 (*info->fprintf_func) (info->stream, "%s", CGEN_INSN_MNEMONIC (insn));
442 continue;
443 }
444 if (CGEN_SYNTAX_CHAR_P (*syn))
445 {
446 (*info->fprintf_func) (info->stream, "%c", CGEN_SYNTAX_CHAR (*syn));
447 continue;
448 }
449
450 /* We have an operand. */
451 fr30_cgen_print_operand (cd, CGEN_SYNTAX_FIELD (*syn), info,
452 fields, CGEN_INSN_ATTRS (insn), pc, length);
453 }
454}
455\f
6bb95a0f
DB
456/* Subroutine of print_insn. Reads an insn into the given buffers and updates
457 the extract info.
458 Returns 0 if all is well, non-zero otherwise. */
0e2ee3ca 459
252b5132 460static int
6bb95a0f 461read_insn (cd, pc, info, buf, buflen, ex_info, insn_value)
d5b2f4d6 462 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132
RH
463 bfd_vma pc;
464 disassemble_info *info;
465 char *buf;
466 int buflen;
6bb95a0f
DB
467 CGEN_EXTRACT_INFO *ex_info;
468 unsigned long *insn_value;
252b5132 469{
6bb95a0f
DB
470 int status = (*info->read_memory_func) (pc, buf, buflen, info);
471 if (status != 0)
472 {
473 (*info->memory_error_func) (status, pc, info);
474 return -1;
475 }
252b5132 476
6bb95a0f
DB
477 ex_info->dis_info = info;
478 ex_info->valid = (1 << buflen) - 1;
479 ex_info->insn_bytes = buf;
252b5132 480
b3466c39 481 *insn_value = bfd_get_bits (buf, buflen * 8, info->endian == BFD_ENDIAN_BIG);
6bb95a0f
DB
482 return 0;
483}
484
485/* Utility to print an insn.
486 BUF is the base part of the insn, target byte order, BUFLEN bytes long.
487 The result is the size of the insn in bytes or zero for an unknown insn
488 or -1 if an error occurs fetching data (memory_error_func will have
489 been called). */
490
491static int
492print_insn (cd, pc, info, buf, buflen)
493 CGEN_CPU_DESC cd;
494 bfd_vma pc;
495 disassemble_info *info;
496 char *buf;
0e2ee3ca 497 unsigned int buflen;
6bb95a0f 498{
fc7bc883 499 CGEN_INSN_INT insn_value;
6bb95a0f
DB
500 const CGEN_INSN_LIST *insn_list;
501 CGEN_EXTRACT_INFO ex_info;
2e1ef6b4 502 int basesize;
6bb95a0f 503
fc7bc883 504 /* Extract base part of instruction, just in case CGEN_DIS_* uses it. */
2e1ef6b4
DB
505 basesize = cd->base_insn_bitsize < buflen * 8 ?
506 cd->base_insn_bitsize : buflen * 8;
507 insn_value = cgen_get_insn_value (cd, buf, basesize);
508
fc7bc883
RH
509
510 /* Fill in ex_info fields like read_insn would. Don't actually call
511 read_insn, since the incoming buffer is already read (and possibly
512 modified a la m32r). */
513 ex_info.valid = (1 << buflen) - 1;
514 ex_info.dis_info = info;
515 ex_info.insn_bytes = buf;
6bb95a0f 516
252b5132
RH
517 /* The instructions are stored in hash lists.
518 Pick the first one and keep trying until we find the right one. */
519
520 insn_list = CGEN_DIS_LOOKUP_INSN (cd, buf, insn_value);
521 while (insn_list != NULL)
522 {
523 const CGEN_INSN *insn = insn_list->insn;
524 CGEN_FIELDS fields;
525 int length;
fc7bc883 526 unsigned long insn_value_cropped;
252b5132 527
6bb95a0f 528#ifdef CGEN_VALIDATE_INSN_SUPPORTED
0e2ee3ca 529 /* Not needed as insn shouldn't be in hash lists if not supported. */
252b5132
RH
530 /* Supported by this cpu? */
531 if (! fr30_cgen_insn_supported (cd, insn))
6bb95a0f
DB
532 {
533 insn_list = CGEN_DIS_NEXT_INSN (insn_list);
534 continue;
535 }
252b5132
RH
536#endif
537
538 /* Basic bit mask must be correct. */
539 /* ??? May wish to allow target to defer this check until the extract
540 handler. */
fc7bc883
RH
541
542 /* Base size may exceed this instruction's size. Extract the
543 relevant part from the buffer. */
0e2ee3ca 544 if ((unsigned) (CGEN_INSN_BITSIZE (insn) / 8) < buflen &&
d5b2f4d6 545 (unsigned) (CGEN_INSN_BITSIZE (insn) / 8) <= sizeof (unsigned long))
fc7bc883
RH
546 insn_value_cropped = bfd_get_bits (buf, CGEN_INSN_BITSIZE (insn),
547 info->endian == BFD_ENDIAN_BIG);
548 else
549 insn_value_cropped = insn_value;
550
551 if ((insn_value_cropped & CGEN_INSN_BASE_MASK (insn))
252b5132
RH
552 == CGEN_INSN_BASE_VALUE (insn))
553 {
554 /* Printing is handled in two passes. The first pass parses the
555 machine insn and extracts the fields. The second pass prints
556 them. */
557
708b8a71
NC
558 /* Make sure the entire insn is loaded into insn_value, if it
559 can fit. */
0e2ee3ca 560 if (((unsigned) CGEN_INSN_BITSIZE (insn) > cd->base_insn_bitsize) &&
d5b2f4d6 561 (unsigned) (CGEN_INSN_BITSIZE (insn) / 8) <= sizeof (unsigned long))
6bb95a0f
DB
562 {
563 unsigned long full_insn_value;
564 int rc = read_insn (cd, pc, info, buf,
565 CGEN_INSN_BITSIZE (insn) / 8,
566 & ex_info, & full_insn_value);
567 if (rc != 0)
568 return rc;
569 length = CGEN_EXTRACT_FN (cd, insn)
570 (cd, insn, &ex_info, full_insn_value, &fields, pc);
571 }
572 else
708b8a71 573 length = CGEN_EXTRACT_FN (cd, insn)
fc7bc883 574 (cd, insn, &ex_info, insn_value_cropped, &fields, pc);
6bb95a0f 575
252b5132
RH
576 /* length < 0 -> error */
577 if (length < 0)
578 return length;
579 if (length > 0)
580 {
581 CGEN_PRINT_FN (cd, insn) (cd, info, insn, &fields, pc, length);
582 /* length is in bits, result is in bytes */
583 return length / 8;
584 }
585 }
586
587 insn_list = CGEN_DIS_NEXT_INSN (insn_list);
588 }
589
590 return 0;
591}
592
593/* Default value for CGEN_PRINT_INSN.
594 The result is the size of the insn in bytes or zero for an unknown insn
595 or -1 if an error occured fetching bytes. */
596
597#ifndef CGEN_PRINT_INSN
598#define CGEN_PRINT_INSN default_print_insn
599#endif
600
601static int
602default_print_insn (cd, pc, info)
603 CGEN_CPU_DESC cd;
604 bfd_vma pc;
605 disassemble_info *info;
606{
607 char buf[CGEN_MAX_INSN_SIZE];
fc7bc883 608 int buflen;
252b5132
RH
609 int status;
610
fc7bc883
RH
611 /* Attempt to read the base part of the insn. */
612 buflen = cd->base_insn_bitsize / 8;
613 status = (*info->read_memory_func) (pc, buf, buflen, info);
614
615 /* Try again with the minimum part, if min < base. */
616 if (status != 0 && (cd->min_insn_bitsize < cd->base_insn_bitsize))
617 {
618 buflen = cd->min_insn_bitsize / 8;
619 status = (*info->read_memory_func) (pc, buf, buflen, info);
620 }
252b5132 621
252b5132
RH
622 if (status != 0)
623 {
624 (*info->memory_error_func) (status, pc, info);
625 return -1;
626 }
627
fc7bc883 628 return print_insn (cd, pc, info, buf, buflen);
252b5132
RH
629}
630
631/* Main entry point.
632 Print one instruction from PC on INFO->STREAM.
633 Return the size of the instruction (in bytes). */
634
a978a3e5
NC
635typedef struct cpu_desc_list {
636 struct cpu_desc_list *next;
637 int isa;
638 int mach;
639 int endian;
640 CGEN_CPU_DESC cd;
641} cpu_desc_list;
642
252b5132
RH
643int
644print_insn_fr30 (pc, info)
645 bfd_vma pc;
646 disassemble_info *info;
647{
a978a3e5
NC
648 static cpu_desc_list *cd_list = 0;
649 cpu_desc_list *cl = 0;
252b5132 650 static CGEN_CPU_DESC cd = 0;
6bb95a0f
DB
651 static int prev_isa;
652 static int prev_mach;
653 static int prev_endian;
252b5132
RH
654 int length;
655 int isa,mach;
656 int endian = (info->endian == BFD_ENDIAN_BIG
657 ? CGEN_ENDIAN_BIG
658 : CGEN_ENDIAN_LITTLE);
659 enum bfd_architecture arch;
660
661 /* ??? gdb will set mach but leave the architecture as "unknown" */
662#ifndef CGEN_BFD_ARCH
663#define CGEN_BFD_ARCH bfd_arch_fr30
664#endif
665 arch = info->arch;
666 if (arch == bfd_arch_unknown)
667 arch = CGEN_BFD_ARCH;
27fca2d8
PM
668
669 /* There's no standard way to compute the machine or isa number
252b5132 670 so we leave it to the target. */
27fca2d8
PM
671#ifdef CGEN_COMPUTE_MACH
672 mach = CGEN_COMPUTE_MACH (info);
673#else
674 mach = info->mach;
675#endif
676
252b5132
RH
677#ifdef CGEN_COMPUTE_ISA
678 isa = CGEN_COMPUTE_ISA (info);
679#else
a978a3e5 680 isa = info->insn_sets;
252b5132
RH
681#endif
682
a978a3e5 683 /* If we've switched cpu's, try to find a handle we've used before */
252b5132
RH
684 if (cd
685 && (isa != prev_isa
686 || mach != prev_mach
687 || endian != prev_endian))
688 {
252b5132 689 cd = 0;
a978a3e5
NC
690 for (cl = cd_list; cl; cl = cl->next)
691 {
692 if (cl->isa == isa &&
693 cl->mach == mach &&
694 cl->endian == endian)
695 {
696 cd = cl->cd;
697 break;
698 }
699 }
700 }
252b5132
RH
701
702 /* If we haven't initialized yet, initialize the opcode table. */
703 if (! cd)
704 {
705 const bfd_arch_info_type *arch_type = bfd_lookup_arch (arch, mach);
706 const char *mach_name;
707
708 if (!arch_type)
709 abort ();
710 mach_name = arch_type->printable_name;
711
712 prev_isa = isa;
713 prev_mach = mach;
714 prev_endian = endian;
715 cd = fr30_cgen_cpu_open (CGEN_CPU_OPEN_ISAS, prev_isa,
716 CGEN_CPU_OPEN_BFDMACH, mach_name,
717 CGEN_CPU_OPEN_ENDIAN, prev_endian,
718 CGEN_CPU_OPEN_END);
719 if (!cd)
720 abort ();
a978a3e5
NC
721
722 /* save this away for future reference */
723 cl = xmalloc (sizeof (struct cpu_desc_list));
724 cl->cd = cd;
725 cl->isa = isa;
726 cl->mach = mach;
727 cl->endian = endian;
728 cl->next = cd_list;
729 cd_list = cl;
730
252b5132
RH
731 fr30_cgen_init_dis (cd);
732 }
733
734 /* We try to have as much common code as possible.
735 But at this point some targets need to take over. */
736 /* ??? Some targets may need a hook elsewhere. Try to avoid this,
737 but if not possible try to move this hook elsewhere rather than
738 have two hooks. */
739 length = CGEN_PRINT_INSN (cd, pc, info);
740 if (length > 0)
741 return length;
742 if (length < 0)
743 return -1;
744
745 (*info->fprintf_func) (info->stream, UNKNOWN_INSN_MSG);
746 return cd->default_insn_bitsize / 8;
747}
This page took 0.199762 seconds and 4 git commands to generate.