2001-05-25 H.J. Lu <hjl@gnu.org>
[binutils.git] / bfd / cpu-ia64-opc.c
blob8c22942fbe45541b4e9a3880f22480090e7b575d
1 /* Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
2 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
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
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Logically, this code should be part of libopcode but since some of
21 the operand insertion/extraction functions help bfd to implement
22 relocations, this code is included as part of elf64-ia64.c. This
23 avoids circular dependencies between libopcode and libbfd and also
24 obviates the need for applications to link in libopcode when all
25 they really want is libbfd.
27 --davidm Mon Apr 13 22:14:02 1998 */
29 #include "../opcodes/ia64-opc.h"
31 #define NELEMS(a) ((int) (sizeof (a) / sizeof ((a)[0])))
33 static const char*
34 ins_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED,
35 ia64_insn value ATTRIBUTE_UNUSED, ia64_insn *code ATTRIBUTE_UNUSED)
37 return "internal error---this shouldn't happen";
40 static const char*
41 ext_rsvd (const struct ia64_operand *self ATTRIBUTE_UNUSED,
42 ia64_insn code ATTRIBUTE_UNUSED, ia64_insn *valuep ATTRIBUTE_UNUSED)
44 return "internal error---this shouldn't happen";
47 static const char*
48 ins_const (const struct ia64_operand *self ATTRIBUTE_UNUSED,
49 ia64_insn value ATTRIBUTE_UNUSED, ia64_insn *code ATTRIBUTE_UNUSED)
51 return 0;
54 static const char*
55 ext_const (const struct ia64_operand *self ATTRIBUTE_UNUSED,
56 ia64_insn code ATTRIBUTE_UNUSED, ia64_insn *valuep ATTRIBUTE_UNUSED)
58 return 0;
61 static const char*
62 ins_reg (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
64 if (value >= 1u << self->field[0].bits)
65 return "register number out of range";
67 *code |= value << self->field[0].shift;
68 return 0;
71 static const char*
72 ext_reg (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
74 *valuep = ((code >> self->field[0].shift)
75 & ((1u << self->field[0].bits) - 1));
76 return 0;
79 static const char*
80 ins_immu (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
82 ia64_insn new = 0;
83 int i;
85 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
87 new |= ((value & ((((ia64_insn) 1) << self->field[i].bits) - 1))
88 << self->field[i].shift);
89 value >>= self->field[i].bits;
91 if (value)
92 return "integer operand out of range";
94 *code |= new;
95 return 0;
98 static const char*
99 ext_immu (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
101 BFD_HOST_U_64_BIT value = 0;
102 int i, bits = 0, total = 0;
104 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
106 bits = self->field[i].bits;
107 value |= ((code >> self->field[i].shift)
108 & ((((BFD_HOST_U_64_BIT) 1) << bits) - 1)) << total;
109 total += bits;
111 *valuep = value;
112 return 0;
115 static const char*
116 ins_immus8 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
118 if (value & 0x7)
119 return "value not an integer multiple of 8";
120 return ins_immu (self, value >> 3, code);
123 static const char*
124 ext_immus8 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
126 const char *result;
128 result = ext_immu (self, code, valuep);
129 if (result)
130 return result;
132 *valuep = *valuep << 3;
133 return 0;
136 static const char*
137 ins_imms_scaled (const struct ia64_operand *self, ia64_insn value,
138 ia64_insn *code, int scale)
140 BFD_HOST_64_BIT svalue = value, sign_bit = 0;
141 ia64_insn new = 0;
142 int i;
144 svalue >>= scale;
146 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
148 new |= ((svalue & ((((ia64_insn) 1) << self->field[i].bits) - 1))
149 << self->field[i].shift);
150 sign_bit = (svalue >> (self->field[i].bits - 1)) & 1;
151 svalue >>= self->field[i].bits;
153 if ((!sign_bit && svalue != 0) || (sign_bit && svalue != -1))
154 return "integer operand out of range";
156 *code |= new;
157 return 0;
160 static const char*
161 ext_imms_scaled (const struct ia64_operand *self, ia64_insn code,
162 ia64_insn *valuep, int scale)
164 int i, bits = 0, total = 0, shift;
165 BFD_HOST_64_BIT val = 0;
167 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
169 bits = self->field[i].bits;
170 val |= ((code >> self->field[i].shift)
171 & ((((BFD_HOST_U_64_BIT) 1) << bits) - 1)) << total;
172 total += bits;
174 /* sign extend: */
175 shift = 8*sizeof (val) - total;
176 val = (val << shift) >> shift;
178 *valuep = (val << scale);
179 return 0;
182 static const char*
183 ins_imms (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
185 return ins_imms_scaled (self, value, code, 0);
188 static const char*
189 ins_immsu4 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
191 if (value == (BFD_HOST_U_64_BIT) 0x100000000)
192 value = 0;
193 else
194 value = (((BFD_HOST_64_BIT)value << 32) >> 32);
196 return ins_imms_scaled (self, value, code, 0);
199 static const char*
200 ext_imms (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
202 return ext_imms_scaled (self, code, valuep, 0);
205 static const char*
206 ins_immsm1 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
208 --value;
209 return ins_imms_scaled (self, value, code, 0);
212 static const char*
213 ins_immsm1u4 (const struct ia64_operand *self, ia64_insn value,
214 ia64_insn *code)
216 if (value == (BFD_HOST_U_64_BIT) 0x100000000)
217 value = 0;
218 else
219 value = (((BFD_HOST_64_BIT)value << 32) >> 32);
221 --value;
222 return ins_imms_scaled (self, value, code, 0);
225 static const char*
226 ext_immsm1 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
228 const char *res = ext_imms_scaled (self, code, valuep, 0);
230 ++*valuep;
231 return res;
234 static const char*
235 ins_imms1 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
237 return ins_imms_scaled (self, value, code, 1);
240 static const char*
241 ext_imms1 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
243 return ext_imms_scaled (self, code, valuep, 1);
246 static const char*
247 ins_imms4 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
249 return ins_imms_scaled (self, value, code, 4);
252 static const char*
253 ext_imms4 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
255 return ext_imms_scaled (self, code, valuep, 4);
258 static const char*
259 ins_imms16 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
261 return ins_imms_scaled (self, value, code, 16);
264 static const char*
265 ext_imms16 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
267 return ext_imms_scaled (self, code, valuep, 16);
270 static const char*
271 ins_cimmu (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
273 ia64_insn mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
274 return ins_immu (self, value ^ mask, code);
277 static const char*
278 ext_cimmu (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
280 const char *result;
281 ia64_insn mask;
283 mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
284 result = ext_immu (self, code, valuep);
285 if (!result)
287 mask = (((ia64_insn) 1) << self->field[0].bits) - 1;
288 *valuep ^= mask;
290 return result;
293 static const char*
294 ins_cnt (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
296 --value;
297 if (value >= ((BFD_HOST_U_64_BIT) 1) << self->field[0].bits)
298 return "count out of range";
300 *code |= value << self->field[0].shift;
301 return 0;
304 static const char*
305 ext_cnt (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
307 *valuep = ((code >> self->field[0].shift)
308 & ((((BFD_HOST_U_64_BIT) 1) << self->field[0].bits) - 1)) + 1;
309 return 0;
312 static const char*
313 ins_cnt2b (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
315 --value;
317 if (value > 2)
318 return "count must be in range 1..3";
320 *code |= value << self->field[0].shift;
321 return 0;
324 static const char*
325 ext_cnt2b (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
327 *valuep = ((code >> self->field[0].shift) & 0x3) + 1;
328 return 0;
331 static const char*
332 ins_cnt2c (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
334 switch (value)
336 case 0: value = 0; break;
337 case 7: value = 1; break;
338 case 15: value = 2; break;
339 case 16: value = 3; break;
340 default: return "count must be 0, 7, 15, or 16";
342 *code |= value << self->field[0].shift;
343 return 0;
346 static const char*
347 ext_cnt2c (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
349 ia64_insn value;
351 value = (code >> self->field[0].shift) & 0x3;
352 switch (value)
354 case 0: value = 0; break;
355 case 1: value = 7; break;
356 case 2: value = 15; break;
357 case 3: value = 16; break;
359 *valuep = value;
360 return 0;
363 static const char*
364 ins_inc3 (const struct ia64_operand *self, ia64_insn value, ia64_insn *code)
366 BFD_HOST_64_BIT val = value;
367 BFD_HOST_U_64_BIT sign = 0;
369 if (val < 0)
371 sign = 0x4;
372 value = -value;
374 switch (value)
376 case 1: value = 3; break;
377 case 4: value = 2; break;
378 case 8: value = 1; break;
379 case 16: value = 0; break;
380 default: return "count must be +/- 1, 4, 8, or 16";
382 *code |= (sign | value) << self->field[0].shift;
383 return 0;
386 static const char*
387 ext_inc3 (const struct ia64_operand *self, ia64_insn code, ia64_insn *valuep)
389 BFD_HOST_64_BIT val;
390 int negate;
392 val = (code >> self->field[0].shift) & 0x7;
393 negate = val & 0x4;
394 switch (val & 0x3)
396 case 0: val = 16; break;
397 case 1: val = 8; break;
398 case 2: val = 4; break;
399 case 3: val = 1; break;
401 if (negate)
402 val = -val;
404 *valuep = val;
405 return 0;
408 #define CST IA64_OPND_CLASS_CST
409 #define REG IA64_OPND_CLASS_REG
410 #define IND IA64_OPND_CLASS_IND
411 #define ABS IA64_OPND_CLASS_ABS
412 #define REL IA64_OPND_CLASS_REL
414 #define SDEC IA64_OPND_FLAG_DECIMAL_SIGNED
415 #define UDEC IA64_OPND_FLAG_DECIMAL_UNSIGNED
417 const struct ia64_operand elf64_ia64_operands[IA64_OPND_COUNT] =
419 /* constants: */
420 { CST, ins_const, ext_const, "NIL", {{ 0, 0}}, 0, "<none>" },
421 { CST, ins_const, ext_const, "ar.ccv", {{ 0, 0}}, 0, "ar.ccv" },
422 { CST, ins_const, ext_const, "ar.pfs", {{ 0, 0}}, 0, "ar.pfs" },
423 { CST, ins_const, ext_const, "1", {{ 0, 0}}, 0, "1" },
424 { CST, ins_const, ext_const, "8", {{ 0, 0}}, 0, "8" },
425 { CST, ins_const, ext_const, "16", {{ 0, 0}}, 0, "16" },
426 { CST, ins_const, ext_const, "r0", {{ 0, 0}}, 0, "r0" },
427 { CST, ins_const, ext_const, "ip", {{ 0, 0}}, 0, "ip" },
428 { CST, ins_const, ext_const, "pr", {{ 0, 0}}, 0, "pr" },
429 { CST, ins_const, ext_const, "pr.rot", {{ 0, 0}}, 0, "pr.rot" },
430 { CST, ins_const, ext_const, "psr", {{ 0, 0}}, 0, "psr" },
431 { CST, ins_const, ext_const, "psr.l", {{ 0, 0}}, 0, "psr.l" },
432 { CST, ins_const, ext_const, "psr.um", {{ 0, 0}}, 0, "psr.um" },
434 /* register operands: */
435 { REG, ins_reg, ext_reg, "ar", {{ 7, 20}}, 0, /* AR3 */
436 "an application register" },
437 { REG, ins_reg, ext_reg, "b", {{ 3, 6}}, 0, /* B1 */
438 "a branch register" },
439 { REG, ins_reg, ext_reg, "b", {{ 3, 13}}, 0, /* B2 */
440 "a branch register"},
441 { REG, ins_reg, ext_reg, "cr", {{ 7, 20}}, 0, /* CR */
442 "a control register"},
443 { REG, ins_reg, ext_reg, "f", {{ 7, 6}}, 0, /* F1 */
444 "a floating-point register" },
445 { REG, ins_reg, ext_reg, "f", {{ 7, 13}}, 0, /* F2 */
446 "a floating-point register" },
447 { REG, ins_reg, ext_reg, "f", {{ 7, 20}}, 0, /* F3 */
448 "a floating-point register" },
449 { REG, ins_reg, ext_reg, "f", {{ 7, 27}}, 0, /* F4 */
450 "a floating-point register" },
451 { REG, ins_reg, ext_reg, "p", {{ 6, 6}}, 0, /* P1 */
452 "a predicate register" },
453 { REG, ins_reg, ext_reg, "p", {{ 6, 27}}, 0, /* P2 */
454 "a predicate register" },
455 { REG, ins_reg, ext_reg, "r", {{ 7, 6}}, 0, /* R1 */
456 "a general register" },
457 { REG, ins_reg, ext_reg, "r", {{ 7, 13}}, 0, /* R2 */
458 "a general register" },
459 { REG, ins_reg, ext_reg, "r", {{ 7, 20}}, 0, /* R3 */
460 "a general register" },
461 { REG, ins_reg, ext_reg, "r", {{ 2, 20}}, 0, /* R3_2 */
462 "a general register r0-r3" },
464 /* indirect operands: */
465 { IND, ins_reg, ext_reg, "cpuid", {{7, 20}}, 0, /* CPUID_R3 */
466 "a cpuid register" },
467 { IND, ins_reg, ext_reg, "dbr", {{7, 20}}, 0, /* DBR_R3 */
468 "a dbr register" },
469 { IND, ins_reg, ext_reg, "dtr", {{7, 20}}, 0, /* DTR_R3 */
470 "a dtr register" },
471 { IND, ins_reg, ext_reg, "itr", {{7, 20}}, 0, /* ITR_R3 */
472 "an itr register" },
473 { IND, ins_reg, ext_reg, "ibr", {{7, 20}}, 0, /* IBR_R3 */
474 "an ibr register" },
475 { IND, ins_reg, ext_reg, "", {{7, 20}}, 0, /* MR3 */
476 "an indirect memory address" },
477 { IND, ins_reg, ext_reg, "msr", {{7, 20}}, 0, /* MSR_R3 */
478 "an msr register" },
479 { IND, ins_reg, ext_reg, "pkr", {{7, 20}}, 0, /* PKR_R3 */
480 "a pkr register" },
481 { IND, ins_reg, ext_reg, "pmc", {{7, 20}}, 0, /* PMC_R3 */
482 "a pmc register" },
483 { IND, ins_reg, ext_reg, "pmd", {{7, 20}}, 0, /* PMD_R3 */
484 "a pmd register" },
485 { IND, ins_reg, ext_reg, "rr", {{7, 20}}, 0, /* RR_R3 */
486 "an rr register" },
488 /* immediate operands: */
489 { ABS, ins_cimmu, ext_cimmu, 0, {{ 5, 20 }}, UDEC, /* CCNT5 */
490 "a 5-bit count (0-31)" },
491 { ABS, ins_cnt, ext_cnt, 0, {{ 2, 27 }}, UDEC, /* CNT2a */
492 "a 2-bit count (1-4)" },
493 { ABS, ins_cnt2b, ext_cnt2b, 0, {{ 2, 27 }}, UDEC, /* CNT2b */
494 "a 2-bit count (1-3)" },
495 { ABS, ins_cnt2c, ext_cnt2c, 0, {{ 2, 30 }}, UDEC, /* CNT2c */
496 "a count (0, 7, 15, or 16)" },
497 { ABS, ins_immu, ext_immu, 0, {{ 5, 14}}, UDEC, /* CNT5 */
498 "a 5-bit count (0-31)" },
499 { ABS, ins_immu, ext_immu, 0, {{ 6, 27}}, UDEC, /* CNT6 */
500 "a 6-bit count (0-63)" },
501 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 20}}, UDEC, /* CPOS6a */
502 "a 6-bit bit pos (0-63)" },
503 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 14}}, UDEC, /* CPOS6b */
504 "a 6-bit bit pos (0-63)" },
505 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 31}}, UDEC, /* CPOS6c */
506 "a 6-bit bit pos (0-63)" },
507 { ABS, ins_imms, ext_imms, 0, {{ 1, 36}}, SDEC, /* IMM1 */
508 "a 1-bit integer (-1, 0)" },
509 { ABS, ins_immu, ext_immu, 0, {{ 2, 13}}, UDEC, /* IMMU2 */
510 "a 2-bit unsigned (0-3)" },
511 { ABS, ins_immu, ext_immu, 0, {{ 7, 13}}, 0, /* IMMU7a */
512 "a 7-bit unsigned (0-127)" },
513 { ABS, ins_immu, ext_immu, 0, {{ 7, 20}}, 0, /* IMMU7b */
514 "a 7-bit unsigned (0-127)" },
515 { ABS, ins_immu, ext_immu, 0, {{ 7, 13}}, UDEC, /* SOF */
516 "a frame size (register count)" },
517 { ABS, ins_immu, ext_immu, 0, {{ 7, 20}}, UDEC, /* SOL */
518 "a local register count" },
519 { ABS, ins_immus8,ext_immus8,0, {{ 4, 27}}, UDEC, /* SOR */
520 "a rotating register count (integer multiple of 8)" },
521 { ABS, ins_imms, ext_imms, 0, /* IMM8 */
522 {{ 7, 13}, { 1, 36}}, SDEC,
523 "an 8-bit integer (-128-127)" },
524 { ABS, ins_immsu4, ext_imms, 0, /* IMM8U4 */
525 {{ 7, 13}, { 1, 36}}, SDEC,
526 "an 8-bit signed integer for 32-bit unsigned compare (-128-127)" },
527 { ABS, ins_immsm1, ext_immsm1, 0, /* IMM8M1 */
528 {{ 7, 13}, { 1, 36}}, SDEC,
529 "an 8-bit integer (-127-128)" },
530 { ABS, ins_immsm1u4, ext_immsm1, 0, /* IMM8M1U4 */
531 {{ 7, 13}, { 1, 36}}, SDEC,
532 "an 8-bit integer for 32-bit unsigned compare (-127-(-1),1-128,0x100000000)" },
533 { ABS, ins_immsm1, ext_immsm1, 0, /* IMM8M1U8 */
534 {{ 7, 13}, { 1, 36}}, SDEC,
535 "an 8-bit integer for 64-bit unsigned compare (-127-(-1),1-128,0x10000000000000000)" },
536 { ABS, ins_immu, ext_immu, 0, {{ 2, 33}, { 7, 20}}, 0, /* IMMU9 */
537 "a 9-bit unsigned (0-511)" },
538 { ABS, ins_imms, ext_imms, 0, /* IMM9a */
539 {{ 7, 6}, { 1, 27}, { 1, 36}}, SDEC,
540 "a 9-bit integer (-256-255)" },
541 { ABS, ins_imms, ext_imms, 0, /* IMM9b */
542 {{ 7, 13}, { 1, 27}, { 1, 36}}, SDEC,
543 "a 9-bit integer (-256-255)" },
544 { ABS, ins_imms, ext_imms, 0, /* IMM14 */
545 {{ 7, 13}, { 6, 27}, { 1, 36}}, SDEC,
546 "a 14-bit integer (-8192-8191)" },
547 { ABS, ins_imms1, ext_imms1, 0, /* IMM17 */
548 {{ 7, 6}, { 8, 24}, { 1, 36}}, 0,
549 "a 17-bit integer (-65536-65535)" },
550 { ABS, ins_immu, ext_immu, 0, {{20, 6}, { 1, 36}}, 0, /* IMMU21 */
551 "a 21-bit unsigned" },
552 { ABS, ins_imms, ext_imms, 0, /* IMM22 */
553 {{ 7, 13}, { 9, 27}, { 5, 22}, { 1, 36}}, SDEC,
554 "a 22-bit signed integer" },
555 { ABS, ins_immu, ext_immu, 0, /* IMMU24 */
556 {{21, 6}, { 2, 31}, { 1, 36}}, 0,
557 "a 24-bit unsigned" },
558 { ABS, ins_imms16,ext_imms16,0, {{27, 6}, { 1, 36}}, 0, /* IMM44 */
559 "a 44-bit unsigned (least 16 bits ignored/zeroes)" },
560 { ABS, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0, /* IMMU62 */
561 "a 62-bit unsigned" },
562 { ABS, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0, /* IMMU64 */
563 "a 64-bit unsigned" },
564 { ABS, ins_inc3, ext_inc3, 0, {{ 3, 13}}, SDEC, /* INC3 */
565 "an increment (+/- 1, 4, 8, or 16)" },
566 { ABS, ins_cnt, ext_cnt, 0, {{ 4, 27}}, UDEC, /* LEN4 */
567 "a 4-bit length (1-16)" },
568 { ABS, ins_cnt, ext_cnt, 0, {{ 6, 27}}, UDEC, /* LEN6 */
569 "a 6-bit length (1-64)" },
570 { ABS, ins_immu, ext_immu, 0, {{ 4, 20}}, 0, /* MBTYPE4 */
571 "a mix type (@rev, @mix, @shuf, @alt, or @brcst)" },
572 { ABS, ins_immu, ext_immu, 0, {{ 8, 20}}, 0, /* MBTYPE8 */
573 "an 8-bit mix type" },
574 { ABS, ins_immu, ext_immu, 0, {{ 6, 14}}, UDEC, /* POS6 */
575 "a 6-bit bit pos (0-63)" },
576 { REL, ins_imms4, ext_imms4, 0, {{ 7, 6}, { 2, 33}}, 0, /* TAG13 */
577 "a branch tag" },
578 { REL, ins_imms4, ext_imms4, 0, {{ 9, 24}}, 0, /* TAG13b */
579 "a branch tag" },
580 { REL, ins_imms4, ext_imms4, 0, {{20, 6}, { 1, 36}}, 0, /* TGT25 */
581 "a branch target" },
582 { REL, ins_imms4, ext_imms4, 0, /* TGT25b */
583 {{ 7, 6}, {13, 20}, { 1, 36}}, 0,
584 "a branch target" },
585 { REL, ins_imms4, ext_imms4, 0, {{20, 13}, { 1, 36}}, 0, /* TGT25c */
586 "a branch target" },
587 { REL, ins_rsvd, ext_rsvd, 0, {{0, 0}}, 0, /* TGT64 */
588 "a branch target" },