Guard against 'current_directory == NULL' on gdb_abspath (PR gdb/23613)
[deliverable/binutils-gdb.git] / opcodes / microblaze-dis.c
1 /* Disassemble Xilinx microblaze instructions.
2
3 Copyright (C) 2009-2019 Free Software Foundation, Inc.
4
5 This file is part of the GNU opcodes library.
6
7 This library 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 3, or (at your option)
10 any later version.
11
12 It is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this file; see the file COPYING. If not, write to the
19 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22
23 #include "sysdep.h"
24 #define STATIC_TABLE
25 #define DEFINE_TABLE
26
27 #include "disassemble.h"
28 #include <strings.h>
29 #include "microblaze-opc.h"
30 #include "microblaze-dis.h"
31
32 #define get_field_rd(buf, instr) get_field (buf, instr, RD_MASK, RD_LOW)
33 #define get_field_r1(buf, instr) get_field (buf, instr, RA_MASK, RA_LOW)
34 #define get_field_r2(buf, instr) get_field (buf, instr, RB_MASK, RB_LOW)
35 #define get_int_field_imm(instr) ((instr & IMM_MASK) >> IMM_LOW)
36 #define get_int_field_r1(instr) ((instr & RA_MASK) >> RA_LOW)
37
38 #define NUM_STRBUFS 3
39 #define STRBUF_SIZE 25
40
41 struct string_buf
42 {
43 unsigned int which;
44 char str[NUM_STRBUFS][STRBUF_SIZE];
45 };
46
47 static inline char *
48 strbuf (struct string_buf *buf)
49 {
50 #ifdef ENABLE_CHECKING
51 if (buf->which >= NUM_STRBUFS)
52 abort ();
53 #endif
54 return buf->str[buf->which++];
55 }
56
57 static char *
58 get_field (struct string_buf *buf, long instr, long mask, unsigned short low)
59 {
60 char *p = strbuf (buf);
61
62 sprintf (p, "%s%d", register_prefix, (int)((instr & mask) >> low));
63 return p;
64 }
65
66 static char *
67 get_field_imm (struct string_buf *buf, long instr)
68 {
69 char *p = strbuf (buf);
70
71 sprintf (p, "%d", (short)((instr & IMM_MASK) >> IMM_LOW));
72 return p;
73 }
74
75 static char *
76 get_field_imm5 (struct string_buf *buf, long instr)
77 {
78 char *p = strbuf (buf);
79
80 sprintf (p, "%d", (short)((instr & IMM5_MASK) >> IMM_LOW));
81 return p;
82 }
83
84 static char *
85 get_field_imm5_mbar (struct string_buf *buf, long instr)
86 {
87 char *p = strbuf (buf);
88
89 sprintf (p, "%d", (short)((instr & IMM5_MBAR_MASK) >> IMM_MBAR));
90 return p;
91 }
92
93 static char *
94 get_field_rfsl (struct string_buf *buf, long instr)
95 {
96 char *p = strbuf (buf);
97
98 sprintf (p, "%s%d", fsl_register_prefix,
99 (short)((instr & RFSL_MASK) >> IMM_LOW));
100 return p;
101 }
102
103 static char *
104 get_field_imm15 (struct string_buf *buf, long instr)
105 {
106 char *p = strbuf (buf);
107
108 sprintf (p, "%d", (short)((instr & IMM15_MASK) >> IMM_LOW));
109 return p;
110 }
111
112 static char *
113 get_field_special (struct string_buf *buf, long instr,
114 struct op_code_struct *op)
115 {
116 char *p = strbuf (buf);
117 char *spr;
118
119 switch ((((instr & IMM_MASK) >> IMM_LOW) ^ op->immval_mask))
120 {
121 case REG_MSR_MASK :
122 spr = "msr";
123 break;
124 case REG_PC_MASK :
125 spr = "pc";
126 break;
127 case REG_EAR_MASK :
128 spr = "ear";
129 break;
130 case REG_ESR_MASK :
131 spr = "esr";
132 break;
133 case REG_FSR_MASK :
134 spr = "fsr";
135 break;
136 case REG_BTR_MASK :
137 spr = "btr";
138 break;
139 case REG_EDR_MASK :
140 spr = "edr";
141 break;
142 case REG_PID_MASK :
143 spr = "pid";
144 break;
145 case REG_ZPR_MASK :
146 spr = "zpr";
147 break;
148 case REG_TLBX_MASK :
149 spr = "tlbx";
150 break;
151 case REG_TLBLO_MASK :
152 spr = "tlblo";
153 break;
154 case REG_TLBHI_MASK :
155 spr = "tlbhi";
156 break;
157 case REG_TLBSX_MASK :
158 spr = "tlbsx";
159 break;
160 case REG_SHR_MASK :
161 spr = "shr";
162 break;
163 case REG_SLR_MASK :
164 spr = "slr";
165 break;
166 default :
167 if (((((instr & IMM_MASK) >> IMM_LOW) ^ op->immval_mask) & 0xE000)
168 == REG_PVR_MASK)
169 {
170 sprintf (p, "%spvr%d", register_prefix,
171 (unsigned short)(((instr & IMM_MASK) >> IMM_LOW)
172 ^ op->immval_mask) ^ REG_PVR_MASK);
173 return p;
174 }
175 else
176 spr = "pc";
177 break;
178 }
179
180 sprintf (p, "%s%s", register_prefix, spr);
181 return p;
182 }
183
184 static unsigned long
185 read_insn_microblaze (bfd_vma memaddr,
186 struct disassemble_info *info,
187 struct op_code_struct **opr)
188 {
189 unsigned char ibytes[4];
190 int status;
191 struct op_code_struct * op;
192 unsigned long inst;
193
194 status = info->read_memory_func (memaddr, ibytes, 4, info);
195
196 if (status != 0)
197 {
198 info->memory_error_func (status, memaddr, info);
199 return 0;
200 }
201
202 if (info->endian == BFD_ENDIAN_BIG)
203 inst = (ibytes[0] << 24) | (ibytes[1] << 16) | (ibytes[2] << 8) | ibytes[3];
204 else if (info->endian == BFD_ENDIAN_LITTLE)
205 inst = (ibytes[3] << 24) | (ibytes[2] << 16) | (ibytes[1] << 8) | ibytes[0];
206 else
207 abort ();
208
209 /* Just a linear search of the table. */
210 for (op = opcodes; op->name != 0; op ++)
211 if (op->bit_sequence == (inst & op->opcode_mask))
212 break;
213
214 *opr = op;
215 return inst;
216 }
217
218
219 int
220 print_insn_microblaze (bfd_vma memaddr, struct disassemble_info * info)
221 {
222 fprintf_ftype print_func = info->fprintf_func;
223 void * stream = info->stream;
224 unsigned long inst, prev_inst;
225 struct op_code_struct * op, *pop;
226 int immval = 0;
227 bfd_boolean immfound = FALSE;
228 static bfd_vma prev_insn_addr = -1; /* Init the prev insn addr. */
229 static int prev_insn_vma = -1; /* Init the prev insn vma. */
230 int curr_insn_vma = info->buffer_vma;
231 struct string_buf buf;
232
233 buf.which = 0;
234 info->bytes_per_chunk = 4;
235
236 inst = read_insn_microblaze (memaddr, info, &op);
237 if (inst == 0)
238 return -1;
239
240 if (prev_insn_vma == curr_insn_vma)
241 {
242 if (memaddr-(info->bytes_per_chunk) == prev_insn_addr)
243 {
244 prev_inst = read_insn_microblaze (prev_insn_addr, info, &pop);
245 if (prev_inst == 0)
246 return -1;
247 if (pop->instr == imm)
248 {
249 immval = (get_int_field_imm (prev_inst) << 16) & 0xffff0000;
250 immfound = TRUE;
251 }
252 else
253 {
254 immval = 0;
255 immfound = FALSE;
256 }
257 }
258 }
259
260 /* Make curr insn as prev insn. */
261 prev_insn_addr = memaddr;
262 prev_insn_vma = curr_insn_vma;
263
264 if (op->name == NULL)
265 print_func (stream, ".short 0x%04x", (unsigned int) inst);
266 else
267 {
268 print_func (stream, "%s", op->name);
269
270 switch (op->inst_type)
271 {
272 case INST_TYPE_RD_R1_R2:
273 print_func (stream, "\t%s, %s, %s", get_field_rd (&buf, inst),
274 get_field_r1 (&buf, inst), get_field_r2 (&buf, inst));
275 break;
276 case INST_TYPE_RD_R1_IMM:
277 print_func (stream, "\t%s, %s, %s", get_field_rd (&buf, inst),
278 get_field_r1 (&buf, inst), get_field_imm (&buf, inst));
279 if (info->print_address_func && get_int_field_r1 (inst) == 0
280 && info->symbol_at_address_func)
281 {
282 if (immfound)
283 immval |= (get_int_field_imm (inst) & 0x0000ffff);
284 else
285 {
286 immval = get_int_field_imm (inst);
287 if (immval & 0x8000)
288 immval |= 0xFFFF0000;
289 }
290 if (immval > 0 && info->symbol_at_address_func (immval, info))
291 {
292 print_func (stream, "\t// ");
293 info->print_address_func (immval, info);
294 }
295 }
296 break;
297 case INST_TYPE_RD_R1_IMM5:
298 print_func (stream, "\t%s, %s, %s", get_field_rd (&buf, inst),
299 get_field_r1 (&buf, inst), get_field_imm5 (&buf, inst));
300 break;
301 case INST_TYPE_RD_RFSL:
302 print_func (stream, "\t%s, %s", get_field_rd (&buf, inst),
303 get_field_rfsl (&buf, inst));
304 break;
305 case INST_TYPE_R1_RFSL:
306 print_func (stream, "\t%s, %s", get_field_r1 (&buf, inst),
307 get_field_rfsl (&buf, inst));
308 break;
309 case INST_TYPE_RD_SPECIAL:
310 print_func (stream, "\t%s, %s", get_field_rd (&buf, inst),
311 get_field_special (&buf, inst, op));
312 break;
313 case INST_TYPE_SPECIAL_R1:
314 print_func (stream, "\t%s, %s", get_field_special (&buf, inst, op),
315 get_field_r1 (&buf, inst));
316 break;
317 case INST_TYPE_RD_R1:
318 print_func (stream, "\t%s, %s", get_field_rd (&buf, inst),
319 get_field_r1 (&buf, inst));
320 break;
321 case INST_TYPE_R1_R2:
322 print_func (stream, "\t%s, %s", get_field_r1 (&buf, inst),
323 get_field_r2 (&buf, inst));
324 break;
325 case INST_TYPE_R1_IMM:
326 print_func (stream, "\t%s, %s", get_field_r1 (&buf, inst),
327 get_field_imm (&buf, inst));
328 /* The non-pc relative instructions are returns, which shouldn't
329 have a label printed. */
330 if (info->print_address_func && op->inst_offset_type == INST_PC_OFFSET
331 && info->symbol_at_address_func)
332 {
333 if (immfound)
334 immval |= (get_int_field_imm (inst) & 0x0000ffff);
335 else
336 {
337 immval = get_int_field_imm (inst);
338 if (immval & 0x8000)
339 immval |= 0xFFFF0000;
340 }
341 immval += memaddr;
342 if (immval > 0 && info->symbol_at_address_func (immval, info))
343 {
344 print_func (stream, "\t// ");
345 info->print_address_func (immval, info);
346 }
347 else
348 {
349 print_func (stream, "\t\t// ");
350 print_func (stream, "%x", immval);
351 }
352 }
353 break;
354 case INST_TYPE_RD_IMM:
355 print_func (stream, "\t%s, %s", get_field_rd (&buf, inst),
356 get_field_imm (&buf, inst));
357 if (info->print_address_func && info->symbol_at_address_func)
358 {
359 if (immfound)
360 immval |= (get_int_field_imm (inst) & 0x0000ffff);
361 else
362 {
363 immval = get_int_field_imm (inst);
364 if (immval & 0x8000)
365 immval |= 0xFFFF0000;
366 }
367 if (op->inst_offset_type == INST_PC_OFFSET)
368 immval += (int) memaddr;
369 if (info->symbol_at_address_func (immval, info))
370 {
371 print_func (stream, "\t// ");
372 info->print_address_func (immval, info);
373 }
374 }
375 break;
376 case INST_TYPE_IMM:
377 print_func (stream, "\t%s", get_field_imm (&buf, inst));
378 if (info->print_address_func && info->symbol_at_address_func
379 && op->instr != imm)
380 {
381 if (immfound)
382 immval |= (get_int_field_imm (inst) & 0x0000ffff);
383 else
384 {
385 immval = get_int_field_imm (inst);
386 if (immval & 0x8000)
387 immval |= 0xFFFF0000;
388 }
389 if (op->inst_offset_type == INST_PC_OFFSET)
390 immval += (int) memaddr;
391 if (immval > 0 && info->symbol_at_address_func (immval, info))
392 {
393 print_func (stream, "\t// ");
394 info->print_address_func (immval, info);
395 }
396 else if (op->inst_offset_type == INST_PC_OFFSET)
397 {
398 print_func (stream, "\t\t// ");
399 print_func (stream, "%x", immval);
400 }
401 }
402 break;
403 case INST_TYPE_RD_R2:
404 print_func (stream, "\t%s, %s", get_field_rd (&buf, inst),
405 get_field_r2 (&buf, inst));
406 break;
407 case INST_TYPE_R2:
408 print_func (stream, "\t%s", get_field_r2 (&buf, inst));
409 break;
410 case INST_TYPE_R1:
411 print_func (stream, "\t%s", get_field_r1 (&buf, inst));
412 break;
413 case INST_TYPE_R1_R2_SPECIAL:
414 print_func (stream, "\t%s, %s", get_field_r1 (&buf, inst),
415 get_field_r2 (&buf, inst));
416 break;
417 case INST_TYPE_RD_IMM15:
418 print_func (stream, "\t%s, %s", get_field_rd (&buf, inst),
419 get_field_imm15 (&buf, inst));
420 break;
421 /* For mbar insn. */
422 case INST_TYPE_IMM5:
423 print_func (stream, "\t%s", get_field_imm5_mbar (&buf, inst));
424 break;
425 /* For mbar 16 or sleep insn. */
426 case INST_TYPE_NONE:
427 break;
428 /* For tuqula instruction */
429 case INST_TYPE_RD:
430 print_func (stream, "\t%s", get_field_rd (&buf, inst));
431 break;
432 case INST_TYPE_RFSL:
433 print_func (stream, "\t%s", get_field_rfsl (&buf, inst));
434 break;
435 default:
436 /* If the disassembler lags the instruction set. */
437 print_func (stream, "\tundecoded operands, inst is 0x%04x",
438 (unsigned int) inst);
439 break;
440 }
441 }
442
443 /* Say how many bytes we consumed. */
444 return 4;
445 }
446
447 enum microblaze_instr
448 get_insn_microblaze (long inst,
449 bfd_boolean *isunsignedimm,
450 enum microblaze_instr_type *insn_type,
451 short *delay_slots)
452 {
453 struct op_code_struct * op;
454 *isunsignedimm = FALSE;
455
456 /* Just a linear search of the table. */
457 for (op = opcodes; op->name != 0; op ++)
458 if (op->bit_sequence == (inst & op->opcode_mask))
459 break;
460
461 if (op->name == 0)
462 return invalid_inst;
463 else
464 {
465 *isunsignedimm = (op->inst_type == INST_TYPE_RD_R1_UNSIGNED_IMM);
466 *insn_type = op->instr_type;
467 *delay_slots = op->delay_slots;
468 return op->instr;
469 }
470 }
471
472 enum microblaze_instr
473 microblaze_decode_insn (long insn, int *rd, int *ra, int *rb, int *immed)
474 {
475 enum microblaze_instr op;
476 bfd_boolean t1;
477 enum microblaze_instr_type t2;
478 short t3;
479
480 op = get_insn_microblaze (insn, &t1, &t2, &t3);
481 *rd = (insn & RD_MASK) >> RD_LOW;
482 *ra = (insn & RA_MASK) >> RA_LOW;
483 *rb = (insn & RB_MASK) >> RB_LOW;
484 t3 = (insn & IMM_MASK) >> IMM_LOW;
485 *immed = (int) t3;
486 return (op);
487 }
488
489 unsigned long
490 microblaze_get_target_address (long inst, bfd_boolean immfound, int immval,
491 long pcval, long r1val, long r2val,
492 bfd_boolean *targetvalid,
493 bfd_boolean *unconditionalbranch)
494 {
495 struct op_code_struct * op;
496 long targetaddr = 0;
497
498 *unconditionalbranch = FALSE;
499 /* Just a linear search of the table. */
500 for (op = opcodes; op->name != 0; op ++)
501 if (op->bit_sequence == (inst & op->opcode_mask))
502 break;
503
504 if (op->name == 0)
505 {
506 *targetvalid = FALSE;
507 }
508 else if (op->instr_type == branch_inst)
509 {
510 switch (op->inst_type)
511 {
512 case INST_TYPE_R2:
513 *unconditionalbranch = TRUE;
514 /* Fall through. */
515 case INST_TYPE_RD_R2:
516 case INST_TYPE_R1_R2:
517 targetaddr = r2val;
518 *targetvalid = TRUE;
519 if (op->inst_offset_type == INST_PC_OFFSET)
520 targetaddr += pcval;
521 break;
522 case INST_TYPE_IMM:
523 *unconditionalbranch = TRUE;
524 /* Fall through. */
525 case INST_TYPE_RD_IMM:
526 case INST_TYPE_R1_IMM:
527 if (immfound)
528 {
529 targetaddr = (immval << 16) & 0xffff0000;
530 targetaddr |= (get_int_field_imm (inst) & 0x0000ffff);
531 }
532 else
533 {
534 targetaddr = get_int_field_imm (inst);
535 if (targetaddr & 0x8000)
536 targetaddr |= 0xFFFF0000;
537 }
538 if (op->inst_offset_type == INST_PC_OFFSET)
539 targetaddr += pcval;
540 *targetvalid = TRUE;
541 break;
542 default:
543 *targetvalid = FALSE;
544 break;
545 }
546 }
547 else if (op->instr_type == return_inst)
548 {
549 if (immfound)
550 {
551 targetaddr = (immval << 16) & 0xffff0000;
552 targetaddr |= (get_int_field_imm (inst) & 0x0000ffff);
553 }
554 else
555 {
556 targetaddr = get_int_field_imm (inst);
557 if (targetaddr & 0x8000)
558 targetaddr |= 0xFFFF0000;
559 }
560 targetaddr += r1val;
561 *targetvalid = TRUE;
562 }
563 else
564 *targetvalid = FALSE;
565 return targetaddr;
566 }
This page took 0.041909 seconds and 4 git commands to generate.