1 /* Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006
2 Free Software Foundation, Inc.
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
21 /* Logically, this code should be part of libopcode but since some of
22 the operand insertion/extraction functions help bfd to implement
23 relocations, this code is included as part of cpu-ia64.c. This
24 avoids circular dependencies between libopcode and libbfd and also
25 obviates the need for applications to link in libopcode when all
26 they really want is libbfd.
28 --davidm Mon Apr 13 22:14:02 1998 */
30 #include "../opcodes/ia64-opc.h"
32 #define NELEMS(a) ((int) (sizeof (a) / sizeof ((a)[0])))
35 ins_rsvd (const struct ia64_operand
*self ATTRIBUTE_UNUSED
,
36 ia64_insn value ATTRIBUTE_UNUSED
, ia64_insn
*code ATTRIBUTE_UNUSED
)
38 return "internal error---this shouldn't happen";
42 ext_rsvd (const struct ia64_operand
*self ATTRIBUTE_UNUSED
,
43 ia64_insn code ATTRIBUTE_UNUSED
, ia64_insn
*valuep ATTRIBUTE_UNUSED
)
45 return "internal error---this shouldn't happen";
49 ins_const (const struct ia64_operand
*self ATTRIBUTE_UNUSED
,
50 ia64_insn value ATTRIBUTE_UNUSED
, ia64_insn
*code ATTRIBUTE_UNUSED
)
56 ext_const (const struct ia64_operand
*self ATTRIBUTE_UNUSED
,
57 ia64_insn code ATTRIBUTE_UNUSED
, ia64_insn
*valuep ATTRIBUTE_UNUSED
)
63 ins_reg (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
65 if (value
>= 1u << self
->field
[0].bits
)
66 return "register number out of range";
68 *code
|= value
<< self
->field
[0].shift
;
73 ext_reg (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
75 *valuep
= ((code
>> self
->field
[0].shift
)
76 & ((1u << self
->field
[0].bits
) - 1));
81 ins_immu (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
86 for (i
= 0; i
< NELEMS (self
->field
) && self
->field
[i
].bits
; ++i
)
88 new |= ((value
& ((((ia64_insn
) 1) << self
->field
[i
].bits
) - 1))
89 << self
->field
[i
].shift
);
90 value
>>= self
->field
[i
].bits
;
93 return "integer operand out of range";
100 ext_immu (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
102 BFD_HOST_U_64_BIT value
= 0;
103 int i
, bits
= 0, total
= 0;
105 for (i
= 0; i
< NELEMS (self
->field
) && self
->field
[i
].bits
; ++i
)
107 bits
= self
->field
[i
].bits
;
108 value
|= ((code
>> self
->field
[i
].shift
)
109 & ((((BFD_HOST_U_64_BIT
) 1) << bits
) - 1)) << total
;
117 ins_immu5b (const struct ia64_operand
*self
, ia64_insn value
,
120 if (value
< 32 || value
> 63)
121 return "value must be between 32 and 63";
122 return ins_immu (self
, value
- 32, code
);
126 ext_immu5b (const struct ia64_operand
*self
, ia64_insn code
,
131 result
= ext_immu (self
, code
, valuep
);
135 *valuep
= *valuep
+ 32;
140 ins_immus8 (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
143 return "value not an integer multiple of 8";
144 return ins_immu (self
, value
>> 3, code
);
148 ext_immus8 (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
152 result
= ext_immu (self
, code
, valuep
);
156 *valuep
= *valuep
<< 3;
161 ins_imms_scaled (const struct ia64_operand
*self
, ia64_insn value
,
162 ia64_insn
*code
, int scale
)
164 BFD_HOST_64_BIT svalue
= value
, sign_bit
= 0;
170 for (i
= 0; i
< NELEMS (self
->field
) && self
->field
[i
].bits
; ++i
)
172 new |= ((svalue
& ((((ia64_insn
) 1) << self
->field
[i
].bits
) - 1))
173 << self
->field
[i
].shift
);
174 sign_bit
= (svalue
>> (self
->field
[i
].bits
- 1)) & 1;
175 svalue
>>= self
->field
[i
].bits
;
177 if ((!sign_bit
&& svalue
!= 0) || (sign_bit
&& svalue
!= -1))
178 return "integer operand out of range";
185 ext_imms_scaled (const struct ia64_operand
*self
, ia64_insn code
,
186 ia64_insn
*valuep
, int scale
)
188 int i
, bits
= 0, total
= 0;
189 BFD_HOST_64_BIT val
= 0, sign
;
191 for (i
= 0; i
< NELEMS (self
->field
) && self
->field
[i
].bits
; ++i
)
193 bits
= self
->field
[i
].bits
;
194 val
|= ((code
>> self
->field
[i
].shift
)
195 & ((((BFD_HOST_U_64_BIT
) 1) << bits
) - 1)) << total
;
199 sign
= (BFD_HOST_64_BIT
) 1 << (total
- 1);
200 val
= (val
^ sign
) - sign
;
202 *valuep
= (val
<< scale
);
207 ins_imms (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
209 return ins_imms_scaled (self
, value
, code
, 0);
213 ins_immsu4 (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
215 value
= ((value
& 0xffffffff) ^ 0x80000000) - 0x80000000;
217 return ins_imms_scaled (self
, value
, code
, 0);
221 ext_imms (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
223 return ext_imms_scaled (self
, code
, valuep
, 0);
227 ins_immsm1 (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
230 return ins_imms_scaled (self
, value
, code
, 0);
234 ins_immsm1u4 (const struct ia64_operand
*self
, ia64_insn value
,
237 value
= ((value
& 0xffffffff) ^ 0x80000000) - 0x80000000;
240 return ins_imms_scaled (self
, value
, code
, 0);
244 ext_immsm1 (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
246 const char *res
= ext_imms_scaled (self
, code
, valuep
, 0);
253 ins_imms1 (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
255 return ins_imms_scaled (self
, value
, code
, 1);
259 ext_imms1 (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
261 return ext_imms_scaled (self
, code
, valuep
, 1);
265 ins_imms4 (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
267 return ins_imms_scaled (self
, value
, code
, 4);
271 ext_imms4 (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
273 return ext_imms_scaled (self
, code
, valuep
, 4);
277 ins_imms16 (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
279 return ins_imms_scaled (self
, value
, code
, 16);
283 ext_imms16 (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
285 return ext_imms_scaled (self
, code
, valuep
, 16);
289 ins_cimmu (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
291 ia64_insn mask
= (((ia64_insn
) 1) << self
->field
[0].bits
) - 1;
292 return ins_immu (self
, value
^ mask
, code
);
296 ext_cimmu (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
301 mask
= (((ia64_insn
) 1) << self
->field
[0].bits
) - 1;
302 result
= ext_immu (self
, code
, valuep
);
305 mask
= (((ia64_insn
) 1) << self
->field
[0].bits
) - 1;
312 ins_cnt (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
315 if (value
>= ((BFD_HOST_U_64_BIT
) 1) << self
->field
[0].bits
)
316 return "count out of range";
318 *code
|= value
<< self
->field
[0].shift
;
323 ext_cnt (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
325 *valuep
= ((code
>> self
->field
[0].shift
)
326 & ((((BFD_HOST_U_64_BIT
) 1) << self
->field
[0].bits
) - 1)) + 1;
331 ins_cnt2b (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
336 return "count must be in range 1..3";
338 *code
|= value
<< self
->field
[0].shift
;
343 ext_cnt2b (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
345 *valuep
= ((code
>> self
->field
[0].shift
) & 0x3) + 1;
350 ins_cnt2c (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
354 case 0: value
= 0; break;
355 case 7: value
= 1; break;
356 case 15: value
= 2; break;
357 case 16: value
= 3; break;
358 default: return "count must be 0, 7, 15, or 16";
360 *code
|= value
<< self
->field
[0].shift
;
365 ext_cnt2c (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
369 value
= (code
>> self
->field
[0].shift
) & 0x3;
372 case 0: value
= 0; break;
373 case 1: value
= 7; break;
374 case 2: value
= 15; break;
375 case 3: value
= 16; break;
382 ins_inc3 (const struct ia64_operand
*self
, ia64_insn value
, ia64_insn
*code
)
384 BFD_HOST_64_BIT val
= value
;
385 BFD_HOST_U_64_BIT sign
= 0;
394 case 1: value
= 3; break;
395 case 4: value
= 2; break;
396 case 8: value
= 1; break;
397 case 16: value
= 0; break;
398 default: return "count must be +/- 1, 4, 8, or 16";
400 *code
|= (sign
| value
) << self
->field
[0].shift
;
405 ext_inc3 (const struct ia64_operand
*self
, ia64_insn code
, ia64_insn
*valuep
)
410 val
= (code
>> self
->field
[0].shift
) & 0x7;
414 case 0: val
= 16; break;
415 case 1: val
= 8; break;
416 case 2: val
= 4; break;
417 case 3: val
= 1; break;
426 #define CST IA64_OPND_CLASS_CST
427 #define REG IA64_OPND_CLASS_REG
428 #define IND IA64_OPND_CLASS_IND
429 #define ABS IA64_OPND_CLASS_ABS
430 #define REL IA64_OPND_CLASS_REL
432 #define SDEC IA64_OPND_FLAG_DECIMAL_SIGNED
433 #define UDEC IA64_OPND_FLAG_DECIMAL_UNSIGNED
435 const struct ia64_operand elf64_ia64_operands
[IA64_OPND_COUNT
] =
438 { CST
, ins_const
, ext_const
, "NIL", {{ 0, 0}}, 0, "<none>" },
439 { CST
, ins_const
, ext_const
, "ar.csd", {{ 0, 0}}, 0, "ar.csd" },
440 { CST
, ins_const
, ext_const
, "ar.ccv", {{ 0, 0}}, 0, "ar.ccv" },
441 { CST
, ins_const
, ext_const
, "ar.pfs", {{ 0, 0}}, 0, "ar.pfs" },
442 { CST
, ins_const
, ext_const
, "1", {{ 0, 0}}, 0, "1" },
443 { CST
, ins_const
, ext_const
, "8", {{ 0, 0}}, 0, "8" },
444 { CST
, ins_const
, ext_const
, "16", {{ 0, 0}}, 0, "16" },
445 { CST
, ins_const
, ext_const
, "r0", {{ 0, 0}}, 0, "r0" },
446 { CST
, ins_const
, ext_const
, "ip", {{ 0, 0}}, 0, "ip" },
447 { CST
, ins_const
, ext_const
, "pr", {{ 0, 0}}, 0, "pr" },
448 { CST
, ins_const
, ext_const
, "pr.rot", {{ 0, 0}}, 0, "pr.rot" },
449 { CST
, ins_const
, ext_const
, "psr", {{ 0, 0}}, 0, "psr" },
450 { CST
, ins_const
, ext_const
, "psr.l", {{ 0, 0}}, 0, "psr.l" },
451 { CST
, ins_const
, ext_const
, "psr.um", {{ 0, 0}}, 0, "psr.um" },
453 /* register operands: */
454 { REG
, ins_reg
, ext_reg
, "ar", {{ 7, 20}}, 0, /* AR3 */
455 "an application register" },
456 { REG
, ins_reg
, ext_reg
, "b", {{ 3, 6}}, 0, /* B1 */
457 "a branch register" },
458 { REG
, ins_reg
, ext_reg
, "b", {{ 3, 13}}, 0, /* B2 */
459 "a branch register"},
460 { REG
, ins_reg
, ext_reg
, "cr", {{ 7, 20}}, 0, /* CR */
461 "a control register"},
462 { REG
, ins_reg
, ext_reg
, "f", {{ 7, 6}}, 0, /* F1 */
463 "a floating-point register" },
464 { REG
, ins_reg
, ext_reg
, "f", {{ 7, 13}}, 0, /* F2 */
465 "a floating-point register" },
466 { REG
, ins_reg
, ext_reg
, "f", {{ 7, 20}}, 0, /* F3 */
467 "a floating-point register" },
468 { REG
, ins_reg
, ext_reg
, "f", {{ 7, 27}}, 0, /* F4 */
469 "a floating-point register" },
470 { REG
, ins_reg
, ext_reg
, "p", {{ 6, 6}}, 0, /* P1 */
471 "a predicate register" },
472 { REG
, ins_reg
, ext_reg
, "p", {{ 6, 27}}, 0, /* P2 */
473 "a predicate register" },
474 { REG
, ins_reg
, ext_reg
, "r", {{ 7, 6}}, 0, /* R1 */
475 "a general register" },
476 { REG
, ins_reg
, ext_reg
, "r", {{ 7, 13}}, 0, /* R2 */
477 "a general register" },
478 { REG
, ins_reg
, ext_reg
, "r", {{ 7, 20}}, 0, /* R3 */
479 "a general register" },
480 { REG
, ins_reg
, ext_reg
, "r", {{ 2, 20}}, 0, /* R3_2 */
481 "a general register r0-r3" },
483 /* memory operands: */
484 { IND
, ins_reg
, ext_reg
, "", {{7, 20}}, 0, /* MR3 */
485 "a memory address" },
487 /* indirect operands: */
488 { IND
, ins_reg
, ext_reg
, "cpuid", {{7, 20}}, 0, /* CPUID_R3 */
489 "a cpuid register" },
490 { IND
, ins_reg
, ext_reg
, "dbr", {{7, 20}}, 0, /* DBR_R3 */
492 { IND
, ins_reg
, ext_reg
, "dtr", {{7, 20}}, 0, /* DTR_R3 */
494 { IND
, ins_reg
, ext_reg
, "itr", {{7, 20}}, 0, /* ITR_R3 */
496 { IND
, ins_reg
, ext_reg
, "ibr", {{7, 20}}, 0, /* IBR_R3 */
498 { IND
, ins_reg
, ext_reg
, "msr", {{7, 20}}, 0, /* MSR_R3 */
500 { IND
, ins_reg
, ext_reg
, "pkr", {{7, 20}}, 0, /* PKR_R3 */
502 { IND
, ins_reg
, ext_reg
, "pmc", {{7, 20}}, 0, /* PMC_R3 */
504 { IND
, ins_reg
, ext_reg
, "pmd", {{7, 20}}, 0, /* PMD_R3 */
506 { IND
, ins_reg
, ext_reg
, "rr", {{7, 20}}, 0, /* RR_R3 */
509 /* immediate operands: */
510 { ABS
, ins_cimmu
, ext_cimmu
, 0, {{ 5, 20 }}, UDEC
, /* CCNT5 */
511 "a 5-bit count (0-31)" },
512 { ABS
, ins_cnt
, ext_cnt
, 0, {{ 2, 27 }}, UDEC
, /* CNT2a */
513 "a 2-bit count (1-4)" },
514 { ABS
, ins_cnt2b
, ext_cnt2b
, 0, {{ 2, 27 }}, UDEC
, /* CNT2b */
515 "a 2-bit count (1-3)" },
516 { ABS
, ins_cnt2c
, ext_cnt2c
, 0, {{ 2, 30 }}, UDEC
, /* CNT2c */
517 "a count (0, 7, 15, or 16)" },
518 { ABS
, ins_immu
, ext_immu
, 0, {{ 5, 14}}, UDEC
, /* CNT5 */
519 "a 5-bit count (0-31)" },
520 { ABS
, ins_immu
, ext_immu
, 0, {{ 6, 27}}, UDEC
, /* CNT6 */
521 "a 6-bit count (0-63)" },
522 { ABS
, ins_cimmu
, ext_cimmu
, 0, {{ 6, 20}}, UDEC
, /* CPOS6a */
523 "a 6-bit bit pos (0-63)" },
524 { ABS
, ins_cimmu
, ext_cimmu
, 0, {{ 6, 14}}, UDEC
, /* CPOS6b */
525 "a 6-bit bit pos (0-63)" },
526 { ABS
, ins_cimmu
, ext_cimmu
, 0, {{ 6, 31}}, UDEC
, /* CPOS6c */
527 "a 6-bit bit pos (0-63)" },
528 { ABS
, ins_imms
, ext_imms
, 0, {{ 1, 36}}, SDEC
, /* IMM1 */
529 "a 1-bit integer (-1, 0)" },
530 { ABS
, ins_immu
, ext_immu
, 0, {{ 2, 13}}, UDEC
, /* IMMU2 */
531 "a 2-bit unsigned (0-3)" },
532 { ABS
, ins_immu5b
, ext_immu5b
, 0, {{ 5, 14}}, UDEC
, /* IMMU5b */
533 "a 5-bit unsigned (32 + (0-31))" },
534 { ABS
, ins_immu
, ext_immu
, 0, {{ 7, 13}}, 0, /* IMMU7a */
535 "a 7-bit unsigned (0-127)" },
536 { ABS
, ins_immu
, ext_immu
, 0, {{ 7, 20}}, 0, /* IMMU7b */
537 "a 7-bit unsigned (0-127)" },
538 { ABS
, ins_immu
, ext_immu
, 0, {{ 7, 13}}, UDEC
, /* SOF */
539 "a frame size (register count)" },
540 { ABS
, ins_immu
, ext_immu
, 0, {{ 7, 20}}, UDEC
, /* SOL */
541 "a local register count" },
542 { ABS
, ins_immus8
,ext_immus8
,0, {{ 4, 27}}, UDEC
, /* SOR */
543 "a rotating register count (integer multiple of 8)" },
544 { ABS
, ins_imms
, ext_imms
, 0, /* IMM8 */
545 {{ 7, 13}, { 1, 36}}, SDEC
,
546 "an 8-bit integer (-128-127)" },
547 { ABS
, ins_immsu4
, ext_imms
, 0, /* IMM8U4 */
548 {{ 7, 13}, { 1, 36}}, SDEC
,
549 "an 8-bit signed integer for 32-bit unsigned compare (-128-127)" },
550 { ABS
, ins_immsm1
, ext_immsm1
, 0, /* IMM8M1 */
551 {{ 7, 13}, { 1, 36}}, SDEC
,
552 "an 8-bit integer (-127-128)" },
553 { ABS
, ins_immsm1u4
, ext_immsm1
, 0, /* IMM8M1U4 */
554 {{ 7, 13}, { 1, 36}}, SDEC
,
555 "an 8-bit integer for 32-bit unsigned compare (-127-(-1),1-128,0x100000000)" },
556 { ABS
, ins_immsm1
, ext_immsm1
, 0, /* IMM8M1U8 */
557 {{ 7, 13}, { 1, 36}}, SDEC
,
558 "an 8-bit integer for 64-bit unsigned compare (-127-(-1),1-128,0x10000000000000000)" },
559 { ABS
, ins_immu
, ext_immu
, 0, {{ 2, 33}, { 7, 20}}, 0, /* IMMU9 */
560 "a 9-bit unsigned (0-511)" },
561 { ABS
, ins_imms
, ext_imms
, 0, /* IMM9a */
562 {{ 7, 6}, { 1, 27}, { 1, 36}}, SDEC
,
563 "a 9-bit integer (-256-255)" },
564 { ABS
, ins_imms
, ext_imms
, 0, /* IMM9b */
565 {{ 7, 13}, { 1, 27}, { 1, 36}}, SDEC
,
566 "a 9-bit integer (-256-255)" },
567 { ABS
, ins_imms
, ext_imms
, 0, /* IMM14 */
568 {{ 7, 13}, { 6, 27}, { 1, 36}}, SDEC
,
569 "a 14-bit integer (-8192-8191)" },
570 { ABS
, ins_imms1
, ext_imms1
, 0, /* IMM17 */
571 {{ 7, 6}, { 8, 24}, { 1, 36}}, 0,
572 "a 17-bit integer (-65536-65535)" },
573 { ABS
, ins_immu
, ext_immu
, 0, {{20, 6}, { 1, 36}}, 0, /* IMMU21 */
574 "a 21-bit unsigned" },
575 { ABS
, ins_imms
, ext_imms
, 0, /* IMM22 */
576 {{ 7, 13}, { 9, 27}, { 5, 22}, { 1, 36}}, SDEC
,
577 "a 22-bit signed integer" },
578 { ABS
, ins_immu
, ext_immu
, 0, /* IMMU24 */
579 {{21, 6}, { 2, 31}, { 1, 36}}, 0,
580 "a 24-bit unsigned" },
581 { ABS
, ins_imms16
,ext_imms16
,0, {{27, 6}, { 1, 36}}, 0, /* IMM44 */
582 "a 44-bit unsigned (least 16 bits ignored/zeroes)" },
583 { ABS
, ins_rsvd
, ext_rsvd
, 0, {{0, 0}}, 0, /* IMMU62 */
584 "a 62-bit unsigned" },
585 { ABS
, ins_rsvd
, ext_rsvd
, 0, {{0, 0}}, 0, /* IMMU64 */
586 "a 64-bit unsigned" },
587 { ABS
, ins_inc3
, ext_inc3
, 0, {{ 3, 13}}, SDEC
, /* INC3 */
588 "an increment (+/- 1, 4, 8, or 16)" },
589 { ABS
, ins_cnt
, ext_cnt
, 0, {{ 4, 27}}, UDEC
, /* LEN4 */
590 "a 4-bit length (1-16)" },
591 { ABS
, ins_cnt
, ext_cnt
, 0, {{ 6, 27}}, UDEC
, /* LEN6 */
592 "a 6-bit length (1-64)" },
593 { ABS
, ins_immu
, ext_immu
, 0, {{ 4, 20}}, 0, /* MBTYPE4 */
594 "a mix type (@rev, @mix, @shuf, @alt, or @brcst)" },
595 { ABS
, ins_immu
, ext_immu
, 0, {{ 8, 20}}, 0, /* MBTYPE8 */
596 "an 8-bit mix type" },
597 { ABS
, ins_immu
, ext_immu
, 0, {{ 6, 14}}, UDEC
, /* POS6 */
598 "a 6-bit bit pos (0-63)" },
599 { REL
, ins_imms4
, ext_imms4
, 0, {{ 7, 6}, { 2, 33}}, 0, /* TAG13 */
601 { REL
, ins_imms4
, ext_imms4
, 0, {{ 9, 24}}, 0, /* TAG13b */
603 { REL
, ins_imms4
, ext_imms4
, 0, {{20, 6}, { 1, 36}}, 0, /* TGT25 */
605 { REL
, ins_imms4
, ext_imms4
, 0, /* TGT25b */
606 {{ 7, 6}, {13, 20}, { 1, 36}}, 0,
608 { REL
, ins_imms4
, ext_imms4
, 0, {{20, 13}, { 1, 36}}, 0, /* TGT25c */
610 { REL
, ins_rsvd
, ext_rsvd
, 0, {{0, 0}}, 0, /* TGT64 */
613 { ABS
, ins_const
, ext_const
, 0, {{0, 0}}, 0, /* LDXMOV */