2004-09-12 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / opcodes / tic4x-dis.c
CommitLineData
026df7c5
NC
1/* Print instructions for the Texas TMS320C[34]X, for GDB and GNU Binutils.
2
be33c5dd 3 Copyright 2002, 2003 Free Software Foundation, Inc.
026df7c5
NC
4
5 Contributed by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz)
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21#include <math.h>
22#include "libiberty.h"
23#include "dis-asm.h"
24#include "opcode/tic4x.h"
25
be33c5dd 26#define TIC4X_DEBUG 0
026df7c5 27
be33c5dd
SS
28#define TIC4X_HASH_SIZE 11 /* 11 (bits) and above should give unique entries. */
29#define TIC4X_SPESOP_SIZE 8 /* Max 8. ops for special instructions */
026df7c5
NC
30
31typedef enum
32 {
33 IMMED_SINT,
34 IMMED_SUINT,
35 IMMED_SFLOAT,
36 IMMED_INT,
37 IMMED_UINT,
38 IMMED_FLOAT
39 }
40immed_t;
41
42typedef enum
43 {
44 INDIRECT_SHORT,
45 INDIRECT_LONG,
be33c5dd 46 INDIRECT_TIC4X
026df7c5
NC
47 }
48indirect_t;
49
be33c5dd
SS
50static int tic4x_version = 0;
51static int tic4x_dp = 0;
026df7c5 52
be33c5dd 53static int tic4x_pc_offset
9c87d6c7 54 PARAMS ((unsigned int));
be33c5dd 55static int tic4x_print_char
9c87d6c7 56 PARAMS ((struct disassemble_info *, char));
be33c5dd 57static int tic4x_print_str
9c87d6c7 58 PARAMS ((struct disassemble_info *, char *));
be33c5dd 59static int tic4x_print_register
9c87d6c7 60 PARAMS ((struct disassemble_info *, unsigned long));
be33c5dd 61static int tic4x_print_addr
9c87d6c7 62 PARAMS ((struct disassemble_info *, unsigned long));
be33c5dd 63static int tic4x_print_relative
9c87d6c7 64 PARAMS ((struct disassemble_info *, unsigned long, long, unsigned long));
be33c5dd 65void tic4x_print_ftoa
9c87d6c7 66 PARAMS ((unsigned int, FILE *, fprintf_ftype));
be33c5dd 67static int tic4x_print_direct
9c87d6c7 68 PARAMS ((struct disassemble_info *, unsigned long));
be33c5dd 69static int tic4x_print_immed
9c87d6c7 70 PARAMS ((struct disassemble_info *, immed_t, unsigned long));
be33c5dd 71static int tic4x_print_cond
9c87d6c7 72 PARAMS ((struct disassemble_info *, unsigned int));
be33c5dd 73static int tic4x_print_indirect
9c87d6c7 74 PARAMS ((struct disassemble_info *, indirect_t, unsigned long));
be33c5dd
SS
75static int tic4x_print_op
76 PARAMS ((struct disassemble_info *, unsigned long, tic4x_inst_t *, unsigned long));
77static void tic4x_hash_opcode_special
78 PARAMS ((tic4x_inst_t **, const tic4x_inst_t *));
79static void tic4x_hash_opcode
80 PARAMS ((tic4x_inst_t **, tic4x_inst_t **, const tic4x_inst_t *, unsigned long));
81static int tic4x_disassemble
9c87d6c7 82 PARAMS ((unsigned long, unsigned long, struct disassemble_info *));
4415b5c2 83int print_insn_tic4x
9c87d6c7 84 PARAMS ((bfd_vma, struct disassemble_info *));
4415b5c2
AM
85
86
026df7c5 87static int
be33c5dd 88tic4x_pc_offset (op)
4415b5c2 89 unsigned int op;
026df7c5
NC
90{
91 /* Determine the PC offset for a C[34]x instruction.
92 This could be simplified using some boolean algebra
93 but at the expense of readability. */
94 switch (op >> 24)
95 {
96 case 0x60: /* br */
97 case 0x62: /* call (C4x) */
98 case 0x64: /* rptb (C4x) */
99 return 1;
100 case 0x61: /* brd */
101 case 0x63: /* laj */
102 case 0x65: /* rptbd (C4x) */
103 return 3;
104 case 0x66: /* swi */
105 case 0x67:
106 return 0;
107 default:
108 break;
109 }
110
111 switch ((op & 0xffe00000) >> 20)
112 {
113 case 0x6a0: /* bB */
114 case 0x720: /* callB */
115 case 0x740: /* trapB */
116 return 1;
117
118 case 0x6a2: /* bBd */
119 case 0x6a6: /* bBat */
120 case 0x6aa: /* bBaf */
121 case 0x722: /* lajB */
122 case 0x748: /* latB */
123 case 0x798: /* rptbd */
124 return 3;
125
126 default:
127 break;
128 }
129
130 switch ((op & 0xfe200000) >> 20)
131 {
132 case 0x6e0: /* dbB */
133 return 1;
134
135 case 0x6e2: /* dbBd */
136 return 3;
137
138 default:
139 break;
140 }
141
142 return 0;
143}
144
145static int
be33c5dd 146tic4x_print_char (info, ch)
4415b5c2
AM
147 struct disassemble_info * info;
148 char ch;
026df7c5
NC
149{
150 if (info != NULL)
151 (*info->fprintf_func) (info->stream, "%c", ch);
152 return 1;
153}
154
155static int
be33c5dd 156tic4x_print_str (info, str)
4415b5c2
AM
157 struct disassemble_info *info;
158 char *str;
026df7c5
NC
159{
160 if (info != NULL)
161 (*info->fprintf_func) (info->stream, "%s", str);
162 return 1;
163}
164
165static int
be33c5dd 166tic4x_print_register (info, regno)
4415b5c2
AM
167 struct disassemble_info *info;
168 unsigned long regno;
026df7c5 169{
be33c5dd 170 static tic4x_register_t **registertable = NULL;
026df7c5
NC
171 unsigned int i;
172
173 if (registertable == NULL)
174 {
be33c5dd
SS
175 registertable = (tic4x_register_t **)
176 xmalloc (sizeof (tic4x_register_t *) * REG_TABLE_SIZE);
177 for (i = 0; i < tic3x_num_registers; i++)
178 registertable[tic3x_registers[i].regno] = (void *)&tic3x_registers[i];
179 if (IS_CPU_TIC4X (tic4x_version))
026df7c5
NC
180 {
181 /* Add C4x additional registers, overwriting
182 any C3x registers if necessary. */
be33c5dd
SS
183 for (i = 0; i < tic4x_num_registers; i++)
184 registertable[tic4x_registers[i].regno] = (void *)&tic4x_registers[i];
026df7c5
NC
185 }
186 }
be33c5dd 187 if ((int) regno > (IS_CPU_TIC4X (tic4x_version) ? TIC4X_REG_MAX : TIC3X_REG_MAX))
026df7c5
NC
188 return 0;
189 if (info != NULL)
190 (*info->fprintf_func) (info->stream, "%s", registertable[regno]->name);
191 return 1;
192}
193
194static int
be33c5dd 195tic4x_print_addr (info, addr)
4415b5c2
AM
196 struct disassemble_info *info;
197 unsigned long addr;
026df7c5
NC
198{
199 if (info != NULL)
200 (*info->print_address_func)(addr, info);
201 return 1;
202}
203
204static int
be33c5dd 205tic4x_print_relative (info, pc, offset, opcode)
4415b5c2
AM
206 struct disassemble_info *info;
207 unsigned long pc;
208 long offset;
209 unsigned long opcode;
026df7c5 210{
be33c5dd 211 return tic4x_print_addr (info, pc + offset + tic4x_pc_offset (opcode));
026df7c5
NC
212}
213
214static int
be33c5dd 215tic4x_print_direct (info, arg)
4415b5c2
AM
216 struct disassemble_info *info;
217 unsigned long arg;
026df7c5
NC
218{
219 if (info != NULL)
220 {
221 (*info->fprintf_func) (info->stream, "@");
be33c5dd 222 tic4x_print_addr (info, arg + (tic4x_dp << 16));
026df7c5
NC
223 }
224 return 1;
225}
226
227/* FIXME: make the floating point stuff not rely on host
228 floating point arithmetic. */
229void
be33c5dd 230tic4x_print_ftoa (val, stream, pfunc)
4415b5c2
AM
231 unsigned int val;
232 FILE *stream;
233 fprintf_ftype pfunc;
026df7c5
NC
234{
235 int e;
236 int s;
237 int f;
238 double num = 0.0;
239
240 e = EXTRS (val, 31, 24); /* exponent */
241 if (e != -128)
242 {
243 s = EXTRU (val, 23, 23); /* sign bit */
244 f = EXTRU (val, 22, 0); /* mantissa */
245 if (s)
246 f += -2 * (1 << 23);
247 else
248 f += (1 << 23);
249 num = f / (double)(1 << 23);
250 num = ldexp (num, e);
251 }
252 (*pfunc)(stream, "%.9g", num);
253}
254
255static int
be33c5dd 256tic4x_print_immed (info, type, arg)
4415b5c2
AM
257 struct disassemble_info *info;
258 immed_t type;
259 unsigned long arg;
026df7c5
NC
260{
261 int s;
262 int f;
263 int e;
264 double num = 0.0;
265
266 if (info == NULL)
267 return 1;
268 switch (type)
269 {
270 case IMMED_SINT:
271 case IMMED_INT:
272 (*info->fprintf_func) (info->stream, "%d", (long)arg);
273 break;
274
275 case IMMED_SUINT:
276 case IMMED_UINT:
277 (*info->fprintf_func) (info->stream, "%u", arg);
278 break;
279
280 case IMMED_SFLOAT:
281 e = EXTRS (arg, 15, 12);
282 if (e != -8)
283 {
284 s = EXTRU (arg, 11, 11);
285 f = EXTRU (arg, 10, 0);
286 if (s)
287 f += -2 * (1 << 11);
288 else
289 f += (1 << 11);
290 num = f / (double)(1 << 11);
291 num = ldexp (num, e);
292 }
293 (*info->fprintf_func) (info->stream, "%f", num);
294 break;
295 case IMMED_FLOAT:
296 e = EXTRS (arg, 31, 24);
297 if (e != -128)
298 {
299 s = EXTRU (arg, 23, 23);
300 f = EXTRU (arg, 22, 0);
301 if (s)
302 f += -2 * (1 << 23);
303 else
304 f += (1 << 23);
305 num = f / (double)(1 << 23);
306 num = ldexp (num, e);
307 }
308 (*info->fprintf_func) (info->stream, "%f", num);
309 break;
310 }
311 return 1;
312}
313
314static int
be33c5dd 315tic4x_print_cond (info, cond)
4415b5c2
AM
316 struct disassemble_info *info;
317 unsigned int cond;
026df7c5 318{
be33c5dd 319 static tic4x_cond_t **condtable = NULL;
026df7c5
NC
320 unsigned int i;
321
322 if (condtable == NULL)
323 {
be33c5dd
SS
324 condtable = (tic4x_cond_t **)xmalloc (sizeof (tic4x_cond_t *) * 32);
325 for (i = 0; i < tic4x_num_conds; i++)
326 condtable[tic4x_conds[i].cond] = (void *)&tic4x_conds[i];
026df7c5
NC
327 }
328 if (cond > 31 || condtable[cond] == NULL)
329 return 0;
330 if (info != NULL)
331 (*info->fprintf_func) (info->stream, "%s", condtable[cond]->name);
332 return 1;
333}
334
335static int
be33c5dd 336tic4x_print_indirect (info, type, arg)
4415b5c2
AM
337 struct disassemble_info *info;
338 indirect_t type;
339 unsigned long arg;
026df7c5
NC
340{
341 unsigned int aregno;
342 unsigned int modn;
343 unsigned int disp;
344 char *a;
345
346 aregno = 0;
347 modn = 0;
348 disp = 1;
349 switch(type)
350 {
be33c5dd 351 case INDIRECT_TIC4X: /* *+ARn(disp) */
026df7c5
NC
352 disp = EXTRU (arg, 7, 3);
353 aregno = EXTRU (arg, 2, 0) + REG_AR0;
354 modn = 0;
355 break;
356 case INDIRECT_SHORT:
357 disp = 1;
358 aregno = EXTRU (arg, 2, 0) + REG_AR0;
359 modn = EXTRU (arg, 7, 3);
360 break;
361 case INDIRECT_LONG:
362 disp = EXTRU (arg, 7, 0);
363 aregno = EXTRU (arg, 10, 8) + REG_AR0;
364 modn = EXTRU (arg, 15, 11);
365 if (modn > 7 && disp != 0)
366 return 0;
367 break;
368 default:
be33c5dd
SS
369 (*info->fprintf_func)(info->stream, "# internal error: Unknown indirect type %d", type);
370 return 0;
026df7c5 371 }
be33c5dd 372 if (modn > TIC3X_MODN_MAX)
026df7c5 373 return 0;
be33c5dd 374 a = tic4x_indirects[modn].name;
026df7c5
NC
375 while (*a)
376 {
377 switch (*a)
378 {
379 case 'a':
be33c5dd 380 tic4x_print_register (info, aregno);
026df7c5
NC
381 break;
382 case 'd':
be33c5dd 383 tic4x_print_immed (info, IMMED_UINT, disp);
026df7c5
NC
384 break;
385 case 'y':
be33c5dd 386 tic4x_print_str (info, "ir0");
026df7c5
NC
387 break;
388 case 'z':
be33c5dd 389 tic4x_print_str (info, "ir1");
026df7c5
NC
390 break;
391 default:
be33c5dd 392 tic4x_print_char (info, *a);
026df7c5
NC
393 break;
394 }
395 a++;
396 }
397 return 1;
398}
399
400static int
be33c5dd 401tic4x_print_op (info, instruction, p, pc)
4415b5c2
AM
402 struct disassemble_info *info;
403 unsigned long instruction;
be33c5dd 404 tic4x_inst_t *p;
4415b5c2 405 unsigned long pc;
026df7c5
NC
406{
407 int val;
408 char *s;
409 char *parallel = NULL;
410
411 /* Print instruction name. */
412 s = p->name;
413 while (*s && parallel == NULL)
414 {
415 switch (*s)
416 {
417 case 'B':
be33c5dd 418 if (! tic4x_print_cond (info, EXTRU (instruction, 20, 16)))
026df7c5
NC
419 return 0;
420 break;
421 case 'C':
be33c5dd 422 if (! tic4x_print_cond (info, EXTRU (instruction, 27, 23)))
026df7c5
NC
423 return 0;
424 break;
425 case '_':
426 parallel = s + 1; /* Skip past `_' in name */
427 break;
428 default:
be33c5dd 429 tic4x_print_char (info, *s);
026df7c5
NC
430 break;
431 }
432 s++;
433 }
434
435 /* Print arguments. */
436 s = p->args;
437 if (*s)
be33c5dd 438 tic4x_print_char (info, ' ');
026df7c5
NC
439
440 while (*s)
441 {
442 switch (*s)
443 {
444 case '*': /* indirect 0--15 */
be33c5dd 445 if (! tic4x_print_indirect (info, INDIRECT_LONG,
026df7c5
NC
446 EXTRU (instruction, 15, 0)))
447 return 0;
448 break;
449
450 case '#': /* only used for ldp, ldpk */
be33c5dd 451 tic4x_print_immed (info, IMMED_UINT, EXTRU (instruction, 15, 0));
026df7c5
NC
452 break;
453
454 case '@': /* direct 0--15 */
be33c5dd 455 tic4x_print_direct (info, EXTRU (instruction, 15, 0));
026df7c5
NC
456 break;
457
458 case 'A': /* address register 24--22 */
be33c5dd 459 if (! tic4x_print_register (info, EXTRU (instruction, 24, 22) +
026df7c5
NC
460 REG_AR0))
461 return 0;
462 break;
463
464 case 'B': /* 24-bit unsigned int immediate br(d)/call/rptb
465 address 0--23. */
be33c5dd
SS
466 if (IS_CPU_TIC4X (tic4x_version))
467 tic4x_print_relative (info, pc, EXTRS (instruction, 23, 0),
026df7c5
NC
468 p->opcode);
469 else
be33c5dd 470 tic4x_print_addr (info, EXTRU (instruction, 23, 0));
026df7c5
NC
471 break;
472
473 case 'C': /* indirect (short C4x) 0--7 */
be33c5dd 474 if (! IS_CPU_TIC4X (tic4x_version))
026df7c5 475 return 0;
be33c5dd 476 if (! tic4x_print_indirect (info, INDIRECT_TIC4X,
026df7c5
NC
477 EXTRU (instruction, 7, 0)))
478 return 0;
479 break;
480
481 case 'D':
482 /* Cockup if get here... */
483 break;
484
485 case 'E': /* register 0--7 */
44287f60 486 case 'e':
be33c5dd 487 if (! tic4x_print_register (info, EXTRU (instruction, 7, 0)))
026df7c5
NC
488 return 0;
489 break;
490
491 case 'F': /* 16-bit float immediate 0--15 */
be33c5dd 492 tic4x_print_immed (info, IMMED_SFLOAT,
026df7c5
NC
493 EXTRU (instruction, 15, 0));
494 break;
495
9c87d6c7
SS
496 case 'i': /* Extended indirect 0--7 */
497 if ( EXTRU (instruction, 7, 5) == 7 )
498 {
be33c5dd 499 if( !tic4x_print_register (info, EXTRU (instruction, 4, 0)) )
9c87d6c7
SS
500 return 0;
501 break;
502 }
503 /* Fallthrough */
504
026df7c5 505 case 'I': /* indirect (short) 0--7 */
be33c5dd 506 if (! tic4x_print_indirect (info, INDIRECT_SHORT,
026df7c5
NC
507 EXTRU (instruction, 7, 0)))
508 return 0;
509 break;
510
9c87d6c7
SS
511 case 'j': /* Extended indirect 8--15 */
512 if ( EXTRU (instruction, 15, 13) == 7 )
513 {
be33c5dd 514 if( !tic4x_print_register (info, EXTRU (instruction, 12, 8)) )
9c87d6c7
SS
515 return 0;
516 break;
517 }
518
026df7c5 519 case 'J': /* indirect (short) 8--15 */
be33c5dd 520 if (! tic4x_print_indirect (info, INDIRECT_SHORT,
026df7c5
NC
521 EXTRU (instruction, 15, 8)))
522 return 0;
523 break;
524
525 case 'G': /* register 8--15 */
44287f60 526 case 'g':
be33c5dd 527 if (! tic4x_print_register (info, EXTRU (instruction, 15, 8)))
026df7c5
NC
528 return 0;
529 break;
530
531 case 'H': /* register 16--18 */
be33c5dd 532 if (! tic4x_print_register (info, EXTRU (instruction, 18, 16)))
026df7c5
NC
533 return 0;
534 break;
535
536 case 'K': /* register 19--21 */
be33c5dd 537 if (! tic4x_print_register (info, EXTRU (instruction, 21, 19)))
026df7c5
NC
538 return 0;
539 break;
540
541 case 'L': /* register 22--24 */
be33c5dd 542 if (! tic4x_print_register (info, EXTRU (instruction, 24, 22)))
026df7c5
NC
543 return 0;
544 break;
545
546 case 'M': /* register 22--22 */
be33c5dd 547 tic4x_print_register (info, EXTRU (instruction, 22, 22) + REG_R2);
026df7c5
NC
548 break;
549
550 case 'N': /* register 23--23 */
be33c5dd 551 tic4x_print_register (info, EXTRU (instruction, 23, 23) + REG_R0);
026df7c5
NC
552 break;
553
554 case 'O': /* indirect (short C4x) 8--15 */
be33c5dd 555 if (! IS_CPU_TIC4X (tic4x_version))
026df7c5 556 return 0;
be33c5dd 557 if (! tic4x_print_indirect (info, INDIRECT_TIC4X,
026df7c5
NC
558 EXTRU (instruction, 15, 8)))
559 return 0;
560 break;
561
562 case 'P': /* displacement 0--15 (used by Bcond and BcondD) */
be33c5dd 563 tic4x_print_relative (info, pc, EXTRS (instruction, 15, 0),
026df7c5
NC
564 p->opcode);
565 break;
566
567 case 'Q': /* register 0--15 */
44287f60 568 case 'q':
be33c5dd 569 if (! tic4x_print_register (info, EXTRU (instruction, 15, 0)))
026df7c5
NC
570 return 0;
571 break;
572
573 case 'R': /* register 16--20 */
44287f60 574 case 'r':
be33c5dd 575 if (! tic4x_print_register (info, EXTRU (instruction, 20, 16)))
026df7c5
NC
576 return 0;
577 break;
578
579 case 'S': /* 16-bit signed immediate 0--15 */
be33c5dd 580 tic4x_print_immed (info, IMMED_SINT,
026df7c5
NC
581 EXTRS (instruction, 15, 0));
582 break;
583
584 case 'T': /* 5-bit signed immediate 16--20 (C4x stik) */
be33c5dd 585 if (! IS_CPU_TIC4X (tic4x_version))
026df7c5 586 return 0;
be33c5dd 587 if (! tic4x_print_immed (info, IMMED_SUINT,
026df7c5
NC
588 EXTRU (instruction, 20, 16)))
589 return 0;
590 break;
591
592 case 'U': /* 16-bit unsigned int immediate 0--15 */
be33c5dd 593 tic4x_print_immed (info, IMMED_SUINT, EXTRU (instruction, 15, 0));
026df7c5
NC
594 break;
595
596 case 'V': /* 5/9-bit unsigned vector 0--4/8 */
be33c5dd
SS
597 tic4x_print_immed (info, IMMED_SUINT,
598 IS_CPU_TIC4X (tic4x_version) ?
026df7c5
NC
599 EXTRU (instruction, 8, 0) :
600 EXTRU (instruction, 4, 0) & ~0x20);
601 break;
602
603 case 'W': /* 8-bit signed immediate 0--7 */
be33c5dd 604 if (! IS_CPU_TIC4X (tic4x_version))
026df7c5 605 return 0;
be33c5dd 606 tic4x_print_immed (info, IMMED_SINT, EXTRS (instruction, 7, 0));
026df7c5
NC
607 break;
608
609 case 'X': /* expansion register 4--0 */
610 val = EXTRU (instruction, 4, 0) + REG_IVTP;
611 if (val < REG_IVTP || val > REG_TVTP)
612 return 0;
be33c5dd 613 if (! tic4x_print_register (info, val))
026df7c5
NC
614 return 0;
615 break;
616
617 case 'Y': /* address register 16--20 */
618 val = EXTRU (instruction, 20, 16);
619 if (val < REG_AR0 || val > REG_SP)
620 return 0;
be33c5dd 621 if (! tic4x_print_register (info, val))
026df7c5
NC
622 return 0;
623 break;
624
625 case 'Z': /* expansion register 16--20 */
626 val = EXTRU (instruction, 20, 16) + REG_IVTP;
627 if (val < REG_IVTP || val > REG_TVTP)
628 return 0;
be33c5dd 629 if (! tic4x_print_register (info, val))
026df7c5
NC
630 return 0;
631 break;
632
633 case '|': /* Parallel instruction */
be33c5dd
SS
634 tic4x_print_str (info, " || ");
635 tic4x_print_str (info, parallel);
636 tic4x_print_char (info, ' ');
026df7c5
NC
637 break;
638
639 case ';':
be33c5dd 640 tic4x_print_char (info, ',');
026df7c5
NC
641 break;
642
643 default:
be33c5dd 644 tic4x_print_char (info, *s);
026df7c5
NC
645 break;
646 }
647 s++;
648 }
649 return 1;
650}
651
652static void
be33c5dd
SS
653tic4x_hash_opcode_special (optable_special, inst)
654 tic4x_inst_t **optable_special;
655 const tic4x_inst_t *inst;
9c87d6c7
SS
656{
657 int i;
658
be33c5dd 659 for( i=0; i<TIC4X_SPESOP_SIZE; i++ )
9c87d6c7
SS
660 if( optable_special[i] != NULL
661 && optable_special[i]->opcode == inst->opcode )
662 {
663 /* Collision (we have it already) - overwrite */
664 optable_special[i] = (void *)inst;
665 return;
666 }
667
be33c5dd 668 for( i=0; i<TIC4X_SPESOP_SIZE; i++ )
9c87d6c7
SS
669 if( optable_special[i] == NULL )
670 {
671 /* Add the new opcode */
672 optable_special[i] = (void *)inst;
673 return;
674 }
675
676 /* This should never occur. This happens if the number of special
be33c5dd 677 instructions exceeds TIC4X_SPESOP_SIZE. Please increase the variable
9c87d6c7 678 of this variable */
be33c5dd
SS
679#if TIC4X_DEBUG
680 printf("optable_special[] is full, please increase TIC4X_SPESOP_SIZE!\n");
9c87d6c7
SS
681#endif
682}
683
684static void
be33c5dd
SS
685tic4x_hash_opcode (optable, optable_special, inst, tic4x_oplevel)
686 tic4x_inst_t **optable;
687 tic4x_inst_t **optable_special;
688 const tic4x_inst_t *inst;
689 const unsigned long tic4x_oplevel;
026df7c5
NC
690{
691 int j;
be33c5dd
SS
692 int opcode = inst->opcode >> (32 - TIC4X_HASH_SIZE);
693 int opmask = inst->opmask >> (32 - TIC4X_HASH_SIZE);
026df7c5 694
be33c5dd 695 /* Use a TIC4X_HASH_SIZE bit index as a hash index. We should
026df7c5
NC
696 have unique entries so there's no point having a linked list
697 for each entry? */
698 for (j = opcode; j < opmask; j++)
9c87d6c7 699 if ( (j & opmask) == opcode
be33c5dd 700 && inst->oplevel & tic4x_oplevel )
026df7c5 701 {
be33c5dd 702#if TIC4X_DEBUG
026df7c5
NC
703 /* We should only have collisions for synonyms like
704 ldp for ldi. */
705 if (optable[j] != NULL)
706 printf("Collision at index %d, %s and %s\n",
707 j, optable[j]->name, inst->name);
708#endif
9c87d6c7
SS
709 /* Catch those ops that collide with others already inside the
710 hash, and have a opmask greater than the one we use in the
711 hash. Store them in a special-list, that will handle full
712 32-bit INSN, not only the first 11-bit (or so). */
713 if ( optable[j] != NULL
be33c5dd 714 && inst->opmask & ~(opmask << (32 - TIC4X_HASH_SIZE)) )
9c87d6c7
SS
715 {
716 /* Add the instruction already on the list */
be33c5dd 717 tic4x_hash_opcode_special(optable_special, optable[j]);
9c87d6c7
SS
718
719 /* Add the new instruction */
be33c5dd 720 tic4x_hash_opcode_special(optable_special, inst);
9c87d6c7
SS
721 }
722
723 optable[j] = (void *)inst;
026df7c5
NC
724 }
725}
726
727/* Disassemble the instruction in 'instruction'.
728 'pc' should be the address of this instruction, it will
729 be used to print the target address if this is a relative jump or call
730 the disassembled instruction is written to 'info'.
731 The function returns the length of this instruction in words. */
732
733static int
be33c5dd 734tic4x_disassemble (pc, instruction, info)
4415b5c2
AM
735 unsigned long pc;
736 unsigned long instruction;
737 struct disassemble_info *info;
026df7c5 738{
be33c5dd
SS
739 static tic4x_inst_t **optable = NULL;
740 static tic4x_inst_t **optable_special = NULL;
741 tic4x_inst_t *p;
026df7c5 742 int i;
be33c5dd 743 unsigned long tic4x_oplevel;
026df7c5 744
be33c5dd 745 tic4x_version = info->mach;
9c87d6c7 746
be33c5dd
SS
747 tic4x_oplevel = (IS_CPU_TIC4X (tic4x_version)) ? OP_C4X : 0;
748 tic4x_oplevel |= OP_C3X|OP_LPWR|OP_IDLE2|OP_ENH;
026df7c5
NC
749
750 if (optable == NULL)
751 {
be33c5dd
SS
752 optable = (tic4x_inst_t **)
753 xcalloc (sizeof (tic4x_inst_t *), (1 << TIC4X_HASH_SIZE));
9c87d6c7 754
be33c5dd
SS
755 optable_special = (tic4x_inst_t **)
756 xcalloc (sizeof (tic4x_inst_t *), TIC4X_SPESOP_SIZE );
9c87d6c7 757
026df7c5
NC
758 /* Install opcodes in reverse order so that preferred
759 forms overwrite synonyms. */
be33c5dd
SS
760 for (i = tic4x_num_insts - 1; i >= 0; i--)
761 tic4x_hash_opcode (optable, optable_special, &tic4x_insts[i], tic4x_oplevel);
9c87d6c7
SS
762
763 /* We now need to remove the insn that are special from the
764 "normal" optable, to make the disasm search this extra list
765 for them.
766 */
be33c5dd 767 for (i=0; i<TIC4X_SPESOP_SIZE; i++)
9c87d6c7 768 if ( optable_special[i] != NULL )
be33c5dd 769 optable[optable_special[i]->opcode >> (32 - TIC4X_HASH_SIZE)] = NULL;
026df7c5
NC
770 }
771
772 /* See if we can pick up any loading of the DP register... */
773 if ((instruction >> 16) == 0x5070 || (instruction >> 16) == 0x1f70)
be33c5dd 774 tic4x_dp = EXTRU (instruction, 15, 0);
9c87d6c7 775
be33c5dd 776 p = optable[instruction >> (32 - TIC4X_HASH_SIZE)];
9c87d6c7
SS
777 if ( p != NULL )
778 {
779 if ( ((instruction & p->opmask) == p->opcode)
be33c5dd
SS
780 && tic4x_print_op (NULL, instruction, p, pc) )
781 tic4x_print_op (info, instruction, p, pc);
9c87d6c7
SS
782 else
783 (*info->fprintf_func) (info->stream, "%08x", instruction);
784 }
026df7c5 785 else
9c87d6c7 786 {
be33c5dd 787 for (i = 0; i<TIC4X_SPESOP_SIZE; i++)
9c87d6c7
SS
788 if (optable_special[i] != NULL
789 && optable_special[i]->opcode == instruction )
790 {
791 (*info->fprintf_func)(info->stream, "%s", optable_special[i]->name);
792 break;
793 }
be33c5dd 794 if (i==TIC4X_SPESOP_SIZE)
9c87d6c7
SS
795 (*info->fprintf_func) (info->stream, "%08x", instruction);
796 }
026df7c5
NC
797
798 /* Return size of insn in words. */
799 return 1;
800}
801
802/* The entry point from objdump and gdb. */
803int
804print_insn_tic4x (memaddr, info)
805 bfd_vma memaddr;
806 struct disassemble_info *info;
807{
808 int status;
809 unsigned long pc;
810 unsigned long op;
811 bfd_byte buffer[4];
812
813 status = (*info->read_memory_func) (memaddr, buffer, 4, info);
814 if (status != 0)
815 {
816 (*info->memory_error_func) (status, memaddr, info);
817 return -1;
818 }
819
820 pc = memaddr;
821 op = bfd_getl32 (buffer);
822 info->bytes_per_line = 4;
823 info->bytes_per_chunk = 4;
824 info->octets_per_byte = 4;
825 info->display_endian = BFD_ENDIAN_LITTLE;
be33c5dd 826 return tic4x_disassemble (pc, op, info) * 4;
026df7c5 827}
This page took 0.160939 seconds and 4 git commands to generate.