1 /* Opcode table for the ARC.
2 Copyright (C) 1994-2016 Free Software Foundation, Inc.
4 Contributed by Claudiu Zissulescu (claziss@synopsys.com)
6 This file is part of libopcodes.
8 This library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 It is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software Foundation,
20 Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
25 #include "opcode/arc.h"
27 #include "libiberty.h"
29 /* ARC NPS400 Support: The ARC NPS400 core is an ARC700 with some custom
30 instructions. All NPS400 features are built into all ARC target builds as
31 this reduces the chances that regressions might creep in. */
33 /* Insert RB register into a 32-bit opcode. */
35 insert_rb (unsigned insn
,
37 const char **errmsg ATTRIBUTE_UNUSED
)
39 return insn
| ((value
& 0x07) << 24) | (((value
>> 3) & 0x07) << 12);
43 extract_rb (unsigned insn ATTRIBUTE_UNUSED
,
44 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
46 int value
= (((insn
>> 12) & 0x07) << 3) | ((insn
>> 24) & 0x07);
48 if (value
== 0x3e && invalid
)
49 *invalid
= TRUE
; /* A limm operand, it should be extracted in a
56 insert_rad (unsigned insn
,
58 const char **errmsg ATTRIBUTE_UNUSED
)
61 *errmsg
= _("Improper register value.");
63 return insn
| (value
& 0x3F);
67 insert_rcd (unsigned insn
,
69 const char **errmsg ATTRIBUTE_UNUSED
)
72 *errmsg
= _("Improper register value.");
74 return insn
| ((value
& 0x3F) << 6);
77 /* Dummy insert ZERO operand function. */
80 insert_za (unsigned insn
,
85 *errmsg
= _("operand is not zero");
89 /* Insert Y-bit in bbit/br instructions. This function is called only
90 when solving fixups. */
93 insert_Ybit (unsigned insn
,
95 const char **errmsg ATTRIBUTE_UNUSED
)
103 /* Insert Y-bit in bbit/br instructions. This function is called only
104 when solving fixups. */
107 insert_NYbit (unsigned insn
,
109 const char **errmsg ATTRIBUTE_UNUSED
)
117 /* Insert H register into a 16-bit opcode. */
120 insert_rhv1 (unsigned insn
,
122 const char **errmsg ATTRIBUTE_UNUSED
)
124 return insn
|= ((value
& 0x07) << 5) | ((value
>> 3) & 0x07);
128 extract_rhv1 (unsigned insn ATTRIBUTE_UNUSED
,
129 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
131 int value
= ((insn
& 0x7) << 3) | ((insn
>> 5) & 0x7);
136 /* Insert H register into a 16-bit opcode. */
139 insert_rhv2 (unsigned insn
,
145 _("Register R30 is a limm indicator for this type of instruction.");
146 return insn
|= ((value
& 0x07) << 5) | ((value
>> 3) & 0x03);
150 extract_rhv2 (unsigned insn ATTRIBUTE_UNUSED
,
151 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
153 int value
= ((insn
>> 5) & 0x07) | ((insn
& 0x03) << 3);
159 insert_r0 (unsigned insn
,
161 const char **errmsg ATTRIBUTE_UNUSED
)
164 *errmsg
= _("Register must be R0.");
169 extract_r0 (unsigned insn ATTRIBUTE_UNUSED
,
170 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
177 insert_r1 (unsigned insn
,
179 const char **errmsg ATTRIBUTE_UNUSED
)
182 *errmsg
= _("Register must be R1.");
187 extract_r1 (unsigned insn ATTRIBUTE_UNUSED
,
188 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
194 insert_r2 (unsigned insn
,
196 const char **errmsg ATTRIBUTE_UNUSED
)
199 *errmsg
= _("Register must be R2.");
204 extract_r2 (unsigned insn ATTRIBUTE_UNUSED
,
205 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
211 insert_r3 (unsigned insn
,
213 const char **errmsg ATTRIBUTE_UNUSED
)
216 *errmsg
= _("Register must be R3.");
221 extract_r3 (unsigned insn ATTRIBUTE_UNUSED
,
222 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
228 insert_sp (unsigned insn
,
230 const char **errmsg ATTRIBUTE_UNUSED
)
233 *errmsg
= _("Register must be SP.");
238 extract_sp (unsigned insn ATTRIBUTE_UNUSED
,
239 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
245 insert_gp (unsigned insn
,
247 const char **errmsg ATTRIBUTE_UNUSED
)
250 *errmsg
= _("Register must be GP.");
255 extract_gp (unsigned insn ATTRIBUTE_UNUSED
,
256 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
262 insert_pcl (unsigned insn
,
264 const char **errmsg ATTRIBUTE_UNUSED
)
267 *errmsg
= _("Register must be PCL.");
272 extract_pcl (unsigned insn ATTRIBUTE_UNUSED
,
273 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
279 insert_blink (unsigned insn
,
281 const char **errmsg ATTRIBUTE_UNUSED
)
284 *errmsg
= _("Register must be BLINK.");
289 extract_blink (unsigned insn ATTRIBUTE_UNUSED
,
290 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
296 insert_ilink1 (unsigned insn
,
298 const char **errmsg ATTRIBUTE_UNUSED
)
301 *errmsg
= _("Register must be ILINK1.");
306 extract_ilink1 (unsigned insn ATTRIBUTE_UNUSED
,
307 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
313 insert_ilink2 (unsigned insn
,
315 const char **errmsg ATTRIBUTE_UNUSED
)
318 *errmsg
= _("Register must be ILINK2.");
323 extract_ilink2 (unsigned insn ATTRIBUTE_UNUSED
,
324 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
330 insert_ras (unsigned insn
,
332 const char **errmsg ATTRIBUTE_UNUSED
)
349 *errmsg
= _("Register must be either r0-r3 or r12-r15.");
356 extract_ras (unsigned insn ATTRIBUTE_UNUSED
,
357 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
359 int value
= insn
& 0x07;
367 insert_rbs (unsigned insn
,
369 const char **errmsg ATTRIBUTE_UNUSED
)
383 insn
|= ((value
- 8)) << 8;
386 *errmsg
= _("Register must be either r0-r3 or r12-r15.");
393 extract_rbs (unsigned insn ATTRIBUTE_UNUSED
,
394 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
396 int value
= (insn
>> 8) & 0x07;
404 insert_rcs (unsigned insn
,
406 const char **errmsg ATTRIBUTE_UNUSED
)
420 insn
|= ((value
- 8)) << 5;
423 *errmsg
= _("Register must be either r0-r3 or r12-r15.");
430 extract_rcs (unsigned insn ATTRIBUTE_UNUSED
,
431 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
433 int value
= (insn
>> 5) & 0x07;
441 insert_simm3s (unsigned insn
,
443 const char **errmsg ATTRIBUTE_UNUSED
)
473 *errmsg
= _("Accepted values are from -1 to 6.");
482 extract_simm3s (unsigned insn ATTRIBUTE_UNUSED
,
483 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
485 int value
= (insn
>> 8) & 0x07;
493 insert_rrange (unsigned insn
,
495 const char **errmsg ATTRIBUTE_UNUSED
)
497 int reg1
= (value
>> 16) & 0xFFFF;
498 int reg2
= value
& 0xFFFF;
501 *errmsg
= _("First register of the range should be r13.");
504 if (reg2
< 13 || reg2
> 26)
506 *errmsg
= _("Last register of the range doesn't fit.");
509 insn
|= ((reg2
- 12) & 0x0F) << 1;
514 extract_rrange (unsigned insn ATTRIBUTE_UNUSED
,
515 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
517 return (insn
>> 1) & 0x0F;
521 insert_fpel (unsigned insn
,
523 const char **errmsg ATTRIBUTE_UNUSED
)
527 *errmsg
= _("Invalid register number, should be fp.");
536 extract_fpel (unsigned insn ATTRIBUTE_UNUSED
,
537 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
539 return (insn
& 0x0100) ? 27 : -1;
543 insert_blinkel (unsigned insn
,
545 const char **errmsg ATTRIBUTE_UNUSED
)
549 *errmsg
= _("Invalid register number, should be blink.");
558 extract_blinkel (unsigned insn ATTRIBUTE_UNUSED
,
559 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
561 return (insn
& 0x0200) ? 31 : -1;
565 insert_pclel (unsigned insn
,
567 const char **errmsg ATTRIBUTE_UNUSED
)
571 *errmsg
= _("Invalid register number, should be pcl.");
580 extract_pclel (unsigned insn ATTRIBUTE_UNUSED
,
581 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
583 return (insn
& 0x0400) ? 63 : -1;
587 /* mask = 00000000000000000000111111000000
588 insn = 00011bbb000000000BBBwwwwwwDaaZZ1. */
590 insert_w6 (unsigned insn ATTRIBUTE_UNUSED
,
591 int value ATTRIBUTE_UNUSED
,
592 const char **errmsg ATTRIBUTE_UNUSED
)
594 insn
|= ((value
>> 0) & 0x003f) << 6;
600 /* mask = 00000000000000000000111111000000. */
602 extract_w6 (unsigned insn ATTRIBUTE_UNUSED
,
603 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
607 value
|= ((insn
>> 6) & 0x003f) << 0;
613 /* mask = 0000011100022000
614 insn = 01000ggghhhGG0HH. */
616 insert_g_s (unsigned insn ATTRIBUTE_UNUSED
,
617 int value ATTRIBUTE_UNUSED
,
618 const char **errmsg ATTRIBUTE_UNUSED
)
620 insn
|= ((value
>> 0) & 0x0007) << 8;
621 insn
|= ((value
>> 3) & 0x0003) << 3;
627 /* mask = 0000011100022000. */
629 extract_g_s (unsigned insn ATTRIBUTE_UNUSED
,
630 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
634 value
|= ((insn
>> 8) & 0x0007) << 0;
635 value
|= ((insn
>> 3) & 0x0003) << 3;
637 /* Extend the sign. */
638 int signbit
= 1 << (6 - 1);
639 value
= (value
^ signbit
) - signbit
;
644 /* ARC NPS400 Support: See comment near head of file. */
646 insert_nps_3bit_dst (unsigned insn ATTRIBUTE_UNUSED
,
647 int value ATTRIBUTE_UNUSED
,
648 const char **errmsg ATTRIBUTE_UNUSED
)
662 insn
|= (value
- 8) << 24;
665 *errmsg
= _("Register must be either r0-r3 or r12-r15.");
672 extract_nps_3bit_dst (unsigned insn ATTRIBUTE_UNUSED
,
673 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
675 int value
= (insn
>> 24) & 0x07;
683 insert_nps_3bit_dst_short (unsigned insn ATTRIBUTE_UNUSED
,
684 int value ATTRIBUTE_UNUSED
,
685 const char **errmsg ATTRIBUTE_UNUSED
)
699 insn
|= (value
- 8) << 8;
702 *errmsg
= _("Register must be either r0-r3 or r12-r15.");
709 extract_nps_3bit_dst_short (unsigned insn ATTRIBUTE_UNUSED
,
710 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
712 int value
= (insn
>> 8) & 0x07;
720 insert_nps_3bit_src2 (unsigned insn ATTRIBUTE_UNUSED
,
721 int value ATTRIBUTE_UNUSED
,
722 const char **errmsg ATTRIBUTE_UNUSED
)
736 insn
|= (value
- 8) << 21;
739 *errmsg
= _("Register must be either r0-r3 or r12-r15.");
746 extract_nps_3bit_src2 (unsigned insn ATTRIBUTE_UNUSED
,
747 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
749 int value
= (insn
>> 21) & 0x07;
757 insert_nps_3bit_src2_short (unsigned insn ATTRIBUTE_UNUSED
,
758 int value ATTRIBUTE_UNUSED
,
759 const char **errmsg ATTRIBUTE_UNUSED
)
773 insn
|= (value
- 8) << 5;
776 *errmsg
= _("Register must be either r0-r3 or r12-r15.");
783 extract_nps_3bit_src2_short (unsigned insn ATTRIBUTE_UNUSED
,
784 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
786 int value
= (insn
>> 5) & 0x07;
794 insert_nps_bitop_size_2b (unsigned insn ATTRIBUTE_UNUSED
,
795 int value ATTRIBUTE_UNUSED
,
796 const char **errmsg ATTRIBUTE_UNUSED
)
814 *errmsg
= _("Invalid size, should be 1, 2, 4, or 8.");
823 extract_nps_bitop_size_2b (unsigned insn ATTRIBUTE_UNUSED
,
824 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
826 return 1 << ((insn
>> 10) & 0x3);
830 insert_nps_bitop_uimm8 (unsigned insn ATTRIBUTE_UNUSED
,
831 int value ATTRIBUTE_UNUSED
,
832 const char **errmsg ATTRIBUTE_UNUSED
)
834 insn
|= ((value
>> 5) & 7) << 12;
835 insn
|= (value
& 0x1f);
840 extract_nps_bitop_uimm8 (unsigned insn ATTRIBUTE_UNUSED
,
841 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
843 return (((insn
>> 12) & 0x7) << 5) | (insn
& 0x1f);
847 insert_nps_rflt_uimm6 (unsigned insn ATTRIBUTE_UNUSED
,
848 int value ATTRIBUTE_UNUSED
,
849 const char **errmsg ATTRIBUTE_UNUSED
)
859 *errmsg
= _("invalid immediate, must be 1, 2, or 4");
863 insn
|= (value
<< 6);
868 extract_nps_rflt_uimm6 (unsigned insn ATTRIBUTE_UNUSED
,
869 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
871 return (insn
>> 6) & 0x3f;
875 insert_nps_dst_pos_and_size (unsigned insn ATTRIBUTE_UNUSED
,
876 int value ATTRIBUTE_UNUSED
,
877 const char **errmsg ATTRIBUTE_UNUSED
)
879 insn
|= ((value
& 0x1f) | (((32 - value
- 1) & 0x1f) << 10));
884 extract_nps_dst_pos_and_size (unsigned insn ATTRIBUTE_UNUSED
,
885 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
887 return (insn
& 0x1f);
891 insert_nps_cmem_uimm16 (unsigned insn ATTRIBUTE_UNUSED
,
892 int value ATTRIBUTE_UNUSED
,
893 const char **errmsg ATTRIBUTE_UNUSED
)
895 int top
= (value
>> 16) & 0xffff;
896 if (top
!= 0x0 && top
!= NPS_CMEM_HIGH_VALUE
)
897 *errmsg
= _("invalid value for CMEM ld/st immediate");
898 insn
|= (value
& 0xffff);
903 extract_nps_cmem_uimm16 (unsigned insn ATTRIBUTE_UNUSED
,
904 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
906 return (NPS_CMEM_HIGH_VALUE
<< 16) | (insn
& 0xffff);
909 #define MAKE_SRC_POS_INSERT_EXTRACT_FUNCS(NAME,SHIFT) \
911 insert_nps_##NAME##_pos (unsigned insn ATTRIBUTE_UNUSED, \
912 int value ATTRIBUTE_UNUSED, \
913 const char **errmsg ATTRIBUTE_UNUSED) \
924 *errmsg = _("Invalid position, should be 0, 8, 16, or 24."); \
927 insn |= (value << SHIFT); \
932 extract_nps_##NAME##_pos (unsigned insn ATTRIBUTE_UNUSED, \
933 bfd_boolean * invalid ATTRIBUTE_UNUSED) \
935 return ((insn >> SHIFT) & 0x3) * 8; \
938 MAKE_SRC_POS_INSERT_EXTRACT_FUNCS (src2
, 12)
939 MAKE_SRC_POS_INSERT_EXTRACT_FUNCS (src1
, 10)
941 #define MAKE_BIAS_INSERT_EXTRACT_FUNCS(NAME,LOWER,UPPER,BITS,BIAS,SHIFT)\
943 insert_nps_##NAME (unsigned insn ATTRIBUTE_UNUSED, \
944 int value ATTRIBUTE_UNUSED, \
945 const char **errmsg ATTRIBUTE_UNUSED) \
947 if (value < LOWER || value > UPPER) \
949 *errmsg = _("Invalid size, value must be " \
950 #LOWER " to " #UPPER "."); \
954 insn |= (value << SHIFT); \
959 extract_nps_##NAME (unsigned insn ATTRIBUTE_UNUSED, \
960 bfd_boolean * invalid ATTRIBUTE_UNUSED) \
962 return ((insn >> SHIFT) & ((1 << BITS) - 1)) + BIAS; \
965 MAKE_BIAS_INSERT_EXTRACT_FUNCS (addb_size
,2,32,5,1,5)
966 MAKE_BIAS_INSERT_EXTRACT_FUNCS (andb_size
,1,32,5,1,5)
967 MAKE_BIAS_INSERT_EXTRACT_FUNCS (fxorb_size
,8,32,5,8,5)
968 MAKE_BIAS_INSERT_EXTRACT_FUNCS (wxorb_size
,16,32,5,16,5)
969 MAKE_BIAS_INSERT_EXTRACT_FUNCS (bitop_size
,1,32,5,1,10)
970 MAKE_BIAS_INSERT_EXTRACT_FUNCS (qcmp_size
,1,8,3,1,9)
971 MAKE_BIAS_INSERT_EXTRACT_FUNCS (bitop1_size
,1,32,5,1,20)
972 MAKE_BIAS_INSERT_EXTRACT_FUNCS (bitop2_size
,1,32,5,1,25)
973 MAKE_BIAS_INSERT_EXTRACT_FUNCS (hash_width
,1,32,5,1,6)
974 MAKE_BIAS_INSERT_EXTRACT_FUNCS (hash_len
,1,8,3,1,2)
975 MAKE_BIAS_INSERT_EXTRACT_FUNCS (index3
,4,7,2,4,0)
978 extract_nps_qcmp_m3 (unsigned insn ATTRIBUTE_UNUSED
,
979 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
981 int m3
= (insn
>> 5) & 0xf;
988 extract_nps_qcmp_m2 (unsigned insn ATTRIBUTE_UNUSED
,
989 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
991 bfd_boolean tmp_invalid
= FALSE
;
992 int m2
= (insn
>> 15) & 0x1;
993 int m3
= extract_nps_qcmp_m3 (insn
, &tmp_invalid
);
995 if (m2
== 0 && m3
== 0xf)
1001 extract_nps_qcmp_m1 (unsigned insn ATTRIBUTE_UNUSED
,
1002 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
1004 bfd_boolean tmp_invalid
= FALSE
;
1005 int m1
= (insn
>> 14) & 0x1;
1006 int m2
= extract_nps_qcmp_m2 (insn
, &tmp_invalid
);
1007 int m3
= extract_nps_qcmp_m3 (insn
, &tmp_invalid
);
1009 if (m1
== 0 && m2
== 0 && m3
== 0xf)
1015 insert_nps_calc_entry_size (unsigned insn ATTRIBUTE_UNUSED
,
1016 int value ATTRIBUTE_UNUSED
,
1017 const char **errmsg ATTRIBUTE_UNUSED
)
1021 if (value
< 1 || value
> 256)
1023 *errmsg
= _("value out of range 1 - 256");
1027 for (pwr
= 0; (value
& 1) == 0; value
>>= 1)
1032 *errmsg
= _("value must be power of 2");
1036 return insn
| (pwr
<< 8);
1040 extract_nps_calc_entry_size (unsigned insn ATTRIBUTE_UNUSED
,
1041 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
1043 unsigned entry_size
= (insn
>> 8) & 0xf;
1044 return 1 << entry_size
;
1048 insert_nps_bitop_mod4_msb (unsigned insn ATTRIBUTE_UNUSED
,
1049 int value ATTRIBUTE_UNUSED
,
1050 const char **errmsg ATTRIBUTE_UNUSED
)
1052 return insn
| ((value
& 0x2) << 30);
1056 extract_nps_bitop_mod4_msb (unsigned insn ATTRIBUTE_UNUSED
,
1057 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
1059 return (insn
>> 30) & 0x2;
1063 insert_nps_bitop_mod4_lsb (unsigned insn ATTRIBUTE_UNUSED
,
1064 int value ATTRIBUTE_UNUSED
,
1065 const char **errmsg ATTRIBUTE_UNUSED
)
1067 return insn
| ((value
& 0x1) << 15);
1071 extract_nps_bitop_mod4_lsb (unsigned insn ATTRIBUTE_UNUSED
,
1072 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
1074 return (insn
>> 15) & 0x1;
1078 insert_nps_bitop_dst_pos3_pos4 (unsigned insn ATTRIBUTE_UNUSED
,
1079 int value ATTRIBUTE_UNUSED
,
1080 const char **errmsg ATTRIBUTE_UNUSED
)
1082 return insn
| (value
<< 10) | (value
<< 5);
1086 extract_nps_bitop_dst_pos3_pos4 (unsigned insn ATTRIBUTE_UNUSED
,
1087 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
1089 if (((insn
>> 10) & 0x1f) != ((insn
>> 5) & 0x1f))
1091 return ((insn
>> 5) & 0x1f);
1095 insert_nps_bitop_ins_ext (unsigned insn ATTRIBUTE_UNUSED
,
1096 int value ATTRIBUTE_UNUSED
,
1097 const char **errmsg ATTRIBUTE_UNUSED
)
1099 if (value
< 0 || value
> 28)
1100 *errmsg
= _("Value must be in the range 0 to 28");
1101 return insn
| (value
<< 20);
1105 extract_nps_bitop_ins_ext (unsigned insn ATTRIBUTE_UNUSED
,
1106 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
1108 int value
= (insn
>> 20) & 0x1f;
1114 #define MAKE_1BASED_INSERT_EXTRACT_FUNCS(NAME,SHIFT,UPPER,BITS) \
1116 insert_nps_##NAME (unsigned insn ATTRIBUTE_UNUSED, \
1117 int value ATTRIBUTE_UNUSED, \
1118 const char **errmsg ATTRIBUTE_UNUSED) \
1120 if (value < 1 || value > UPPER) \
1121 *errmsg = _("Value must be in the range 1 to " #UPPER); \
1122 if (value == UPPER) \
1124 return insn | (value << SHIFT); \
1128 extract_nps_##NAME (unsigned insn ATTRIBUTE_UNUSED, \
1129 bfd_boolean * invalid ATTRIBUTE_UNUSED) \
1131 int value = (insn >> SHIFT) & ((1 << BITS) - 1); \
1137 MAKE_1BASED_INSERT_EXTRACT_FUNCS (field_size
, 6, 8, 3)
1138 MAKE_1BASED_INSERT_EXTRACT_FUNCS (shift_factor
, 9, 8, 3)
1139 MAKE_1BASED_INSERT_EXTRACT_FUNCS (bits_to_scramble
, 12, 8, 3)
1140 MAKE_1BASED_INSERT_EXTRACT_FUNCS (bdlen_max_len
, 5, 256, 8)
1141 MAKE_1BASED_INSERT_EXTRACT_FUNCS (bd_num_buff
, 6, 8, 3)
1142 MAKE_1BASED_INSERT_EXTRACT_FUNCS (pmu_num_job
, 6, 4, 2)
1145 insert_nps_min_hofs (unsigned insn ATTRIBUTE_UNUSED
,
1146 int value ATTRIBUTE_UNUSED
,
1147 const char **errmsg ATTRIBUTE_UNUSED
)
1149 if (value
< 0 || value
> 240)
1150 *errmsg
= _("Value must be in the range 0 to 240");
1151 if ((value
% 16) != 0)
1152 *errmsg
= _("Value must be a multiple of 16");
1154 return insn
| (value
<< 6);
1158 extract_nps_min_hofs (unsigned insn ATTRIBUTE_UNUSED
,
1159 bfd_boolean
* invalid ATTRIBUTE_UNUSED
)
1161 int value
= (insn
>> 6) & 0xF;
1165 #define MAKE_INSERT_NPS_ADDRTYPE(NAME,VALUE) \
1167 insert_nps_##NAME (unsigned insn ATTRIBUTE_UNUSED, \
1168 int value ATTRIBUTE_UNUSED, \
1169 const char **errmsg ATTRIBUTE_UNUSED) \
1171 if (value != ARC_NPS400_ADDRTYPE_##VALUE) \
1172 *errmsg = _("Invalid address type for operand"); \
1177 extract_nps_##NAME (unsigned insn ATTRIBUTE_UNUSED, \
1178 bfd_boolean * invalid ATTRIBUTE_UNUSED) \
1180 return ARC_NPS400_ADDRTYPE_##VALUE; \
1183 MAKE_INSERT_NPS_ADDRTYPE (bd
, BD
)
1184 MAKE_INSERT_NPS_ADDRTYPE (jid
, JID
)
1185 MAKE_INSERT_NPS_ADDRTYPE (lbd
, LBD
)
1186 MAKE_INSERT_NPS_ADDRTYPE (mbd
, MBD
)
1187 MAKE_INSERT_NPS_ADDRTYPE (sd
, SD
)
1188 MAKE_INSERT_NPS_ADDRTYPE (sm
, SM
)
1189 MAKE_INSERT_NPS_ADDRTYPE (xa
, XA
)
1190 MAKE_INSERT_NPS_ADDRTYPE (xd
, XD
)
1191 MAKE_INSERT_NPS_ADDRTYPE (cd
, CD
)
1192 MAKE_INSERT_NPS_ADDRTYPE (cbd
, CBD
)
1193 MAKE_INSERT_NPS_ADDRTYPE (cjid
, CJID
)
1194 MAKE_INSERT_NPS_ADDRTYPE (clbd
, CLBD
)
1195 MAKE_INSERT_NPS_ADDRTYPE (cm
, CM
)
1196 MAKE_INSERT_NPS_ADDRTYPE (csd
, CSD
)
1197 MAKE_INSERT_NPS_ADDRTYPE (cxa
, CXA
)
1198 MAKE_INSERT_NPS_ADDRTYPE (cxd
, CXD
)
1201 /* Include the generic extract/insert functions. Order is important
1202 as some of the functions present in the .h may be disabled via
1204 #include "arc-fxi.h"
1206 /* The flag operands table.
1208 The format of the table is
1209 NAME CODE BITS SHIFT FAVAIL. */
1210 const struct arc_flag_operand arc_flag_operands
[] =
1214 #define F_ALWAYS (F_NULL + 1)
1215 { "al", 0, 0, 0, 0 },
1216 #define F_RA (F_ALWAYS + 1)
1217 { "ra", 0, 0, 0, 0 },
1218 #define F_EQUAL (F_RA + 1)
1219 { "eq", 1, 5, 0, 1 },
1220 #define F_ZERO (F_EQUAL + 1)
1221 { "z", 1, 5, 0, 0 },
1222 #define F_NOTEQUAL (F_ZERO + 1)
1223 { "ne", 2, 5, 0, 1 },
1224 #define F_NOTZERO (F_NOTEQUAL + 1)
1225 { "nz", 2, 5, 0, 0 },
1226 #define F_POZITIVE (F_NOTZERO + 1)
1227 { "p", 3, 5, 0, 1 },
1228 #define F_PL (F_POZITIVE + 1)
1229 { "pl", 3, 5, 0, 0 },
1230 #define F_NEGATIVE (F_PL + 1)
1231 { "n", 4, 5, 0, 1 },
1232 #define F_MINUS (F_NEGATIVE + 1)
1233 { "mi", 4, 5, 0, 0 },
1234 #define F_CARRY (F_MINUS + 1)
1235 { "c", 5, 5, 0, 1 },
1236 #define F_CARRYSET (F_CARRY + 1)
1237 { "cs", 5, 5, 0, 0 },
1238 #define F_LOWER (F_CARRYSET + 1)
1239 { "lo", 5, 5, 0, 0 },
1240 #define F_CARRYCLR (F_LOWER + 1)
1241 { "cc", 6, 5, 0, 0 },
1242 #define F_NOTCARRY (F_CARRYCLR + 1)
1243 { "nc", 6, 5, 0, 1 },
1244 #define F_HIGHER (F_NOTCARRY + 1)
1245 { "hs", 6, 5, 0, 0 },
1246 #define F_OVERFLOWSET (F_HIGHER + 1)
1247 { "vs", 7, 5, 0, 0 },
1248 #define F_OVERFLOW (F_OVERFLOWSET + 1)
1249 { "v", 7, 5, 0, 1 },
1250 #define F_NOTOVERFLOW (F_OVERFLOW + 1)
1251 { "nv", 8, 5, 0, 1 },
1252 #define F_OVERFLOWCLR (F_NOTOVERFLOW + 1)
1253 { "vc", 8, 5, 0, 0 },
1254 #define F_GT (F_OVERFLOWCLR + 1)
1255 { "gt", 9, 5, 0, 1 },
1256 #define F_GE (F_GT + 1)
1257 { "ge", 10, 5, 0, 1 },
1258 #define F_LT (F_GE + 1)
1259 { "lt", 11, 5, 0, 1 },
1260 #define F_LE (F_LT + 1)
1261 { "le", 12, 5, 0, 1 },
1262 #define F_HI (F_LE + 1)
1263 { "hi", 13, 5, 0, 1 },
1264 #define F_LS (F_HI + 1)
1265 { "ls", 14, 5, 0, 1 },
1266 #define F_PNZ (F_LS + 1)
1267 { "pnz", 15, 5, 0, 1 },
1270 #define F_FLAG (F_PNZ + 1)
1271 { "f", 1, 1, 15, 1 },
1272 #define F_FFAKE (F_FLAG + 1)
1273 { "f", 0, 0, 0, 1 },
1276 #define F_ND (F_FFAKE + 1)
1277 { "nd", 0, 1, 5, 0 },
1278 #define F_D (F_ND + 1)
1279 { "d", 1, 1, 5, 1 },
1280 #define F_DFAKE (F_D + 1)
1281 { "d", 0, 0, 0, 1 },
1284 #define F_SIZEB1 (F_DFAKE + 1)
1285 { "b", 1, 2, 1, 1 },
1286 #define F_SIZEB7 (F_SIZEB1 + 1)
1287 { "b", 1, 2, 7, 1 },
1288 #define F_SIZEB17 (F_SIZEB7 + 1)
1289 { "b", 1, 2, 17, 1 },
1290 #define F_SIZEW1 (F_SIZEB17 + 1)
1291 { "w", 2, 2, 1, 0 },
1292 #define F_SIZEW7 (F_SIZEW1 + 1)
1293 { "w", 2, 2, 7, 0 },
1294 #define F_SIZEW17 (F_SIZEW7 + 1)
1295 { "w", 2, 2, 17, 0 },
1297 /* Sign extension. */
1298 #define F_SIGN6 (F_SIZEW17 + 1)
1299 { "x", 1, 1, 6, 1 },
1300 #define F_SIGN16 (F_SIGN6 + 1)
1301 { "x", 1, 1, 16, 1 },
1302 #define F_SIGNX (F_SIGN16 + 1)
1303 { "x", 0, 0, 0, 1 },
1305 /* Address write-back modes. */
1306 #define F_A3 (F_SIGNX + 1)
1307 { "a", 1, 2, 3, 0 },
1308 #define F_A9 (F_A3 + 1)
1309 { "a", 1, 2, 9, 0 },
1310 #define F_A22 (F_A9 + 1)
1311 { "a", 1, 2, 22, 0 },
1312 #define F_AW3 (F_A22 + 1)
1313 { "aw", 1, 2, 3, 1 },
1314 #define F_AW9 (F_AW3 + 1)
1315 { "aw", 1, 2, 9, 1 },
1316 #define F_AW22 (F_AW9 + 1)
1317 { "aw", 1, 2, 22, 1 },
1318 #define F_AB3 (F_AW22 + 1)
1319 { "ab", 2, 2, 3, 1 },
1320 #define F_AB9 (F_AB3 + 1)
1321 { "ab", 2, 2, 9, 1 },
1322 #define F_AB22 (F_AB9 + 1)
1323 { "ab", 2, 2, 22, 1 },
1324 #define F_AS3 (F_AB22 + 1)
1325 { "as", 3, 2, 3, 1 },
1326 #define F_AS9 (F_AS3 + 1)
1327 { "as", 3, 2, 9, 1 },
1328 #define F_AS22 (F_AS9 + 1)
1329 { "as", 3, 2, 22, 1 },
1330 #define F_ASFAKE (F_AS22 + 1)
1331 { "as", 0, 0, 0, 1 },
1334 #define F_DI5 (F_ASFAKE + 1)
1335 { "di", 1, 1, 5, 1 },
1336 #define F_DI11 (F_DI5 + 1)
1337 { "di", 1, 1, 11, 1 },
1338 #define F_DI15 (F_DI11 + 1)
1339 { "di", 1, 1, 15, 1 },
1341 /* ARCv2 specific. */
1342 #define F_NT (F_DI15 + 1)
1343 { "nt", 0, 1, 3, 1},
1344 #define F_T (F_NT + 1)
1346 #define F_H1 (F_T + 1)
1347 { "h", 2, 2, 1, 1 },
1348 #define F_H7 (F_H1 + 1)
1349 { "h", 2, 2, 7, 1 },
1350 #define F_H17 (F_H7 + 1)
1351 { "h", 2, 2, 17, 1 },
1354 #define F_NE (F_H17 + 1)
1355 { "ne", 0, 0, 0, 1 },
1357 /* ARC NPS400 Support: See comment near head of file. */
1358 #define F_NPS_CL (F_NE + 1)
1359 { "cl", 0, 0, 0, 1 },
1361 #define F_NPS_FLAG (F_NPS_CL + 1)
1362 { "f", 1, 1, 20, 1 },
1364 #define F_NPS_R (F_NPS_FLAG + 1)
1365 { "r", 1, 1, 15, 1 },
1367 #define F_NPS_RW (F_NPS_R + 1)
1368 { "rw", 0, 1, 7, 1 },
1370 #define F_NPS_RD (F_NPS_RW + 1)
1371 { "rd", 1, 1, 7, 1 },
1373 #define F_NPS_WFT (F_NPS_RD + 1)
1374 { "wft", 0, 0, 0, 1 },
1376 #define F_NPS_IE1 (F_NPS_WFT + 1)
1377 { "ie1", 1, 2, 8, 1 },
1379 #define F_NPS_IE2 (F_NPS_IE1 + 1)
1380 { "ie2", 2, 2, 8, 1 },
1382 #define F_NPS_IE12 (F_NPS_IE2 + 1)
1383 { "ie12", 3, 2, 8, 1 },
1385 #define F_NPS_SYNC_RD (F_NPS_IE12 + 1)
1386 { "rd", 0, 1, 6, 1 },
1388 #define F_NPS_SYNC_WR (F_NPS_SYNC_RD + 1)
1389 { "wr", 1, 1, 6, 1 },
1391 #define F_NPS_HWS_OFF (F_NPS_SYNC_WR + 1)
1392 { "off", 0, 0, 0, 1 },
1394 #define F_NPS_HWS_RESTORE (F_NPS_HWS_OFF + 1)
1395 { "restore", 0, 0, 0, 1 },
1397 #define F_NPS_SX (F_NPS_HWS_RESTORE + 1)
1398 { "sx", 1, 1, 14, 1 },
1400 #define F_NPS_AR (F_NPS_SX + 1)
1401 { "ar", 0, 1, 0, 1 },
1403 #define F_NPS_AL (F_NPS_AR + 1)
1404 { "al", 1, 1, 0, 1 },
1406 #define F_NPS_S (F_NPS_AL + 1)
1407 { "s", 0, 0, 0, 1 },
1409 #define F_NPS_ZNCV_RD (F_NPS_S + 1)
1410 { "rd", 0, 1, 15, 1 },
1412 #define F_NPS_ZNCV_WR (F_NPS_ZNCV_RD + 1)
1413 { "wr", 1, 1, 15, 1 },
1415 #define F_NPS_P0 (F_NPS_ZNCV_WR + 1)
1416 { "p0", 0, 0, 0, 1 },
1418 #define F_NPS_P1 (F_NPS_P0 + 1)
1419 { "p1", 0, 0, 0, 1 },
1421 #define F_NPS_P2 (F_NPS_P1 + 1)
1422 { "p2", 0, 0, 0, 1 },
1424 #define F_NPS_P3 (F_NPS_P2 + 1)
1425 { "p3", 0, 0, 0, 1 },
1427 #define F_NPS_LDBIT_DI (F_NPS_P3 + 1)
1428 { "di", 0, 0, 0, 1 },
1430 #define F_NPS_LDBIT_CL1 (F_NPS_LDBIT_DI + 1)
1431 { "cl", 1, 1, 6, 1 },
1433 #define F_NPS_LDBIT_CL2 (F_NPS_LDBIT_CL1 + 1)
1434 { "cl", 1, 1, 16, 1 },
1436 #define F_NPS_LDBIT_X2_1 (F_NPS_LDBIT_CL2 + 1)
1437 { "x2", 1, 2, 9, 1 },
1439 #define F_NPS_LDBIT_X2_2 (F_NPS_LDBIT_X2_1 + 1)
1440 { "x2", 1, 2, 22, 1 },
1442 #define F_NPS_LDBIT_X4_1 (F_NPS_LDBIT_X2_2 + 1)
1443 { "x4", 2, 2, 9, 1 },
1445 #define F_NPS_LDBIT_X4_2 (F_NPS_LDBIT_X4_1 + 1)
1446 { "x4", 2, 2, 22, 1 },
1449 const unsigned arc_num_flag_operands
= ARRAY_SIZE (arc_flag_operands
);
1451 /* Table of the flag classes.
1453 The format of the table is
1454 CLASS {FLAG_CODE}. */
1455 const struct arc_flag_class arc_flag_classes
[] =
1458 { F_CLASS_NONE
, { F_NULL
} },
1460 #define C_CC (C_EMPTY + 1)
1461 { F_CLASS_OPTIONAL
| F_CLASS_EXTEND
| F_CLASS_COND
,
1462 { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
,
1463 F_NOTZERO
, F_POZITIVE
, F_PL
, F_NEGATIVE
, F_MINUS
,
1464 F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
1465 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
,
1466 F_NOTOVERFLOW
, F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
,
1467 F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
1469 #define C_AA_ADDR3 (C_CC + 1)
1470 #define C_AA27 (C_CC + 1)
1471 { F_CLASS_OPTIONAL
, { F_A3
, F_AW3
, F_AB3
, F_AS3
, F_NULL
} },
1472 #define C_AA_ADDR9 (C_AA_ADDR3 + 1)
1473 #define C_AA21 (C_AA_ADDR3 + 1)
1474 { F_CLASS_OPTIONAL
, { F_A9
, F_AW9
, F_AB9
, F_AS9
, F_NULL
} },
1475 #define C_AA_ADDR22 (C_AA_ADDR9 + 1)
1476 #define C_AA8 (C_AA_ADDR9 + 1)
1477 { F_CLASS_OPTIONAL
, { F_A22
, F_AW22
, F_AB22
, F_AS22
, F_NULL
} },
1479 #define C_F (C_AA_ADDR22 + 1)
1480 { F_CLASS_OPTIONAL
, { F_FLAG
, F_NULL
} },
1481 #define C_FHARD (C_F + 1)
1482 { F_CLASS_OPTIONAL
, { F_FFAKE
, F_NULL
} },
1484 #define C_T (C_FHARD + 1)
1485 { F_CLASS_OPTIONAL
, { F_NT
, F_T
, F_NULL
} },
1486 #define C_D (C_T + 1)
1487 { F_CLASS_OPTIONAL
, { F_ND
, F_D
, F_NULL
} },
1489 #define C_DHARD (C_D + 1)
1490 { F_CLASS_OPTIONAL
, { F_DFAKE
, F_NULL
} },
1492 #define C_DI20 (C_DHARD + 1)
1493 { F_CLASS_OPTIONAL
, { F_DI11
, F_NULL
}},
1494 #define C_DI16 (C_DI20 + 1)
1495 { F_CLASS_OPTIONAL
, { F_DI15
, F_NULL
}},
1496 #define C_DI26 (C_DI16 + 1)
1497 { F_CLASS_OPTIONAL
, { F_DI5
, F_NULL
}},
1499 #define C_X25 (C_DI26 + 1)
1500 { F_CLASS_OPTIONAL
, { F_SIGN6
, F_NULL
}},
1501 #define C_X15 (C_X25 + 1)
1502 { F_CLASS_OPTIONAL
, { F_SIGN16
, F_NULL
}},
1503 #define C_XHARD (C_X15 + 1)
1504 #define C_X (C_X15 + 1)
1505 { F_CLASS_OPTIONAL
, { F_SIGNX
, F_NULL
}},
1507 #define C_ZZ13 (C_X + 1)
1508 { F_CLASS_OPTIONAL
, { F_SIZEB17
, F_SIZEW17
, F_H17
, F_NULL
}},
1509 #define C_ZZ23 (C_ZZ13 + 1)
1510 { F_CLASS_OPTIONAL
, { F_SIZEB7
, F_SIZEW7
, F_H7
, F_NULL
}},
1511 #define C_ZZ29 (C_ZZ23 + 1)
1512 { F_CLASS_OPTIONAL
, { F_SIZEB1
, F_SIZEW1
, F_H1
, F_NULL
}},
1514 #define C_AS (C_ZZ29 + 1)
1515 { F_CLASS_OPTIONAL
, { F_ASFAKE
, F_NULL
}},
1517 #define C_NE (C_AS + 1)
1518 { F_CLASS_OPTIONAL
, { F_NE
, F_NULL
}},
1520 /* ARC NPS400 Support: See comment near head of file. */
1521 #define C_NPS_CL (C_NE + 1)
1522 { F_CLASS_REQUIRED
, { F_NPS_CL
, F_NULL
}},
1524 #define C_NPS_F (C_NPS_CL + 1)
1525 { F_CLASS_OPTIONAL
, { F_NPS_FLAG
, F_NULL
}},
1527 #define C_NPS_R (C_NPS_F + 1)
1528 { F_CLASS_OPTIONAL
, { F_NPS_R
, F_NULL
}},
1530 #define C_NPS_SCHD_RW (C_NPS_R + 1)
1531 { F_CLASS_REQUIRED
, { F_NPS_RW
, F_NPS_RD
, F_NULL
}},
1533 #define C_NPS_SCHD_TRIG (C_NPS_SCHD_RW + 1)
1534 { F_CLASS_REQUIRED
, { F_NPS_WFT
, F_NULL
}},
1536 #define C_NPS_SCHD_IE (C_NPS_SCHD_TRIG + 1)
1537 { F_CLASS_OPTIONAL
, { F_NPS_IE1
, F_NPS_IE2
, F_NPS_IE12
, F_NULL
}},
1539 #define C_NPS_SYNC (C_NPS_SCHD_IE + 1)
1540 { F_CLASS_REQUIRED
, { F_NPS_SYNC_RD
, F_NPS_SYNC_WR
, F_NULL
}},
1542 #define C_NPS_HWS_OFF (C_NPS_SYNC + 1)
1543 { F_CLASS_REQUIRED
, { F_NPS_HWS_OFF
, F_NULL
}},
1545 #define C_NPS_HWS_RESTORE (C_NPS_HWS_OFF + 1)
1546 { F_CLASS_REQUIRED
, { F_NPS_HWS_RESTORE
, F_NULL
}},
1548 #define C_NPS_SX (C_NPS_HWS_RESTORE + 1)
1549 { F_CLASS_OPTIONAL
, { F_NPS_SX
, F_NULL
}},
1551 #define C_NPS_AR_AL (C_NPS_SX + 1)
1552 { F_CLASS_REQUIRED
, { F_NPS_AR
, F_NPS_AL
, F_NULL
}},
1554 #define C_NPS_S (C_NPS_AR_AL + 1)
1555 { F_CLASS_REQUIRED
, { F_NPS_S
, F_NULL
}},
1557 #define C_NPS_ZNCV (C_NPS_S + 1)
1558 { F_CLASS_REQUIRED
, { F_NPS_ZNCV_RD
, F_NPS_ZNCV_WR
, F_NULL
}},
1560 #define C_NPS_P0 (C_NPS_ZNCV + 1)
1561 { F_CLASS_REQUIRED
, { F_NPS_P0
, F_NULL
}},
1563 #define C_NPS_P1 (C_NPS_P0 + 1)
1564 { F_CLASS_REQUIRED
, { F_NPS_P1
, F_NULL
}},
1566 #define C_NPS_P2 (C_NPS_P1 + 1)
1567 { F_CLASS_REQUIRED
, { F_NPS_P2
, F_NULL
}},
1569 #define C_NPS_P3 (C_NPS_P2 + 1)
1570 { F_CLASS_REQUIRED
, { F_NPS_P3
, F_NULL
}},
1572 #define C_NPS_LDBIT_DI (C_NPS_P3 + 1)
1573 { F_CLASS_REQUIRED
, { F_NPS_LDBIT_DI
, F_NULL
}},
1575 #define C_NPS_LDBIT_CL1 (C_NPS_LDBIT_DI + 1)
1576 { F_CLASS_OPTIONAL
, { F_NPS_LDBIT_CL1
, F_NULL
}},
1578 #define C_NPS_LDBIT_CL2 (C_NPS_LDBIT_CL1 + 1)
1579 { F_CLASS_OPTIONAL
, { F_NPS_LDBIT_CL2
, F_NULL
}},
1581 #define C_NPS_LDBIT_X_1 (C_NPS_LDBIT_CL2 + 1)
1582 { F_CLASS_OPTIONAL
, { F_NPS_LDBIT_X2_1
, F_NPS_LDBIT_X4_1
, F_NULL
}},
1584 #define C_NPS_LDBIT_X_2 (C_NPS_LDBIT_X_1 + 1)
1585 { F_CLASS_OPTIONAL
, { F_NPS_LDBIT_X2_2
, F_NPS_LDBIT_X4_2
, F_NULL
}},
1588 const unsigned char flags_none
[] = { 0 };
1589 const unsigned char flags_f
[] = { C_F
};
1590 const unsigned char flags_cc
[] = { C_CC
};
1591 const unsigned char flags_ccf
[] = { C_CC
, C_F
};
1593 /* The operands table.
1595 The format of the operands table is:
1597 BITS SHIFT DEFAULT_RELOC FLAGS INSERT_FUN EXTRACT_FUN. */
1598 const struct arc_operand arc_operands
[] =
1600 /* The fields are bits, shift, insert, extract, flags. The zero
1601 index is used to indicate end-of-list. */
1603 { 0, 0, 0, 0, 0, 0 },
1605 #define IGNORED (UNUSED + 1)
1606 { 0, 0, 0, ARC_OPERAND_IGNORE
| ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, 0, 0 },
1608 /* The plain integer register fields. Used by 32 bit
1610 #define RA (IGNORED + 1)
1611 { 6, 0, 0, ARC_OPERAND_IR
, 0, 0 },
1613 { 6, 12, 0, ARC_OPERAND_IR
, insert_rb
, extract_rb
},
1615 { 6, 6, 0, ARC_OPERAND_IR
, 0, 0 },
1616 #define RBdup (RC + 1)
1617 { 6, 12, 0, ARC_OPERAND_IR
| ARC_OPERAND_DUPLICATE
, insert_rb
, extract_rb
},
1619 #define RAD (RBdup + 1)
1620 { 6, 0, 0, ARC_OPERAND_IR
| ARC_OPERAND_TRUNCATE
, insert_rad
, 0 },
1621 #define RCD (RAD + 1)
1622 { 6, 6, 0, ARC_OPERAND_IR
| ARC_OPERAND_TRUNCATE
, insert_rcd
, 0 },
1624 /* The plain integer register fields. Used by short
1626 #define RA16 (RCD + 1)
1627 #define RA_S (RCD + 1)
1628 { 4, 0, 0, ARC_OPERAND_IR
, insert_ras
, extract_ras
},
1629 #define RB16 (RA16 + 1)
1630 #define RB_S (RA16 + 1)
1631 { 4, 8, 0, ARC_OPERAND_IR
, insert_rbs
, extract_rbs
},
1632 #define RB16dup (RB16 + 1)
1633 #define RB_Sdup (RB16 + 1)
1634 { 4, 8, 0, ARC_OPERAND_IR
| ARC_OPERAND_DUPLICATE
, insert_rbs
, extract_rbs
},
1635 #define RC16 (RB16dup + 1)
1636 #define RC_S (RB16dup + 1)
1637 { 4, 5, 0, ARC_OPERAND_IR
, insert_rcs
, extract_rcs
},
1638 #define R6H (RC16 + 1) /* 6bit register field 'h' used
1640 { 6, 5, 0, ARC_OPERAND_IR
, insert_rhv1
, extract_rhv1
},
1641 #define R5H (R6H + 1) /* 5bit register field 'h' used
1643 #define RH_S (R6H + 1) /* 5bit register field 'h' used
1645 { 5, 5, 0, ARC_OPERAND_IR
, insert_rhv2
, extract_rhv2
},
1646 #define R5Hdup (R5H + 1)
1647 #define RH_Sdup (R5H + 1)
1648 { 5, 5, 0, ARC_OPERAND_IR
| ARC_OPERAND_DUPLICATE
,
1649 insert_rhv2
, extract_rhv2
},
1651 #define RG (R5Hdup + 1)
1652 #define G_S (R5Hdup + 1)
1653 { 5, 5, 0, ARC_OPERAND_IR
, insert_g_s
, extract_g_s
},
1655 /* Fix registers. */
1657 #define R0_S (RG + 1)
1658 { 0, 0, 0, ARC_OPERAND_IR
, insert_r0
, extract_r0
},
1660 #define R1_S (R0 + 1)
1661 { 1, 0, 0, ARC_OPERAND_IR
, insert_r1
, extract_r1
},
1663 #define R2_S (R1 + 1)
1664 { 2, 0, 0, ARC_OPERAND_IR
, insert_r2
, extract_r2
},
1666 #define R3_S (R2 + 1)
1667 { 2, 0, 0, ARC_OPERAND_IR
, insert_r3
, extract_r3
},
1668 #define RSP (R3 + 1)
1669 #define SP_S (R3 + 1)
1670 { 5, 0, 0, ARC_OPERAND_IR
, insert_sp
, extract_sp
},
1671 #define SPdup (RSP + 1)
1672 #define SP_Sdup (RSP + 1)
1673 { 5, 0, 0, ARC_OPERAND_IR
| ARC_OPERAND_DUPLICATE
, insert_sp
, extract_sp
},
1674 #define GP (SPdup + 1)
1675 #define GP_S (SPdup + 1)
1676 { 5, 0, 0, ARC_OPERAND_IR
, insert_gp
, extract_gp
},
1678 #define PCL_S (GP + 1)
1679 { 1, 0, 0, ARC_OPERAND_IR
| ARC_OPERAND_NCHK
, insert_pcl
, extract_pcl
},
1681 #define BLINK (PCL_S + 1)
1682 #define BLINK_S (PCL_S + 1)
1683 { 5, 0, 0, ARC_OPERAND_IR
, insert_blink
, extract_blink
},
1685 #define ILINK1 (BLINK + 1)
1686 { 5, 0, 0, ARC_OPERAND_IR
, insert_ilink1
, extract_ilink1
},
1687 #define ILINK2 (ILINK1 + 1)
1688 { 5, 0, 0, ARC_OPERAND_IR
, insert_ilink2
, extract_ilink2
},
1690 /* Long immediate. */
1691 #define LIMM (ILINK2 + 1)
1692 #define LIMM_S (ILINK2 + 1)
1693 { 32, 0, BFD_RELOC_ARC_32_ME
, ARC_OPERAND_LIMM
, insert_limm
, 0 },
1694 #define LIMMdup (LIMM + 1)
1695 { 32, 0, 0, ARC_OPERAND_LIMM
| ARC_OPERAND_DUPLICATE
, insert_limm
, 0 },
1697 /* Special operands. */
1698 #define ZA (LIMMdup + 1)
1699 #define ZB (LIMMdup + 1)
1700 #define ZA_S (LIMMdup + 1)
1701 #define ZB_S (LIMMdup + 1)
1702 #define ZC_S (LIMMdup + 1)
1703 { 0, 0, 0, ARC_OPERAND_UNSIGNED
, insert_za
, 0 },
1705 #define RRANGE_EL (ZA + 1)
1706 { 4, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
| ARC_OPERAND_TRUNCATE
,
1707 insert_rrange
, extract_rrange
},
1708 #define FP_EL (RRANGE_EL + 1)
1709 { 1, 0, 0, ARC_OPERAND_IR
| ARC_OPERAND_IGNORE
| ARC_OPERAND_NCHK
,
1710 insert_fpel
, extract_fpel
},
1711 #define BLINK_EL (FP_EL + 1)
1712 { 1, 0, 0, ARC_OPERAND_IR
| ARC_OPERAND_IGNORE
| ARC_OPERAND_NCHK
,
1713 insert_blinkel
, extract_blinkel
},
1714 #define PCL_EL (BLINK_EL + 1)
1715 { 1, 0, 0, ARC_OPERAND_IR
| ARC_OPERAND_IGNORE
| ARC_OPERAND_NCHK
,
1716 insert_pclel
, extract_pclel
},
1718 /* Fake operand to handle the T flag. */
1719 #define BRAKET (PCL_EL + 1)
1720 #define BRAKETdup (PCL_EL + 1)
1721 { 0, 0, 0, ARC_OPERAND_FAKE
| ARC_OPERAND_BRAKET
, 0, 0 },
1723 /* Fake operand to handle the T flag. */
1724 #define FKT_T (BRAKET + 1)
1725 { 1, 3, 0, ARC_OPERAND_FAKE
, insert_Ybit
, 0 },
1726 /* Fake operand to handle the T flag. */
1727 #define FKT_NT (FKT_T + 1)
1728 { 1, 3, 0, ARC_OPERAND_FAKE
, insert_NYbit
, 0 },
1730 /* UIMM6_20 mask = 00000000000000000000111111000000. */
1731 #define UIMM6_20 (FKT_NT + 1)
1732 {6, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm6_20
, extract_uimm6_20
},
1734 /* SIMM12_20 mask = 00000000000000000000111111222222. */
1735 #define SIMM12_20 (UIMM6_20 + 1)
1736 {12, 0, 0, ARC_OPERAND_SIGNED
, insert_simm12_20
, extract_simm12_20
},
1738 /* SIMM3_5_S mask = 0000011100000000. */
1739 #define SIMM3_5_S (SIMM12_20 + 1)
1740 {3, 0, 0, ARC_OPERAND_SIGNED
| ARC_OPERAND_NCHK
,
1741 insert_simm3s
, extract_simm3s
},
1743 /* UIMM7_A32_11_S mask = 0000000000011111. */
1744 #define UIMM7_A32_11_S (SIMM3_5_S + 1)
1745 {7, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_ALIGNED32
1746 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_IGNORE
, insert_uimm7_a32_11_s
,
1747 extract_uimm7_a32_11_s
},
1749 /* UIMM7_9_S mask = 0000000001111111. */
1750 #define UIMM7_9_S (UIMM7_A32_11_S + 1)
1751 {7, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm7_9_s
, extract_uimm7_9_s
},
1753 /* UIMM3_13_S mask = 0000000000000111. */
1754 #define UIMM3_13_S (UIMM7_9_S + 1)
1755 {3, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm3_13_s
, extract_uimm3_13_s
},
1757 /* SIMM11_A32_7_S mask = 0000000111111111. */
1758 #define SIMM11_A32_7_S (UIMM3_13_S + 1)
1759 {11, 0, BFD_RELOC_ARC_SDA16_LD2
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED32
1760 | ARC_OPERAND_TRUNCATE
, insert_simm11_a32_7_s
, extract_simm11_a32_7_s
},
1762 /* UIMM6_13_S mask = 0000000002220111. */
1763 #define UIMM6_13_S (SIMM11_A32_7_S + 1)
1764 {6, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm6_13_s
, extract_uimm6_13_s
},
1765 /* UIMM5_11_S mask = 0000000000011111. */
1766 #define UIMM5_11_S (UIMM6_13_S + 1)
1767 {5, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_IGNORE
, insert_uimm5_11_s
,
1768 extract_uimm5_11_s
},
1770 /* SIMM9_A16_8 mask = 00000000111111102000000000000000. */
1771 #define SIMM9_A16_8 (UIMM5_11_S + 1)
1772 {9, 0, -SIMM9_A16_8
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED16
1773 | ARC_OPERAND_PCREL
| ARC_OPERAND_TRUNCATE
, insert_simm9_a16_8
,
1774 extract_simm9_a16_8
},
1776 /* UIMM6_8 mask = 00000000000000000000111111000000. */
1777 #define UIMM6_8 (SIMM9_A16_8 + 1)
1778 {6, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm6_8
, extract_uimm6_8
},
1780 /* SIMM21_A16_5 mask = 00000111111111102222222222000000. */
1781 #define SIMM21_A16_5 (UIMM6_8 + 1)
1782 {21, 0, BFD_RELOC_ARC_S21H_PCREL
, ARC_OPERAND_SIGNED
1783 | ARC_OPERAND_ALIGNED16
| ARC_OPERAND_TRUNCATE
,
1784 insert_simm21_a16_5
, extract_simm21_a16_5
},
1786 /* SIMM25_A16_5 mask = 00000111111111102222222222003333. */
1787 #define SIMM25_A16_5 (SIMM21_A16_5 + 1)
1788 {25, 0, BFD_RELOC_ARC_S25H_PCREL
, ARC_OPERAND_SIGNED
1789 | ARC_OPERAND_ALIGNED16
| ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
,
1790 insert_simm25_a16_5
, extract_simm25_a16_5
},
1792 /* SIMM10_A16_7_S mask = 0000000111111111. */
1793 #define SIMM10_A16_7_S (SIMM25_A16_5 + 1)
1794 {10, 0, -SIMM10_A16_7_S
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED16
1795 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_simm10_a16_7_s
,
1796 extract_simm10_a16_7_s
},
1798 #define SIMM10_A16_7_Sbis (SIMM10_A16_7_S + 1)
1799 {10, 0, -SIMM10_A16_7_Sbis
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED16
1800 | ARC_OPERAND_TRUNCATE
, insert_simm10_a16_7_s
, extract_simm10_a16_7_s
},
1802 /* SIMM7_A16_10_S mask = 0000000000111111. */
1803 #define SIMM7_A16_10_S (SIMM10_A16_7_Sbis + 1)
1804 {7, 0, -SIMM7_A16_10_S
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED16
1805 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_simm7_a16_10_s
,
1806 extract_simm7_a16_10_s
},
1808 /* SIMM21_A32_5 mask = 00000111111111002222222222000000. */
1809 #define SIMM21_A32_5 (SIMM7_A16_10_S + 1)
1810 {21, 0, BFD_RELOC_ARC_S21W_PCREL
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED32
1811 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_simm21_a32_5
,
1812 extract_simm21_a32_5
},
1814 /* SIMM25_A32_5 mask = 00000111111111002222222222003333. */
1815 #define SIMM25_A32_5 (SIMM21_A32_5 + 1)
1816 {25, 0, BFD_RELOC_ARC_S25W_PCREL
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED32
1817 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_simm25_a32_5
,
1818 extract_simm25_a32_5
},
1820 /* SIMM13_A32_5_S mask = 0000011111111111. */
1821 #define SIMM13_A32_5_S (SIMM25_A32_5 + 1)
1822 {13, 0, BFD_RELOC_ARC_S13_PCREL
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED32
1823 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_simm13_a32_5_s
,
1824 extract_simm13_a32_5_s
},
1826 /* SIMM8_A16_9_S mask = 0000000001111111. */
1827 #define SIMM8_A16_9_S (SIMM13_A32_5_S + 1)
1828 {8, 0, -SIMM8_A16_9_S
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED16
1829 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_simm8_a16_9_s
,
1830 extract_simm8_a16_9_s
},
1832 /* UIMM3_23 mask = 00000000000000000000000111000000. */
1833 #define UIMM3_23 (SIMM8_A16_9_S + 1)
1834 {3, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm3_23
, extract_uimm3_23
},
1836 /* UIMM10_6_S mask = 0000001111111111. */
1837 #define UIMM10_6_S (UIMM3_23 + 1)
1838 {10, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm10_6_s
, extract_uimm10_6_s
},
1840 /* UIMM6_11_S mask = 0000002200011110. */
1841 #define UIMM6_11_S (UIMM10_6_S + 1)
1842 {6, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm6_11_s
, extract_uimm6_11_s
},
1844 /* SIMM9_8 mask = 00000000111111112000000000000000. */
1845 #define SIMM9_8 (UIMM6_11_S + 1)
1846 {9, 0, BFD_RELOC_ARC_SDA_LDST
, ARC_OPERAND_SIGNED
| ARC_OPERAND_IGNORE
,
1847 insert_simm9_8
, extract_simm9_8
},
1849 /* UIMM10_A32_8_S mask = 0000000011111111. */
1850 #define UIMM10_A32_8_S (SIMM9_8 + 1)
1851 {10, 0, -UIMM10_A32_8_S
, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_ALIGNED32
1852 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_uimm10_a32_8_s
,
1853 extract_uimm10_a32_8_s
},
1855 /* SIMM9_7_S mask = 0000000111111111. */
1856 #define SIMM9_7_S (UIMM10_A32_8_S + 1)
1857 {9, 0, BFD_RELOC_ARC_SDA16_LD
, ARC_OPERAND_SIGNED
, insert_simm9_7_s
,
1860 /* UIMM6_A16_11_S mask = 0000000000011111. */
1861 #define UIMM6_A16_11_S (SIMM9_7_S + 1)
1862 {6, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_ALIGNED16
1863 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_IGNORE
, insert_uimm6_a16_11_s
,
1864 extract_uimm6_a16_11_s
},
1866 /* UIMM5_A32_11_S mask = 0000020000011000. */
1867 #define UIMM5_A32_11_S (UIMM6_A16_11_S + 1)
1868 {5, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_ALIGNED32
1869 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_IGNORE
, insert_uimm5_a32_11_s
,
1870 extract_uimm5_a32_11_s
},
1872 /* SIMM11_A32_13_S mask = 0000022222200111. */
1873 #define SIMM11_A32_13_S (UIMM5_A32_11_S + 1)
1874 {11, 0, BFD_RELOC_ARC_SDA16_ST2
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED32
1875 | ARC_OPERAND_TRUNCATE
, insert_simm11_a32_13_s
, extract_simm11_a32_13_s
},
1877 /* UIMM7_13_S mask = 0000000022220111. */
1878 #define UIMM7_13_S (SIMM11_A32_13_S + 1)
1879 {7, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm7_13_s
, extract_uimm7_13_s
},
1881 /* UIMM6_A16_21 mask = 00000000000000000000011111000000. */
1882 #define UIMM6_A16_21 (UIMM7_13_S + 1)
1883 {6, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_ALIGNED16
1884 | ARC_OPERAND_TRUNCATE
, insert_uimm6_a16_21
, extract_uimm6_a16_21
},
1886 /* UIMM7_11_S mask = 0000022200011110. */
1887 #define UIMM7_11_S (UIMM6_A16_21 + 1)
1888 {7, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm7_11_s
, extract_uimm7_11_s
},
1890 /* UIMM7_A16_20 mask = 00000000000000000000111111000000. */
1891 #define UIMM7_A16_20 (UIMM7_11_S + 1)
1892 {7, 0, -UIMM7_A16_20
, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_ALIGNED16
1893 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_uimm7_a16_20
,
1894 extract_uimm7_a16_20
},
1896 /* SIMM13_A16_20 mask = 00000000000000000000111111222222. */
1897 #define SIMM13_A16_20 (UIMM7_A16_20 + 1)
1898 {13, 0, -SIMM13_A16_20
, ARC_OPERAND_SIGNED
| ARC_OPERAND_ALIGNED16
1899 | ARC_OPERAND_TRUNCATE
| ARC_OPERAND_PCREL
, insert_simm13_a16_20
,
1900 extract_simm13_a16_20
},
1902 /* UIMM8_8_S mask = 0000000011111111. */
1903 #define UIMM8_8_S (SIMM13_A16_20 + 1)
1904 {8, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm8_8_s
, extract_uimm8_8_s
},
1906 /* W6 mask = 00000000000000000000111111000000. */
1907 #define W6 (UIMM8_8_S + 1)
1908 {6, 0, 0, ARC_OPERAND_SIGNED
, insert_w6
, extract_w6
},
1910 /* UIMM6_5_S mask = 0000011111100000. */
1911 #define UIMM6_5_S (W6 + 1)
1912 {6, 0, 0, ARC_OPERAND_UNSIGNED
, insert_uimm6_5_s
, extract_uimm6_5_s
},
1914 /* ARC NPS400 Support: See comment near head of file. */
1915 #define NPS_R_DST_3B (UIMM6_5_S + 1)
1916 { 3, 24, 0, ARC_OPERAND_IR
| ARC_OPERAND_NCHK
, insert_nps_3bit_dst
, extract_nps_3bit_dst
},
1918 #define NPS_R_SRC1_3B (NPS_R_DST_3B + 1)
1919 { 3, 24, 0, ARC_OPERAND_IR
| ARC_OPERAND_DUPLICATE
| ARC_OPERAND_NCHK
, insert_nps_3bit_dst
, extract_nps_3bit_dst
},
1921 #define NPS_R_SRC2_3B (NPS_R_SRC1_3B + 1)
1922 { 3, 21, 0, ARC_OPERAND_IR
| ARC_OPERAND_NCHK
, insert_nps_3bit_src2
, extract_nps_3bit_src2
},
1924 #define NPS_R_DST (NPS_R_SRC2_3B + 1)
1925 { 6, 21, 0, ARC_OPERAND_IR
, NULL
, NULL
},
1927 #define NPS_R_SRC1 (NPS_R_DST + 1)
1928 { 6, 21, 0, ARC_OPERAND_IR
| ARC_OPERAND_DUPLICATE
, NULL
, NULL
},
1930 #define NPS_BITOP_DST_POS (NPS_R_SRC1 + 1)
1931 { 5, 5, 0, ARC_OPERAND_UNSIGNED
, 0, 0 },
1933 #define NPS_BITOP_SRC_POS (NPS_BITOP_DST_POS + 1)
1934 { 5, 0, 0, ARC_OPERAND_UNSIGNED
, 0, 0 },
1936 #define NPS_BITOP_SIZE (NPS_BITOP_SRC_POS + 1)
1937 { 5, 10, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_bitop_size
, extract_nps_bitop_size
},
1939 #define NPS_BITOP_DST_POS_SZ (NPS_BITOP_SIZE + 1)
1940 { 5, 0, 0, ARC_OPERAND_UNSIGNED
, insert_nps_dst_pos_and_size
, extract_nps_dst_pos_and_size
},
1942 #define NPS_BITOP_SIZE_2B (NPS_BITOP_DST_POS_SZ + 1)
1943 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_bitop_size_2b
, extract_nps_bitop_size_2b
},
1945 #define NPS_BITOP_UIMM8 (NPS_BITOP_SIZE_2B + 1)
1946 { 8, 0, 0, ARC_OPERAND_UNSIGNED
, insert_nps_bitop_uimm8
, extract_nps_bitop_uimm8
},
1948 #define NPS_UIMM16 (NPS_BITOP_UIMM8 + 1)
1949 { 16, 0, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
1951 #define NPS_SIMM16 (NPS_UIMM16 + 1)
1952 { 16, 0, 0, ARC_OPERAND_SIGNED
, NULL
, NULL
},
1954 #define NPS_RFLT_UIMM6 (NPS_SIMM16 + 1)
1955 { 6, 6, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_rflt_uimm6
, extract_nps_rflt_uimm6
},
1957 #define NPS_XLDST_UIMM16 (NPS_RFLT_UIMM6 + 1)
1958 { 16, 0, BFD_RELOC_ARC_NPS_CMEM16
, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_cmem_uimm16
, extract_nps_cmem_uimm16
},
1960 #define NPS_SRC2_POS (NPS_XLDST_UIMM16 + 1)
1961 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_src2_pos
, extract_nps_src2_pos
},
1963 #define NPS_SRC1_POS (NPS_SRC2_POS + 1)
1964 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_src1_pos
, extract_nps_src1_pos
},
1966 #define NPS_ADDB_SIZE (NPS_SRC1_POS + 1)
1967 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_addb_size
, extract_nps_addb_size
},
1969 #define NPS_ANDB_SIZE (NPS_ADDB_SIZE + 1)
1970 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_andb_size
, extract_nps_andb_size
},
1972 #define NPS_FXORB_SIZE (NPS_ANDB_SIZE + 1)
1973 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_fxorb_size
, extract_nps_fxorb_size
},
1975 #define NPS_WXORB_SIZE (NPS_FXORB_SIZE + 1)
1976 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_wxorb_size
, extract_nps_wxorb_size
},
1978 #define NPS_R_XLDST (NPS_WXORB_SIZE + 1)
1979 { 6, 5, 0, ARC_OPERAND_IR
, NULL
, NULL
},
1981 #define NPS_DIV_UIMM4 (NPS_R_XLDST + 1)
1982 { 4, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
1984 #define NPS_QCMP_SIZE (NPS_DIV_UIMM4 + 1)
1985 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_qcmp_size
, extract_nps_qcmp_size
},
1987 #define NPS_QCMP_M1 (NPS_QCMP_SIZE + 1)
1988 { 1, 14, 0, ARC_OPERAND_UNSIGNED
, NULL
, extract_nps_qcmp_m1
},
1990 #define NPS_QCMP_M2 (NPS_QCMP_M1 + 1)
1991 { 1, 15, 0, ARC_OPERAND_UNSIGNED
, NULL
, extract_nps_qcmp_m2
},
1993 #define NPS_QCMP_M3 (NPS_QCMP_M2 + 1)
1994 { 4, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, extract_nps_qcmp_m3
},
1996 #define NPS_CALC_ENTRY_SIZE (NPS_QCMP_M3 + 1)
1997 { 0, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_calc_entry_size
, extract_nps_calc_entry_size
},
1999 #define NPS_R_DST_3B_SHORT (NPS_CALC_ENTRY_SIZE + 1)
2000 { 3, 8, 0, ARC_OPERAND_IR
| ARC_OPERAND_NCHK
, insert_nps_3bit_dst_short
, extract_nps_3bit_dst_short
},
2002 #define NPS_R_SRC1_3B_SHORT (NPS_R_DST_3B_SHORT + 1)
2003 { 3, 8, 0, ARC_OPERAND_IR
| ARC_OPERAND_DUPLICATE
| ARC_OPERAND_NCHK
, insert_nps_3bit_dst_short
, extract_nps_3bit_dst_short
},
2005 #define NPS_R_SRC2_3B_SHORT (NPS_R_SRC1_3B_SHORT + 1)
2006 { 3, 5, 0, ARC_OPERAND_IR
| ARC_OPERAND_NCHK
, insert_nps_3bit_src2_short
, extract_nps_3bit_src2_short
},
2008 #define NPS_BITOP_SIZE2 (NPS_R_SRC2_3B_SHORT + 1)
2009 { 5, 25, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_bitop2_size
, extract_nps_bitop2_size
},
2011 #define NPS_BITOP_SIZE1 (NPS_BITOP_SIZE2 + 1)
2012 { 5, 20, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_bitop1_size
, extract_nps_bitop1_size
},
2014 #define NPS_BITOP_DST_POS3_POS4 (NPS_BITOP_SIZE1 + 1)
2015 { 5, 0, 0, ARC_OPERAND_UNSIGNED
, insert_nps_bitop_dst_pos3_pos4
, extract_nps_bitop_dst_pos3_pos4
},
2017 #define NPS_BITOP_DST_POS4 (NPS_BITOP_DST_POS3_POS4 + 1)
2018 { 5, 10, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2020 #define NPS_BITOP_DST_POS3 (NPS_BITOP_DST_POS4 + 1)
2021 { 5, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2023 #define NPS_BITOP_DST_POS2 (NPS_BITOP_DST_POS3 + 1)
2024 { 5, 15, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2026 #define NPS_BITOP_DST_POS1 (NPS_BITOP_DST_POS2 + 1)
2027 { 5, 10, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2029 #define NPS_BITOP_SRC_POS4 (NPS_BITOP_DST_POS1 + 1)
2030 { 5, 0, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2032 #define NPS_BITOP_SRC_POS3 (NPS_BITOP_SRC_POS4 + 1)
2033 { 5, 20, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2035 #define NPS_BITOP_SRC_POS2 (NPS_BITOP_SRC_POS3 + 1)
2036 { 5, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2038 #define NPS_BITOP_SRC_POS1 (NPS_BITOP_SRC_POS2 + 1)
2039 { 5, 0, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2041 #define NPS_BITOP_MOD4_MSB (NPS_BITOP_SRC_POS1 + 1)
2042 { 2, 0, 0, ARC_OPERAND_UNSIGNED
, insert_nps_bitop_mod4_msb
, extract_nps_bitop_mod4_msb
},
2044 #define NPS_BITOP_MOD4_LSB (NPS_BITOP_MOD4_MSB + 1)
2045 { 2, 0, 0, ARC_OPERAND_UNSIGNED
, insert_nps_bitop_mod4_lsb
, extract_nps_bitop_mod4_lsb
},
2047 #define NPS_BITOP_MOD3 (NPS_BITOP_MOD4_LSB + 1)
2048 { 2, 29, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2050 #define NPS_BITOP_MOD2 (NPS_BITOP_MOD3 + 1)
2051 { 2, 27, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2053 #define NPS_BITOP_MOD1 (NPS_BITOP_MOD2 + 1)
2054 { 2, 25, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2056 #define NPS_BITOP_INS_EXT (NPS_BITOP_MOD1 + 1)
2057 { 5, 20, 0, ARC_OPERAND_UNSIGNED
, insert_nps_bitop_ins_ext
, extract_nps_bitop_ins_ext
},
2059 #define NPS_FIELD_START_POS (NPS_BITOP_INS_EXT + 1)
2060 { 3, 3, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2062 #define NPS_FIELD_SIZE (NPS_FIELD_START_POS + 1)
2063 { 3, 6, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_field_size
, extract_nps_field_size
},
2065 #define NPS_SHIFT_FACTOR (NPS_FIELD_SIZE + 1)
2066 { 3, 9, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_shift_factor
, extract_nps_shift_factor
},
2068 #define NPS_BITS_TO_SCRAMBLE (NPS_SHIFT_FACTOR + 1)
2069 { 3, 12, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_bits_to_scramble
, extract_nps_bits_to_scramble
},
2071 #define NPS_SRC2_POS_5B (NPS_BITS_TO_SCRAMBLE + 1)
2072 { 5, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2074 #define NPS_BDLEN_MAX_LEN (NPS_SRC2_POS_5B + 1)
2075 { 8, 5, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_bdlen_max_len
, extract_nps_bdlen_max_len
},
2077 #define NPS_MIN_HOFS (NPS_BDLEN_MAX_LEN + 1)
2078 { 4, 6, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_min_hofs
, extract_nps_min_hofs
},
2080 #define NPS_PSBC (NPS_MIN_HOFS + 1)
2081 { 1, 11, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2083 #define NPS_DPI_DST (NPS_PSBC + 1)
2084 { 5, 11, 0, ARC_OPERAND_IR
, NULL
, NULL
},
2086 /* NPS_DPI_SRC1_3B is similar to NPS_R_SRC1_3B but doesn't duplicate an operand */
2087 #define NPS_DPI_SRC1_3B (NPS_DPI_DST + 1)
2088 { 3, 24, 0, ARC_OPERAND_IR
| ARC_OPERAND_NCHK
, insert_nps_3bit_dst
, extract_nps_3bit_dst
},
2090 #define NPS_HASH_WIDTH (NPS_DPI_SRC1_3B + 1)
2091 { 5, 6, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_hash_width
, extract_nps_hash_width
},
2093 #define NPS_HASH_PERM (NPS_HASH_WIDTH + 1)
2094 { 3, 2, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2096 #define NPS_HASH_NONLINEAR (NPS_HASH_PERM + 1)
2097 { 1, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2099 #define NPS_HASH_BASEMAT (NPS_HASH_NONLINEAR + 1)
2100 { 2, 0, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2102 #define NPS_HASH_LEN (NPS_HASH_BASEMAT + 1)
2103 { 3, 2, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_hash_len
, extract_nps_hash_len
},
2105 #define NPS_HASH_OFS (NPS_HASH_LEN + 1)
2106 { 2, 0, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2108 #define NPS_HASH_BASEMAT2 (NPS_HASH_OFS + 1)
2109 { 1, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2111 #define NPS_E4BY_INDEX0 (NPS_HASH_BASEMAT2 + 1)
2112 { 3, 8, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2114 #define NPS_E4BY_INDEX1 (NPS_E4BY_INDEX0 + 1)
2115 { 3, 5, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2117 #define NPS_E4BY_INDEX2 (NPS_E4BY_INDEX1 + 1)
2118 { 3, 2, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2120 #define NPS_E4BY_INDEX3 (NPS_E4BY_INDEX2 + 1)
2121 { 2, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_index3
, extract_nps_index3
},
2123 #define COLON (NPS_E4BY_INDEX3 + 1)
2124 { 0, 0, 0, ARC_OPERAND_COLON
| ARC_OPERAND_FAKE
, NULL
, NULL
},
2126 #define NPS_BD (COLON + 1)
2127 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_bd
, extract_nps_bd
},
2129 #define NPS_JID (NPS_BD + 1)
2130 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_jid
, extract_nps_jid
},
2132 #define NPS_LBD (NPS_JID + 1)
2133 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_lbd
, extract_nps_lbd
},
2135 #define NPS_MBD (NPS_LBD + 1)
2136 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_mbd
, extract_nps_mbd
},
2138 #define NPS_SD (NPS_MBD + 1)
2139 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_sd
, extract_nps_sd
},
2141 #define NPS_SM (NPS_SD + 1)
2142 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_sm
, extract_nps_sm
},
2144 #define NPS_XA (NPS_SM + 1)
2145 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_xa
, extract_nps_xa
},
2147 #define NPS_XD (NPS_XA + 1)
2148 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_xd
, extract_nps_xd
},
2150 #define NPS_CD (NPS_XD + 1)
2151 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_cd
, extract_nps_cd
},
2153 #define NPS_CBD (NPS_CD + 1)
2154 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_cbd
, extract_nps_cbd
},
2156 #define NPS_CJID (NPS_CBD + 1)
2157 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_cjid
, extract_nps_cjid
},
2159 #define NPS_CLBD (NPS_CJID + 1)
2160 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_clbd
, extract_nps_clbd
},
2162 #define NPS_CM (NPS_CLBD + 1)
2163 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_cm
, extract_nps_cm
},
2165 #define NPS_CSD (NPS_CM + 1)
2166 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_csd
, extract_nps_csd
},
2168 #define NPS_CXA (NPS_CSD + 1)
2169 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_cxa
, extract_nps_cxa
},
2171 #define NPS_CXD (NPS_CXA + 1)
2172 { 0, 0, 0, ARC_OPERAND_ADDRTYPE
| ARC_OPERAND_NCHK
, insert_nps_cxd
, extract_nps_cxd
},
2174 #define NPS_BD_TYPE (NPS_CXD + 1)
2175 { 1, 10, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2177 #define NPS_BMU_NUM (NPS_BD_TYPE + 1)
2178 { 3, 0, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_bd_num_buff
, extract_nps_bd_num_buff
},
2180 #define NPS_PMU_NXT_DST (NPS_BMU_NUM + 1)
2181 { 4, 6, 0, ARC_OPERAND_UNSIGNED
, NULL
, NULL
},
2183 #define NPS_PMU_NUM_JOB (NPS_PMU_NXT_DST + 1)
2184 { 2, 6, 0, ARC_OPERAND_UNSIGNED
| ARC_OPERAND_NCHK
, insert_nps_pmu_num_job
, extract_nps_pmu_num_job
},
2187 const unsigned arc_num_operands
= ARRAY_SIZE (arc_operands
);
2189 const unsigned arc_Toperand
= FKT_T
;
2190 const unsigned arc_NToperand
= FKT_NT
;
2192 const unsigned char arg_none
[] = { 0 };
2193 const unsigned char arg_32bit_rarbrc
[] = { RA
, RB
, RC
};
2194 const unsigned char arg_32bit_zarbrc
[] = { ZA
, RB
, RC
};
2195 const unsigned char arg_32bit_rbrbrc
[] = { RB
, RBdup
, RC
};
2196 const unsigned char arg_32bit_rarbu6
[] = { RA
, RB
, UIMM6_20
};
2197 const unsigned char arg_32bit_zarbu6
[] = { ZA
, RB
, UIMM6_20
};
2198 const unsigned char arg_32bit_rbrbu6
[] = { RB
, RBdup
, UIMM6_20
};
2199 const unsigned char arg_32bit_rbrbs12
[] = { RB
, RBdup
, SIMM12_20
};
2200 const unsigned char arg_32bit_ralimmrc
[] = { RA
, LIMM
, RC
};
2201 const unsigned char arg_32bit_rarblimm
[] = { RA
, RB
, LIMM
};
2202 const unsigned char arg_32bit_zalimmrc
[] = { ZA
, LIMM
, RC
};
2203 const unsigned char arg_32bit_zarblimm
[] = { ZA
, RB
, LIMM
};
2205 const unsigned char arg_32bit_rbrblimm
[] = { RB
, RBdup
, LIMM
};
2206 const unsigned char arg_32bit_ralimmu6
[] = { RA
, LIMM
, UIMM6_20
};
2207 const unsigned char arg_32bit_zalimmu6
[] = { ZA
, LIMM
, UIMM6_20
};
2209 const unsigned char arg_32bit_zalimms12
[] = { ZA
, LIMM
, SIMM12_20
};
2210 const unsigned char arg_32bit_ralimmlimm
[] = { RA
, LIMM
, LIMMdup
};
2211 const unsigned char arg_32bit_zalimmlimm
[] = { ZA
, LIMM
, LIMMdup
};
2213 const unsigned char arg_32bit_rbrc
[] = { RB
, RC
};
2214 const unsigned char arg_32bit_zarc
[] = { ZA
, RC
};
2215 const unsigned char arg_32bit_rbu6
[] = { RB
, UIMM6_20
};
2216 const unsigned char arg_32bit_zau6
[] = { ZA
, UIMM6_20
};
2217 const unsigned char arg_32bit_rblimm
[] = { RB
, LIMM
};
2218 const unsigned char arg_32bit_zalimm
[] = { ZA
, LIMM
};
2220 const unsigned char arg_32bit_limmrc
[] = { LIMM
, RC
};
2221 const unsigned char arg_32bit_limmu6
[] = { LIMM
, UIMM6_20
};
2222 const unsigned char arg_32bit_limms12
[] = { LIMM
, SIMM12_20
};
2223 const unsigned char arg_32bit_limmlimm
[] = { LIMM
, LIMMdup
};
2225 const unsigned char arg_32bit_rc
[] = { RC
};
2226 const unsigned char arg_32bit_u6
[] = { UIMM6_20
};
2227 const unsigned char arg_32bit_limm
[] = { LIMM
};
2229 /* The opcode table.
2231 The format of the opcode table is:
2233 NAME OPCODE MASK CPU CLASS SUBCLASS { OPERANDS } { FLAGS }.
2235 The table is organised such that, where possible, all instructions with
2236 the same mnemonic are together in a block. When the assembler searches
2237 for a suitable instruction the entries are checked in table order, so
2238 more specific, or specialised cases should appear earlier in the table.
2240 As an example, consider two instructions 'add a,b,u6' and 'add
2241 a,b,limm'. The first takes a 6-bit immediate that is encoded within the
2242 32-bit instruction, while the second takes a 32-bit immediate that is
2243 encoded in a follow-on 32-bit, making the total instruction length
2244 64-bits. In this case the u6 variant must appear first in the table, as
2245 all u6 immediates could also be encoded using the 'limm' extension,
2246 however, we want to use the shorter instruction wherever possible.
2248 It is possible though to split instructions with the same mnemonic into
2249 multiple groups. However, the instructions are still checked in table
2250 order, even across groups. The only time that instructions with the
2251 same mnemonic should be split into different groups is when different
2252 variants of the instruction appear in different architectures, in which
2253 case, grouping all instructions from a particular architecture together
2254 might be preferable to merging the instruction into the main instruction
2257 An example of this split instruction groups can be found with the 'sync'
2258 instruction. The core arc architecture provides a 'sync' instruction,
2259 while the nps instruction set extension provides 'sync.rd' and
2260 'sync.wr'. The rd/wr flags are instruction flags, not part of the
2261 mnemonic, so we end up with two groups for the sync instruction, the
2262 first within the core arc instruction table, and the second within the
2263 nps extension instructions. */
2264 const struct arc_opcode arc_opcodes
[] =
2266 #include "arc-tbl.h"
2267 #include "arc-nps400-tbl.h"
2268 #include "arc-ext-tbl.h"
2270 { NULL
, 0, 0, 0, 0, 0, { 0 }, { 0 } }
2273 /* List with special cases instructions and the applicable flags. */
2274 const struct arc_flag_special arc_flag_special_cases
[] =
2276 { "b", { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
, F_NOTZERO
, F_POZITIVE
,
2277 F_PL
, F_NEGATIVE
, F_MINUS
, F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
2278 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
, F_NOTOVERFLOW
,
2279 F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
, F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
2280 { "bl", { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
, F_NOTZERO
, F_POZITIVE
,
2281 F_PL
, F_NEGATIVE
, F_MINUS
, F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
2282 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
, F_NOTOVERFLOW
,
2283 F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
, F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
2284 { "br", { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
, F_NOTZERO
, F_POZITIVE
,
2285 F_PL
, F_NEGATIVE
, F_MINUS
, F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
2286 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
, F_NOTOVERFLOW
,
2287 F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
, F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
2288 { "j", { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
, F_NOTZERO
, F_POZITIVE
,
2289 F_PL
, F_NEGATIVE
, F_MINUS
, F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
2290 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
, F_NOTOVERFLOW
,
2291 F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
, F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
2292 { "jl", { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
, F_NOTZERO
, F_POZITIVE
,
2293 F_PL
, F_NEGATIVE
, F_MINUS
, F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
2294 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
, F_NOTOVERFLOW
,
2295 F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
, F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
2296 { "lp", { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
, F_NOTZERO
, F_POZITIVE
,
2297 F_PL
, F_NEGATIVE
, F_MINUS
, F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
2298 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
, F_NOTOVERFLOW
,
2299 F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
, F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
2300 { "set", { F_ALWAYS
, F_RA
, F_EQUAL
, F_ZERO
, F_NOTEQUAL
, F_NOTZERO
, F_POZITIVE
,
2301 F_PL
, F_NEGATIVE
, F_MINUS
, F_CARRY
, F_CARRYSET
, F_LOWER
, F_CARRYCLR
,
2302 F_NOTCARRY
, F_HIGHER
, F_OVERFLOWSET
, F_OVERFLOW
, F_NOTOVERFLOW
,
2303 F_OVERFLOWCLR
, F_GT
, F_GE
, F_LT
, F_LE
, F_HI
, F_LS
, F_PNZ
, F_NULL
} },
2304 { "ld", { F_SIZEB17
, F_SIZEW17
, F_H17
, F_NULL
} },
2305 { "st", { F_SIZEB1
, F_SIZEW1
, F_H1
, F_NULL
} }
2308 const unsigned arc_num_flag_special
= ARRAY_SIZE (arc_flag_special_cases
);
2311 const struct arc_reloc_equiv_tab arc_reloc_equiv
[] =
2313 { "sda", "ld", { F_ASFAKE
, F_H1
, F_NULL
},
2314 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST1
},
2315 { "sda", "st", { F_ASFAKE
, F_H1
, F_NULL
},
2316 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST1
},
2317 { "sda", "ld", { F_ASFAKE
, F_SIZEW7
, F_NULL
},
2318 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST1
},
2319 { "sda", "st", { F_ASFAKE
, F_SIZEW7
, F_NULL
},
2320 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST1
},
2322 /* Next two entries will cover the undefined behavior ldb/stb with
2324 { "sda", "ld", { F_ASFAKE
, F_SIZEB7
, F_NULL
},
2325 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST
},
2326 { "sda", "st", { F_ASFAKE
, F_SIZEB7
, F_NULL
},
2327 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST
},
2329 { "sda", "ld", { F_ASFAKE
, F_NULL
},
2330 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST2
},
2331 { "sda", "st", { F_ASFAKE
, F_NULL
},
2332 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST2
},
2333 { "sda", "ldd", { F_ASFAKE
, F_NULL
},
2334 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST2
},
2335 { "sda", "std", { F_ASFAKE
, F_NULL
},
2336 BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST2
},
2338 /* Short instructions. */
2339 { "sda", 0, { F_NULL
}, BFD_RELOC_ARC_SDA16_LD
, BFD_RELOC_ARC_SDA16_LD
},
2340 { "sda", 0, { F_NULL
}, -SIMM10_A16_7_Sbis
, BFD_RELOC_ARC_SDA16_LD1
},
2341 { "sda", 0, { F_NULL
}, BFD_RELOC_ARC_SDA16_LD2
, BFD_RELOC_ARC_SDA16_LD2
},
2342 { "sda", 0, { F_NULL
}, BFD_RELOC_ARC_SDA16_ST2
, BFD_RELOC_ARC_SDA16_ST2
},
2344 { "sda", 0, { F_NULL
}, BFD_RELOC_ARC_32_ME
, BFD_RELOC_ARC_SDA32_ME
},
2345 { "sda", 0, { F_NULL
}, BFD_RELOC_ARC_SDA_LDST
, BFD_RELOC_ARC_SDA_LDST
},
2347 { "plt", 0, { F_NULL
}, BFD_RELOC_ARC_S25H_PCREL
,
2348 BFD_RELOC_ARC_S25H_PCREL_PLT
},
2349 { "plt", 0, { F_NULL
}, BFD_RELOC_ARC_S21H_PCREL
,
2350 BFD_RELOC_ARC_S21H_PCREL_PLT
},
2351 { "plt", 0, { F_NULL
}, BFD_RELOC_ARC_S25W_PCREL
,
2352 BFD_RELOC_ARC_S25W_PCREL_PLT
},
2353 { "plt", 0, { F_NULL
}, BFD_RELOC_ARC_S21W_PCREL
,
2354 BFD_RELOC_ARC_S21W_PCREL_PLT
},
2356 { "plt", 0, { F_NULL
}, BFD_RELOC_ARC_32_ME
, BFD_RELOC_ARC_PLT32
}
2359 const unsigned arc_num_equiv_tab
= ARRAY_SIZE (arc_reloc_equiv
);
2361 const struct arc_pseudo_insn arc_pseudo_insns
[] =
2363 { "push", "st", ".aw", 5, { { RC
, 0, 0, 0 }, { BRAKET
, 1, 0, 1 },
2364 { RB
, 1, 28, 2 }, { SIMM9_8
, 1, -4, 3 },
2365 { BRAKETdup
, 1, 0, 4} } },
2366 { "pop", "ld", ".ab", 5, { { RA
, 0, 0, 0 }, { BRAKET
, 1, 0, 1 },
2367 { RB
, 1, 28, 2 }, { SIMM9_8
, 1, 4, 3 },
2368 { BRAKETdup
, 1, 0, 4} } },
2370 { "brgt", "brlt", NULL
, 3, { { RB
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2371 { SIMM9_A16_8
, 0, 0, 2 } } },
2372 { "brgt", "brge", NULL
, 3, { { RB
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2373 { SIMM9_A16_8
, 0, 0, 2 } } },
2374 { "brgt", "brlt", NULL
, 3, { { RB
, 0, 0, 1 }, { LIMM
, 0, 0, 0 },
2375 { SIMM9_A16_8
, 0, 0, 2 } } },
2376 { "brgt", "brlt", NULL
, 3, { { LIMM
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2377 { SIMM9_A16_8
, 0, 0, 2 } } },
2378 { "brgt", "brge", NULL
, 3, { { LIMM
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2379 { SIMM9_A16_8
, 0, 0, 2 } } },
2381 { "brhi", "brlo", NULL
, 3, { { RB
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2382 { SIMM9_A16_8
, 0, 0, 2 } } },
2383 { "brhi", "brhs", NULL
, 3, { { RB
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2384 { SIMM9_A16_8
, 0, 0, 2 } } },
2385 { "brhi", "brlo", NULL
, 3, { { RB
, 0, 0, 1 }, { LIMM
, 0, 0, 0 },
2386 { SIMM9_A16_8
, 0, 0, 2 } } },
2387 { "brhi", "brlo", NULL
, 3, { { LIMM
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2388 { SIMM9_A16_8
, 0, 0, 2 } } },
2389 { "brhi", "brhs", NULL
, 3, { { LIMM
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2390 { SIMM9_A16_8
, 0, 0, 2 } } },
2392 { "brle", "brge", NULL
, 3, { { RB
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2393 { SIMM9_A16_8
, 0, 0, 2 } } },
2394 { "brle", "brlt", NULL
, 3, { { RB
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2395 { SIMM9_A16_8
, 0, 0, 2 } } },
2396 { "brle", "brge", NULL
, 3, { { RB
, 0, 0, 1 }, { LIMM
, 0, 0, 0 },
2397 { SIMM9_A16_8
, 0, 0, 2 } } },
2398 { "brle", "brge", NULL
, 3, { { LIMM
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2399 { SIMM9_A16_8
, 0, 0, 2 } } },
2400 { "brle", "brlt", NULL
, 3, { { LIMM
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2401 { SIMM9_A16_8
, 0, 0, 2 } } },
2403 { "brls", "brhs", NULL
, 3, { { RB
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2404 { SIMM9_A16_8
, 0, 0, 2 } } },
2405 { "brls", "brlo", NULL
, 3, { { RB
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2406 { SIMM9_A16_8
, 0, 0, 2 } } },
2407 { "brls", "brhs", NULL
, 3, { { RB
, 0, 0, 1 }, { LIMM
, 0, 0, 0 },
2408 { SIMM9_A16_8
, 0, 0, 2 } } },
2409 { "brls", "brhs", NULL
, 3, { { LIMM
, 0, 0, 1 }, { RC
, 0, 0, 0 },
2410 { SIMM9_A16_8
, 0, 0, 2 } } },
2411 { "brls", "brlo", NULL
, 3, { { LIMM
, 0, 0, 0 }, { UIMM6_8
, 0, 1, 1 },
2412 { SIMM9_A16_8
, 0, 0, 2 } } },
2415 const unsigned arc_num_pseudo_insn
=
2416 sizeof (arc_pseudo_insns
) / sizeof (*arc_pseudo_insns
);
2418 const struct arc_aux_reg arc_aux_regs
[] =
2421 #define DEF(ADDR, CPU, SUBCLASS, NAME) \
2422 { ADDR, CPU, SUBCLASS, #NAME, sizeof (#NAME)-1 },
2424 #include "arc-regs.h"
2429 const unsigned arc_num_aux_regs
= ARRAY_SIZE (arc_aux_regs
);
2431 /* NOTE: The order of this array MUST be consistent with 'enum
2432 arc_rlx_types' located in tc-arc.h! */
2433 const struct arc_opcode arc_relax_opcodes
[] =
2435 { NULL
, 0x0, 0x0, 0x0, ARITH
, NONE
, { UNUSED
}, { 0 } },
2437 /* bl_s s13 11111sssssssssss. */
2438 { "bl_s", 0x0000F800, 0x0000F800, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2439 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, BRANCH
, NONE
,
2440 { SIMM13_A32_5_S
}, { 0 }},
2442 /* bl<.d> s25 00001sssssssss10SSSSSSSSSSNRtttt. */
2443 { "bl", 0x08020000, 0xF8030000, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2444 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, BRANCH
, NONE
,
2445 { SIMM25_A32_5
}, { C_D
}},
2447 /* b_s s10 1111000sssssssss. */
2448 { "b_s", 0x0000F000, 0x0000FE00, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2449 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, BRANCH
, NONE
,
2450 { SIMM10_A16_7_S
}, { 0 }},
2452 /* b<.d> s25 00000ssssssssss1SSSSSSSSSSNRtttt. */
2453 { "b", 0x00010000, 0xF8010000, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2454 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, BRANCH
, NONE
,
2455 { SIMM25_A16_5
}, { C_D
}},
2457 /* add_s c,b,u3 01101bbbccc00uuu. Wants UIMM3_13_S_PCREL. */
2458 { "add_s", 0x00006800, 0x0000F818, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2459 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2460 { RC_S
, RB_S
, UIMM3_13_S
}, { 0 }},
2462 /* add<.f> a,b,u6 00100bbb01000000FBBBuuuuuuAAAAAA. Wants
2464 { "add", 0x20400000, 0xF8FF0000, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2465 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2466 { RA
, RB
, UIMM6_20
}, { C_F
}},
2468 /* add<.f> a,b,limm 00100bbb00000000FBBB111110AAAAAA. */
2469 { "add", 0x20000F80, 0xF8FF0FC0, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2470 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2471 { RA
, RB
, LIMM
}, { C_F
}},
2473 /* ld_s c,b,u7 10000bbbcccuuuuu. Wants UIMM7_A32_11_S_PCREL. */
2474 { "ld_s", 0x00008000, 0x0000F800, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2475 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2476 { RC_S
, BRAKET
, RB_S
, UIMM7_A32_11_S
, BRAKETdup
}, { 0 }},
2478 /* ld<.di><.aa><.x><zz> a,b,s9
2479 00010bbbssssssssSBBBDaaZZXAAAAAA. Wants SIMM9_8_PCREL. */
2480 { "ld", 0x10000000, 0xF8000000, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2481 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2482 { RA
, BRAKET
, RB
, SIMM9_8
, BRAKETdup
},
2483 { C_ZZ23
, C_DI20
, C_AA21
, C_X25
}},
2485 /* ld<.di><.aa><.x><zz> a,b,limm 00100bbbaa110ZZXDBBB111110AAAAAA. */
2486 { "ld", 0x20300F80, 0xF8380FC0, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2487 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2488 { RA
, BRAKET
, RB
, LIMM
, BRAKETdup
},
2489 { C_ZZ13
, C_DI16
, C_AA8
, C_X15
}},
2491 /* mov_s b,u8 11011bbbuuuuuuuu. Wants UIMM8_8_S_PCREL. */
2492 { "mov_s", 0x0000D800, 0x0000F800, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2493 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2494 { RB_S
, UIMM8_8_S
}, { 0 }},
2496 /* mov<.f> b,s12 00100bbb10001010FBBBssssssSSSSSS. Wants
2498 { "mov", 0x208A0000, 0xF8FF0000, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2499 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2500 { RB
, SIMM12_20
}, { C_F
}},
2502 /* mov<.f> b,limm 00100bbb00001010FBBB111110RRRRRR. */
2503 { "mov", 0x200A0F80, 0xF8FF0FC0, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2504 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2505 { RB
, LIMM
}, { C_F
}},
2507 /* sub_s c,b,u3 01101bbbccc01uuu. UIMM3_13_S_PCREL. */
2508 { "sub_s", 0x00006808, 0x0000F818, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2509 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2510 { RC_S
, RB_S
, UIMM3_13_S
}, { 0 }},
2512 /* sub<.f> a,b,u6 00100bbb01000010FBBBuuuuuuAAAAAA.
2514 { "sub", 0x20420000, 0xF8FF0000, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2515 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2516 { RA
, RB
, UIMM6_20
}, { C_F
}},
2518 /* sub<.f> a,b,limm 00100bbb00000010FBBB111110AAAAAA. */
2519 { "sub", 0x20020F80, 0xF8FF0FC0, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2520 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2521 { RA
, RB
, LIMM
}, { C_F
}},
2523 /* mpy<.f> a,b,u6 00100bbb01011010FBBBuuuuuuAAAAAA.
2525 { "mpy", 0x205A0000, 0xF8FF0000, ARC_OPCODE_ARC700
| ARC_OPCODE_ARCv2EM
2526 | ARC_OPCODE_ARCv2HS
, ARITH
, MPY6E
, { RA
, RB
, UIMM6_20
}, { C_F
}},
2528 /* mpy<.f> a,b,limm 00100bbb00011010FBBB111110AAAAAA. */
2529 { "mpy", 0x201A0F80, 0xF8FF0FC0, ARC_OPCODE_ARC700
| ARC_OPCODE_ARCv2EM
2530 | ARC_OPCODE_ARCv2HS
, ARITH
, MPY6E
, { RA
, RB
, LIMM
}, { C_F
}},
2532 /* mov<.f><.cc> b,u6 00100bbb11001010FBBBuuuuuu1QQQQQ.
2534 { "mov", 0x20CA0020, 0xF8FF0020, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2535 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2536 { RB
, UIMM6_20
}, { C_F
, C_CC
}},
2538 /* mov<.f><.cc> b,limm 00100bbb11001010FBBB1111100QQQQQ. */
2539 { "mov", 0x20CA0F80, 0xF8FF0FE0, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2540 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, MEMORY
, NONE
,
2541 { RB
, LIMM
}, { C_F
, C_CC
}},
2543 /* add<.f><.cc> b,b,u6 00100bbb11000000FBBBuuuuuu1QQQQQ.
2545 { "add", 0x20C00020, 0xF8FF0020, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2546 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2547 { RB
, RBdup
, UIMM6_20
}, { C_F
, C_CC
}},
2549 /* add<.f><.cc> b,b,limm 00100bbb11000000FBBB1111100QQQQQ. */
2550 { "add", 0x20C00F80, 0xF8FF0FE0, ARC_OPCODE_ARC600
| ARC_OPCODE_ARC700
2551 | ARC_OPCODE_ARCv2EM
| ARC_OPCODE_ARCv2HS
, ARITH
, NONE
,
2552 { RB
, RBdup
, LIMM
}, { C_F
, C_CC
}}
2555 const unsigned arc_num_relax_opcodes
= ARRAY_SIZE (arc_relax_opcodes
);
2557 /* The following instructions are all either 48 or 64 bits long, and
2558 require special handling in the assembler and disassembler.
2560 The first part of each ARC_LONG_OPCODE is the base ARC_OPCODE, this is
2561 either the 16 or 32 bit base instruction, and its opcode list will
2562 always end in a LIMM.
2564 The rest of the ARC_LONG_OPCODE describes how to build the LIMM from the
2565 instruction operands. There are therefore two lists of operands for
2566 each ARC_LONG_OPCODE, the second list contains operands that are merged
2567 into the limm template, in the same way that a standard 32-bit
2568 instruction is built. This generated limm is then added to the list of
2569 tokens that is passed to the standard instruction encoder, along with
2570 the first list of operands (from the base arc_opcode).
2572 The first list of operands then, describes how to build the base
2573 instruction, and includes the 32-bit limm that was previously generated
2574 as the last operand.
2576 In most cases operands are either encoded into the base instruction or
2577 into the limm. When this happens the operand slot will be filled with
2578 an operand identifier in one list, and will be IGNORED in the other
2579 list, this special operand value causes the operand to be ignored,
2580 without being encoded at this point.
2582 However, in some cases, an operand is split between the base instruction
2583 and the 32-bit limm, in this case the operand slot will be filled in
2584 both operand lists (see mov4b for one example of this). */
2585 const struct arc_long_opcode arc_long_opcodes
[] =
2587 /* mrgb - (48 bit instruction). */
2588 { { "mrgb", 0x5803, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC1_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { 0 }},
2589 0x00000000, 0x80000000, { IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_SIZE1
, NPS_BITOP_DST_POS2
, NPS_BITOP_SRC_POS2
, NPS_BITOP_SIZE2
}},
2591 /* mrgb.cl - (48 bit instruction). */
2592 { { "mrgb", 0x5803, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC1_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { C_NPS_CL
}},
2593 0x80000000, 0x80000000, { IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_SIZE1
, NPS_BITOP_DST_POS2
, NPS_BITOP_SRC_POS2
, NPS_BITOP_SIZE2
}},
2595 /* mov2b - (48 bit instruction). */
2596 { { "mov2b", 0x5800, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC1_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { 0 }},
2597 0x00000000, 0x80000000, { IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
}},
2599 /* mov2b.cl - (48 bit instruction). */
2600 { { "mov2b", 0x5800, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { C_NPS_CL
}},
2601 0x80000000, 0x80000000, { IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
}},
2603 /* ext4 - (48 bit instruction). */
2604 { { "ext4b", 0x5801, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC1_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { 0 }},
2605 0x00000000, 0x80000000, { IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_INS_EXT
, NPS_BITOP_SRC_POS1
, NPS_BITOP_SRC_POS2
, NPS_BITOP_DST_POS1
, NPS_BITOP_DST_POS2
}},
2607 /* ext4.cl - (48 bit instruction). */
2608 { { "ext4b", 0x5801, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { C_NPS_CL
}},
2609 0x80000000, 0x80000000, { IGNORED
, IGNORED
, NPS_BITOP_INS_EXT
, NPS_BITOP_SRC_POS1
, NPS_BITOP_SRC_POS2
, NPS_BITOP_DST_POS1
, NPS_BITOP_DST_POS2
}},
2611 /* ins4 - (48 bit instruction). */
2612 { { "ins4b", 0x5802, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC1_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { 0 }},
2613 0x00000000, 0x80000000, { IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_SRC_POS1
, NPS_BITOP_SRC_POS2
, NPS_BITOP_DST_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_INS_EXT
}},
2615 /* ins4.cl - (48 bit instruction). */
2616 { { "ins4b", 0x5802, 0xf81f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B_SHORT
, NPS_R_SRC2_3B_SHORT
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, LIMM
}, { C_NPS_CL
}},
2617 0x80000000, 0x80000000, { IGNORED
, IGNORED
, NPS_BITOP_SRC_POS1
, NPS_BITOP_SRC_POS2
, NPS_BITOP_DST_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_INS_EXT
}},
2619 /* mov3b - (64 bit instruction). */
2620 { { "mov3b", 0x58100000, 0xf81f801f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B
, NPS_R_SRC1_3B
, NPS_R_SRC2_3B
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS3_POS4
, IGNORED
, IGNORED
, LIMM
}, { 0 }},
2621 0x80000000, 0x80000000, { IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
, IGNORED
, NPS_BITOP_MOD3
, NPS_BITOP_SRC_POS3
}},
2623 /* mov4b - (64 bit instruction). */
2624 { { "mov4b", 0x58100000, 0xf81f0000, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B
, NPS_R_SRC1_3B
, NPS_R_SRC2_3B
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS3
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS4
, NPS_BITOP_MOD4_LSB
, NPS_BITOP_SRC_POS4
, LIMM
}, { 0 }},
2625 0x00000000, 0x00000000, { IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
, IGNORED
, NPS_BITOP_MOD3
, NPS_BITOP_SRC_POS3
, IGNORED
, NPS_BITOP_MOD4_MSB
, IGNORED
}},
2627 /* mov3bcl - (64 bit instruction). */
2628 { { "mov3bcl", 0x58110000, 0xf81f801f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B
, NPS_R_SRC2_3B
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS3_POS4
, IGNORED
, IGNORED
, LIMM
}, { 0 }},
2629 0x80000000, 0x80000000, { IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
, IGNORED
, NPS_BITOP_MOD3
, NPS_BITOP_SRC_POS3
}},
2631 /* mov4bcl - (64 bit instruction). */
2632 { { "mov4bcl", 0x58110000, 0xf81f0000, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B
, NPS_R_SRC2_3B
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS3
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS4
, NPS_BITOP_MOD4_LSB
, NPS_BITOP_SRC_POS4
, LIMM
}, { 0 }},
2633 0x00000000, 0x00000000, { IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
, IGNORED
, NPS_BITOP_MOD3
, NPS_BITOP_SRC_POS3
, IGNORED
, NPS_BITOP_MOD4_MSB
, IGNORED
}},
2635 /* mov3b.cl - (64 bit instruction). */
2636 { { "mov3b", 0x58110000, 0xf81f801f, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B
, NPS_R_SRC2_3B
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS3_POS4
, IGNORED
, IGNORED
, LIMM
}, { C_NPS_CL
}},
2637 0x80000000, 0x80000000, { IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
, IGNORED
, NPS_BITOP_MOD3
, NPS_BITOP_SRC_POS3
}},
2639 /* mov4b.cl - (64 bit instruction). */
2640 { { "mov4b", 0x58110000, 0xf81f0000, ARC_OPCODE_ARC700
, BITOP
, NPS400
, { NPS_R_DST_3B
, NPS_R_SRC2_3B
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS3
, IGNORED
, IGNORED
, NPS_BITOP_DST_POS4
, NPS_BITOP_MOD4_LSB
, NPS_BITOP_SRC_POS4
, LIMM
}, { C_NPS_CL
}},
2641 0x00000000, 0x00000000, { IGNORED
, IGNORED
, NPS_BITOP_DST_POS1
, NPS_BITOP_MOD1
, NPS_BITOP_SRC_POS1
, NPS_BITOP_DST_POS2
, NPS_BITOP_MOD2
, NPS_BITOP_SRC_POS2
, IGNORED
, NPS_BITOP_MOD3
, NPS_BITOP_SRC_POS3
, IGNORED
, NPS_BITOP_MOD4_MSB
, IGNORED
}},
2644 const unsigned arc_num_long_opcodes
= ARRAY_SIZE (arc_long_opcodes
);