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