Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* Print SPARC instructions. |
82704155 | 2 | Copyright (C) 1989-2019 Free Software Foundation, Inc. |
252b5132 | 3 | |
9b201bb5 NC |
4 | This file is part of the GNU opcodes library. |
5 | ||
6 | This library is free software; you can redistribute it and/or modify | |
0f6ab988 | 7 | it under the terms of the GNU General Public License as published by |
9b201bb5 NC |
8 | the Free Software Foundation; either version 3, or (at your option) |
9 | any later version. | |
252b5132 | 10 | |
9b201bb5 NC |
11 | It is distributed in the hope that it will be useful, but WITHOUT |
12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | |
13 | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | |
14 | License for more details. | |
252b5132 | 15 | |
0f6ab988 NC |
16 | You should have received a copy of the GNU General Public License |
17 | along with this program; if not, write to the Free Software | |
47b0e7ad NC |
18 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
19 | MA 02110-1301, USA. */ | |
252b5132 | 20 | |
252b5132 | 21 | #include "sysdep.h" |
df7b86aa | 22 | #include <stdio.h> |
252b5132 RH |
23 | #include "opcode/sparc.h" |
24 | #include "dis-asm.h" | |
25 | #include "libiberty.h" | |
26 | #include "opintl.h" | |
27 | ||
28 | /* Bitmask of v9 architectures. */ | |
29 | #define MASK_V9 ((1 << SPARC_OPCODE_ARCH_V9) \ | |
19f7b010 | 30 | | (1 << SPARC_OPCODE_ARCH_V9A) \ |
4f26fb3a JM |
31 | | (1 << SPARC_OPCODE_ARCH_V9B) \ |
32 | | (1 << SPARC_OPCODE_ARCH_V9C) \ | |
33 | | (1 << SPARC_OPCODE_ARCH_V9D) \ | |
34 | | (1 << SPARC_OPCODE_ARCH_V9E) \ | |
35 | | (1 << SPARC_OPCODE_ARCH_V9V) \ | |
64517994 JM |
36 | | (1 << SPARC_OPCODE_ARCH_V9M) \ |
37 | | (1 << SPARC_OPCODE_ARCH_M8)) | |
252b5132 RH |
38 | /* 1 if INSN is for v9 only. */ |
39 | #define V9_ONLY_P(insn) (! ((insn)->architecture & ~MASK_V9)) | |
40 | /* 1 if INSN is for v9. */ | |
41 | #define V9_P(insn) (((insn)->architecture & MASK_V9) != 0) | |
42 | ||
43 | /* The sorted opcode table. */ | |
47b0e7ad | 44 | static const sparc_opcode **sorted_opcodes; |
252b5132 RH |
45 | |
46 | /* For faster lookup, after insns are sorted they are hashed. */ | |
47 | /* ??? I think there is room for even more improvement. */ | |
48 | ||
49 | #define HASH_SIZE 256 | |
50 | /* It is important that we only look at insn code bits as that is how the | |
51 | opcode table is hashed. OPCODE_BITS is a table of valid bits for each | |
52 | of the main types (0,1,2,3). */ | |
53 | static int opcode_bits[4] = { 0x01c00000, 0x0, 0x01f80000, 0x01f80000 }; | |
54 | #define HASH_INSN(INSN) \ | |
55 | ((((INSN) >> 24) & 0xc0) | (((INSN) & opcode_bits[((INSN) >> 30) & 3]) >> 19)) | |
47b0e7ad | 56 | typedef struct sparc_opcode_hash |
0f6ab988 | 57 | { |
47b0e7ad NC |
58 | struct sparc_opcode_hash *next; |
59 | const sparc_opcode *opcode; | |
60 | } sparc_opcode_hash; | |
252b5132 | 61 | |
47b0e7ad | 62 | static sparc_opcode_hash *opcode_hash_table[HASH_SIZE]; |
252b5132 RH |
63 | |
64 | /* Sign-extend a value which is N bits long. */ | |
65 | #define SEX(value, bits) \ | |
66 | ((((int)(value)) << ((8 * sizeof (int)) - bits)) \ | |
67 | >> ((8 * sizeof (int)) - bits) ) | |
68 | ||
69 | static char *reg_names[] = | |
47b0e7ad NC |
70 | { "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7", |
71 | "o0", "o1", "o2", "o3", "o4", "o5", "sp", "o7", | |
72 | "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7", | |
73 | "i0", "i1", "i2", "i3", "i4", "i5", "fp", "i7", | |
74 | "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7", | |
75 | "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15", | |
252b5132 RH |
76 | "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23", |
77 | "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31", | |
47b0e7ad NC |
78 | "f32", "f33", "f34", "f35", "f36", "f37", "f38", "f39", |
79 | "f40", "f41", "f42", "f43", "f44", "f45", "f46", "f47", | |
252b5132 RH |
80 | "f48", "f49", "f50", "f51", "f52", "f53", "f54", "f55", |
81 | "f56", "f57", "f58", "f59", "f60", "f61", "f62", "f63", | |
82 | /* psr, wim, tbr, fpsr, cpsr are v8 only. */ | |
83 | "y", "psr", "wim", "tbr", "pc", "npc", "fpsr", "cpsr" | |
84 | }; | |
85 | ||
86 | #define freg_names (®_names[4 * 8]) | |
87 | ||
88 | /* These are ordered according to there register number in | |
89 | rdpr and wrpr insns. */ | |
90 | static char *v9_priv_reg_names[] = | |
91 | { | |
92 | "tpc", "tnpc", "tstate", "tt", "tick", "tba", "pstate", "tl", | |
93 | "pil", "cwp", "cansave", "canrestore", "cleanwin", "otherwin", | |
ff3f9d5b | 94 | "wstate", "fq", "gl" |
38074311 | 95 | /* "ver" and "pmcdper" - special cased */ |
252b5132 RH |
96 | }; |
97 | ||
ff3f9d5b DM |
98 | /* These are ordered according to there register number in |
99 | rdhpr and wrhpr insns. */ | |
100 | static char *v9_hpriv_reg_names[] = | |
101 | { | |
102 | "hpstate", "htstate", "resv2", "hintp", "resv4", "htba", "hver", | |
43e65147 | 103 | "resv7", "resv8", "resv9", "resv10", "resv11", "resv12", "resv13", |
ff3f9d5b | 104 | "resv14", "resv15", "resv16", "resv17", "resv18", "resv19", "resv20", |
96074adc | 105 | "resv21", "resv22", "hmcdper", "hmcddfr", "resv25", "resv26", "hva_mask_nz", |
ec92c392 | 106 | "hstick_offset", "hstick_enable", "resv30", "hstick_cmpr" |
ff3f9d5b DM |
107 | }; |
108 | ||
252b5132 RH |
109 | /* These are ordered according to there register number in |
110 | rd and wr insns (-16). */ | |
111 | static char *v9a_asr_reg_names[] = | |
112 | { | |
96074adc | 113 | "pcr", "pic", "dcr", "gsr", "softint_set", "softint_clear", |
2e52845b | 114 | "softint", "tick_cmpr", "stick", "stick_cmpr", "cfr", |
3d68f91c | 115 | "pause", "mwait" |
252b5132 RH |
116 | }; |
117 | ||
118 | /* Macros used to extract instruction fields. Not all fields have | |
119 | macros defined here, only those which are actually used. */ | |
120 | ||
47b0e7ad NC |
121 | #define X_RD(i) (((i) >> 25) & 0x1f) |
122 | #define X_RS1(i) (((i) >> 14) & 0x1f) | |
123 | #define X_LDST_I(i) (((i) >> 13) & 1) | |
124 | #define X_ASI(i) (((i) >> 5) & 0xff) | |
125 | #define X_RS2(i) (((i) >> 0) & 0x1f) | |
ea783ef3 | 126 | #define X_RS3(i) (((i) >> 9) & 0x1f) |
47b0e7ad NC |
127 | #define X_IMM(i,n) (((i) >> 0) & ((1 << (n)) - 1)) |
128 | #define X_SIMM(i,n) SEX (X_IMM ((i), (n)), (n)) | |
129 | #define X_DISP22(i) (((i) >> 0) & 0x3fffff) | |
130 | #define X_IMM22(i) X_DISP22 (i) | |
131 | #define X_DISP30(i) (((i) >> 0) & 0x3fffffff) | |
64517994 | 132 | #define X_IMM2(i) (((i & 0x10) >> 3) | (i & 0x1)) |
252b5132 RH |
133 | |
134 | /* These are for v9. */ | |
47b0e7ad | 135 | #define X_DISP16(i) (((((i) >> 20) & 3) << 14) | (((i) >> 0) & 0x3fff)) |
2615994e | 136 | #define X_DISP10(i) (((((i) >> 19) & 3) << 8) | (((i) >> 5) & 0xff)) |
47b0e7ad NC |
137 | #define X_DISP19(i) (((i) >> 0) & 0x7ffff) |
138 | #define X_MEMBAR(i) ((i) & 0x7f) | |
252b5132 RH |
139 | |
140 | /* Here is the union which was used to extract instruction fields | |
141 | before the shift and mask macros were written. | |
142 | ||
143 | union sparc_insn | |
144 | { | |
145 | unsigned long int code; | |
146 | struct | |
147 | { | |
148 | unsigned int anop:2; | |
149 | #define op ldst.anop | |
150 | unsigned int anrd:5; | |
151 | #define rd ldst.anrd | |
152 | unsigned int op3:6; | |
153 | unsigned int anrs1:5; | |
154 | #define rs1 ldst.anrs1 | |
155 | unsigned int i:1; | |
156 | unsigned int anasi:8; | |
157 | #define asi ldst.anasi | |
158 | unsigned int anrs2:5; | |
159 | #define rs2 ldst.anrs2 | |
160 | #define shcnt rs2 | |
161 | } ldst; | |
162 | struct | |
163 | { | |
164 | unsigned int anop:2, anrd:5, op3:6, anrs1:5, i:1; | |
165 | unsigned int IMM13:13; | |
166 | #define imm13 IMM13.IMM13 | |
167 | } IMM13; | |
168 | struct | |
169 | { | |
170 | unsigned int anop:2; | |
171 | unsigned int a:1; | |
172 | unsigned int cond:4; | |
173 | unsigned int op2:3; | |
174 | unsigned int DISP22:22; | |
175 | #define disp22 branch.DISP22 | |
176 | #define imm22 disp22 | |
177 | } branch; | |
178 | struct | |
179 | { | |
180 | unsigned int anop:2; | |
181 | unsigned int a:1; | |
182 | unsigned int z:1; | |
183 | unsigned int rcond:3; | |
184 | unsigned int op2:3; | |
185 | unsigned int DISP16HI:2; | |
186 | unsigned int p:1; | |
187 | unsigned int _rs1:5; | |
188 | unsigned int DISP16LO:14; | |
189 | } branch16; | |
190 | struct | |
191 | { | |
192 | unsigned int anop:2; | |
193 | unsigned int adisp30:30; | |
194 | #define disp30 call.adisp30 | |
195 | } call; | |
47b0e7ad | 196 | }; */ |
252b5132 RH |
197 | |
198 | /* Nonzero if INSN is the opcode for a delayed branch. */ | |
47b0e7ad | 199 | |
252b5132 | 200 | static int |
47b0e7ad | 201 | is_delayed_branch (unsigned long insn) |
252b5132 | 202 | { |
47b0e7ad | 203 | sparc_opcode_hash *op; |
252b5132 RH |
204 | |
205 | for (op = opcode_hash_table[HASH_INSN (insn)]; op; op = op->next) | |
206 | { | |
47b0e7ad NC |
207 | const sparc_opcode *opcode = op->opcode; |
208 | ||
252b5132 RH |
209 | if ((opcode->match & insn) == opcode->match |
210 | && (opcode->lose & insn) == 0) | |
47b0e7ad | 211 | return opcode->flags & F_DELAYED; |
252b5132 RH |
212 | } |
213 | return 0; | |
214 | } | |
215 | ||
216 | /* extern void qsort (); */ | |
217 | ||
218 | /* Records current mask of SPARC_OPCODE_ARCH_FOO values, used to pass value | |
219 | to compare_opcodes. */ | |
220 | static unsigned int current_arch_mask; | |
221 | ||
47b0e7ad NC |
222 | /* Given BFD mach number, return a mask of SPARC_OPCODE_ARCH_FOO values. */ |
223 | ||
224 | static int | |
225 | compute_arch_mask (unsigned long mach) | |
226 | { | |
227 | switch (mach) | |
228 | { | |
229 | case 0 : | |
230 | case bfd_mach_sparc : | |
d6787ef9 EB |
231 | return (SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V8) |
232 | | SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_LEON)); | |
47b0e7ad NC |
233 | case bfd_mach_sparc_sparclet : |
234 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_SPARCLET); | |
235 | case bfd_mach_sparc_sparclite : | |
236 | case bfd_mach_sparc_sparclite_le : | |
237 | /* sparclites insns are recognized by default (because that's how | |
238 | they've always been treated, for better or worse). Kludge this by | |
239 | indicating generic v8 is also selected. */ | |
240 | return (SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_SPARCLITE) | |
241 | | SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V8)); | |
242 | case bfd_mach_sparc_v8plus : | |
243 | case bfd_mach_sparc_v9 : | |
244 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9); | |
245 | case bfd_mach_sparc_v8plusa : | |
246 | case bfd_mach_sparc_v9a : | |
247 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9A); | |
248 | case bfd_mach_sparc_v8plusb : | |
249 | case bfd_mach_sparc_v9b : | |
250 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9B); | |
4f26fb3a JM |
251 | case bfd_mach_sparc_v8plusc : |
252 | case bfd_mach_sparc_v9c : | |
253 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9C); | |
254 | case bfd_mach_sparc_v8plusd : | |
255 | case bfd_mach_sparc_v9d : | |
256 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9D); | |
257 | case bfd_mach_sparc_v8pluse : | |
258 | case bfd_mach_sparc_v9e : | |
259 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9E); | |
260 | case bfd_mach_sparc_v8plusv : | |
261 | case bfd_mach_sparc_v9v : | |
262 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9V); | |
263 | case bfd_mach_sparc_v8plusm : | |
264 | case bfd_mach_sparc_v9m : | |
265 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9M); | |
64517994 JM |
266 | case bfd_mach_sparc_v8plusm8 : |
267 | case bfd_mach_sparc_v9m8 : | |
268 | return SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_M8); | |
47b0e7ad NC |
269 | } |
270 | abort (); | |
271 | } | |
272 | ||
273 | /* Compare opcodes A and B. */ | |
274 | ||
275 | static int | |
276 | compare_opcodes (const void * a, const void * b) | |
277 | { | |
278 | sparc_opcode *op0 = * (sparc_opcode **) a; | |
279 | sparc_opcode *op1 = * (sparc_opcode **) b; | |
280 | unsigned long int match0 = op0->match, match1 = op1->match; | |
281 | unsigned long int lose0 = op0->lose, lose1 = op1->lose; | |
282 | register unsigned int i; | |
283 | ||
284 | /* If one (and only one) insn isn't supported by the current architecture, | |
285 | prefer the one that is. If neither are supported, but they're both for | |
286 | the same architecture, continue processing. Otherwise (both unsupported | |
287 | and for different architectures), prefer lower numbered arch's (fudged | |
288 | by comparing the bitmasks). */ | |
289 | if (op0->architecture & current_arch_mask) | |
290 | { | |
291 | if (! (op1->architecture & current_arch_mask)) | |
292 | return -1; | |
293 | } | |
294 | else | |
295 | { | |
296 | if (op1->architecture & current_arch_mask) | |
297 | return 1; | |
298 | else if (op0->architecture != op1->architecture) | |
299 | return op0->architecture - op1->architecture; | |
300 | } | |
301 | ||
302 | /* If a bit is set in both match and lose, there is something | |
303 | wrong with the opcode table. */ | |
304 | if (match0 & lose0) | |
305 | { | |
a6743a54 AM |
306 | opcodes_error_handler |
307 | /* xgettext:c-format */ | |
308 | (_("internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"), | |
47b0e7ad NC |
309 | op0->name, match0, lose0); |
310 | op0->lose &= ~op0->match; | |
311 | lose0 = op0->lose; | |
312 | } | |
313 | ||
314 | if (match1 & lose1) | |
315 | { | |
a6743a54 AM |
316 | opcodes_error_handler |
317 | /* xgettext:c-format */ | |
318 | (_("internal error: bad sparc-opcode.h: \"%s\", %#.8lx, %#.8lx\n"), | |
47b0e7ad NC |
319 | op1->name, match1, lose1); |
320 | op1->lose &= ~op1->match; | |
321 | lose1 = op1->lose; | |
322 | } | |
323 | ||
324 | /* Because the bits that are variable in one opcode are constant in | |
325 | another, it is important to order the opcodes in the right order. */ | |
326 | for (i = 0; i < 32; ++i) | |
327 | { | |
328 | unsigned long int x = 1 << i; | |
329 | int x0 = (match0 & x) != 0; | |
330 | int x1 = (match1 & x) != 0; | |
331 | ||
332 | if (x0 != x1) | |
333 | return x1 - x0; | |
334 | } | |
335 | ||
336 | for (i = 0; i < 32; ++i) | |
337 | { | |
338 | unsigned long int x = 1 << i; | |
339 | int x0 = (lose0 & x) != 0; | |
340 | int x1 = (lose1 & x) != 0; | |
341 | ||
342 | if (x0 != x1) | |
343 | return x1 - x0; | |
344 | } | |
345 | ||
346 | /* They are functionally equal. So as long as the opcode table is | |
347 | valid, we can put whichever one first we want, on aesthetic grounds. */ | |
348 | ||
349 | /* Our first aesthetic ground is that aliases defer to real insns. */ | |
350 | { | |
351 | int alias_diff = (op0->flags & F_ALIAS) - (op1->flags & F_ALIAS); | |
352 | ||
353 | if (alias_diff != 0) | |
354 | /* Put the one that isn't an alias first. */ | |
355 | return alias_diff; | |
356 | } | |
357 | ||
358 | /* Except for aliases, two "identical" instructions had | |
359 | better have the same opcode. This is a sanity check on the table. */ | |
360 | i = strcmp (op0->name, op1->name); | |
361 | if (i) | |
362 | { | |
0afd1215 DM |
363 | if (op0->flags & F_ALIAS) |
364 | { | |
365 | if (op0->flags & F_PREFERRED) | |
366 | return -1; | |
367 | if (op1->flags & F_PREFERRED) | |
368 | return 1; | |
369 | ||
370 | /* If they're both aliases, and neither is marked as preferred, | |
371 | be arbitrary. */ | |
372 | return i; | |
373 | } | |
47b0e7ad | 374 | else |
a6743a54 AM |
375 | opcodes_error_handler |
376 | /* xgettext:c-format */ | |
377 | (_("internal error: bad sparc-opcode.h: \"%s\" == \"%s\"\n"), | |
378 | op0->name, op1->name); | |
47b0e7ad NC |
379 | } |
380 | ||
381 | /* Fewer arguments are preferred. */ | |
382 | { | |
383 | int length_diff = strlen (op0->args) - strlen (op1->args); | |
384 | ||
385 | if (length_diff != 0) | |
386 | /* Put the one with fewer arguments first. */ | |
387 | return length_diff; | |
388 | } | |
389 | ||
390 | /* Put 1+i before i+1. */ | |
391 | { | |
392 | char *p0 = (char *) strchr (op0->args, '+'); | |
393 | char *p1 = (char *) strchr (op1->args, '+'); | |
394 | ||
395 | if (p0 && p1) | |
396 | { | |
397 | /* There is a plus in both operands. Note that a plus | |
398 | sign cannot be the first character in args, | |
399 | so the following [-1]'s are valid. */ | |
400 | if (p0[-1] == 'i' && p1[1] == 'i') | |
401 | /* op0 is i+1 and op1 is 1+i, so op1 goes first. */ | |
402 | return 1; | |
403 | if (p0[1] == 'i' && p1[-1] == 'i') | |
404 | /* op0 is 1+i and op1 is i+1, so op0 goes first. */ | |
405 | return -1; | |
406 | } | |
407 | } | |
408 | ||
409 | /* Put 1,i before i,1. */ | |
410 | { | |
411 | int i0 = strncmp (op0->args, "i,1", 3) == 0; | |
412 | int i1 = strncmp (op1->args, "i,1", 3) == 0; | |
413 | ||
414 | if (i0 ^ i1) | |
415 | return i0 - i1; | |
416 | } | |
417 | ||
418 | /* They are, as far as we can tell, identical. | |
419 | Since qsort may have rearranged the table partially, there is | |
420 | no way to tell which one was first in the opcode table as | |
421 | written, so just say there are equal. */ | |
422 | /* ??? This is no longer true now that we sort a vector of pointers, | |
423 | not the table itself. */ | |
424 | return 0; | |
425 | } | |
426 | ||
427 | /* Build a hash table from the opcode table. | |
428 | OPCODE_TABLE is a sorted list of pointers into the opcode table. */ | |
429 | ||
430 | static void | |
431 | build_hash_table (const sparc_opcode **opcode_table, | |
432 | sparc_opcode_hash **hash_table, | |
433 | int num_opcodes) | |
434 | { | |
435 | int i; | |
436 | int hash_count[HASH_SIZE]; | |
437 | static sparc_opcode_hash *hash_buf = NULL; | |
438 | ||
439 | /* Start at the end of the table and work backwards so that each | |
440 | chain is sorted. */ | |
441 | ||
442 | memset (hash_table, 0, HASH_SIZE * sizeof (hash_table[0])); | |
443 | memset (hash_count, 0, HASH_SIZE * sizeof (hash_count[0])); | |
444 | if (hash_buf != NULL) | |
445 | free (hash_buf); | |
446 | hash_buf = xmalloc (sizeof (* hash_buf) * num_opcodes); | |
447 | for (i = num_opcodes - 1; i >= 0; --i) | |
448 | { | |
449 | int hash = HASH_INSN (opcode_table[i]->match); | |
450 | sparc_opcode_hash *h = &hash_buf[i]; | |
451 | ||
452 | h->next = hash_table[hash]; | |
453 | h->opcode = opcode_table[i]; | |
454 | hash_table[hash] = h; | |
455 | ++hash_count[hash]; | |
456 | } | |
457 | ||
458 | #if 0 /* for debugging */ | |
459 | { | |
460 | int min_count = num_opcodes, max_count = 0; | |
461 | int total; | |
462 | ||
463 | for (i = 0; i < HASH_SIZE; ++i) | |
464 | { | |
465 | if (hash_count[i] < min_count) | |
466 | min_count = hash_count[i]; | |
467 | if (hash_count[i] > max_count) | |
468 | max_count = hash_count[i]; | |
469 | total += hash_count[i]; | |
470 | } | |
471 | ||
472 | printf ("Opcode hash table stats: min %d, max %d, ave %f\n", | |
473 | min_count, max_count, (double) total / HASH_SIZE); | |
474 | } | |
475 | #endif | |
476 | } | |
477 | ||
252b5132 RH |
478 | /* Print one instruction from MEMADDR on INFO->STREAM. |
479 | ||
480 | We suffix the instruction with a comment that gives the absolute | |
481 | address involved, as well as its symbolic form, if the instruction | |
482 | is preceded by a findable `sethi' and it either adds an immediate | |
483 | displacement to that register, or it is an `add' or `or' instruction | |
484 | on that register. */ | |
485 | ||
486 | int | |
47b0e7ad | 487 | print_insn_sparc (bfd_vma memaddr, disassemble_info *info) |
252b5132 RH |
488 | { |
489 | FILE *stream = info->stream; | |
490 | bfd_byte buffer[4]; | |
491 | unsigned long insn; | |
47b0e7ad | 492 | sparc_opcode_hash *op; |
252b5132 RH |
493 | /* Nonzero of opcode table has been initialized. */ |
494 | static int opcodes_initialized = 0; | |
495 | /* bfd mach number of last call. */ | |
496 | static unsigned long current_mach = 0; | |
7bfeee7b | 497 | bfd_vma (*getword) (const void *); |
252b5132 RH |
498 | |
499 | if (!opcodes_initialized | |
500 | || info->mach != current_mach) | |
501 | { | |
502 | int i; | |
503 | ||
504 | current_arch_mask = compute_arch_mask (info->mach); | |
505 | ||
506 | if (!opcodes_initialized) | |
47b0e7ad NC |
507 | sorted_opcodes = |
508 | xmalloc (sparc_num_opcodes * sizeof (sparc_opcode *)); | |
252b5132 RH |
509 | /* Reset the sorted table so we can resort it. */ |
510 | for (i = 0; i < sparc_num_opcodes; ++i) | |
511 | sorted_opcodes[i] = &sparc_opcodes[i]; | |
512 | qsort ((char *) sorted_opcodes, sparc_num_opcodes, | |
513 | sizeof (sorted_opcodes[0]), compare_opcodes); | |
514 | ||
515 | build_hash_table (sorted_opcodes, opcode_hash_table, sparc_num_opcodes); | |
516 | current_mach = info->mach; | |
517 | opcodes_initialized = 1; | |
518 | } | |
519 | ||
520 | { | |
521 | int status = | |
522 | (*info->read_memory_func) (memaddr, buffer, sizeof (buffer), info); | |
47b0e7ad | 523 | |
252b5132 RH |
524 | if (status != 0) |
525 | { | |
526 | (*info->memory_error_func) (status, memaddr, info); | |
527 | return -1; | |
528 | } | |
529 | } | |
530 | ||
531 | /* On SPARClite variants such as DANlite (sparc86x), instructions | |
0f6ab988 | 532 | are always big-endian even when the machine is in little-endian mode. */ |
252b5132 RH |
533 | if (info->endian == BFD_ENDIAN_BIG || info->mach == bfd_mach_sparc_sparclite) |
534 | getword = bfd_getb32; | |
535 | else | |
536 | getword = bfd_getl32; | |
537 | ||
538 | insn = getword (buffer); | |
539 | ||
0f6ab988 NC |
540 | info->insn_info_valid = 1; /* We do return this info. */ |
541 | info->insn_type = dis_nonbranch; /* Assume non branch insn. */ | |
542 | info->branch_delay_insns = 0; /* Assume no delay. */ | |
543 | info->target = 0; /* Assume no target known. */ | |
252b5132 RH |
544 | |
545 | for (op = opcode_hash_table[HASH_INSN (insn)]; op; op = op->next) | |
546 | { | |
47b0e7ad | 547 | const sparc_opcode *opcode = op->opcode; |
252b5132 RH |
548 | |
549 | /* If the insn isn't supported by the current architecture, skip it. */ | |
550 | if (! (opcode->architecture & current_arch_mask)) | |
551 | continue; | |
552 | ||
553 | if ((opcode->match & insn) == opcode->match | |
554 | && (opcode->lose & insn) == 0) | |
555 | { | |
556 | /* Nonzero means that we have found an instruction which has | |
557 | the effect of adding or or'ing the imm13 field to rs1. */ | |
558 | int imm_added_to_rs1 = 0; | |
9df31319 | 559 | int imm_ored_to_rs1 = 0; |
252b5132 RH |
560 | |
561 | /* Nonzero means that we have found a plus sign in the args | |
562 | field of the opcode table. */ | |
563 | int found_plus = 0; | |
47b0e7ad | 564 | |
252b5132 RH |
565 | /* Nonzero means we have an annulled branch. */ |
566 | int is_annulled = 0; | |
567 | ||
568 | /* Do we have an `add' or `or' instruction combining an | |
569 | immediate with rs1? */ | |
9df31319 RH |
570 | if (opcode->match == 0x80102000) /* or */ |
571 | imm_ored_to_rs1 = 1; | |
572 | if (opcode->match == 0x80002000) /* add */ | |
252b5132 RH |
573 | imm_added_to_rs1 = 1; |
574 | ||
575 | if (X_RS1 (insn) != X_RD (insn) | |
576 | && strchr (opcode->args, 'r') != 0) | |
577 | /* Can't do simple format if source and dest are different. */ | |
578 | continue; | |
579 | if (X_RS2 (insn) != X_RD (insn) | |
580 | && strchr (opcode->args, 'O') != 0) | |
581 | /* Can't do simple format if source and dest are different. */ | |
582 | continue; | |
583 | ||
d908c8af | 584 | (*info->fprintf_func) (stream, "%s", opcode->name); |
252b5132 RH |
585 | |
586 | { | |
47b0e7ad | 587 | const char *s; |
252b5132 RH |
588 | |
589 | if (opcode->args[0] != ',') | |
590 | (*info->fprintf_func) (stream, " "); | |
0f6ab988 | 591 | |
252b5132 RH |
592 | for (s = opcode->args; *s != '\0'; ++s) |
593 | { | |
594 | while (*s == ',') | |
595 | { | |
596 | (*info->fprintf_func) (stream, ","); | |
597 | ++s; | |
0f6ab988 NC |
598 | switch (*s) |
599 | { | |
600 | case 'a': | |
601 | (*info->fprintf_func) (stream, "a"); | |
602 | is_annulled = 1; | |
603 | ++s; | |
604 | continue; | |
605 | case 'N': | |
606 | (*info->fprintf_func) (stream, "pn"); | |
607 | ++s; | |
608 | continue; | |
609 | ||
610 | case 'T': | |
611 | (*info->fprintf_func) (stream, "pt"); | |
612 | ++s; | |
613 | continue; | |
614 | ||
615 | default: | |
616 | break; | |
617 | } | |
618 | } | |
252b5132 RH |
619 | |
620 | (*info->fprintf_func) (stream, " "); | |
47b0e7ad | 621 | |
252b5132 RH |
622 | switch (*s) |
623 | { | |
624 | case '+': | |
625 | found_plus = 1; | |
47b0e7ad | 626 | /* Fall through. */ |
252b5132 | 627 | |
252b5132 RH |
628 | default: |
629 | (*info->fprintf_func) (stream, "%c", *s); | |
630 | break; | |
631 | ||
632 | case '#': | |
633 | (*info->fprintf_func) (stream, "0"); | |
634 | break; | |
635 | ||
636 | #define reg(n) (*info->fprintf_func) (stream, "%%%s", reg_names[n]) | |
637 | case '1': | |
638 | case 'r': | |
639 | reg (X_RS1 (insn)); | |
640 | break; | |
641 | ||
642 | case '2': | |
643 | case 'O': | |
644 | reg (X_RS2 (insn)); | |
645 | break; | |
646 | ||
647 | case 'd': | |
648 | reg (X_RD (insn)); | |
649 | break; | |
650 | #undef reg | |
651 | ||
652 | #define freg(n) (*info->fprintf_func) (stream, "%%%s", freg_names[n]) | |
653 | #define fregx(n) (*info->fprintf_func) (stream, "%%%s", freg_names[((n) & ~1) | (((n) & 1) << 5)]) | |
654 | case 'e': | |
655 | freg (X_RS1 (insn)); | |
656 | break; | |
47b0e7ad NC |
657 | case 'v': /* Double/even. */ |
658 | case 'V': /* Quad/multiple of 4. */ | |
64517994 | 659 | case ';': /* Double/even multiple of 8 doubles. */ |
252b5132 RH |
660 | fregx (X_RS1 (insn)); |
661 | break; | |
662 | ||
663 | case 'f': | |
664 | freg (X_RS2 (insn)); | |
665 | break; | |
47b0e7ad NC |
666 | case 'B': /* Double/even. */ |
667 | case 'R': /* Quad/multiple of 4. */ | |
64517994 | 668 | case ':': /* Double/even multiple of 8 doubles. */ |
252b5132 RH |
669 | fregx (X_RS2 (insn)); |
670 | break; | |
671 | ||
ea783ef3 DM |
672 | case '4': |
673 | freg (X_RS3 (insn)); | |
674 | break; | |
675 | case '5': /* Double/even. */ | |
676 | fregx (X_RS3 (insn)); | |
677 | break; | |
678 | ||
252b5132 RH |
679 | case 'g': |
680 | freg (X_RD (insn)); | |
681 | break; | |
47b0e7ad NC |
682 | case 'H': /* Double/even. */ |
683 | case 'J': /* Quad/multiple of 4. */ | |
3d68f91c | 684 | case '}': /* Double/even. */ |
252b5132 RH |
685 | fregx (X_RD (insn)); |
686 | break; | |
64517994 JM |
687 | |
688 | case '^': /* Double/even multiple of 8 doubles. */ | |
689 | fregx (X_RD (insn) & ~0x6); | |
690 | break; | |
691 | ||
692 | case '\'': /* Double/even in FPCMPSHL. */ | |
693 | fregx (X_RS2 (insn | 0x11)); | |
694 | break; | |
695 | ||
252b5132 RH |
696 | #undef freg |
697 | #undef fregx | |
698 | ||
699 | #define creg(n) (*info->fprintf_func) (stream, "%%c%u", (unsigned int) (n)) | |
700 | case 'b': | |
701 | creg (X_RS1 (insn)); | |
702 | break; | |
703 | ||
704 | case 'c': | |
705 | creg (X_RS2 (insn)); | |
706 | break; | |
707 | ||
708 | case 'D': | |
709 | creg (X_RD (insn)); | |
710 | break; | |
711 | #undef creg | |
712 | ||
713 | case 'h': | |
714 | (*info->fprintf_func) (stream, "%%hi(%#x)", | |
56930d37 | 715 | ((unsigned) 0xFFFFFFFF |
252b5132 RH |
716 | & ((int) X_IMM22 (insn) << 10))); |
717 | break; | |
718 | ||
47b0e7ad NC |
719 | case 'i': /* 13 bit immediate. */ |
720 | case 'I': /* 11 bit immediate. */ | |
721 | case 'j': /* 10 bit immediate. */ | |
252b5132 RH |
722 | { |
723 | int imm; | |
724 | ||
725 | if (*s == 'i') | |
726 | imm = X_SIMM (insn, 13); | |
727 | else if (*s == 'I') | |
728 | imm = X_SIMM (insn, 11); | |
729 | else | |
730 | imm = X_SIMM (insn, 10); | |
731 | ||
732 | /* Check to see whether we have a 1+i, and take | |
733 | note of that fact. | |
734 | ||
735 | Note: because of the way we sort the table, | |
736 | we will be matching 1+i rather than i+1, | |
737 | so it is OK to assume that i is after +, | |
738 | not before it. */ | |
739 | if (found_plus) | |
740 | imm_added_to_rs1 = 1; | |
47b0e7ad | 741 | |
252b5132 RH |
742 | if (imm <= 9) |
743 | (*info->fprintf_func) (stream, "%d", imm); | |
744 | else | |
745 | (*info->fprintf_func) (stream, "%#x", imm); | |
746 | } | |
747 | break; | |
748 | ||
6cda1326 | 749 | case ')': /* 5 bit unsigned immediate from RS3. */ |
d908c8af | 750 | (info->fprintf_func) (stream, "%#x", (unsigned int) X_RS3 (insn)); |
6cda1326 DM |
751 | break; |
752 | ||
47b0e7ad NC |
753 | case 'X': /* 5 bit unsigned immediate. */ |
754 | case 'Y': /* 6 bit unsigned immediate. */ | |
252b5132 RH |
755 | { |
756 | int imm = X_IMM (insn, *s == 'X' ? 5 : 6); | |
757 | ||
758 | if (imm <= 9) | |
759 | (info->fprintf_func) (stream, "%d", imm); | |
760 | else | |
761 | (info->fprintf_func) (stream, "%#x", (unsigned) imm); | |
762 | } | |
763 | break; | |
764 | ||
19f7b010 | 765 | case '3': |
0fd3a477 | 766 | (info->fprintf_func) (stream, "%ld", X_IMM (insn, 3)); |
19f7b010 JJ |
767 | break; |
768 | ||
252b5132 RH |
769 | case 'K': |
770 | { | |
771 | int mask = X_MEMBAR (insn); | |
772 | int bit = 0x40, printed_one = 0; | |
773 | const char *name; | |
774 | ||
775 | if (mask == 0) | |
776 | (info->fprintf_func) (stream, "0"); | |
777 | else | |
778 | while (bit) | |
779 | { | |
780 | if (mask & bit) | |
781 | { | |
782 | if (printed_one) | |
783 | (info->fprintf_func) (stream, "|"); | |
784 | name = sparc_decode_membar (bit); | |
785 | (info->fprintf_func) (stream, "%s", name); | |
786 | printed_one = 1; | |
787 | } | |
788 | bit >>= 1; | |
789 | } | |
790 | break; | |
791 | } | |
792 | ||
2615994e DM |
793 | case '=': |
794 | info->target = memaddr + SEX (X_DISP10 (insn), 10) * 4; | |
795 | (*info->print_address_func) (info->target, info); | |
796 | break; | |
797 | ||
252b5132 RH |
798 | case 'k': |
799 | info->target = memaddr + SEX (X_DISP16 (insn), 16) * 4; | |
800 | (*info->print_address_func) (info->target, info); | |
801 | break; | |
802 | ||
803 | case 'G': | |
804 | info->target = memaddr + SEX (X_DISP19 (insn), 19) * 4; | |
805 | (*info->print_address_func) (info->target, info); | |
806 | break; | |
807 | ||
808 | case '6': | |
809 | case '7': | |
810 | case '8': | |
811 | case '9': | |
812 | (*info->fprintf_func) (stream, "%%fcc%c", *s - '6' + '0'); | |
813 | break; | |
814 | ||
815 | case 'z': | |
816 | (*info->fprintf_func) (stream, "%%icc"); | |
817 | break; | |
818 | ||
819 | case 'Z': | |
820 | (*info->fprintf_func) (stream, "%%xcc"); | |
821 | break; | |
822 | ||
823 | case 'E': | |
824 | (*info->fprintf_func) (stream, "%%ccr"); | |
825 | break; | |
826 | ||
827 | case 's': | |
828 | (*info->fprintf_func) (stream, "%%fprs"); | |
829 | break; | |
830 | ||
3d68f91c JM |
831 | case '{': |
832 | (*info->fprintf_func) (stream, "%%mcdper"); | |
833 | break; | |
834 | ||
64517994 JM |
835 | case '&': |
836 | (*info->fprintf_func) (stream, "%%entropy"); | |
837 | break; | |
838 | ||
252b5132 RH |
839 | case 'o': |
840 | (*info->fprintf_func) (stream, "%%asi"); | |
841 | break; | |
47b0e7ad | 842 | |
252b5132 RH |
843 | case 'W': |
844 | (*info->fprintf_func) (stream, "%%tick"); | |
845 | break; | |
846 | ||
847 | case 'P': | |
848 | (*info->fprintf_func) (stream, "%%pc"); | |
849 | break; | |
850 | ||
851 | case '?': | |
852 | if (X_RS1 (insn) == 31) | |
853 | (*info->fprintf_func) (stream, "%%ver"); | |
38074311 JM |
854 | else if (X_RS1 (insn) == 23) |
855 | (*info->fprintf_func) (stream, "%%pmcdper"); | |
ff3f9d5b | 856 | else if ((unsigned) X_RS1 (insn) < 17) |
252b5132 RH |
857 | (*info->fprintf_func) (stream, "%%%s", |
858 | v9_priv_reg_names[X_RS1 (insn)]); | |
859 | else | |
860 | (*info->fprintf_func) (stream, "%%reserved"); | |
861 | break; | |
862 | ||
863 | case '!': | |
96074adc JM |
864 | if (X_RD (insn) == 31) |
865 | (*info->fprintf_func) (stream, "%%ver"); | |
866 | else if (X_RD (insn) == 23) | |
38074311 JM |
867 | (*info->fprintf_func) (stream, "%%pmcdper"); |
868 | else if ((unsigned) X_RD (insn) < 17) | |
252b5132 RH |
869 | (*info->fprintf_func) (stream, "%%%s", |
870 | v9_priv_reg_names[X_RD (insn)]); | |
871 | else | |
872 | (*info->fprintf_func) (stream, "%%reserved"); | |
873 | break; | |
874 | ||
ff3f9d5b DM |
875 | case '$': |
876 | if ((unsigned) X_RS1 (insn) < 32) | |
877 | (*info->fprintf_func) (stream, "%%%s", | |
878 | v9_hpriv_reg_names[X_RS1 (insn)]); | |
879 | else | |
880 | (*info->fprintf_func) (stream, "%%reserved"); | |
881 | break; | |
882 | ||
883 | case '%': | |
884 | if ((unsigned) X_RD (insn) < 32) | |
885 | (*info->fprintf_func) (stream, "%%%s", | |
886 | v9_hpriv_reg_names[X_RD (insn)]); | |
887 | else | |
888 | (*info->fprintf_func) (stream, "%%reserved"); | |
889 | break; | |
890 | ||
252b5132 | 891 | case '/': |
ea783ef3 | 892 | if (X_RS1 (insn) < 16 || X_RS1 (insn) > 28) |
252b5132 RH |
893 | (*info->fprintf_func) (stream, "%%reserved"); |
894 | else | |
895 | (*info->fprintf_func) (stream, "%%%s", | |
896 | v9a_asr_reg_names[X_RS1 (insn)-16]); | |
897 | break; | |
898 | ||
899 | case '_': | |
ea783ef3 | 900 | if (X_RD (insn) < 16 || X_RD (insn) > 28) |
252b5132 RH |
901 | (*info->fprintf_func) (stream, "%%reserved"); |
902 | else | |
903 | (*info->fprintf_func) (stream, "%%%s", | |
904 | v9a_asr_reg_names[X_RD (insn)-16]); | |
905 | break; | |
906 | ||
907 | case '*': | |
908 | { | |
909 | const char *name = sparc_decode_prefetch (X_RD (insn)); | |
910 | ||
911 | if (name) | |
912 | (*info->fprintf_func) (stream, "%s", name); | |
913 | else | |
0fd3a477 | 914 | (*info->fprintf_func) (stream, "%ld", X_RD (insn)); |
252b5132 RH |
915 | break; |
916 | } | |
47b0e7ad | 917 | |
252b5132 | 918 | case 'M': |
0fd3a477 | 919 | (*info->fprintf_func) (stream, "%%asr%ld", X_RS1 (insn)); |
252b5132 | 920 | break; |
47b0e7ad | 921 | |
252b5132 | 922 | case 'm': |
0fd3a477 | 923 | (*info->fprintf_func) (stream, "%%asr%ld", X_RD (insn)); |
252b5132 | 924 | break; |
47b0e7ad | 925 | |
252b5132 RH |
926 | case 'L': |
927 | info->target = memaddr + SEX (X_DISP30 (insn), 30) * 4; | |
928 | (*info->print_address_func) (info->target, info); | |
929 | break; | |
930 | ||
931 | case 'n': | |
932 | (*info->fprintf_func) | |
933 | (stream, "%#x", SEX (X_DISP22 (insn), 22)); | |
934 | break; | |
935 | ||
936 | case 'l': | |
937 | info->target = memaddr + SEX (X_DISP22 (insn), 22) * 4; | |
938 | (*info->print_address_func) (info->target, info); | |
939 | break; | |
940 | ||
941 | case 'A': | |
942 | { | |
943 | const char *name = sparc_decode_asi (X_ASI (insn)); | |
944 | ||
945 | if (name) | |
946 | (*info->fprintf_func) (stream, "%s", name); | |
947 | else | |
0fd3a477 | 948 | (*info->fprintf_func) (stream, "(%ld)", X_ASI (insn)); |
252b5132 RH |
949 | break; |
950 | } | |
951 | ||
952 | case 'C': | |
953 | (*info->fprintf_func) (stream, "%%csr"); | |
954 | break; | |
955 | ||
956 | case 'F': | |
957 | (*info->fprintf_func) (stream, "%%fsr"); | |
958 | break; | |
959 | ||
ea783ef3 DM |
960 | case '(': |
961 | (*info->fprintf_func) (stream, "%%efsr"); | |
962 | break; | |
963 | ||
252b5132 RH |
964 | case 'p': |
965 | (*info->fprintf_func) (stream, "%%psr"); | |
966 | break; | |
967 | ||
968 | case 'q': | |
969 | (*info->fprintf_func) (stream, "%%fq"); | |
970 | break; | |
971 | ||
972 | case 'Q': | |
973 | (*info->fprintf_func) (stream, "%%cq"); | |
974 | break; | |
975 | ||
976 | case 't': | |
977 | (*info->fprintf_func) (stream, "%%tbr"); | |
978 | break; | |
979 | ||
980 | case 'w': | |
981 | (*info->fprintf_func) (stream, "%%wim"); | |
982 | break; | |
983 | ||
984 | case 'x': | |
0fd3a477 | 985 | (*info->fprintf_func) (stream, "%ld", |
252b5132 RH |
986 | ((X_LDST_I (insn) << 8) |
987 | + X_ASI (insn))); | |
988 | break; | |
989 | ||
64517994 JM |
990 | case '|': /* 2-bit immediate */ |
991 | (*info->fprintf_func) (stream, "%ld", X_IMM2 (insn)); | |
992 | break; | |
993 | ||
252b5132 RH |
994 | case 'y': |
995 | (*info->fprintf_func) (stream, "%%y"); | |
996 | break; | |
997 | ||
998 | case 'u': | |
999 | case 'U': | |
1000 | { | |
1001 | int val = *s == 'U' ? X_RS1 (insn) : X_RD (insn); | |
1002 | const char *name = sparc_decode_sparclet_cpreg (val); | |
1003 | ||
1004 | if (name) | |
1005 | (*info->fprintf_func) (stream, "%s", name); | |
1006 | else | |
1007 | (*info->fprintf_func) (stream, "%%cpreg(%d)", val); | |
1008 | break; | |
1009 | } | |
1010 | } | |
1011 | } | |
1012 | } | |
1013 | ||
1014 | /* If we are adding or or'ing something to rs1, then | |
1015 | check to see whether the previous instruction was | |
1016 | a sethi to the same register as in the sethi. | |
1017 | If so, attempt to print the result of the add or | |
1018 | or (in this context add and or do the same thing) | |
1019 | and its symbolic value. */ | |
9df31319 | 1020 | if (imm_ored_to_rs1 || imm_added_to_rs1) |
252b5132 RH |
1021 | { |
1022 | unsigned long prev_insn; | |
1023 | int errcode; | |
1024 | ||
0f6ab988 NC |
1025 | if (memaddr >= 4) |
1026 | errcode = | |
1027 | (*info->read_memory_func) | |
252b5132 | 1028 | (memaddr - 4, buffer, sizeof (buffer), info); |
0f6ab988 NC |
1029 | else |
1030 | errcode = 1; | |
1031 | ||
252b5132 RH |
1032 | prev_insn = getword (buffer); |
1033 | ||
1034 | if (errcode == 0) | |
1035 | { | |
1036 | /* If it is a delayed branch, we need to look at the | |
1037 | instruction before the delayed branch. This handles | |
0f6ab988 | 1038 | sequences such as: |
252b5132 RH |
1039 | |
1040 | sethi %o1, %hi(_foo), %o1 | |
1041 | call _printf | |
0f6ab988 | 1042 | or %o1, %lo(_foo), %o1 */ |
252b5132 RH |
1043 | |
1044 | if (is_delayed_branch (prev_insn)) | |
1045 | { | |
0f6ab988 NC |
1046 | if (memaddr >= 8) |
1047 | errcode = (*info->read_memory_func) | |
1048 | (memaddr - 8, buffer, sizeof (buffer), info); | |
1049 | else | |
1050 | errcode = 1; | |
1051 | ||
252b5132 RH |
1052 | prev_insn = getword (buffer); |
1053 | } | |
1054 | } | |
1055 | ||
1056 | /* If there was a problem reading memory, then assume | |
1057 | the previous instruction was not sethi. */ | |
1058 | if (errcode == 0) | |
1059 | { | |
1060 | /* Is it sethi to the same register? */ | |
1061 | if ((prev_insn & 0xc1c00000) == 0x01000000 | |
1062 | && X_RD (prev_insn) == X_RS1 (insn)) | |
1063 | { | |
1064 | (*info->fprintf_func) (stream, "\t! "); | |
47b0e7ad | 1065 | info->target = |
56930d37 AO |
1066 | ((unsigned) 0xFFFFFFFF |
1067 | & ((int) X_IMM22 (prev_insn) << 10)); | |
9df31319 RH |
1068 | if (imm_added_to_rs1) |
1069 | info->target += X_SIMM (insn, 13); | |
1070 | else | |
1071 | info->target |= X_SIMM (insn, 13); | |
252b5132 RH |
1072 | (*info->print_address_func) (info->target, info); |
1073 | info->insn_type = dis_dref; | |
1074 | info->data_size = 4; /* FIXME!!! */ | |
1075 | } | |
1076 | } | |
1077 | } | |
1078 | ||
1079 | if (opcode->flags & (F_UNBR|F_CONDBR|F_JSR)) | |
1080 | { | |
c7e2358a AM |
1081 | /* FIXME -- check is_annulled flag. */ |
1082 | (void) is_annulled; | |
252b5132 RH |
1083 | if (opcode->flags & F_UNBR) |
1084 | info->insn_type = dis_branch; | |
1085 | if (opcode->flags & F_CONDBR) | |
1086 | info->insn_type = dis_condbranch; | |
1087 | if (opcode->flags & F_JSR) | |
1088 | info->insn_type = dis_jsr; | |
1089 | if (opcode->flags & F_DELAYED) | |
1090 | info->branch_delay_insns = 1; | |
1091 | } | |
1092 | ||
1093 | return sizeof (buffer); | |
1094 | } | |
1095 | } | |
1096 | ||
0f6ab988 | 1097 | info->insn_type = dis_noninsn; /* Mark as non-valid instruction. */ |
252b5132 RH |
1098 | (*info->fprintf_func) (stream, _("unknown")); |
1099 | return sizeof (buffer); | |
1100 | } |