1 /* Xtensa configuration-specific ISA information.
3 Copyright (c) 2003-2015 Tensilica Inc.
5 Permission is hereby granted, free of charge, to any person obtaining
6 a copy of this software and associated documentation files (the
7 "Software"), to deal in the Software without restriction, including
8 without limitation the rights to use, copy, modify, merge, publish,
9 distribute, sublicense, and/or sell copies of the Software, and to
10 permit persons to whom the Software is furnished to do so, subject to
11 the following conditions:
13 The above copyright notice and this permission notice shall be included
14 in all copies or substantial portions of the Software.
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
24 #include "qemu/osdep.h"
25 #include "xtensa-isa.h"
26 #include "xtensa-isa-internal.h"
31 static xtensa_sysreg_internal sysregs
[] = {
43 { "CONFIGID0", 176, 0 },
44 { "CONFIGID1", 208, 0 },
45 { "INTERRUPT", 226, 0 },
46 { "INTCLEAR", 227, 0 },
50 { "CCOMPARE0", 240, 0 },
51 { "CCOMPARE1", 241, 0 },
52 { "CCOMPARE2", 242, 0 },
53 { "VECBASE", 231, 0 },
61 { "EXCSAVE1", 209, 0 },
62 { "EXCSAVE2", 210, 0 },
63 { "EXCSAVE3", 211, 0 },
64 { "EXCSAVE4", 212, 0 },
65 { "EXCSAVE5", 213, 0 },
66 { "EXCSAVE6", 214, 0 },
67 { "EXCSAVE7", 215, 0 },
74 { "EXCCAUSE", 232, 0 },
76 { "EXCVADDR", 238, 0 },
77 { "WINDOWBASE", 72, 0 },
78 { "WINDOWSTART", 73, 0 },
83 { "INTENABLE", 228, 0 },
84 { "DBREAKA0", 144, 0 },
85 { "DBREAKC0", 160, 0 },
86 { "DBREAKA1", 145, 0 },
87 { "DBREAKC1", 161, 0 },
88 { "IBREAKA0", 128, 0 },
89 { "IBREAKA1", 129, 0 },
90 { "IBREAKENABLE", 96, 0 },
91 { "ICOUNTLEVEL", 237, 0 },
92 { "DEBUGCAUSE", 233, 0 },
93 { "SCOMPARE1", 12, 0 },
95 { "EXPSTATE", 230, 1 }
98 #define NUM_SYSREGS 64
99 #define MAX_SPECIAL_REG 245
100 #define MAX_USER_REG 230
103 /* Processor states. */
105 static xtensa_state_internal states
[] = {
110 { "INTERRUPT", 22, 0 },
113 { "VECBASE", 22, 0 },
121 { "EXCSAVE1", 32, 0 },
122 { "EXCSAVE2", 32, 0 },
123 { "EXCSAVE3", 32, 0 },
124 { "EXCSAVE4", 32, 0 },
125 { "EXCSAVE5", 32, 0 },
126 { "EXCSAVE6", 32, 0 },
127 { "EXCSAVE7", 32, 0 },
134 { "EXCCAUSE", 6, 0 },
135 { "PSINTLEVEL", 4, 0 },
140 { "EXCVADDR", 32, 0 },
141 { "WindowBase", 3, 0 },
142 { "WindowStart", 8, 0 },
143 { "PSCALLINC", 2, 0 },
151 { "InOCDMode", 1, 0 },
152 { "INTENABLE", 22, 0 },
153 { "DBREAKA0", 32, 0 },
154 { "DBREAKC0", 8, 0 },
155 { "DBREAKA1", 32, 0 },
156 { "DBREAKC1", 8, 0 },
157 { "IBREAKA0", 32, 0 },
158 { "IBREAKA1", 32, 0 },
159 { "IBREAKENABLE", 2, 0 },
160 { "ICOUNTLEVEL", 4, 0 },
161 { "DEBUGCAUSE", 6, 0 },
163 { "CCOMPARE0", 32, 0 },
164 { "CCOMPARE1", 32, 0 },
165 { "CCOMPARE2", 32, 0 },
166 { "SCOMPARE1", 32, 0 },
168 { "ERI_RAW_INTERLOCK", 1, 0 },
169 { "EXPSTATE", 32, XTENSA_STATE_IS_EXPORTED
}
172 #define NUM_STATES 64
174 enum xtensa_state_id
{
237 STATE_ERI_RAW_INTERLOCK
,
242 /* Field definitions. */
245 Field_t_Slot_inst_get (const xtensa_insnbuf insn
)
248 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
253 Field_t_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
256 tie_t
= (val
<< 28) >> 28;
257 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
261 Field_s_Slot_inst_get (const xtensa_insnbuf insn
)
264 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
269 Field_s_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
272 tie_t
= (val
<< 28) >> 28;
273 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
277 Field_r_Slot_inst_get (const xtensa_insnbuf insn
)
280 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
285 Field_r_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
288 tie_t
= (val
<< 28) >> 28;
289 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
293 Field_op2_Slot_inst_get (const xtensa_insnbuf insn
)
296 tie_t
= (tie_t
<< 4) | ((insn
[0] << 8) >> 28);
301 Field_op2_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
304 tie_t
= (val
<< 28) >> 28;
305 insn
[0] = (insn
[0] & ~0xf00000) | (tie_t
<< 20);
309 Field_op1_Slot_inst_get (const xtensa_insnbuf insn
)
312 tie_t
= (tie_t
<< 4) | ((insn
[0] << 12) >> 28);
317 Field_op1_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
320 tie_t
= (val
<< 28) >> 28;
321 insn
[0] = (insn
[0] & ~0xf0000) | (tie_t
<< 16);
325 Field_op0_Slot_inst_get (const xtensa_insnbuf insn
)
328 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
333 Field_op0_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
336 tie_t
= (val
<< 28) >> 28;
337 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
341 Field_n_Slot_inst_get (const xtensa_insnbuf insn
)
344 tie_t
= (tie_t
<< 2) | ((insn
[0] << 26) >> 30);
349 Field_n_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
352 tie_t
= (val
<< 30) >> 30;
353 insn
[0] = (insn
[0] & ~0x30) | (tie_t
<< 4);
357 Field_m_Slot_inst_get (const xtensa_insnbuf insn
)
360 tie_t
= (tie_t
<< 2) | ((insn
[0] << 24) >> 30);
365 Field_m_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
368 tie_t
= (val
<< 30) >> 30;
369 insn
[0] = (insn
[0] & ~0xc0) | (tie_t
<< 6);
373 Field_sr_Slot_inst_get (const xtensa_insnbuf insn
)
376 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
377 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
382 Field_sr_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
385 tie_t
= (val
<< 28) >> 28;
386 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
387 tie_t
= (val
<< 24) >> 28;
388 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
392 Field_thi3_Slot_inst_get (const xtensa_insnbuf insn
)
395 tie_t
= (tie_t
<< 3) | ((insn
[0] << 24) >> 29);
400 Field_thi3_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
403 tie_t
= (val
<< 29) >> 29;
404 insn
[0] = (insn
[0] & ~0xe0) | (tie_t
<< 5);
408 Field_t3_Slot_inst_get (const xtensa_insnbuf insn
)
411 tie_t
= (tie_t
<< 1) | ((insn
[0] << 24) >> 31);
416 Field_t3_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
419 tie_t
= (val
<< 31) >> 31;
420 insn
[0] = (insn
[0] & ~0x80) | (tie_t
<< 7);
424 Field_tlo_Slot_inst_get (const xtensa_insnbuf insn
)
427 tie_t
= (tie_t
<< 2) | ((insn
[0] << 26) >> 30);
432 Field_tlo_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
435 tie_t
= (val
<< 30) >> 30;
436 insn
[0] = (insn
[0] & ~0x30) | (tie_t
<< 4);
440 Field_w_Slot_inst_get (const xtensa_insnbuf insn
)
443 tie_t
= (tie_t
<< 2) | ((insn
[0] << 18) >> 30);
448 Field_w_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
451 tie_t
= (val
<< 30) >> 30;
452 insn
[0] = (insn
[0] & ~0x3000) | (tie_t
<< 12);
456 Field_r3_Slot_inst_get (const xtensa_insnbuf insn
)
459 tie_t
= (tie_t
<< 1) | ((insn
[0] << 16) >> 31);
464 Field_r3_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
467 tie_t
= (val
<< 31) >> 31;
468 insn
[0] = (insn
[0] & ~0x8000) | (tie_t
<< 15);
472 Field_rhi_Slot_inst_get (const xtensa_insnbuf insn
)
475 tie_t
= (tie_t
<< 2) | ((insn
[0] << 16) >> 30);
480 Field_rhi_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
483 tie_t
= (val
<< 30) >> 30;
484 insn
[0] = (insn
[0] & ~0xc000) | (tie_t
<< 14);
488 Field_st_Slot_inst_get (const xtensa_insnbuf insn
)
491 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
492 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
497 Field_st_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
500 tie_t
= (val
<< 28) >> 28;
501 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
502 tie_t
= (val
<< 24) >> 28;
503 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
507 Field_s3to1_Slot_inst_get (const xtensa_insnbuf insn
)
510 tie_t
= (tie_t
<< 3) | ((insn
[0] << 20) >> 29);
515 Field_s3to1_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
518 tie_t
= (val
<< 29) >> 29;
519 insn
[0] = (insn
[0] & ~0xe00) | (tie_t
<< 9);
523 Field_op0_Slot_inst16a_get (const xtensa_insnbuf insn
)
526 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
531 Field_op0_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
534 tie_t
= (val
<< 28) >> 28;
535 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
539 Field_t_Slot_inst16b_get (const xtensa_insnbuf insn
)
542 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
547 Field_t_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
550 tie_t
= (val
<< 28) >> 28;
551 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
555 Field_r_Slot_inst16b_get (const xtensa_insnbuf insn
)
558 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
563 Field_r_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
566 tie_t
= (val
<< 28) >> 28;
567 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
571 Field_op0_Slot_inst16b_get (const xtensa_insnbuf insn
)
574 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
579 Field_op0_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
582 tie_t
= (val
<< 28) >> 28;
583 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
587 Field_z_Slot_inst16b_get (const xtensa_insnbuf insn
)
590 tie_t
= (tie_t
<< 1) | ((insn
[0] << 25) >> 31);
595 Field_z_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
598 tie_t
= (val
<< 31) >> 31;
599 insn
[0] = (insn
[0] & ~0x40) | (tie_t
<< 6);
603 Field_i_Slot_inst16b_get (const xtensa_insnbuf insn
)
606 tie_t
= (tie_t
<< 1) | ((insn
[0] << 24) >> 31);
611 Field_i_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
614 tie_t
= (val
<< 31) >> 31;
615 insn
[0] = (insn
[0] & ~0x80) | (tie_t
<< 7);
619 Field_s_Slot_inst16b_get (const xtensa_insnbuf insn
)
622 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
627 Field_s_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
630 tie_t
= (val
<< 28) >> 28;
631 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
635 Field_t_Slot_inst16a_get (const xtensa_insnbuf insn
)
638 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
643 Field_t_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
646 tie_t
= (val
<< 28) >> 28;
647 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
651 Field_bbi4_Slot_inst_get (const xtensa_insnbuf insn
)
654 tie_t
= (tie_t
<< 1) | ((insn
[0] << 19) >> 31);
659 Field_bbi4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
662 tie_t
= (val
<< 31) >> 31;
663 insn
[0] = (insn
[0] & ~0x1000) | (tie_t
<< 12);
667 Field_bbi_Slot_inst_get (const xtensa_insnbuf insn
)
670 tie_t
= (tie_t
<< 1) | ((insn
[0] << 19) >> 31);
671 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
676 Field_bbi_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
679 tie_t
= (val
<< 28) >> 28;
680 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
681 tie_t
= (val
<< 27) >> 31;
682 insn
[0] = (insn
[0] & ~0x1000) | (tie_t
<< 12);
686 Field_imm12_Slot_inst_get (const xtensa_insnbuf insn
)
689 tie_t
= (tie_t
<< 12) | ((insn
[0] << 8) >> 20);
694 Field_imm12_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
697 tie_t
= (val
<< 20) >> 20;
698 insn
[0] = (insn
[0] & ~0xfff000) | (tie_t
<< 12);
702 Field_imm8_Slot_inst_get (const xtensa_insnbuf insn
)
705 tie_t
= (tie_t
<< 8) | ((insn
[0] << 8) >> 24);
710 Field_imm8_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
713 tie_t
= (val
<< 24) >> 24;
714 insn
[0] = (insn
[0] & ~0xff0000) | (tie_t
<< 16);
718 Field_s_Slot_inst16a_get (const xtensa_insnbuf insn
)
721 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
726 Field_s_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
729 tie_t
= (val
<< 28) >> 28;
730 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
734 Field_imm12b_Slot_inst_get (const xtensa_insnbuf insn
)
737 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
738 tie_t
= (tie_t
<< 8) | ((insn
[0] << 8) >> 24);
743 Field_imm12b_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
746 tie_t
= (val
<< 24) >> 24;
747 insn
[0] = (insn
[0] & ~0xff0000) | (tie_t
<< 16);
748 tie_t
= (val
<< 20) >> 28;
749 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
753 Field_imm16_Slot_inst_get (const xtensa_insnbuf insn
)
756 tie_t
= (tie_t
<< 16) | ((insn
[0] << 8) >> 16);
761 Field_imm16_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
764 tie_t
= (val
<< 16) >> 16;
765 insn
[0] = (insn
[0] & ~0xffff00) | (tie_t
<< 8);
769 Field_offset_Slot_inst_get (const xtensa_insnbuf insn
)
772 tie_t
= (tie_t
<< 18) | ((insn
[0] << 8) >> 14);
777 Field_offset_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
780 tie_t
= (val
<< 14) >> 14;
781 insn
[0] = (insn
[0] & ~0xffffc0) | (tie_t
<< 6);
785 Field_r_Slot_inst16a_get (const xtensa_insnbuf insn
)
788 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
793 Field_r_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
796 tie_t
= (val
<< 28) >> 28;
797 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
801 Field_sa4_Slot_inst_get (const xtensa_insnbuf insn
)
804 tie_t
= (tie_t
<< 1) | ((insn
[0] << 11) >> 31);
809 Field_sa4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
812 tie_t
= (val
<< 31) >> 31;
813 insn
[0] = (insn
[0] & ~0x100000) | (tie_t
<< 20);
817 Field_sae4_Slot_inst_get (const xtensa_insnbuf insn
)
820 tie_t
= (tie_t
<< 1) | ((insn
[0] << 15) >> 31);
825 Field_sae4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
828 tie_t
= (val
<< 31) >> 31;
829 insn
[0] = (insn
[0] & ~0x10000) | (tie_t
<< 16);
833 Field_sae_Slot_inst_get (const xtensa_insnbuf insn
)
836 tie_t
= (tie_t
<< 1) | ((insn
[0] << 15) >> 31);
837 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
842 Field_sae_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
845 tie_t
= (val
<< 28) >> 28;
846 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
847 tie_t
= (val
<< 27) >> 31;
848 insn
[0] = (insn
[0] & ~0x10000) | (tie_t
<< 16);
852 Field_sal_Slot_inst_get (const xtensa_insnbuf insn
)
855 tie_t
= (tie_t
<< 1) | ((insn
[0] << 11) >> 31);
856 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
861 Field_sal_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
864 tie_t
= (val
<< 28) >> 28;
865 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
866 tie_t
= (val
<< 27) >> 31;
867 insn
[0] = (insn
[0] & ~0x100000) | (tie_t
<< 20);
871 Field_sargt_Slot_inst_get (const xtensa_insnbuf insn
)
874 tie_t
= (tie_t
<< 1) | ((insn
[0] << 11) >> 31);
875 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
880 Field_sargt_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
883 tie_t
= (val
<< 28) >> 28;
884 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
885 tie_t
= (val
<< 27) >> 31;
886 insn
[0] = (insn
[0] & ~0x100000) | (tie_t
<< 20);
890 Field_sas4_Slot_inst_get (const xtensa_insnbuf insn
)
893 tie_t
= (tie_t
<< 1) | ((insn
[0] << 27) >> 31);
898 Field_sas4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
901 tie_t
= (val
<< 31) >> 31;
902 insn
[0] = (insn
[0] & ~0x10) | (tie_t
<< 4);
906 Field_sas_Slot_inst_get (const xtensa_insnbuf insn
)
909 tie_t
= (tie_t
<< 1) | ((insn
[0] << 27) >> 31);
910 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
915 Field_sas_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
918 tie_t
= (val
<< 28) >> 28;
919 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
920 tie_t
= (val
<< 27) >> 31;
921 insn
[0] = (insn
[0] & ~0x10) | (tie_t
<< 4);
925 Field_sr_Slot_inst16a_get (const xtensa_insnbuf insn
)
928 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
929 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
934 Field_sr_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
937 tie_t
= (val
<< 28) >> 28;
938 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
939 tie_t
= (val
<< 24) >> 28;
940 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
944 Field_sr_Slot_inst16b_get (const xtensa_insnbuf insn
)
947 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
948 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
953 Field_sr_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
956 tie_t
= (val
<< 28) >> 28;
957 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
958 tie_t
= (val
<< 24) >> 28;
959 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
963 Field_st_Slot_inst16a_get (const xtensa_insnbuf insn
)
966 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
967 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
972 Field_st_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
975 tie_t
= (val
<< 28) >> 28;
976 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
977 tie_t
= (val
<< 24) >> 28;
978 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
982 Field_st_Slot_inst16b_get (const xtensa_insnbuf insn
)
985 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
986 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
991 Field_st_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
994 tie_t
= (val
<< 28) >> 28;
995 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
996 tie_t
= (val
<< 24) >> 28;
997 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
1001 Field_imm4_Slot_inst_get (const xtensa_insnbuf insn
)
1004 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1009 Field_imm4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1012 tie_t
= (val
<< 28) >> 28;
1013 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1017 Field_imm4_Slot_inst16a_get (const xtensa_insnbuf insn
)
1020 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1025 Field_imm4_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1028 tie_t
= (val
<< 28) >> 28;
1029 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1033 Field_imm4_Slot_inst16b_get (const xtensa_insnbuf insn
)
1036 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1041 Field_imm4_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1044 tie_t
= (val
<< 28) >> 28;
1045 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1049 Field_mn_Slot_inst_get (const xtensa_insnbuf insn
)
1052 tie_t
= (tie_t
<< 2) | ((insn
[0] << 24) >> 30);
1053 tie_t
= (tie_t
<< 2) | ((insn
[0] << 26) >> 30);
1058 Field_mn_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1061 tie_t
= (val
<< 30) >> 30;
1062 insn
[0] = (insn
[0] & ~0x30) | (tie_t
<< 4);
1063 tie_t
= (val
<< 28) >> 30;
1064 insn
[0] = (insn
[0] & ~0xc0) | (tie_t
<< 6);
1068 Field_i_Slot_inst16a_get (const xtensa_insnbuf insn
)
1071 tie_t
= (tie_t
<< 1) | ((insn
[0] << 24) >> 31);
1076 Field_i_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1079 tie_t
= (val
<< 31) >> 31;
1080 insn
[0] = (insn
[0] & ~0x80) | (tie_t
<< 7);
1084 Field_imm6lo_Slot_inst16a_get (const xtensa_insnbuf insn
)
1087 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1092 Field_imm6lo_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1095 tie_t
= (val
<< 28) >> 28;
1096 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1100 Field_imm6lo_Slot_inst16b_get (const xtensa_insnbuf insn
)
1103 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1108 Field_imm6lo_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1111 tie_t
= (val
<< 28) >> 28;
1112 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1116 Field_imm6hi_Slot_inst16a_get (const xtensa_insnbuf insn
)
1119 tie_t
= (tie_t
<< 2) | ((insn
[0] << 26) >> 30);
1124 Field_imm6hi_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1127 tie_t
= (val
<< 30) >> 30;
1128 insn
[0] = (insn
[0] & ~0x30) | (tie_t
<< 4);
1132 Field_imm6hi_Slot_inst16b_get (const xtensa_insnbuf insn
)
1135 tie_t
= (tie_t
<< 2) | ((insn
[0] << 26) >> 30);
1140 Field_imm6hi_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1143 tie_t
= (val
<< 30) >> 30;
1144 insn
[0] = (insn
[0] & ~0x30) | (tie_t
<< 4);
1148 Field_imm7lo_Slot_inst16a_get (const xtensa_insnbuf insn
)
1151 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1156 Field_imm7lo_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1159 tie_t
= (val
<< 28) >> 28;
1160 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1164 Field_imm7lo_Slot_inst16b_get (const xtensa_insnbuf insn
)
1167 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1172 Field_imm7lo_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1175 tie_t
= (val
<< 28) >> 28;
1176 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1180 Field_imm7hi_Slot_inst16a_get (const xtensa_insnbuf insn
)
1183 tie_t
= (tie_t
<< 3) | ((insn
[0] << 25) >> 29);
1188 Field_imm7hi_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1191 tie_t
= (val
<< 29) >> 29;
1192 insn
[0] = (insn
[0] & ~0x70) | (tie_t
<< 4);
1196 Field_imm7hi_Slot_inst16b_get (const xtensa_insnbuf insn
)
1199 tie_t
= (tie_t
<< 3) | ((insn
[0] << 25) >> 29);
1204 Field_imm7hi_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1207 tie_t
= (val
<< 29) >> 29;
1208 insn
[0] = (insn
[0] & ~0x70) | (tie_t
<< 4);
1212 Field_z_Slot_inst16a_get (const xtensa_insnbuf insn
)
1215 tie_t
= (tie_t
<< 1) | ((insn
[0] << 25) >> 31);
1220 Field_z_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1223 tie_t
= (val
<< 31) >> 31;
1224 insn
[0] = (insn
[0] & ~0x40) | (tie_t
<< 6);
1228 Field_imm6_Slot_inst16a_get (const xtensa_insnbuf insn
)
1231 tie_t
= (tie_t
<< 2) | ((insn
[0] << 26) >> 30);
1232 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1237 Field_imm6_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1240 tie_t
= (val
<< 28) >> 28;
1241 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1242 tie_t
= (val
<< 26) >> 30;
1243 insn
[0] = (insn
[0] & ~0x30) | (tie_t
<< 4);
1247 Field_imm6_Slot_inst16b_get (const xtensa_insnbuf insn
)
1250 tie_t
= (tie_t
<< 2) | ((insn
[0] << 26) >> 30);
1251 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1256 Field_imm6_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1259 tie_t
= (val
<< 28) >> 28;
1260 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1261 tie_t
= (val
<< 26) >> 30;
1262 insn
[0] = (insn
[0] & ~0x30) | (tie_t
<< 4);
1266 Field_imm7_Slot_inst16a_get (const xtensa_insnbuf insn
)
1269 tie_t
= (tie_t
<< 3) | ((insn
[0] << 25) >> 29);
1270 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1275 Field_imm7_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1278 tie_t
= (val
<< 28) >> 28;
1279 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1280 tie_t
= (val
<< 25) >> 29;
1281 insn
[0] = (insn
[0] & ~0x70) | (tie_t
<< 4);
1285 Field_imm7_Slot_inst16b_get (const xtensa_insnbuf insn
)
1288 tie_t
= (tie_t
<< 3) | ((insn
[0] << 25) >> 29);
1289 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
1294 Field_imm7_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1297 tie_t
= (val
<< 28) >> 28;
1298 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
1299 tie_t
= (val
<< 25) >> 29;
1300 insn
[0] = (insn
[0] & ~0x70) | (tie_t
<< 4);
1304 Field_rbit2_Slot_inst_get (const xtensa_insnbuf insn
)
1307 tie_t
= (tie_t
<< 1) | ((insn
[0] << 17) >> 31);
1312 Field_rbit2_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1315 tie_t
= (val
<< 31) >> 31;
1316 insn
[0] = (insn
[0] & ~0x4000) | (tie_t
<< 14);
1320 Field_tbit2_Slot_inst_get (const xtensa_insnbuf insn
)
1323 tie_t
= (tie_t
<< 1) | ((insn
[0] << 25) >> 31);
1328 Field_tbit2_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1331 tie_t
= (val
<< 31) >> 31;
1332 insn
[0] = (insn
[0] & ~0x40) | (tie_t
<< 6);
1336 Field_y_Slot_inst_get (const xtensa_insnbuf insn
)
1339 tie_t
= (tie_t
<< 1) | ((insn
[0] << 25) >> 31);
1344 Field_y_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1347 tie_t
= (val
<< 31) >> 31;
1348 insn
[0] = (insn
[0] & ~0x40) | (tie_t
<< 6);
1352 Field_x_Slot_inst_get (const xtensa_insnbuf insn
)
1355 tie_t
= (tie_t
<< 1) | ((insn
[0] << 17) >> 31);
1360 Field_x_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1363 tie_t
= (val
<< 31) >> 31;
1364 insn
[0] = (insn
[0] & ~0x4000) | (tie_t
<< 14);
1368 Field_xt_wbr15_imm_Slot_inst_get (const xtensa_insnbuf insn
)
1371 tie_t
= (tie_t
<< 15) | ((insn
[0] << 8) >> 17);
1376 Field_xt_wbr15_imm_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1379 tie_t
= (val
<< 17) >> 17;
1380 insn
[0] = (insn
[0] & ~0xfffe00) | (tie_t
<< 9);
1384 Field_xt_wbr18_imm_Slot_inst_get (const xtensa_insnbuf insn
)
1387 tie_t
= (tie_t
<< 18) | ((insn
[0] << 8) >> 14);
1392 Field_xt_wbr18_imm_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1395 tie_t
= (val
<< 14) >> 14;
1396 insn
[0] = (insn
[0] & ~0xffffc0) | (tie_t
<< 6);
1400 Field_bitindex_Slot_inst_get (const xtensa_insnbuf insn
)
1403 tie_t
= (tie_t
<< 1) | ((insn
[0] << 23) >> 31);
1404 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
1409 Field_bitindex_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1412 tie_t
= (val
<< 28) >> 28;
1413 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
1414 tie_t
= (val
<< 27) >> 31;
1415 insn
[0] = (insn
[0] & ~0x100) | (tie_t
<< 8);
1419 Field_bitindex_Slot_inst16a_get (const xtensa_insnbuf insn
)
1422 tie_t
= (tie_t
<< 1) | ((insn
[0] << 23) >> 31);
1423 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
1428 Field_bitindex_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1431 tie_t
= (val
<< 28) >> 28;
1432 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
1433 tie_t
= (val
<< 27) >> 31;
1434 insn
[0] = (insn
[0] & ~0x100) | (tie_t
<< 8);
1438 Field_bitindex_Slot_inst16b_get (const xtensa_insnbuf insn
)
1441 tie_t
= (tie_t
<< 1) | ((insn
[0] << 23) >> 31);
1442 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
1447 Field_bitindex_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1450 tie_t
= (val
<< 28) >> 28;
1451 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
1452 tie_t
= (val
<< 27) >> 31;
1453 insn
[0] = (insn
[0] & ~0x100) | (tie_t
<< 8);
1457 Field_s3to1_Slot_inst16a_get (const xtensa_insnbuf insn
)
1460 tie_t
= (tie_t
<< 3) | ((insn
[0] << 20) >> 29);
1465 Field_s3to1_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1468 tie_t
= (val
<< 29) >> 29;
1469 insn
[0] = (insn
[0] & ~0xe00) | (tie_t
<< 9);
1473 Field_s3to1_Slot_inst16b_get (const xtensa_insnbuf insn
)
1476 tie_t
= (tie_t
<< 3) | ((insn
[0] << 20) >> 29);
1481 Field_s3to1_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1484 tie_t
= (val
<< 29) >> 29;
1485 insn
[0] = (insn
[0] & ~0xe00) | (tie_t
<< 9);
1489 Implicit_Field_set (xtensa_insnbuf insn ATTRIBUTE_UNUSED
,
1490 uint32 val ATTRIBUTE_UNUSED
)
1496 Implicit_Field_ar0_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1502 Implicit_Field_ar4_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1508 Implicit_Field_ar8_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1514 Implicit_Field_ar12_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1520 Implicit_Field_mr0_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1526 Implicit_Field_mr1_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1532 Implicit_Field_mr2_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1538 Implicit_Field_mr3_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1543 enum xtensa_field_id
{
1603 /* Functional units. */
1608 /* Register files. */
1610 enum xtensa_regfile_id
{
1615 static xtensa_regfile_internal regfiles
[] = {
1616 { "AR", "a", REGFILE_AR
, 32, 32 },
1617 { "MR", "m", REGFILE_MR
, 32, 4 }
1623 static xtensa_interface_internal interfaces
[] = {
1624 { "ERI_RD_Out", 14, 0, 0, 'o' },
1625 { "ERI_RD_In", 32, 0, 1, 'i' },
1626 { "ERI_RD_Rdy", 1, 0, 0, 'i' },
1627 { "ERI_WR_Out", 46, 0, 2, 'o' },
1628 { "ERI_WR_In", 1, 0, 3, 'i' },
1629 { "IMPWIRE", 32, 0, 4, 'i' }
1632 enum xtensa_interface_id
{
1633 INTERFACE_ERI_RD_Out
,
1634 INTERFACE_ERI_RD_In
,
1635 INTERFACE_ERI_RD_Rdy
,
1636 INTERFACE_ERI_WR_Out
,
1637 INTERFACE_ERI_WR_In
,
1642 /* Constant tables. */
1644 /* constant table ai4c */
1645 static const unsigned CONST_TBL_ai4c_0
[] = {
1665 /* constant table b4c */
1666 static const unsigned CONST_TBL_b4c_0
[] = {
1686 /* constant table b4cu */
1687 static const unsigned CONST_TBL_b4cu_0
[] = {
1708 /* Instruction operands. */
1711 OperandSem_opnd_sem_MR_0_decode (uint32
*valp
)
1718 OperandSem_opnd_sem_MR_0_encode (uint32
*valp
)
1721 error
= ((*valp
& ~0x3) != 0) || ((*valp
& 0x2) == 0);
1727 OperandSem_opnd_sem_soffsetx4_decode (uint32
*valp
)
1729 unsigned soffsetx4_out_0
;
1730 unsigned soffsetx4_in_0
;
1731 soffsetx4_in_0
= *valp
& 0x3ffff;
1732 soffsetx4_out_0
= 0x4 + ((((int) soffsetx4_in_0
<< 14) >> 14) << 2);
1733 *valp
= soffsetx4_out_0
;
1738 OperandSem_opnd_sem_soffsetx4_encode (uint32
*valp
)
1740 unsigned soffsetx4_in_0
;
1741 unsigned soffsetx4_out_0
;
1742 soffsetx4_out_0
= *valp
;
1743 soffsetx4_in_0
= ((soffsetx4_out_0
- 0x4) >> 2) & 0x3ffff;
1744 *valp
= soffsetx4_in_0
;
1749 OperandSem_opnd_sem_uimm12x8_decode (uint32
*valp
)
1751 unsigned uimm12x8_out_0
;
1752 unsigned uimm12x8_in_0
;
1753 uimm12x8_in_0
= *valp
& 0xfff;
1754 uimm12x8_out_0
= uimm12x8_in_0
<< 3;
1755 *valp
= uimm12x8_out_0
;
1760 OperandSem_opnd_sem_uimm12x8_encode (uint32
*valp
)
1762 unsigned uimm12x8_in_0
;
1763 unsigned uimm12x8_out_0
;
1764 uimm12x8_out_0
= *valp
;
1765 uimm12x8_in_0
= ((uimm12x8_out_0
>> 3) & 0xfff);
1766 *valp
= uimm12x8_in_0
;
1771 OperandSem_opnd_sem_simm4_decode (uint32
*valp
)
1773 unsigned simm4_out_0
;
1774 unsigned simm4_in_0
;
1775 simm4_in_0
= *valp
& 0xf;
1776 simm4_out_0
= ((int) simm4_in_0
<< 28) >> 28;
1777 *valp
= simm4_out_0
;
1782 OperandSem_opnd_sem_simm4_encode (uint32
*valp
)
1784 unsigned simm4_in_0
;
1785 unsigned simm4_out_0
;
1786 simm4_out_0
= *valp
;
1787 simm4_in_0
= (simm4_out_0
& 0xf);
1793 OperandSem_opnd_sem_AR_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1799 OperandSem_opnd_sem_AR_encode (uint32
*valp
)
1801 return (*valp
>= 32);
1805 OperandSem_opnd_sem_AR_0_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1811 OperandSem_opnd_sem_AR_0_encode (uint32
*valp
)
1813 return (*valp
>= 32);
1817 OperandSem_opnd_sem_AR_1_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1823 OperandSem_opnd_sem_AR_1_encode (uint32
*valp
)
1825 return (*valp
>= 32);
1829 OperandSem_opnd_sem_AR_2_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1835 OperandSem_opnd_sem_AR_2_encode (uint32
*valp
)
1837 return (*valp
>= 32);
1841 OperandSem_opnd_sem_AR_3_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1847 OperandSem_opnd_sem_AR_3_encode (uint32
*valp
)
1849 return (*valp
>= 32);
1853 OperandSem_opnd_sem_AR_4_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1859 OperandSem_opnd_sem_AR_4_encode (uint32
*valp
)
1861 return (*valp
>= 32);
1865 OperandSem_opnd_sem_immrx4_decode (uint32
*valp
)
1867 unsigned immrx4_out_0
;
1868 unsigned immrx4_in_0
;
1869 immrx4_in_0
= *valp
& 0xf;
1870 immrx4_out_0
= (((0xfffffff) << 4) | immrx4_in_0
) << 2;
1871 *valp
= immrx4_out_0
;
1876 OperandSem_opnd_sem_immrx4_encode (uint32
*valp
)
1878 unsigned immrx4_in_0
;
1879 unsigned immrx4_out_0
;
1880 immrx4_out_0
= *valp
;
1881 immrx4_in_0
= ((immrx4_out_0
>> 2) & 0xf);
1882 *valp
= immrx4_in_0
;
1887 OperandSem_opnd_sem_lsi4x4_decode (uint32
*valp
)
1889 unsigned lsi4x4_out_0
;
1890 unsigned lsi4x4_in_0
;
1891 lsi4x4_in_0
= *valp
& 0xf;
1892 lsi4x4_out_0
= lsi4x4_in_0
<< 2;
1893 *valp
= lsi4x4_out_0
;
1898 OperandSem_opnd_sem_lsi4x4_encode (uint32
*valp
)
1900 unsigned lsi4x4_in_0
;
1901 unsigned lsi4x4_out_0
;
1902 lsi4x4_out_0
= *valp
;
1903 lsi4x4_in_0
= ((lsi4x4_out_0
>> 2) & 0xf);
1904 *valp
= lsi4x4_in_0
;
1909 OperandSem_opnd_sem_simm7_decode (uint32
*valp
)
1911 unsigned simm7_out_0
;
1912 unsigned simm7_in_0
;
1913 simm7_in_0
= *valp
& 0x7f;
1914 simm7_out_0
= ((((-((((simm7_in_0
>> 6) & 1)) & (((simm7_in_0
>> 5) & 1)))) & 0x1ffffff)) << 7) | simm7_in_0
;
1915 *valp
= simm7_out_0
;
1920 OperandSem_opnd_sem_simm7_encode (uint32
*valp
)
1922 unsigned simm7_in_0
;
1923 unsigned simm7_out_0
;
1924 simm7_out_0
= *valp
;
1925 simm7_in_0
= (simm7_out_0
& 0x7f);
1931 OperandSem_opnd_sem_uimm6_decode (uint32
*valp
)
1933 unsigned uimm6_out_0
;
1934 unsigned uimm6_in_0
;
1935 uimm6_in_0
= *valp
& 0x3f;
1936 uimm6_out_0
= 0x4 + (((0) << 6) | uimm6_in_0
);
1937 *valp
= uimm6_out_0
;
1942 OperandSem_opnd_sem_uimm6_encode (uint32
*valp
)
1944 unsigned uimm6_in_0
;
1945 unsigned uimm6_out_0
;
1946 uimm6_out_0
= *valp
;
1947 uimm6_in_0
= (uimm6_out_0
- 0x4) & 0x3f;
1953 OperandSem_opnd_sem_ai4const_decode (uint32
*valp
)
1955 unsigned ai4const_out_0
;
1956 unsigned ai4const_in_0
;
1957 ai4const_in_0
= *valp
& 0xf;
1958 ai4const_out_0
= CONST_TBL_ai4c_0
[ai4const_in_0
& 0xf];
1959 *valp
= ai4const_out_0
;
1964 OperandSem_opnd_sem_ai4const_encode (uint32
*valp
)
1966 unsigned ai4const_in_0
;
1967 unsigned ai4const_out_0
;
1968 ai4const_out_0
= *valp
;
1969 switch (ai4const_out_0
)
1971 case 0xffffffff: ai4const_in_0
= 0; break;
1972 case 0x1: ai4const_in_0
= 0x1; break;
1973 case 0x2: ai4const_in_0
= 0x2; break;
1974 case 0x3: ai4const_in_0
= 0x3; break;
1975 case 0x4: ai4const_in_0
= 0x4; break;
1976 case 0x5: ai4const_in_0
= 0x5; break;
1977 case 0x6: ai4const_in_0
= 0x6; break;
1978 case 0x7: ai4const_in_0
= 0x7; break;
1979 case 0x8: ai4const_in_0
= 0x8; break;
1980 case 0x9: ai4const_in_0
= 0x9; break;
1981 case 0xa: ai4const_in_0
= 0xa; break;
1982 case 0xb: ai4const_in_0
= 0xb; break;
1983 case 0xc: ai4const_in_0
= 0xc; break;
1984 case 0xd: ai4const_in_0
= 0xd; break;
1985 case 0xe: ai4const_in_0
= 0xe; break;
1986 default: ai4const_in_0
= 0xf; break;
1988 *valp
= ai4const_in_0
;
1993 OperandSem_opnd_sem_b4const_decode (uint32
*valp
)
1995 unsigned b4const_out_0
;
1996 unsigned b4const_in_0
;
1997 b4const_in_0
= *valp
& 0xf;
1998 b4const_out_0
= CONST_TBL_b4c_0
[b4const_in_0
& 0xf];
1999 *valp
= b4const_out_0
;
2004 OperandSem_opnd_sem_b4const_encode (uint32
*valp
)
2006 unsigned b4const_in_0
;
2007 unsigned b4const_out_0
;
2008 b4const_out_0
= *valp
;
2009 switch (b4const_out_0
)
2011 case 0xffffffff: b4const_in_0
= 0; break;
2012 case 0x1: b4const_in_0
= 0x1; break;
2013 case 0x2: b4const_in_0
= 0x2; break;
2014 case 0x3: b4const_in_0
= 0x3; break;
2015 case 0x4: b4const_in_0
= 0x4; break;
2016 case 0x5: b4const_in_0
= 0x5; break;
2017 case 0x6: b4const_in_0
= 0x6; break;
2018 case 0x7: b4const_in_0
= 0x7; break;
2019 case 0x8: b4const_in_0
= 0x8; break;
2020 case 0xa: b4const_in_0
= 0x9; break;
2021 case 0xc: b4const_in_0
= 0xa; break;
2022 case 0x10: b4const_in_0
= 0xb; break;
2023 case 0x20: b4const_in_0
= 0xc; break;
2024 case 0x40: b4const_in_0
= 0xd; break;
2025 case 0x80: b4const_in_0
= 0xe; break;
2026 default: b4const_in_0
= 0xf; break;
2028 *valp
= b4const_in_0
;
2033 OperandSem_opnd_sem_b4constu_decode (uint32
*valp
)
2035 unsigned b4constu_out_0
;
2036 unsigned b4constu_in_0
;
2037 b4constu_in_0
= *valp
& 0xf;
2038 b4constu_out_0
= CONST_TBL_b4cu_0
[b4constu_in_0
& 0xf];
2039 *valp
= b4constu_out_0
;
2044 OperandSem_opnd_sem_b4constu_encode (uint32
*valp
)
2046 unsigned b4constu_in_0
;
2047 unsigned b4constu_out_0
;
2048 b4constu_out_0
= *valp
;
2049 switch (b4constu_out_0
)
2051 case 0x8000: b4constu_in_0
= 0; break;
2052 case 0x10000: b4constu_in_0
= 0x1; break;
2053 case 0x2: b4constu_in_0
= 0x2; break;
2054 case 0x3: b4constu_in_0
= 0x3; break;
2055 case 0x4: b4constu_in_0
= 0x4; break;
2056 case 0x5: b4constu_in_0
= 0x5; break;
2057 case 0x6: b4constu_in_0
= 0x6; break;
2058 case 0x7: b4constu_in_0
= 0x7; break;
2059 case 0x8: b4constu_in_0
= 0x8; break;
2060 case 0xa: b4constu_in_0
= 0x9; break;
2061 case 0xc: b4constu_in_0
= 0xa; break;
2062 case 0x10: b4constu_in_0
= 0xb; break;
2063 case 0x20: b4constu_in_0
= 0xc; break;
2064 case 0x40: b4constu_in_0
= 0xd; break;
2065 case 0x80: b4constu_in_0
= 0xe; break;
2066 default: b4constu_in_0
= 0xf; break;
2068 *valp
= b4constu_in_0
;
2073 OperandSem_opnd_sem_uimm8_decode (uint32
*valp
)
2075 unsigned uimm8_out_0
;
2076 unsigned uimm8_in_0
;
2077 uimm8_in_0
= *valp
& 0xff;
2078 uimm8_out_0
= uimm8_in_0
;
2079 *valp
= uimm8_out_0
;
2084 OperandSem_opnd_sem_uimm8_encode (uint32
*valp
)
2086 unsigned uimm8_in_0
;
2087 unsigned uimm8_out_0
;
2088 uimm8_out_0
= *valp
;
2089 uimm8_in_0
= (uimm8_out_0
& 0xff);
2095 OperandSem_opnd_sem_uimm8x2_decode (uint32
*valp
)
2097 unsigned uimm8x2_out_0
;
2098 unsigned uimm8x2_in_0
;
2099 uimm8x2_in_0
= *valp
& 0xff;
2100 uimm8x2_out_0
= uimm8x2_in_0
<< 1;
2101 *valp
= uimm8x2_out_0
;
2106 OperandSem_opnd_sem_uimm8x2_encode (uint32
*valp
)
2108 unsigned uimm8x2_in_0
;
2109 unsigned uimm8x2_out_0
;
2110 uimm8x2_out_0
= *valp
;
2111 uimm8x2_in_0
= ((uimm8x2_out_0
>> 1) & 0xff);
2112 *valp
= uimm8x2_in_0
;
2117 OperandSem_opnd_sem_uimm8x4_decode (uint32
*valp
)
2119 unsigned uimm8x4_out_0
;
2120 unsigned uimm8x4_in_0
;
2121 uimm8x4_in_0
= *valp
& 0xff;
2122 uimm8x4_out_0
= uimm8x4_in_0
<< 2;
2123 *valp
= uimm8x4_out_0
;
2128 OperandSem_opnd_sem_uimm8x4_encode (uint32
*valp
)
2130 unsigned uimm8x4_in_0
;
2131 unsigned uimm8x4_out_0
;
2132 uimm8x4_out_0
= *valp
;
2133 uimm8x4_in_0
= ((uimm8x4_out_0
>> 2) & 0xff);
2134 *valp
= uimm8x4_in_0
;
2139 OperandSem_opnd_sem_uimm4x16_decode (uint32
*valp
)
2141 unsigned uimm4x16_out_0
;
2142 unsigned uimm4x16_in_0
;
2143 uimm4x16_in_0
= *valp
& 0xf;
2144 uimm4x16_out_0
= uimm4x16_in_0
<< 4;
2145 *valp
= uimm4x16_out_0
;
2150 OperandSem_opnd_sem_uimm4x16_encode (uint32
*valp
)
2152 unsigned uimm4x16_in_0
;
2153 unsigned uimm4x16_out_0
;
2154 uimm4x16_out_0
= *valp
;
2155 uimm4x16_in_0
= ((uimm4x16_out_0
>> 4) & 0xf);
2156 *valp
= uimm4x16_in_0
;
2161 OperandSem_opnd_sem_uimmrx4_decode (uint32
*valp
)
2163 unsigned uimmrx4_out_0
;
2164 unsigned uimmrx4_in_0
;
2165 uimmrx4_in_0
= *valp
& 0xf;
2166 uimmrx4_out_0
= uimmrx4_in_0
<< 2;
2167 *valp
= uimmrx4_out_0
;
2172 OperandSem_opnd_sem_uimmrx4_encode (uint32
*valp
)
2174 unsigned uimmrx4_in_0
;
2175 unsigned uimmrx4_out_0
;
2176 uimmrx4_out_0
= *valp
;
2177 uimmrx4_in_0
= ((uimmrx4_out_0
>> 2) & 0xf);
2178 *valp
= uimmrx4_in_0
;
2183 OperandSem_opnd_sem_simm8_decode (uint32
*valp
)
2185 unsigned simm8_out_0
;
2186 unsigned simm8_in_0
;
2187 simm8_in_0
= *valp
& 0xff;
2188 simm8_out_0
= ((int) simm8_in_0
<< 24) >> 24;
2189 *valp
= simm8_out_0
;
2194 OperandSem_opnd_sem_simm8_encode (uint32
*valp
)
2196 unsigned simm8_in_0
;
2197 unsigned simm8_out_0
;
2198 simm8_out_0
= *valp
;
2199 simm8_in_0
= (simm8_out_0
& 0xff);
2205 OperandSem_opnd_sem_simm8x256_decode (uint32
*valp
)
2207 unsigned simm8x256_out_0
;
2208 unsigned simm8x256_in_0
;
2209 simm8x256_in_0
= *valp
& 0xff;
2210 simm8x256_out_0
= (((int) simm8x256_in_0
<< 24) >> 24) << 8;
2211 *valp
= simm8x256_out_0
;
2216 OperandSem_opnd_sem_simm8x256_encode (uint32
*valp
)
2218 unsigned simm8x256_in_0
;
2219 unsigned simm8x256_out_0
;
2220 simm8x256_out_0
= *valp
;
2221 simm8x256_in_0
= ((simm8x256_out_0
>> 8) & 0xff);
2222 *valp
= simm8x256_in_0
;
2227 OperandSem_opnd_sem_simm12b_decode (uint32
*valp
)
2229 unsigned simm12b_out_0
;
2230 unsigned simm12b_in_0
;
2231 simm12b_in_0
= *valp
& 0xfff;
2232 simm12b_out_0
= ((int) simm12b_in_0
<< 20) >> 20;
2233 *valp
= simm12b_out_0
;
2238 OperandSem_opnd_sem_simm12b_encode (uint32
*valp
)
2240 unsigned simm12b_in_0
;
2241 unsigned simm12b_out_0
;
2242 simm12b_out_0
= *valp
;
2243 simm12b_in_0
= (simm12b_out_0
& 0xfff);
2244 *valp
= simm12b_in_0
;
2249 OperandSem_opnd_sem_msalp32_decode (uint32
*valp
)
2251 unsigned msalp32_out_0
;
2252 unsigned msalp32_in_0
;
2253 msalp32_in_0
= *valp
& 0x1f;
2254 msalp32_out_0
= 0x20 - msalp32_in_0
;
2255 *valp
= msalp32_out_0
;
2260 OperandSem_opnd_sem_msalp32_encode (uint32
*valp
)
2262 unsigned msalp32_in_0
;
2263 unsigned msalp32_out_0
;
2264 msalp32_out_0
= *valp
;
2265 msalp32_in_0
= (0x20 - msalp32_out_0
) & 0x1f;
2266 *valp
= msalp32_in_0
;
2271 OperandSem_opnd_sem_op2p1_decode (uint32
*valp
)
2273 unsigned op2p1_out_0
;
2274 unsigned op2p1_in_0
;
2275 op2p1_in_0
= *valp
& 0xf;
2276 op2p1_out_0
= op2p1_in_0
+ 0x1;
2277 *valp
= op2p1_out_0
;
2282 OperandSem_opnd_sem_op2p1_encode (uint32
*valp
)
2284 unsigned op2p1_in_0
;
2285 unsigned op2p1_out_0
;
2286 op2p1_out_0
= *valp
;
2287 op2p1_in_0
= (op2p1_out_0
- 0x1) & 0xf;
2293 OperandSem_opnd_sem_label8_decode (uint32
*valp
)
2295 unsigned label8_out_0
;
2296 unsigned label8_in_0
;
2297 label8_in_0
= *valp
& 0xff;
2298 label8_out_0
= 0x4 + (((int) label8_in_0
<< 24) >> 24);
2299 *valp
= label8_out_0
;
2304 OperandSem_opnd_sem_label8_encode (uint32
*valp
)
2306 unsigned label8_in_0
;
2307 unsigned label8_out_0
;
2308 label8_out_0
= *valp
;
2309 label8_in_0
= (label8_out_0
- 0x4) & 0xff;
2310 *valp
= label8_in_0
;
2315 OperandSem_opnd_sem_ulabel8_decode (uint32
*valp
)
2317 unsigned ulabel8_out_0
;
2318 unsigned ulabel8_in_0
;
2319 ulabel8_in_0
= *valp
& 0xff;
2320 ulabel8_out_0
= 0x4 + (((0) << 8) | ulabel8_in_0
);
2321 *valp
= ulabel8_out_0
;
2326 OperandSem_opnd_sem_ulabel8_encode (uint32
*valp
)
2328 unsigned ulabel8_in_0
;
2329 unsigned ulabel8_out_0
;
2330 ulabel8_out_0
= *valp
;
2331 ulabel8_in_0
= (ulabel8_out_0
- 0x4) & 0xff;
2332 *valp
= ulabel8_in_0
;
2337 OperandSem_opnd_sem_label12_decode (uint32
*valp
)
2339 unsigned label12_out_0
;
2340 unsigned label12_in_0
;
2341 label12_in_0
= *valp
& 0xfff;
2342 label12_out_0
= 0x4 + (((int) label12_in_0
<< 20) >> 20);
2343 *valp
= label12_out_0
;
2348 OperandSem_opnd_sem_label12_encode (uint32
*valp
)
2350 unsigned label12_in_0
;
2351 unsigned label12_out_0
;
2352 label12_out_0
= *valp
;
2353 label12_in_0
= (label12_out_0
- 0x4) & 0xfff;
2354 *valp
= label12_in_0
;
2359 OperandSem_opnd_sem_soffset_decode (uint32
*valp
)
2361 unsigned soffset_out_0
;
2362 unsigned soffset_in_0
;
2363 soffset_in_0
= *valp
& 0x3ffff;
2364 soffset_out_0
= 0x4 + (((int) soffset_in_0
<< 14) >> 14);
2365 *valp
= soffset_out_0
;
2370 OperandSem_opnd_sem_soffset_encode (uint32
*valp
)
2372 unsigned soffset_in_0
;
2373 unsigned soffset_out_0
;
2374 soffset_out_0
= *valp
;
2375 soffset_in_0
= (soffset_out_0
- 0x4) & 0x3ffff;
2376 *valp
= soffset_in_0
;
2381 OperandSem_opnd_sem_uimm16x4_decode (uint32
*valp
)
2383 unsigned uimm16x4_out_0
;
2384 unsigned uimm16x4_in_0
;
2385 uimm16x4_in_0
= *valp
& 0xffff;
2386 uimm16x4_out_0
= (((0xffff) << 16) | uimm16x4_in_0
) << 2;
2387 *valp
= uimm16x4_out_0
;
2392 OperandSem_opnd_sem_uimm16x4_encode (uint32
*valp
)
2394 unsigned uimm16x4_in_0
;
2395 unsigned uimm16x4_out_0
;
2396 uimm16x4_out_0
= *valp
;
2397 uimm16x4_in_0
= (uimm16x4_out_0
>> 2) & 0xffff;
2398 *valp
= uimm16x4_in_0
;
2403 OperandSem_opnd_sem_bbi_decode (uint32
*valp
)
2407 bbi_in_0
= *valp
& 0x1f;
2408 bbi_out_0
= (0 << 5) | bbi_in_0
;
2414 OperandSem_opnd_sem_bbi_encode (uint32
*valp
)
2419 bbi_in_0
= (bbi_out_0
& 0x1f);
2425 OperandSem_opnd_sem_s_decode (uint32
*valp
)
2429 s_in_0
= *valp
& 0xf;
2430 s_out_0
= (0 << 4) | s_in_0
;
2436 OperandSem_opnd_sem_s_encode (uint32
*valp
)
2441 s_in_0
= (s_out_0
& 0xf);
2447 OperandSem_opnd_sem_MR_decode (uint32
*valp ATTRIBUTE_UNUSED
)
2453 OperandSem_opnd_sem_MR_encode (uint32
*valp
)
2455 return (*valp
>= 4);
2459 OperandSem_opnd_sem_MR_1_decode (uint32
*valp ATTRIBUTE_UNUSED
)
2465 OperandSem_opnd_sem_MR_1_encode (uint32
*valp
)
2467 return (*valp
>= 4);
2471 OperandSem_opnd_sem_MR_2_decode (uint32
*valp ATTRIBUTE_UNUSED
)
2477 OperandSem_opnd_sem_MR_2_encode (uint32
*valp
)
2479 return (*valp
>= 4);
2483 OperandSem_opnd_sem_MR_3_decode (uint32
*valp ATTRIBUTE_UNUSED
)
2489 OperandSem_opnd_sem_MR_3_encode (uint32
*valp
)
2491 return (*valp
>= 4);
2495 OperandSem_opnd_sem_MR_4_decode (uint32
*valp ATTRIBUTE_UNUSED
)
2501 OperandSem_opnd_sem_MR_4_encode (uint32
*valp
)
2503 return (*valp
>= 4);
2507 OperandSem_opnd_sem_MR_5_decode (uint32
*valp ATTRIBUTE_UNUSED
)
2513 OperandSem_opnd_sem_MR_5_encode (uint32
*valp
)
2515 return (*valp
>= 4);
2519 OperandSem_opnd_sem_immt_decode (uint32
*valp
)
2521 unsigned immt_out_0
;
2523 immt_in_0
= *valp
& 0xf;
2524 immt_out_0
= immt_in_0
;
2530 OperandSem_opnd_sem_immt_encode (uint32
*valp
)
2533 unsigned immt_out_0
;
2535 immt_in_0
= immt_out_0
& 0xf;
2541 OperandSem_opnd_sem_tp7_decode (uint32
*valp
)
2545 tp7_in_0
= *valp
& 0xf;
2546 tp7_out_0
= tp7_in_0
+ 0x7;
2552 OperandSem_opnd_sem_tp7_encode (uint32
*valp
)
2557 tp7_in_0
= (tp7_out_0
- 0x7) & 0xf;
2563 OperandSem_opnd_sem_xt_wbr15_label_decode (uint32
*valp
)
2565 unsigned xt_wbr15_label_out_0
;
2566 unsigned xt_wbr15_label_in_0
;
2567 xt_wbr15_label_in_0
= *valp
& 0x7fff;
2568 xt_wbr15_label_out_0
= 0x4 + (((int) xt_wbr15_label_in_0
<< 17) >> 17);
2569 *valp
= xt_wbr15_label_out_0
;
2574 OperandSem_opnd_sem_xt_wbr15_label_encode (uint32
*valp
)
2576 unsigned xt_wbr15_label_in_0
;
2577 unsigned xt_wbr15_label_out_0
;
2578 xt_wbr15_label_out_0
= *valp
;
2579 xt_wbr15_label_in_0
= (xt_wbr15_label_out_0
- 0x4) & 0x7fff;
2580 *valp
= xt_wbr15_label_in_0
;
2585 OperandSem_opnd_sem_xt_wbr18_label_decode (uint32
*valp
)
2587 unsigned xt_wbr18_label_out_0
;
2588 unsigned xt_wbr18_label_in_0
;
2589 xt_wbr18_label_in_0
= *valp
& 0x3ffff;
2590 xt_wbr18_label_out_0
= 0x4 + (((int) xt_wbr18_label_in_0
<< 14) >> 14);
2591 *valp
= xt_wbr18_label_out_0
;
2596 OperandSem_opnd_sem_xt_wbr18_label_encode (uint32
*valp
)
2598 unsigned xt_wbr18_label_in_0
;
2599 unsigned xt_wbr18_label_out_0
;
2600 xt_wbr18_label_out_0
= *valp
;
2601 xt_wbr18_label_in_0
= (xt_wbr18_label_out_0
- 0x4) & 0x3ffff;
2602 *valp
= xt_wbr18_label_in_0
;
2607 OperandSem_opnd_sem_bitindex_decode (uint32
*valp
)
2609 unsigned bitindex_out_0
;
2610 unsigned bitindex_in_0
;
2611 bitindex_in_0
= *valp
& 0x1f;
2612 bitindex_out_0
= (0 << 5) | bitindex_in_0
;
2613 *valp
= bitindex_out_0
;
2618 OperandSem_opnd_sem_bitindex_encode (uint32
*valp
)
2620 unsigned bitindex_in_0
;
2621 unsigned bitindex_out_0
;
2622 bitindex_out_0
= *valp
;
2623 bitindex_in_0
= (bitindex_out_0
& 0x1f);
2624 *valp
= bitindex_in_0
;
2629 Operand_soffsetx4_ator (uint32
*valp
, uint32 pc
)
2631 *valp
-= (pc
& ~0x3);
2636 Operand_soffsetx4_rtoa (uint32
*valp
, uint32 pc
)
2638 *valp
+= (pc
& ~0x3);
2643 Operand_uimm6_ator (uint32
*valp
, uint32 pc
)
2650 Operand_uimm6_rtoa (uint32
*valp
, uint32 pc
)
2657 Operand_label8_ator (uint32
*valp
, uint32 pc
)
2664 Operand_label8_rtoa (uint32
*valp
, uint32 pc
)
2671 Operand_ulabel8_ator (uint32
*valp
, uint32 pc
)
2678 Operand_ulabel8_rtoa (uint32
*valp
, uint32 pc
)
2685 Operand_label12_ator (uint32
*valp
, uint32 pc
)
2692 Operand_label12_rtoa (uint32
*valp
, uint32 pc
)
2699 Operand_soffset_ator (uint32
*valp
, uint32 pc
)
2706 Operand_soffset_rtoa (uint32
*valp
, uint32 pc
)
2713 Operand_uimm16x4_ator (uint32
*valp
, uint32 pc
)
2715 *valp
-= ((pc
+ 3) & ~0x3);
2720 Operand_uimm16x4_rtoa (uint32
*valp
, uint32 pc
)
2722 *valp
+= ((pc
+ 3) & ~0x3);
2727 Operand_xt_wbr15_label_ator (uint32
*valp
, uint32 pc
)
2734 Operand_xt_wbr15_label_rtoa (uint32
*valp
, uint32 pc
)
2741 Operand_xt_wbr18_label_ator (uint32
*valp
, uint32 pc
)
2748 Operand_xt_wbr18_label_rtoa (uint32
*valp
, uint32 pc
)
2754 static xtensa_operand_internal operands
[] = {
2755 { "soffsetx4", FIELD_offset
, -1, 0,
2756 XTENSA_OPERAND_IS_PCRELATIVE
,
2757 OperandSem_opnd_sem_soffsetx4_encode
, OperandSem_opnd_sem_soffsetx4_decode
,
2758 Operand_soffsetx4_ator
, Operand_soffsetx4_rtoa
},
2759 { "uimm12x8", FIELD_imm12
, -1, 0,
2761 OperandSem_opnd_sem_uimm12x8_encode
, OperandSem_opnd_sem_uimm12x8_decode
,
2763 { "simm4", FIELD_mn
, -1, 0,
2765 OperandSem_opnd_sem_simm4_encode
, OperandSem_opnd_sem_simm4_decode
,
2767 { "arr", FIELD_r
, REGFILE_AR
, 1,
2768 XTENSA_OPERAND_IS_REGISTER
,
2769 OperandSem_opnd_sem_AR_encode
, OperandSem_opnd_sem_AR_decode
,
2771 { "ars", FIELD_s
, REGFILE_AR
, 1,
2772 XTENSA_OPERAND_IS_REGISTER
,
2773 OperandSem_opnd_sem_AR_encode
, OperandSem_opnd_sem_AR_decode
,
2775 { "*ars_invisible", FIELD_s
, REGFILE_AR
, 1,
2776 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2777 OperandSem_opnd_sem_AR_encode
, OperandSem_opnd_sem_AR_decode
,
2779 { "art", FIELD_t
, REGFILE_AR
, 1,
2780 XTENSA_OPERAND_IS_REGISTER
,
2781 OperandSem_opnd_sem_AR_encode
, OperandSem_opnd_sem_AR_decode
,
2783 { "ar0", FIELD__ar0
, REGFILE_AR
, 1,
2784 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2785 OperandSem_opnd_sem_AR_0_encode
, OperandSem_opnd_sem_AR_0_decode
,
2787 { "ar4", FIELD__ar4
, REGFILE_AR
, 1,
2788 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2789 OperandSem_opnd_sem_AR_1_encode
, OperandSem_opnd_sem_AR_1_decode
,
2791 { "ar8", FIELD__ar8
, REGFILE_AR
, 1,
2792 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2793 OperandSem_opnd_sem_AR_2_encode
, OperandSem_opnd_sem_AR_2_decode
,
2795 { "ar12", FIELD__ar12
, REGFILE_AR
, 1,
2796 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2797 OperandSem_opnd_sem_AR_3_encode
, OperandSem_opnd_sem_AR_3_decode
,
2799 { "ars_entry", FIELD_s
, REGFILE_AR
, 1,
2800 XTENSA_OPERAND_IS_REGISTER
,
2801 OperandSem_opnd_sem_AR_4_encode
, OperandSem_opnd_sem_AR_4_decode
,
2803 { "immrx4", FIELD_r
, -1, 0,
2805 OperandSem_opnd_sem_immrx4_encode
, OperandSem_opnd_sem_immrx4_decode
,
2807 { "lsi4x4", FIELD_r
, -1, 0,
2809 OperandSem_opnd_sem_lsi4x4_encode
, OperandSem_opnd_sem_lsi4x4_decode
,
2811 { "simm7", FIELD_imm7
, -1, 0,
2813 OperandSem_opnd_sem_simm7_encode
, OperandSem_opnd_sem_simm7_decode
,
2815 { "uimm6", FIELD_imm6
, -1, 0,
2816 XTENSA_OPERAND_IS_PCRELATIVE
,
2817 OperandSem_opnd_sem_uimm6_encode
, OperandSem_opnd_sem_uimm6_decode
,
2818 Operand_uimm6_ator
, Operand_uimm6_rtoa
},
2819 { "ai4const", FIELD_t
, -1, 0,
2821 OperandSem_opnd_sem_ai4const_encode
, OperandSem_opnd_sem_ai4const_decode
,
2823 { "b4const", FIELD_r
, -1, 0,
2825 OperandSem_opnd_sem_b4const_encode
, OperandSem_opnd_sem_b4const_decode
,
2827 { "b4constu", FIELD_r
, -1, 0,
2829 OperandSem_opnd_sem_b4constu_encode
, OperandSem_opnd_sem_b4constu_decode
,
2831 { "uimm8", FIELD_imm8
, -1, 0,
2833 OperandSem_opnd_sem_uimm8_encode
, OperandSem_opnd_sem_uimm8_decode
,
2835 { "uimm8x2", FIELD_imm8
, -1, 0,
2837 OperandSem_opnd_sem_uimm8x2_encode
, OperandSem_opnd_sem_uimm8x2_decode
,
2839 { "uimm8x4", FIELD_imm8
, -1, 0,
2841 OperandSem_opnd_sem_uimm8x4_encode
, OperandSem_opnd_sem_uimm8x4_decode
,
2843 { "uimm4x16", FIELD_op2
, -1, 0,
2845 OperandSem_opnd_sem_uimm4x16_encode
, OperandSem_opnd_sem_uimm4x16_decode
,
2847 { "uimmrx4", FIELD_r
, -1, 0,
2849 OperandSem_opnd_sem_uimmrx4_encode
, OperandSem_opnd_sem_uimmrx4_decode
,
2851 { "simm8", FIELD_imm8
, -1, 0,
2853 OperandSem_opnd_sem_simm8_encode
, OperandSem_opnd_sem_simm8_decode
,
2855 { "simm8x256", FIELD_imm8
, -1, 0,
2857 OperandSem_opnd_sem_simm8x256_encode
, OperandSem_opnd_sem_simm8x256_decode
,
2859 { "simm12b", FIELD_imm12b
, -1, 0,
2861 OperandSem_opnd_sem_simm12b_encode
, OperandSem_opnd_sem_simm12b_decode
,
2863 { "msalp32", FIELD_sal
, -1, 0,
2865 OperandSem_opnd_sem_msalp32_encode
, OperandSem_opnd_sem_msalp32_decode
,
2867 { "op2p1", FIELD_op2
, -1, 0,
2869 OperandSem_opnd_sem_op2p1_encode
, OperandSem_opnd_sem_op2p1_decode
,
2871 { "label8", FIELD_imm8
, -1, 0,
2872 XTENSA_OPERAND_IS_PCRELATIVE
,
2873 OperandSem_opnd_sem_label8_encode
, OperandSem_opnd_sem_label8_decode
,
2874 Operand_label8_ator
, Operand_label8_rtoa
},
2875 { "ulabel8", FIELD_imm8
, -1, 0,
2876 XTENSA_OPERAND_IS_PCRELATIVE
,
2877 OperandSem_opnd_sem_ulabel8_encode
, OperandSem_opnd_sem_ulabel8_decode
,
2878 Operand_ulabel8_ator
, Operand_ulabel8_rtoa
},
2879 { "label12", FIELD_imm12
, -1, 0,
2880 XTENSA_OPERAND_IS_PCRELATIVE
,
2881 OperandSem_opnd_sem_label12_encode
, OperandSem_opnd_sem_label12_decode
,
2882 Operand_label12_ator
, Operand_label12_rtoa
},
2883 { "soffset", FIELD_offset
, -1, 0,
2884 XTENSA_OPERAND_IS_PCRELATIVE
,
2885 OperandSem_opnd_sem_soffset_encode
, OperandSem_opnd_sem_soffset_decode
,
2886 Operand_soffset_ator
, Operand_soffset_rtoa
},
2887 { "uimm16x4", FIELD_imm16
, -1, 0,
2888 XTENSA_OPERAND_IS_PCRELATIVE
,
2889 OperandSem_opnd_sem_uimm16x4_encode
, OperandSem_opnd_sem_uimm16x4_decode
,
2890 Operand_uimm16x4_ator
, Operand_uimm16x4_rtoa
},
2891 { "bbi", FIELD_bbi
, -1, 0,
2893 OperandSem_opnd_sem_bbi_encode
, OperandSem_opnd_sem_bbi_decode
,
2895 { "sae", FIELD_sae
, -1, 0,
2897 OperandSem_opnd_sem_bbi_encode
, OperandSem_opnd_sem_bbi_decode
,
2899 { "sas", FIELD_sas
, -1, 0,
2901 OperandSem_opnd_sem_bbi_encode
, OperandSem_opnd_sem_bbi_decode
,
2903 { "sargt", FIELD_sargt
, -1, 0,
2905 OperandSem_opnd_sem_bbi_encode
, OperandSem_opnd_sem_bbi_decode
,
2907 { "s", FIELD_s
, -1, 0,
2909 OperandSem_opnd_sem_s_encode
, OperandSem_opnd_sem_s_decode
,
2911 { "mx", FIELD_x
, REGFILE_MR
, 1,
2912 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_UNKNOWN
,
2913 OperandSem_opnd_sem_MR_encode
, OperandSem_opnd_sem_MR_decode
,
2915 { "my", FIELD_y
, REGFILE_MR
, 1,
2916 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_UNKNOWN
,
2917 OperandSem_opnd_sem_MR_0_encode
, OperandSem_opnd_sem_MR_0_decode
,
2919 { "mw", FIELD_w
, REGFILE_MR
, 1,
2920 XTENSA_OPERAND_IS_REGISTER
,
2921 OperandSem_opnd_sem_MR_1_encode
, OperandSem_opnd_sem_MR_1_decode
,
2923 { "mr0", FIELD__mr0
, REGFILE_MR
, 1,
2924 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2925 OperandSem_opnd_sem_MR_2_encode
, OperandSem_opnd_sem_MR_2_decode
,
2927 { "mr1", FIELD__mr1
, REGFILE_MR
, 1,
2928 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2929 OperandSem_opnd_sem_MR_3_encode
, OperandSem_opnd_sem_MR_3_decode
,
2931 { "mr2", FIELD__mr2
, REGFILE_MR
, 1,
2932 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2933 OperandSem_opnd_sem_MR_4_encode
, OperandSem_opnd_sem_MR_4_decode
,
2935 { "mr3", FIELD__mr3
, REGFILE_MR
, 1,
2936 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2937 OperandSem_opnd_sem_MR_5_encode
, OperandSem_opnd_sem_MR_5_decode
,
2939 { "immt", FIELD_t
, -1, 0,
2941 OperandSem_opnd_sem_immt_encode
, OperandSem_opnd_sem_immt_decode
,
2943 { "imms", FIELD_s
, -1, 0,
2945 OperandSem_opnd_sem_immt_encode
, OperandSem_opnd_sem_immt_decode
,
2947 { "tp7", FIELD_t
, -1, 0,
2949 OperandSem_opnd_sem_tp7_encode
, OperandSem_opnd_sem_tp7_decode
,
2951 { "xt_wbr15_label", FIELD_xt_wbr15_imm
, -1, 0,
2952 XTENSA_OPERAND_IS_PCRELATIVE
,
2953 OperandSem_opnd_sem_xt_wbr15_label_encode
, OperandSem_opnd_sem_xt_wbr15_label_decode
,
2954 Operand_xt_wbr15_label_ator
, Operand_xt_wbr15_label_rtoa
},
2955 { "xt_wbr18_label", FIELD_xt_wbr18_imm
, -1, 0,
2956 XTENSA_OPERAND_IS_PCRELATIVE
,
2957 OperandSem_opnd_sem_xt_wbr18_label_encode
, OperandSem_opnd_sem_xt_wbr18_label_decode
,
2958 Operand_xt_wbr18_label_ator
, Operand_xt_wbr18_label_rtoa
},
2959 { "bitindex", FIELD_bitindex
, -1, 0,
2961 OperandSem_opnd_sem_bitindex_encode
, OperandSem_opnd_sem_bitindex_decode
,
2963 { "t", FIELD_t
, -1, 0, 0, 0, 0, 0, 0 },
2964 { "bbi4", FIELD_bbi4
, -1, 0, 0, 0, 0, 0, 0 },
2965 { "imm12", FIELD_imm12
, -1, 0, 0, 0, 0, 0, 0 },
2966 { "imm8", FIELD_imm8
, -1, 0, 0, 0, 0, 0, 0 },
2967 { "imm12b", FIELD_imm12b
, -1, 0, 0, 0, 0, 0, 0 },
2968 { "imm16", FIELD_imm16
, -1, 0, 0, 0, 0, 0, 0 },
2969 { "m", FIELD_m
, -1, 0, 0, 0, 0, 0, 0 },
2970 { "n", FIELD_n
, -1, 0, 0, 0, 0, 0, 0 },
2971 { "offset", FIELD_offset
, -1, 0, 0, 0, 0, 0, 0 },
2972 { "op0", FIELD_op0
, -1, 0, 0, 0, 0, 0, 0 },
2973 { "op1", FIELD_op1
, -1, 0, 0, 0, 0, 0, 0 },
2974 { "op2", FIELD_op2
, -1, 0, 0, 0, 0, 0, 0 },
2975 { "r", FIELD_r
, -1, 0, 0, 0, 0, 0, 0 },
2976 { "sa4", FIELD_sa4
, -1, 0, 0, 0, 0, 0, 0 },
2977 { "sae4", FIELD_sae4
, -1, 0, 0, 0, 0, 0, 0 },
2978 { "sal", FIELD_sal
, -1, 0, 0, 0, 0, 0, 0 },
2979 { "sas4", FIELD_sas4
, -1, 0, 0, 0, 0, 0, 0 },
2980 { "sr", FIELD_sr
, -1, 0, 0, 0, 0, 0, 0 },
2981 { "st", FIELD_st
, -1, 0, 0, 0, 0, 0, 0 },
2982 { "thi3", FIELD_thi3
, -1, 0, 0, 0, 0, 0, 0 },
2983 { "imm4", FIELD_imm4
, -1, 0, 0, 0, 0, 0, 0 },
2984 { "mn", FIELD_mn
, -1, 0, 0, 0, 0, 0, 0 },
2985 { "i", FIELD_i
, -1, 0, 0, 0, 0, 0, 0 },
2986 { "imm6lo", FIELD_imm6lo
, -1, 0, 0, 0, 0, 0, 0 },
2987 { "imm6hi", FIELD_imm6hi
, -1, 0, 0, 0, 0, 0, 0 },
2988 { "imm7lo", FIELD_imm7lo
, -1, 0, 0, 0, 0, 0, 0 },
2989 { "imm7hi", FIELD_imm7hi
, -1, 0, 0, 0, 0, 0, 0 },
2990 { "z", FIELD_z
, -1, 0, 0, 0, 0, 0, 0 },
2991 { "imm6", FIELD_imm6
, -1, 0, 0, 0, 0, 0, 0 },
2992 { "imm7", FIELD_imm7
, -1, 0, 0, 0, 0, 0, 0 },
2993 { "r3", FIELD_r3
, -1, 0, 0, 0, 0, 0, 0 },
2994 { "rbit2", FIELD_rbit2
, -1, 0, 0, 0, 0, 0, 0 },
2995 { "rhi", FIELD_rhi
, -1, 0, 0, 0, 0, 0, 0 },
2996 { "t3", FIELD_t3
, -1, 0, 0, 0, 0, 0, 0 },
2997 { "tbit2", FIELD_tbit2
, -1, 0, 0, 0, 0, 0, 0 },
2998 { "tlo", FIELD_tlo
, -1, 0, 0, 0, 0, 0, 0 },
2999 { "w", FIELD_w
, -1, 0, 0, 0, 0, 0, 0 },
3000 { "y", FIELD_y
, -1, 0, 0, 0, 0, 0, 0 },
3001 { "x", FIELD_x
, -1, 0, 0, 0, 0, 0, 0 },
3002 { "xt_wbr15_imm", FIELD_xt_wbr15_imm
, -1, 0, 0, 0, 0, 0, 0 },
3003 { "xt_wbr18_imm", FIELD_xt_wbr18_imm
, -1, 0, 0, 0, 0, 0, 0 },
3004 { "s3to1", FIELD_s3to1
, -1, 0, 0, 0, 0, 0, 0 }
3007 enum xtensa_operand_id
{
3013 OPERAND__ars_invisible
,
3057 OPERAND_xt_wbr15_label
,
3058 OPERAND_xt_wbr18_label
,
3099 OPERAND_xt_wbr15_imm
,
3100 OPERAND_xt_wbr18_imm
,
3107 static xtensa_arg_internal Iclass_xt_iclass_rfe_stateArgs
[] = {
3108 { { STATE_PSEXCM
}, 'o' },
3109 { { STATE_EPC1
}, 'i' }
3112 static xtensa_arg_internal Iclass_xt_iclass_rfde_stateArgs
[] = {
3113 { { STATE_DEPC
}, 'i' }
3116 static xtensa_arg_internal Iclass_xt_iclass_call12_args
[] = {
3117 { { OPERAND_soffsetx4
}, 'i' },
3118 { { OPERAND_ar12
}, 'o' }
3121 static xtensa_arg_internal Iclass_xt_iclass_call12_stateArgs
[] = {
3122 { { STATE_PSCALLINC
}, 'o' }
3125 static xtensa_arg_internal Iclass_xt_iclass_call8_args
[] = {
3126 { { OPERAND_soffsetx4
}, 'i' },
3127 { { OPERAND_ar8
}, 'o' }
3130 static xtensa_arg_internal Iclass_xt_iclass_call8_stateArgs
[] = {
3131 { { STATE_PSCALLINC
}, 'o' }
3134 static xtensa_arg_internal Iclass_xt_iclass_call4_args
[] = {
3135 { { OPERAND_soffsetx4
}, 'i' },
3136 { { OPERAND_ar4
}, 'o' }
3139 static xtensa_arg_internal Iclass_xt_iclass_call4_stateArgs
[] = {
3140 { { STATE_PSCALLINC
}, 'o' }
3143 static xtensa_arg_internal Iclass_xt_iclass_callx12_args
[] = {
3144 { { OPERAND_ars
}, 'i' },
3145 { { OPERAND_ar12
}, 'o' }
3148 static xtensa_arg_internal Iclass_xt_iclass_callx12_stateArgs
[] = {
3149 { { STATE_PSCALLINC
}, 'o' }
3152 static xtensa_arg_internal Iclass_xt_iclass_callx8_args
[] = {
3153 { { OPERAND_ars
}, 'i' },
3154 { { OPERAND_ar8
}, 'o' }
3157 static xtensa_arg_internal Iclass_xt_iclass_callx8_stateArgs
[] = {
3158 { { STATE_PSCALLINC
}, 'o' }
3161 static xtensa_arg_internal Iclass_xt_iclass_callx4_args
[] = {
3162 { { OPERAND_ars
}, 'i' },
3163 { { OPERAND_ar4
}, 'o' }
3166 static xtensa_arg_internal Iclass_xt_iclass_callx4_stateArgs
[] = {
3167 { { STATE_PSCALLINC
}, 'o' }
3170 static xtensa_arg_internal Iclass_xt_iclass_entry_args
[] = {
3171 { { OPERAND_ars_entry
}, 's' },
3172 { { OPERAND_ars
}, 'i' },
3173 { { OPERAND_uimm12x8
}, 'i' }
3176 static xtensa_arg_internal Iclass_xt_iclass_entry_stateArgs
[] = {
3177 { { STATE_PSCALLINC
}, 'i' },
3178 { { STATE_PSEXCM
}, 'i' },
3179 { { STATE_PSWOE
}, 'i' },
3180 { { STATE_WindowBase
}, 'm' },
3181 { { STATE_WindowStart
}, 'm' }
3184 static xtensa_arg_internal Iclass_xt_iclass_movsp_args
[] = {
3185 { { OPERAND_art
}, 'o' },
3186 { { OPERAND_ars
}, 'i' }
3189 static xtensa_arg_internal Iclass_xt_iclass_movsp_stateArgs
[] = {
3190 { { STATE_WindowBase
}, 'i' },
3191 { { STATE_WindowStart
}, 'i' }
3194 static xtensa_arg_internal Iclass_xt_iclass_rotw_args
[] = {
3195 { { OPERAND_simm4
}, 'i' }
3198 static xtensa_arg_internal Iclass_xt_iclass_rotw_stateArgs
[] = {
3199 { { STATE_WindowBase
}, 'm' }
3202 static xtensa_arg_internal Iclass_xt_iclass_retw_args
[] = {
3203 { { OPERAND__ars_invisible
}, 'i' }
3206 static xtensa_arg_internal Iclass_xt_iclass_retw_stateArgs
[] = {
3207 { { STATE_WindowBase
}, 'm' },
3208 { { STATE_WindowStart
}, 'm' },
3209 { { STATE_PSCALLINC
}, 'o' },
3210 { { STATE_PSEXCM
}, 'i' },
3211 { { STATE_PSWOE
}, 'i' }
3214 static xtensa_arg_internal Iclass_xt_iclass_rfwou_stateArgs
[] = {
3215 { { STATE_EPC1
}, 'i' },
3216 { { STATE_PSEXCM
}, 'o' },
3217 { { STATE_WindowBase
}, 'm' },
3218 { { STATE_WindowStart
}, 'm' },
3219 { { STATE_PSOWB
}, 'i' }
3222 static xtensa_arg_internal Iclass_xt_iclass_l32e_args
[] = {
3223 { { OPERAND_art
}, 'o' },
3224 { { OPERAND_ars
}, 'i' },
3225 { { OPERAND_immrx4
}, 'i' }
3228 static xtensa_arg_internal Iclass_xt_iclass_s32e_args
[] = {
3229 { { OPERAND_art
}, 'i' },
3230 { { OPERAND_ars
}, 'i' },
3231 { { OPERAND_immrx4
}, 'i' }
3234 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowbase_args
[] = {
3235 { { OPERAND_art
}, 'o' }
3238 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowbase_stateArgs
[] = {
3239 { { STATE_WindowBase
}, 'i' }
3242 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowbase_args
[] = {
3243 { { OPERAND_art
}, 'i' }
3246 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowbase_stateArgs
[] = {
3247 { { STATE_WindowBase
}, 'o' }
3250 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowbase_args
[] = {
3251 { { OPERAND_art
}, 'm' }
3254 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowbase_stateArgs
[] = {
3255 { { STATE_WindowBase
}, 'm' }
3258 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowstart_args
[] = {
3259 { { OPERAND_art
}, 'o' }
3262 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowstart_stateArgs
[] = {
3263 { { STATE_WindowStart
}, 'i' }
3266 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowstart_args
[] = {
3267 { { OPERAND_art
}, 'i' }
3270 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowstart_stateArgs
[] = {
3271 { { STATE_WindowStart
}, 'o' }
3274 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowstart_args
[] = {
3275 { { OPERAND_art
}, 'm' }
3278 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowstart_stateArgs
[] = {
3279 { { STATE_WindowStart
}, 'm' }
3282 static xtensa_arg_internal Iclass_xt_iclass_add_n_args
[] = {
3283 { { OPERAND_arr
}, 'o' },
3284 { { OPERAND_ars
}, 'i' },
3285 { { OPERAND_art
}, 'i' }
3288 static xtensa_arg_internal Iclass_xt_iclass_addi_n_args
[] = {
3289 { { OPERAND_arr
}, 'o' },
3290 { { OPERAND_ars
}, 'i' },
3291 { { OPERAND_ai4const
}, 'i' }
3294 static xtensa_arg_internal Iclass_xt_iclass_bz6_args
[] = {
3295 { { OPERAND_ars
}, 'i' },
3296 { { OPERAND_uimm6
}, 'i' }
3299 static xtensa_arg_internal Iclass_xt_iclass_loadi4_args
[] = {
3300 { { OPERAND_art
}, 'o' },
3301 { { OPERAND_ars
}, 'i' },
3302 { { OPERAND_lsi4x4
}, 'i' }
3305 static xtensa_arg_internal Iclass_xt_iclass_mov_n_args
[] = {
3306 { { OPERAND_art
}, 'o' },
3307 { { OPERAND_ars
}, 'i' }
3310 static xtensa_arg_internal Iclass_xt_iclass_movi_n_args
[] = {
3311 { { OPERAND_ars
}, 'o' },
3312 { { OPERAND_simm7
}, 'i' }
3315 static xtensa_arg_internal Iclass_xt_iclass_retn_args
[] = {
3316 { { OPERAND__ars_invisible
}, 'i' }
3319 static xtensa_arg_internal Iclass_xt_iclass_storei4_args
[] = {
3320 { { OPERAND_art
}, 'i' },
3321 { { OPERAND_ars
}, 'i' },
3322 { { OPERAND_lsi4x4
}, 'i' }
3325 static xtensa_arg_internal Iclass_xt_iclass_addi_args
[] = {
3326 { { OPERAND_art
}, 'o' },
3327 { { OPERAND_ars
}, 'i' },
3328 { { OPERAND_simm8
}, 'i' }
3331 static xtensa_arg_internal Iclass_xt_iclass_addmi_args
[] = {
3332 { { OPERAND_art
}, 'o' },
3333 { { OPERAND_ars
}, 'i' },
3334 { { OPERAND_simm8x256
}, 'i' }
3337 static xtensa_arg_internal Iclass_xt_iclass_addsub_args
[] = {
3338 { { OPERAND_arr
}, 'o' },
3339 { { OPERAND_ars
}, 'i' },
3340 { { OPERAND_art
}, 'i' }
3343 static xtensa_arg_internal Iclass_xt_iclass_bit_args
[] = {
3344 { { OPERAND_arr
}, 'o' },
3345 { { OPERAND_ars
}, 'i' },
3346 { { OPERAND_art
}, 'i' }
3349 static xtensa_arg_internal Iclass_xt_iclass_bsi8_args
[] = {
3350 { { OPERAND_ars
}, 'i' },
3351 { { OPERAND_b4const
}, 'i' },
3352 { { OPERAND_label8
}, 'i' }
3355 static xtensa_arg_internal Iclass_xt_iclass_bsi8b_args
[] = {
3356 { { OPERAND_ars
}, 'i' },
3357 { { OPERAND_bbi
}, 'i' },
3358 { { OPERAND_label8
}, 'i' }
3361 static xtensa_arg_internal Iclass_xt_iclass_bsi8u_args
[] = {
3362 { { OPERAND_ars
}, 'i' },
3363 { { OPERAND_b4constu
}, 'i' },
3364 { { OPERAND_label8
}, 'i' }
3367 static xtensa_arg_internal Iclass_xt_iclass_bst8_args
[] = {
3368 { { OPERAND_ars
}, 'i' },
3369 { { OPERAND_art
}, 'i' },
3370 { { OPERAND_label8
}, 'i' }
3373 static xtensa_arg_internal Iclass_xt_iclass_bsz12_args
[] = {
3374 { { OPERAND_ars
}, 'i' },
3375 { { OPERAND_label12
}, 'i' }
3378 static xtensa_arg_internal Iclass_xt_iclass_call0_args
[] = {
3379 { { OPERAND_soffsetx4
}, 'i' },
3380 { { OPERAND_ar0
}, 'o' }
3383 static xtensa_arg_internal Iclass_xt_iclass_callx0_args
[] = {
3384 { { OPERAND_ars
}, 'i' },
3385 { { OPERAND_ar0
}, 'o' }
3388 static xtensa_arg_internal Iclass_xt_iclass_exti_args
[] = {
3389 { { OPERAND_arr
}, 'o' },
3390 { { OPERAND_art
}, 'i' },
3391 { { OPERAND_sae
}, 'i' },
3392 { { OPERAND_op2p1
}, 'i' }
3395 static xtensa_arg_internal Iclass_xt_iclass_jump_args
[] = {
3396 { { OPERAND_soffset
}, 'i' }
3399 static xtensa_arg_internal Iclass_xt_iclass_jumpx_args
[] = {
3400 { { OPERAND_ars
}, 'i' }
3403 static xtensa_arg_internal Iclass_xt_iclass_l16ui_args
[] = {
3404 { { OPERAND_art
}, 'o' },
3405 { { OPERAND_ars
}, 'i' },
3406 { { OPERAND_uimm8x2
}, 'i' }
3409 static xtensa_arg_internal Iclass_xt_iclass_l16si_args
[] = {
3410 { { OPERAND_art
}, 'o' },
3411 { { OPERAND_ars
}, 'i' },
3412 { { OPERAND_uimm8x2
}, 'i' }
3415 static xtensa_arg_internal Iclass_xt_iclass_l32i_args
[] = {
3416 { { OPERAND_art
}, 'o' },
3417 { { OPERAND_ars
}, 'i' },
3418 { { OPERAND_uimm8x4
}, 'i' }
3421 static xtensa_arg_internal Iclass_xt_iclass_l32r_args
[] = {
3422 { { OPERAND_art
}, 'o' },
3423 { { OPERAND_uimm16x4
}, 'i' }
3426 static xtensa_arg_internal Iclass_xt_iclass_l8i_args
[] = {
3427 { { OPERAND_art
}, 'o' },
3428 { { OPERAND_ars
}, 'i' },
3429 { { OPERAND_uimm8
}, 'i' }
3432 static xtensa_arg_internal Iclass_xt_iclass_loop_args
[] = {
3433 { { OPERAND_ars
}, 'i' },
3434 { { OPERAND_ulabel8
}, 'i' }
3437 static xtensa_arg_internal Iclass_xt_iclass_loop_stateArgs
[] = {
3438 { { STATE_LBEG
}, 'o' },
3439 { { STATE_LEND
}, 'o' },
3440 { { STATE_LCOUNT
}, 'o' }
3443 static xtensa_arg_internal Iclass_xt_iclass_loopz_args
[] = {
3444 { { OPERAND_ars
}, 'i' },
3445 { { OPERAND_ulabel8
}, 'i' }
3448 static xtensa_arg_internal Iclass_xt_iclass_loopz_stateArgs
[] = {
3449 { { STATE_LBEG
}, 'o' },
3450 { { STATE_LEND
}, 'o' },
3451 { { STATE_LCOUNT
}, 'o' }
3454 static xtensa_arg_internal Iclass_xt_iclass_movi_args
[] = {
3455 { { OPERAND_art
}, 'o' },
3456 { { OPERAND_simm12b
}, 'i' }
3459 static xtensa_arg_internal Iclass_xt_iclass_movz_args
[] = {
3460 { { OPERAND_arr
}, 'm' },
3461 { { OPERAND_ars
}, 'i' },
3462 { { OPERAND_art
}, 'i' }
3465 static xtensa_arg_internal Iclass_xt_iclass_neg_args
[] = {
3466 { { OPERAND_arr
}, 'o' },
3467 { { OPERAND_art
}, 'i' }
3470 static xtensa_arg_internal Iclass_xt_iclass_return_args
[] = {
3471 { { OPERAND__ars_invisible
}, 'i' }
3474 static xtensa_arg_internal Iclass_xt_iclass_s16i_args
[] = {
3475 { { OPERAND_art
}, 'i' },
3476 { { OPERAND_ars
}, 'i' },
3477 { { OPERAND_uimm8x2
}, 'i' }
3480 static xtensa_arg_internal Iclass_xt_iclass_s32i_args
[] = {
3481 { { OPERAND_art
}, 'i' },
3482 { { OPERAND_ars
}, 'i' },
3483 { { OPERAND_uimm8x4
}, 'i' }
3486 static xtensa_arg_internal Iclass_xt_iclass_s32nb_args
[] = {
3487 { { OPERAND_art
}, 'i' },
3488 { { OPERAND_ars
}, 'i' },
3489 { { OPERAND_uimmrx4
}, 'i' }
3492 static xtensa_arg_internal Iclass_xt_iclass_s8i_args
[] = {
3493 { { OPERAND_art
}, 'i' },
3494 { { OPERAND_ars
}, 'i' },
3495 { { OPERAND_uimm8
}, 'i' }
3498 static xtensa_arg_internal Iclass_xt_iclass_sar_args
[] = {
3499 { { OPERAND_ars
}, 'i' }
3502 static xtensa_arg_internal Iclass_xt_iclass_sar_stateArgs
[] = {
3503 { { STATE_SAR
}, 'o' }
3506 static xtensa_arg_internal Iclass_xt_iclass_sari_args
[] = {
3507 { { OPERAND_sas
}, 'i' }
3510 static xtensa_arg_internal Iclass_xt_iclass_sari_stateArgs
[] = {
3511 { { STATE_SAR
}, 'o' }
3514 static xtensa_arg_internal Iclass_xt_iclass_shifts_args
[] = {
3515 { { OPERAND_arr
}, 'o' },
3516 { { OPERAND_ars
}, 'i' }
3519 static xtensa_arg_internal Iclass_xt_iclass_shifts_stateArgs
[] = {
3520 { { STATE_SAR
}, 'i' }
3523 static xtensa_arg_internal Iclass_xt_iclass_shiftst_args
[] = {
3524 { { OPERAND_arr
}, 'o' },
3525 { { OPERAND_ars
}, 'i' },
3526 { { OPERAND_art
}, 'i' }
3529 static xtensa_arg_internal Iclass_xt_iclass_shiftst_stateArgs
[] = {
3530 { { STATE_SAR
}, 'i' }
3533 static xtensa_arg_internal Iclass_xt_iclass_shiftt_args
[] = {
3534 { { OPERAND_arr
}, 'o' },
3535 { { OPERAND_art
}, 'i' }
3538 static xtensa_arg_internal Iclass_xt_iclass_shiftt_stateArgs
[] = {
3539 { { STATE_SAR
}, 'i' }
3542 static xtensa_arg_internal Iclass_xt_iclass_slli_args
[] = {
3543 { { OPERAND_arr
}, 'o' },
3544 { { OPERAND_ars
}, 'i' },
3545 { { OPERAND_msalp32
}, 'i' }
3548 static xtensa_arg_internal Iclass_xt_iclass_srai_args
[] = {
3549 { { OPERAND_arr
}, 'o' },
3550 { { OPERAND_art
}, 'i' },
3551 { { OPERAND_sargt
}, 'i' }
3554 static xtensa_arg_internal Iclass_xt_iclass_srli_args
[] = {
3555 { { OPERAND_arr
}, 'o' },
3556 { { OPERAND_art
}, 'i' },
3557 { { OPERAND_s
}, 'i' }
3560 static xtensa_arg_internal Iclass_xt_iclass_sync_stateArgs
[] = {
3561 { { STATE_XTSYNC
}, 'i' }
3564 static xtensa_arg_internal Iclass_xt_iclass_rsil_args
[] = {
3565 { { OPERAND_art
}, 'o' },
3566 { { OPERAND_s
}, 'i' }
3569 static xtensa_arg_internal Iclass_xt_iclass_rsil_stateArgs
[] = {
3570 { { STATE_PSWOE
}, 'i' },
3571 { { STATE_PSCALLINC
}, 'i' },
3572 { { STATE_PSOWB
}, 'i' },
3573 { { STATE_PSUM
}, 'i' },
3574 { { STATE_PSEXCM
}, 'i' },
3575 { { STATE_PSINTLEVEL
}, 'm' }
3578 static xtensa_arg_internal Iclass_xt_iclass_rsr_lend_args
[] = {
3579 { { OPERAND_art
}, 'o' }
3582 static xtensa_arg_internal Iclass_xt_iclass_rsr_lend_stateArgs
[] = {
3583 { { STATE_LEND
}, 'i' }
3586 static xtensa_arg_internal Iclass_xt_iclass_wsr_lend_args
[] = {
3587 { { OPERAND_art
}, 'i' }
3590 static xtensa_arg_internal Iclass_xt_iclass_wsr_lend_stateArgs
[] = {
3591 { { STATE_LEND
}, 'o' }
3594 static xtensa_arg_internal Iclass_xt_iclass_xsr_lend_args
[] = {
3595 { { OPERAND_art
}, 'm' }
3598 static xtensa_arg_internal Iclass_xt_iclass_xsr_lend_stateArgs
[] = {
3599 { { STATE_LEND
}, 'm' }
3602 static xtensa_arg_internal Iclass_xt_iclass_rsr_lcount_args
[] = {
3603 { { OPERAND_art
}, 'o' }
3606 static xtensa_arg_internal Iclass_xt_iclass_rsr_lcount_stateArgs
[] = {
3607 { { STATE_LCOUNT
}, 'i' }
3610 static xtensa_arg_internal Iclass_xt_iclass_wsr_lcount_args
[] = {
3611 { { OPERAND_art
}, 'i' }
3614 static xtensa_arg_internal Iclass_xt_iclass_wsr_lcount_stateArgs
[] = {
3615 { { STATE_XTSYNC
}, 'o' },
3616 { { STATE_LCOUNT
}, 'o' }
3619 static xtensa_arg_internal Iclass_xt_iclass_xsr_lcount_args
[] = {
3620 { { OPERAND_art
}, 'm' }
3623 static xtensa_arg_internal Iclass_xt_iclass_xsr_lcount_stateArgs
[] = {
3624 { { STATE_XTSYNC
}, 'o' },
3625 { { STATE_LCOUNT
}, 'm' }
3628 static xtensa_arg_internal Iclass_xt_iclass_rsr_lbeg_args
[] = {
3629 { { OPERAND_art
}, 'o' }
3632 static xtensa_arg_internal Iclass_xt_iclass_rsr_lbeg_stateArgs
[] = {
3633 { { STATE_LBEG
}, 'i' }
3636 static xtensa_arg_internal Iclass_xt_iclass_wsr_lbeg_args
[] = {
3637 { { OPERAND_art
}, 'i' }
3640 static xtensa_arg_internal Iclass_xt_iclass_wsr_lbeg_stateArgs
[] = {
3641 { { STATE_LBEG
}, 'o' }
3644 static xtensa_arg_internal Iclass_xt_iclass_xsr_lbeg_args
[] = {
3645 { { OPERAND_art
}, 'm' }
3648 static xtensa_arg_internal Iclass_xt_iclass_xsr_lbeg_stateArgs
[] = {
3649 { { STATE_LBEG
}, 'm' }
3652 static xtensa_arg_internal Iclass_xt_iclass_rsr_sar_args
[] = {
3653 { { OPERAND_art
}, 'o' }
3656 static xtensa_arg_internal Iclass_xt_iclass_rsr_sar_stateArgs
[] = {
3657 { { STATE_SAR
}, 'i' }
3660 static xtensa_arg_internal Iclass_xt_iclass_wsr_sar_args
[] = {
3661 { { OPERAND_art
}, 'i' }
3664 static xtensa_arg_internal Iclass_xt_iclass_wsr_sar_stateArgs
[] = {
3665 { { STATE_SAR
}, 'o' },
3666 { { STATE_XTSYNC
}, 'o' }
3669 static xtensa_arg_internal Iclass_xt_iclass_xsr_sar_args
[] = {
3670 { { OPERAND_art
}, 'm' }
3673 static xtensa_arg_internal Iclass_xt_iclass_xsr_sar_stateArgs
[] = {
3674 { { STATE_SAR
}, 'm' }
3677 static xtensa_arg_internal Iclass_xt_iclass_rsr_memctl_args
[] = {
3678 { { OPERAND_art
}, 'o' }
3681 static xtensa_arg_internal Iclass_xt_iclass_wsr_memctl_args
[] = {
3682 { { OPERAND_art
}, 'i' }
3685 static xtensa_arg_internal Iclass_xt_iclass_xsr_memctl_args
[] = {
3686 { { OPERAND_art
}, 'm' }
3689 static xtensa_arg_internal Iclass_xt_iclass_rsr_litbase_args
[] = {
3690 { { OPERAND_art
}, 'o' }
3693 static xtensa_arg_internal Iclass_xt_iclass_wsr_litbase_args
[] = {
3694 { { OPERAND_art
}, 'i' }
3697 static xtensa_arg_internal Iclass_xt_iclass_xsr_litbase_args
[] = {
3698 { { OPERAND_art
}, 'm' }
3701 static xtensa_arg_internal Iclass_xt_iclass_rsr_configid0_args
[] = {
3702 { { OPERAND_art
}, 'o' }
3705 static xtensa_arg_internal Iclass_xt_iclass_wsr_configid0_args
[] = {
3706 { { OPERAND_art
}, 'i' }
3709 static xtensa_arg_internal Iclass_xt_iclass_rsr_configid1_args
[] = {
3710 { { OPERAND_art
}, 'o' }
3713 static xtensa_arg_internal Iclass_xt_iclass_rsr_ps_args
[] = {
3714 { { OPERAND_art
}, 'o' }
3717 static xtensa_arg_internal Iclass_xt_iclass_rsr_ps_stateArgs
[] = {
3718 { { STATE_PSWOE
}, 'i' },
3719 { { STATE_PSCALLINC
}, 'i' },
3720 { { STATE_PSOWB
}, 'i' },
3721 { { STATE_PSUM
}, 'i' },
3722 { { STATE_PSEXCM
}, 'i' },
3723 { { STATE_PSINTLEVEL
}, 'i' }
3726 static xtensa_arg_internal Iclass_xt_iclass_wsr_ps_args
[] = {
3727 { { OPERAND_art
}, 'i' }
3730 static xtensa_arg_internal Iclass_xt_iclass_wsr_ps_stateArgs
[] = {
3731 { { STATE_PSWOE
}, 'o' },
3732 { { STATE_PSCALLINC
}, 'o' },
3733 { { STATE_PSOWB
}, 'o' },
3734 { { STATE_PSUM
}, 'o' },
3735 { { STATE_PSEXCM
}, 'o' },
3736 { { STATE_PSINTLEVEL
}, 'o' }
3739 static xtensa_arg_internal Iclass_xt_iclass_xsr_ps_args
[] = {
3740 { { OPERAND_art
}, 'm' }
3743 static xtensa_arg_internal Iclass_xt_iclass_xsr_ps_stateArgs
[] = {
3744 { { STATE_PSWOE
}, 'm' },
3745 { { STATE_PSCALLINC
}, 'm' },
3746 { { STATE_PSOWB
}, 'm' },
3747 { { STATE_PSUM
}, 'm' },
3748 { { STATE_PSEXCM
}, 'm' },
3749 { { STATE_PSINTLEVEL
}, 'm' }
3752 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc1_args
[] = {
3753 { { OPERAND_art
}, 'o' }
3756 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc1_stateArgs
[] = {
3757 { { STATE_EPC1
}, 'i' }
3760 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc1_args
[] = {
3761 { { OPERAND_art
}, 'i' }
3764 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc1_stateArgs
[] = {
3765 { { STATE_EPC1
}, 'o' }
3768 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc1_args
[] = {
3769 { { OPERAND_art
}, 'm' }
3772 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc1_stateArgs
[] = {
3773 { { STATE_EPC1
}, 'm' }
3776 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave1_args
[] = {
3777 { { OPERAND_art
}, 'o' }
3780 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave1_stateArgs
[] = {
3781 { { STATE_EXCSAVE1
}, 'i' }
3784 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave1_args
[] = {
3785 { { OPERAND_art
}, 'i' }
3788 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave1_stateArgs
[] = {
3789 { { STATE_EXCSAVE1
}, 'o' }
3792 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave1_args
[] = {
3793 { { OPERAND_art
}, 'm' }
3796 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave1_stateArgs
[] = {
3797 { { STATE_EXCSAVE1
}, 'm' }
3800 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc2_args
[] = {
3801 { { OPERAND_art
}, 'o' }
3804 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc2_stateArgs
[] = {
3805 { { STATE_EPC2
}, 'i' }
3808 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc2_args
[] = {
3809 { { OPERAND_art
}, 'i' }
3812 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc2_stateArgs
[] = {
3813 { { STATE_EPC2
}, 'o' }
3816 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc2_args
[] = {
3817 { { OPERAND_art
}, 'm' }
3820 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc2_stateArgs
[] = {
3821 { { STATE_EPC2
}, 'm' }
3824 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave2_args
[] = {
3825 { { OPERAND_art
}, 'o' }
3828 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave2_stateArgs
[] = {
3829 { { STATE_EXCSAVE2
}, 'i' }
3832 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave2_args
[] = {
3833 { { OPERAND_art
}, 'i' }
3836 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave2_stateArgs
[] = {
3837 { { STATE_EXCSAVE2
}, 'o' }
3840 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave2_args
[] = {
3841 { { OPERAND_art
}, 'm' }
3844 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave2_stateArgs
[] = {
3845 { { STATE_EXCSAVE2
}, 'm' }
3848 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc3_args
[] = {
3849 { { OPERAND_art
}, 'o' }
3852 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc3_stateArgs
[] = {
3853 { { STATE_EPC3
}, 'i' }
3856 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc3_args
[] = {
3857 { { OPERAND_art
}, 'i' }
3860 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc3_stateArgs
[] = {
3861 { { STATE_EPC3
}, 'o' }
3864 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc3_args
[] = {
3865 { { OPERAND_art
}, 'm' }
3868 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc3_stateArgs
[] = {
3869 { { STATE_EPC3
}, 'm' }
3872 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave3_args
[] = {
3873 { { OPERAND_art
}, 'o' }
3876 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave3_stateArgs
[] = {
3877 { { STATE_EXCSAVE3
}, 'i' }
3880 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave3_args
[] = {
3881 { { OPERAND_art
}, 'i' }
3884 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave3_stateArgs
[] = {
3885 { { STATE_EXCSAVE3
}, 'o' }
3888 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave3_args
[] = {
3889 { { OPERAND_art
}, 'm' }
3892 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave3_stateArgs
[] = {
3893 { { STATE_EXCSAVE3
}, 'm' }
3896 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc4_args
[] = {
3897 { { OPERAND_art
}, 'o' }
3900 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc4_stateArgs
[] = {
3901 { { STATE_EPC4
}, 'i' }
3904 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc4_args
[] = {
3905 { { OPERAND_art
}, 'i' }
3908 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc4_stateArgs
[] = {
3909 { { STATE_EPC4
}, 'o' }
3912 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc4_args
[] = {
3913 { { OPERAND_art
}, 'm' }
3916 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc4_stateArgs
[] = {
3917 { { STATE_EPC4
}, 'm' }
3920 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave4_args
[] = {
3921 { { OPERAND_art
}, 'o' }
3924 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave4_stateArgs
[] = {
3925 { { STATE_EXCSAVE4
}, 'i' }
3928 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave4_args
[] = {
3929 { { OPERAND_art
}, 'i' }
3932 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave4_stateArgs
[] = {
3933 { { STATE_EXCSAVE4
}, 'o' }
3936 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave4_args
[] = {
3937 { { OPERAND_art
}, 'm' }
3940 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave4_stateArgs
[] = {
3941 { { STATE_EXCSAVE4
}, 'm' }
3944 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc5_args
[] = {
3945 { { OPERAND_art
}, 'o' }
3948 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc5_stateArgs
[] = {
3949 { { STATE_EPC5
}, 'i' }
3952 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc5_args
[] = {
3953 { { OPERAND_art
}, 'i' }
3956 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc5_stateArgs
[] = {
3957 { { STATE_EPC5
}, 'o' }
3960 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc5_args
[] = {
3961 { { OPERAND_art
}, 'm' }
3964 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc5_stateArgs
[] = {
3965 { { STATE_EPC5
}, 'm' }
3968 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave5_args
[] = {
3969 { { OPERAND_art
}, 'o' }
3972 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave5_stateArgs
[] = {
3973 { { STATE_EXCSAVE5
}, 'i' }
3976 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave5_args
[] = {
3977 { { OPERAND_art
}, 'i' }
3980 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave5_stateArgs
[] = {
3981 { { STATE_EXCSAVE5
}, 'o' }
3984 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave5_args
[] = {
3985 { { OPERAND_art
}, 'm' }
3988 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave5_stateArgs
[] = {
3989 { { STATE_EXCSAVE5
}, 'm' }
3992 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc6_args
[] = {
3993 { { OPERAND_art
}, 'o' }
3996 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc6_stateArgs
[] = {
3997 { { STATE_EPC6
}, 'i' }
4000 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc6_args
[] = {
4001 { { OPERAND_art
}, 'i' }
4004 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc6_stateArgs
[] = {
4005 { { STATE_EPC6
}, 'o' }
4008 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc6_args
[] = {
4009 { { OPERAND_art
}, 'm' }
4012 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc6_stateArgs
[] = {
4013 { { STATE_EPC6
}, 'm' }
4016 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave6_args
[] = {
4017 { { OPERAND_art
}, 'o' }
4020 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave6_stateArgs
[] = {
4021 { { STATE_EXCSAVE6
}, 'i' }
4024 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave6_args
[] = {
4025 { { OPERAND_art
}, 'i' }
4028 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave6_stateArgs
[] = {
4029 { { STATE_EXCSAVE6
}, 'o' }
4032 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave6_args
[] = {
4033 { { OPERAND_art
}, 'm' }
4036 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave6_stateArgs
[] = {
4037 { { STATE_EXCSAVE6
}, 'm' }
4040 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc7_args
[] = {
4041 { { OPERAND_art
}, 'o' }
4044 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc7_stateArgs
[] = {
4045 { { STATE_EPC7
}, 'i' }
4048 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc7_args
[] = {
4049 { { OPERAND_art
}, 'i' }
4052 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc7_stateArgs
[] = {
4053 { { STATE_EPC7
}, 'o' }
4056 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc7_args
[] = {
4057 { { OPERAND_art
}, 'm' }
4060 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc7_stateArgs
[] = {
4061 { { STATE_EPC7
}, 'm' }
4064 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave7_args
[] = {
4065 { { OPERAND_art
}, 'o' }
4068 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave7_stateArgs
[] = {
4069 { { STATE_EXCSAVE7
}, 'i' }
4072 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave7_args
[] = {
4073 { { OPERAND_art
}, 'i' }
4076 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave7_stateArgs
[] = {
4077 { { STATE_EXCSAVE7
}, 'o' }
4080 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave7_args
[] = {
4081 { { OPERAND_art
}, 'm' }
4084 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave7_stateArgs
[] = {
4085 { { STATE_EXCSAVE7
}, 'm' }
4088 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps2_args
[] = {
4089 { { OPERAND_art
}, 'o' }
4092 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps2_stateArgs
[] = {
4093 { { STATE_EPS2
}, 'i' }
4096 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps2_args
[] = {
4097 { { OPERAND_art
}, 'i' }
4100 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps2_stateArgs
[] = {
4101 { { STATE_EPS2
}, 'o' }
4104 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps2_args
[] = {
4105 { { OPERAND_art
}, 'm' }
4108 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps2_stateArgs
[] = {
4109 { { STATE_EPS2
}, 'm' }
4112 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps3_args
[] = {
4113 { { OPERAND_art
}, 'o' }
4116 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps3_stateArgs
[] = {
4117 { { STATE_EPS3
}, 'i' }
4120 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps3_args
[] = {
4121 { { OPERAND_art
}, 'i' }
4124 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps3_stateArgs
[] = {
4125 { { STATE_EPS3
}, 'o' }
4128 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps3_args
[] = {
4129 { { OPERAND_art
}, 'm' }
4132 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps3_stateArgs
[] = {
4133 { { STATE_EPS3
}, 'm' }
4136 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps4_args
[] = {
4137 { { OPERAND_art
}, 'o' }
4140 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps4_stateArgs
[] = {
4141 { { STATE_EPS4
}, 'i' }
4144 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps4_args
[] = {
4145 { { OPERAND_art
}, 'i' }
4148 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps4_stateArgs
[] = {
4149 { { STATE_EPS4
}, 'o' }
4152 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps4_args
[] = {
4153 { { OPERAND_art
}, 'm' }
4156 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps4_stateArgs
[] = {
4157 { { STATE_EPS4
}, 'm' }
4160 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps5_args
[] = {
4161 { { OPERAND_art
}, 'o' }
4164 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps5_stateArgs
[] = {
4165 { { STATE_EPS5
}, 'i' }
4168 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps5_args
[] = {
4169 { { OPERAND_art
}, 'i' }
4172 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps5_stateArgs
[] = {
4173 { { STATE_EPS5
}, 'o' }
4176 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps5_args
[] = {
4177 { { OPERAND_art
}, 'm' }
4180 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps5_stateArgs
[] = {
4181 { { STATE_EPS5
}, 'm' }
4184 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps6_args
[] = {
4185 { { OPERAND_art
}, 'o' }
4188 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps6_stateArgs
[] = {
4189 { { STATE_EPS6
}, 'i' }
4192 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps6_args
[] = {
4193 { { OPERAND_art
}, 'i' }
4196 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps6_stateArgs
[] = {
4197 { { STATE_EPS6
}, 'o' }
4200 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps6_args
[] = {
4201 { { OPERAND_art
}, 'm' }
4204 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps6_stateArgs
[] = {
4205 { { STATE_EPS6
}, 'm' }
4208 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps7_args
[] = {
4209 { { OPERAND_art
}, 'o' }
4212 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps7_stateArgs
[] = {
4213 { { STATE_EPS7
}, 'i' }
4216 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps7_args
[] = {
4217 { { OPERAND_art
}, 'i' }
4220 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps7_stateArgs
[] = {
4221 { { STATE_EPS7
}, 'o' }
4224 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps7_args
[] = {
4225 { { OPERAND_art
}, 'm' }
4228 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps7_stateArgs
[] = {
4229 { { STATE_EPS7
}, 'm' }
4232 static xtensa_arg_internal Iclass_xt_iclass_rsr_excvaddr_args
[] = {
4233 { { OPERAND_art
}, 'o' }
4236 static xtensa_arg_internal Iclass_xt_iclass_rsr_excvaddr_stateArgs
[] = {
4237 { { STATE_EXCVADDR
}, 'i' }
4240 static xtensa_arg_internal Iclass_xt_iclass_wsr_excvaddr_args
[] = {
4241 { { OPERAND_art
}, 'i' }
4244 static xtensa_arg_internal Iclass_xt_iclass_wsr_excvaddr_stateArgs
[] = {
4245 { { STATE_EXCVADDR
}, 'o' }
4248 static xtensa_arg_internal Iclass_xt_iclass_xsr_excvaddr_args
[] = {
4249 { { OPERAND_art
}, 'm' }
4252 static xtensa_arg_internal Iclass_xt_iclass_xsr_excvaddr_stateArgs
[] = {
4253 { { STATE_EXCVADDR
}, 'm' }
4256 static xtensa_arg_internal Iclass_xt_iclass_rsr_depc_args
[] = {
4257 { { OPERAND_art
}, 'o' }
4260 static xtensa_arg_internal Iclass_xt_iclass_rsr_depc_stateArgs
[] = {
4261 { { STATE_DEPC
}, 'i' }
4264 static xtensa_arg_internal Iclass_xt_iclass_wsr_depc_args
[] = {
4265 { { OPERAND_art
}, 'i' }
4268 static xtensa_arg_internal Iclass_xt_iclass_wsr_depc_stateArgs
[] = {
4269 { { STATE_DEPC
}, 'o' }
4272 static xtensa_arg_internal Iclass_xt_iclass_xsr_depc_args
[] = {
4273 { { OPERAND_art
}, 'm' }
4276 static xtensa_arg_internal Iclass_xt_iclass_xsr_depc_stateArgs
[] = {
4277 { { STATE_DEPC
}, 'm' }
4280 static xtensa_arg_internal Iclass_xt_iclass_rsr_exccause_args
[] = {
4281 { { OPERAND_art
}, 'o' }
4284 static xtensa_arg_internal Iclass_xt_iclass_rsr_exccause_stateArgs
[] = {
4285 { { STATE_EXCCAUSE
}, 'i' },
4286 { { STATE_XTSYNC
}, 'i' }
4289 static xtensa_arg_internal Iclass_xt_iclass_wsr_exccause_args
[] = {
4290 { { OPERAND_art
}, 'i' }
4293 static xtensa_arg_internal Iclass_xt_iclass_wsr_exccause_stateArgs
[] = {
4294 { { STATE_EXCCAUSE
}, 'o' }
4297 static xtensa_arg_internal Iclass_xt_iclass_xsr_exccause_args
[] = {
4298 { { OPERAND_art
}, 'm' }
4301 static xtensa_arg_internal Iclass_xt_iclass_xsr_exccause_stateArgs
[] = {
4302 { { STATE_EXCCAUSE
}, 'm' }
4305 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc0_args
[] = {
4306 { { OPERAND_art
}, 'o' }
4309 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc0_stateArgs
[] = {
4310 { { STATE_MISC0
}, 'i' }
4313 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc0_args
[] = {
4314 { { OPERAND_art
}, 'i' }
4317 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc0_stateArgs
[] = {
4318 { { STATE_MISC0
}, 'o' }
4321 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc0_args
[] = {
4322 { { OPERAND_art
}, 'm' }
4325 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc0_stateArgs
[] = {
4326 { { STATE_MISC0
}, 'm' }
4329 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc1_args
[] = {
4330 { { OPERAND_art
}, 'o' }
4333 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc1_stateArgs
[] = {
4334 { { STATE_MISC1
}, 'i' }
4337 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc1_args
[] = {
4338 { { OPERAND_art
}, 'i' }
4341 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc1_stateArgs
[] = {
4342 { { STATE_MISC1
}, 'o' }
4345 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc1_args
[] = {
4346 { { OPERAND_art
}, 'm' }
4349 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc1_stateArgs
[] = {
4350 { { STATE_MISC1
}, 'm' }
4353 static xtensa_arg_internal Iclass_xt_iclass_rsr_prid_args
[] = {
4354 { { OPERAND_art
}, 'o' }
4357 static xtensa_arg_internal Iclass_xt_iclass_rsr_vecbase_args
[] = {
4358 { { OPERAND_art
}, 'o' }
4361 static xtensa_arg_internal Iclass_xt_iclass_rsr_vecbase_stateArgs
[] = {
4362 { { STATE_VECBASE
}, 'i' }
4365 static xtensa_arg_internal Iclass_xt_iclass_wsr_vecbase_args
[] = {
4366 { { OPERAND_art
}, 'i' }
4369 static xtensa_arg_internal Iclass_xt_iclass_wsr_vecbase_stateArgs
[] = {
4370 { { STATE_VECBASE
}, 'o' }
4373 static xtensa_arg_internal Iclass_xt_iclass_xsr_vecbase_args
[] = {
4374 { { OPERAND_art
}, 'm' }
4377 static xtensa_arg_internal Iclass_xt_iclass_xsr_vecbase_stateArgs
[] = {
4378 { { STATE_VECBASE
}, 'm' }
4381 static xtensa_arg_internal Iclass_xt_mul16_args
[] = {
4382 { { OPERAND_arr
}, 'o' },
4383 { { OPERAND_ars
}, 'i' },
4384 { { OPERAND_art
}, 'i' }
4387 static xtensa_arg_internal Iclass_xt_mul32_args
[] = {
4388 { { OPERAND_arr
}, 'o' },
4389 { { OPERAND_ars
}, 'i' },
4390 { { OPERAND_art
}, 'i' }
4393 static xtensa_arg_internal Iclass_xt_iclass_mac16_aa_args
[] = {
4394 { { OPERAND_ars
}, 'i' },
4395 { { OPERAND_art
}, 'i' }
4398 static xtensa_arg_internal Iclass_xt_iclass_mac16_aa_stateArgs
[] = {
4399 { { STATE_ACC
}, 'o' }
4402 static xtensa_arg_internal Iclass_xt_iclass_mac16_ad_args
[] = {
4403 { { OPERAND_ars
}, 'i' },
4404 { { OPERAND_my
}, 'i' }
4407 static xtensa_arg_internal Iclass_xt_iclass_mac16_ad_stateArgs
[] = {
4408 { { STATE_ACC
}, 'o' }
4411 static xtensa_arg_internal Iclass_xt_iclass_mac16_da_args
[] = {
4412 { { OPERAND_mx
}, 'i' },
4413 { { OPERAND_art
}, 'i' }
4416 static xtensa_arg_internal Iclass_xt_iclass_mac16_da_stateArgs
[] = {
4417 { { STATE_ACC
}, 'o' }
4420 static xtensa_arg_internal Iclass_xt_iclass_mac16_dd_args
[] = {
4421 { { OPERAND_mx
}, 'i' },
4422 { { OPERAND_my
}, 'i' }
4425 static xtensa_arg_internal Iclass_xt_iclass_mac16_dd_stateArgs
[] = {
4426 { { STATE_ACC
}, 'o' }
4429 static xtensa_arg_internal Iclass_xt_iclass_mac16a_aa_args
[] = {
4430 { { OPERAND_ars
}, 'i' },
4431 { { OPERAND_art
}, 'i' }
4434 static xtensa_arg_internal Iclass_xt_iclass_mac16a_aa_stateArgs
[] = {
4435 { { STATE_ACC
}, 'm' }
4438 static xtensa_arg_internal Iclass_xt_iclass_mac16a_ad_args
[] = {
4439 { { OPERAND_ars
}, 'i' },
4440 { { OPERAND_my
}, 'i' }
4443 static xtensa_arg_internal Iclass_xt_iclass_mac16a_ad_stateArgs
[] = {
4444 { { STATE_ACC
}, 'm' }
4447 static xtensa_arg_internal Iclass_xt_iclass_mac16a_da_args
[] = {
4448 { { OPERAND_mx
}, 'i' },
4449 { { OPERAND_art
}, 'i' }
4452 static xtensa_arg_internal Iclass_xt_iclass_mac16a_da_stateArgs
[] = {
4453 { { STATE_ACC
}, 'm' }
4456 static xtensa_arg_internal Iclass_xt_iclass_mac16a_dd_args
[] = {
4457 { { OPERAND_mx
}, 'i' },
4458 { { OPERAND_my
}, 'i' }
4461 static xtensa_arg_internal Iclass_xt_iclass_mac16a_dd_stateArgs
[] = {
4462 { { STATE_ACC
}, 'm' }
4465 static xtensa_arg_internal Iclass_xt_iclass_mac16al_da_args
[] = {
4466 { { OPERAND_mw
}, 'o' },
4467 { { OPERAND_ars
}, 'm' },
4468 { { OPERAND_mx
}, 'i' },
4469 { { OPERAND_art
}, 'i' }
4472 static xtensa_arg_internal Iclass_xt_iclass_mac16al_da_stateArgs
[] = {
4473 { { STATE_ACC
}, 'm' }
4476 static xtensa_arg_internal Iclass_xt_iclass_mac16al_dd_args
[] = {
4477 { { OPERAND_mw
}, 'o' },
4478 { { OPERAND_ars
}, 'm' },
4479 { { OPERAND_mx
}, 'i' },
4480 { { OPERAND_my
}, 'i' }
4483 static xtensa_arg_internal Iclass_xt_iclass_mac16al_dd_stateArgs
[] = {
4484 { { STATE_ACC
}, 'm' }
4487 static xtensa_arg_internal Iclass_xt_iclass_mac16_l_args
[] = {
4488 { { OPERAND_mw
}, 'o' },
4489 { { OPERAND_ars
}, 'm' }
4492 static xtensa_arg_internal Iclass_xt_iclass_rsr_m0_args
[] = {
4493 { { OPERAND_art
}, 'o' },
4494 { { OPERAND_mr0
}, 'i' }
4497 static xtensa_arg_internal Iclass_xt_iclass_wsr_m0_args
[] = {
4498 { { OPERAND_art
}, 'i' },
4499 { { OPERAND_mr0
}, 'o' }
4502 static xtensa_arg_internal Iclass_xt_iclass_xsr_m0_args
[] = {
4503 { { OPERAND_art
}, 'm' },
4504 { { OPERAND_mr0
}, 'm' }
4507 static xtensa_arg_internal Iclass_xt_iclass_rsr_m1_args
[] = {
4508 { { OPERAND_art
}, 'o' },
4509 { { OPERAND_mr1
}, 'i' }
4512 static xtensa_arg_internal Iclass_xt_iclass_wsr_m1_args
[] = {
4513 { { OPERAND_art
}, 'i' },
4514 { { OPERAND_mr1
}, 'o' }
4517 static xtensa_arg_internal Iclass_xt_iclass_xsr_m1_args
[] = {
4518 { { OPERAND_art
}, 'm' },
4519 { { OPERAND_mr1
}, 'm' }
4522 static xtensa_arg_internal Iclass_xt_iclass_rsr_m2_args
[] = {
4523 { { OPERAND_art
}, 'o' },
4524 { { OPERAND_mr2
}, 'i' }
4527 static xtensa_arg_internal Iclass_xt_iclass_wsr_m2_args
[] = {
4528 { { OPERAND_art
}, 'i' },
4529 { { OPERAND_mr2
}, 'o' }
4532 static xtensa_arg_internal Iclass_xt_iclass_xsr_m2_args
[] = {
4533 { { OPERAND_art
}, 'm' },
4534 { { OPERAND_mr2
}, 'm' }
4537 static xtensa_arg_internal Iclass_xt_iclass_rsr_m3_args
[] = {
4538 { { OPERAND_art
}, 'o' },
4539 { { OPERAND_mr3
}, 'i' }
4542 static xtensa_arg_internal Iclass_xt_iclass_wsr_m3_args
[] = {
4543 { { OPERAND_art
}, 'i' },
4544 { { OPERAND_mr3
}, 'o' }
4547 static xtensa_arg_internal Iclass_xt_iclass_xsr_m3_args
[] = {
4548 { { OPERAND_art
}, 'm' },
4549 { { OPERAND_mr3
}, 'm' }
4552 static xtensa_arg_internal Iclass_xt_iclass_rsr_acclo_args
[] = {
4553 { { OPERAND_art
}, 'o' }
4556 static xtensa_arg_internal Iclass_xt_iclass_rsr_acclo_stateArgs
[] = {
4557 { { STATE_ACC
}, 'i' }
4560 static xtensa_arg_internal Iclass_xt_iclass_wsr_acclo_args
[] = {
4561 { { OPERAND_art
}, 'i' }
4564 static xtensa_arg_internal Iclass_xt_iclass_wsr_acclo_stateArgs
[] = {
4565 { { STATE_ACC
}, 'm' }
4568 static xtensa_arg_internal Iclass_xt_iclass_xsr_acclo_args
[] = {
4569 { { OPERAND_art
}, 'm' }
4572 static xtensa_arg_internal Iclass_xt_iclass_xsr_acclo_stateArgs
[] = {
4573 { { STATE_ACC
}, 'm' }
4576 static xtensa_arg_internal Iclass_xt_iclass_rsr_acchi_args
[] = {
4577 { { OPERAND_art
}, 'o' }
4580 static xtensa_arg_internal Iclass_xt_iclass_rsr_acchi_stateArgs
[] = {
4581 { { STATE_ACC
}, 'i' }
4584 static xtensa_arg_internal Iclass_xt_iclass_wsr_acchi_args
[] = {
4585 { { OPERAND_art
}, 'i' }
4588 static xtensa_arg_internal Iclass_xt_iclass_wsr_acchi_stateArgs
[] = {
4589 { { STATE_ACC
}, 'm' }
4592 static xtensa_arg_internal Iclass_xt_iclass_xsr_acchi_args
[] = {
4593 { { OPERAND_art
}, 'm' }
4596 static xtensa_arg_internal Iclass_xt_iclass_xsr_acchi_stateArgs
[] = {
4597 { { STATE_ACC
}, 'm' }
4600 static xtensa_arg_internal Iclass_xt_iclass_rfi_args
[] = {
4601 { { OPERAND_s
}, 'i' }
4604 static xtensa_arg_internal Iclass_xt_iclass_rfi_stateArgs
[] = {
4605 { { STATE_PSWOE
}, 'o' },
4606 { { STATE_PSCALLINC
}, 'o' },
4607 { { STATE_PSOWB
}, 'o' },
4608 { { STATE_PSUM
}, 'o' },
4609 { { STATE_PSEXCM
}, 'o' },
4610 { { STATE_PSINTLEVEL
}, 'o' },
4611 { { STATE_EPC1
}, 'i' },
4612 { { STATE_EPC2
}, 'i' },
4613 { { STATE_EPC3
}, 'i' },
4614 { { STATE_EPC4
}, 'i' },
4615 { { STATE_EPC5
}, 'i' },
4616 { { STATE_EPC6
}, 'i' },
4617 { { STATE_EPC7
}, 'i' },
4618 { { STATE_EPS2
}, 'i' },
4619 { { STATE_EPS3
}, 'i' },
4620 { { STATE_EPS4
}, 'i' },
4621 { { STATE_EPS5
}, 'i' },
4622 { { STATE_EPS6
}, 'i' },
4623 { { STATE_EPS7
}, 'i' },
4624 { { STATE_InOCDMode
}, 'm' }
4627 static xtensa_arg_internal Iclass_xt_iclass_wait_args
[] = {
4628 { { OPERAND_s
}, 'i' }
4631 static xtensa_arg_internal Iclass_xt_iclass_wait_stateArgs
[] = {
4632 { { STATE_PSINTLEVEL
}, 'o' }
4635 static xtensa_arg_internal Iclass_xt_iclass_rsr_interrupt_args
[] = {
4636 { { OPERAND_art
}, 'o' }
4639 static xtensa_arg_internal Iclass_xt_iclass_rsr_interrupt_stateArgs
[] = {
4640 { { STATE_INTERRUPT
}, 'i' }
4643 static xtensa_arg_internal Iclass_xt_iclass_wsr_intset_args
[] = {
4644 { { OPERAND_art
}, 'i' }
4647 static xtensa_arg_internal Iclass_xt_iclass_wsr_intset_stateArgs
[] = {
4648 { { STATE_XTSYNC
}, 'o' },
4649 { { STATE_INTERRUPT
}, 'm' }
4652 static xtensa_arg_internal Iclass_xt_iclass_wsr_intclear_args
[] = {
4653 { { OPERAND_art
}, 'i' }
4656 static xtensa_arg_internal Iclass_xt_iclass_wsr_intclear_stateArgs
[] = {
4657 { { STATE_XTSYNC
}, 'o' },
4658 { { STATE_INTERRUPT
}, 'm' }
4661 static xtensa_arg_internal Iclass_xt_iclass_rsr_intenable_args
[] = {
4662 { { OPERAND_art
}, 'o' }
4665 static xtensa_arg_internal Iclass_xt_iclass_rsr_intenable_stateArgs
[] = {
4666 { { STATE_INTENABLE
}, 'i' }
4669 static xtensa_arg_internal Iclass_xt_iclass_wsr_intenable_args
[] = {
4670 { { OPERAND_art
}, 'i' }
4673 static xtensa_arg_internal Iclass_xt_iclass_wsr_intenable_stateArgs
[] = {
4674 { { STATE_INTENABLE
}, 'o' }
4677 static xtensa_arg_internal Iclass_xt_iclass_xsr_intenable_args
[] = {
4678 { { OPERAND_art
}, 'm' }
4681 static xtensa_arg_internal Iclass_xt_iclass_xsr_intenable_stateArgs
[] = {
4682 { { STATE_INTENABLE
}, 'm' }
4685 static xtensa_arg_internal Iclass_xt_iclass_break_args
[] = {
4686 { { OPERAND_imms
}, 'i' },
4687 { { OPERAND_immt
}, 'i' }
4690 static xtensa_arg_internal Iclass_xt_iclass_break_stateArgs
[] = {
4691 { { STATE_PSEXCM
}, 'i' },
4692 { { STATE_PSINTLEVEL
}, 'i' }
4695 static xtensa_arg_internal Iclass_xt_iclass_break_n_args
[] = {
4696 { { OPERAND_imms
}, 'i' }
4699 static xtensa_arg_internal Iclass_xt_iclass_break_n_stateArgs
[] = {
4700 { { STATE_PSEXCM
}, 'i' },
4701 { { STATE_PSINTLEVEL
}, 'i' }
4704 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka0_args
[] = {
4705 { { OPERAND_art
}, 'o' }
4708 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka0_stateArgs
[] = {
4709 { { STATE_DBREAKA0
}, 'i' }
4712 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka0_args
[] = {
4713 { { OPERAND_art
}, 'i' }
4716 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka0_stateArgs
[] = {
4717 { { STATE_DBREAKA0
}, 'o' },
4718 { { STATE_XTSYNC
}, 'o' }
4721 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka0_args
[] = {
4722 { { OPERAND_art
}, 'm' }
4725 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka0_stateArgs
[] = {
4726 { { STATE_DBREAKA0
}, 'm' },
4727 { { STATE_XTSYNC
}, 'o' }
4730 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc0_args
[] = {
4731 { { OPERAND_art
}, 'o' }
4734 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc0_stateArgs
[] = {
4735 { { STATE_DBREAKC0
}, 'i' }
4738 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc0_args
[] = {
4739 { { OPERAND_art
}, 'i' }
4742 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc0_stateArgs
[] = {
4743 { { STATE_DBREAKC0
}, 'o' },
4744 { { STATE_XTSYNC
}, 'o' }
4747 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc0_args
[] = {
4748 { { OPERAND_art
}, 'm' }
4751 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc0_stateArgs
[] = {
4752 { { STATE_DBREAKC0
}, 'm' },
4753 { { STATE_XTSYNC
}, 'o' }
4756 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka1_args
[] = {
4757 { { OPERAND_art
}, 'o' }
4760 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka1_stateArgs
[] = {
4761 { { STATE_DBREAKA1
}, 'i' }
4764 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka1_args
[] = {
4765 { { OPERAND_art
}, 'i' }
4768 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka1_stateArgs
[] = {
4769 { { STATE_DBREAKA1
}, 'o' },
4770 { { STATE_XTSYNC
}, 'o' }
4773 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka1_args
[] = {
4774 { { OPERAND_art
}, 'm' }
4777 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka1_stateArgs
[] = {
4778 { { STATE_DBREAKA1
}, 'm' },
4779 { { STATE_XTSYNC
}, 'o' }
4782 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc1_args
[] = {
4783 { { OPERAND_art
}, 'o' }
4786 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc1_stateArgs
[] = {
4787 { { STATE_DBREAKC1
}, 'i' }
4790 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc1_args
[] = {
4791 { { OPERAND_art
}, 'i' }
4794 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc1_stateArgs
[] = {
4795 { { STATE_DBREAKC1
}, 'o' },
4796 { { STATE_XTSYNC
}, 'o' }
4799 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc1_args
[] = {
4800 { { OPERAND_art
}, 'm' }
4803 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc1_stateArgs
[] = {
4804 { { STATE_DBREAKC1
}, 'm' },
4805 { { STATE_XTSYNC
}, 'o' }
4808 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka0_args
[] = {
4809 { { OPERAND_art
}, 'o' }
4812 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka0_stateArgs
[] = {
4813 { { STATE_IBREAKA0
}, 'i' }
4816 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka0_args
[] = {
4817 { { OPERAND_art
}, 'i' }
4820 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka0_stateArgs
[] = {
4821 { { STATE_IBREAKA0
}, 'o' }
4824 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka0_args
[] = {
4825 { { OPERAND_art
}, 'm' }
4828 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka0_stateArgs
[] = {
4829 { { STATE_IBREAKA0
}, 'm' }
4832 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka1_args
[] = {
4833 { { OPERAND_art
}, 'o' }
4836 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka1_stateArgs
[] = {
4837 { { STATE_IBREAKA1
}, 'i' }
4840 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka1_args
[] = {
4841 { { OPERAND_art
}, 'i' }
4844 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka1_stateArgs
[] = {
4845 { { STATE_IBREAKA1
}, 'o' }
4848 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka1_args
[] = {
4849 { { OPERAND_art
}, 'm' }
4852 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka1_stateArgs
[] = {
4853 { { STATE_IBREAKA1
}, 'm' }
4856 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreakenable_args
[] = {
4857 { { OPERAND_art
}, 'o' }
4860 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreakenable_stateArgs
[] = {
4861 { { STATE_IBREAKENABLE
}, 'i' }
4864 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreakenable_args
[] = {
4865 { { OPERAND_art
}, 'i' }
4868 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreakenable_stateArgs
[] = {
4869 { { STATE_IBREAKENABLE
}, 'o' }
4872 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreakenable_args
[] = {
4873 { { OPERAND_art
}, 'm' }
4876 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreakenable_stateArgs
[] = {
4877 { { STATE_IBREAKENABLE
}, 'm' }
4880 static xtensa_arg_internal Iclass_xt_iclass_rsr_debugcause_args
[] = {
4881 { { OPERAND_art
}, 'o' }
4884 static xtensa_arg_internal Iclass_xt_iclass_rsr_debugcause_stateArgs
[] = {
4885 { { STATE_DEBUGCAUSE
}, 'i' },
4886 { { STATE_DBNUM
}, 'i' }
4889 static xtensa_arg_internal Iclass_xt_iclass_wsr_debugcause_args
[] = {
4890 { { OPERAND_art
}, 'i' }
4893 static xtensa_arg_internal Iclass_xt_iclass_wsr_debugcause_stateArgs
[] = {
4894 { { STATE_DEBUGCAUSE
}, 'o' },
4895 { { STATE_DBNUM
}, 'o' }
4898 static xtensa_arg_internal Iclass_xt_iclass_xsr_debugcause_args
[] = {
4899 { { OPERAND_art
}, 'm' }
4902 static xtensa_arg_internal Iclass_xt_iclass_xsr_debugcause_stateArgs
[] = {
4903 { { STATE_DEBUGCAUSE
}, 'm' },
4904 { { STATE_DBNUM
}, 'm' }
4907 static xtensa_arg_internal Iclass_xt_iclass_rsr_icount_args
[] = {
4908 { { OPERAND_art
}, 'o' }
4911 static xtensa_arg_internal Iclass_xt_iclass_rsr_icount_stateArgs
[] = {
4912 { { STATE_ICOUNT
}, 'i' }
4915 static xtensa_arg_internal Iclass_xt_iclass_wsr_icount_args
[] = {
4916 { { OPERAND_art
}, 'i' }
4919 static xtensa_arg_internal Iclass_xt_iclass_wsr_icount_stateArgs
[] = {
4920 { { STATE_XTSYNC
}, 'o' },
4921 { { STATE_ICOUNT
}, 'o' }
4924 static xtensa_arg_internal Iclass_xt_iclass_xsr_icount_args
[] = {
4925 { { OPERAND_art
}, 'm' }
4928 static xtensa_arg_internal Iclass_xt_iclass_xsr_icount_stateArgs
[] = {
4929 { { STATE_XTSYNC
}, 'o' },
4930 { { STATE_ICOUNT
}, 'm' }
4933 static xtensa_arg_internal Iclass_xt_iclass_rsr_icountlevel_args
[] = {
4934 { { OPERAND_art
}, 'o' }
4937 static xtensa_arg_internal Iclass_xt_iclass_rsr_icountlevel_stateArgs
[] = {
4938 { { STATE_ICOUNTLEVEL
}, 'i' }
4941 static xtensa_arg_internal Iclass_xt_iclass_wsr_icountlevel_args
[] = {
4942 { { OPERAND_art
}, 'i' }
4945 static xtensa_arg_internal Iclass_xt_iclass_wsr_icountlevel_stateArgs
[] = {
4946 { { STATE_ICOUNTLEVEL
}, 'o' }
4949 static xtensa_arg_internal Iclass_xt_iclass_xsr_icountlevel_args
[] = {
4950 { { OPERAND_art
}, 'm' }
4953 static xtensa_arg_internal Iclass_xt_iclass_xsr_icountlevel_stateArgs
[] = {
4954 { { STATE_ICOUNTLEVEL
}, 'm' }
4957 static xtensa_arg_internal Iclass_xt_iclass_rsr_ddr_args
[] = {
4958 { { OPERAND_art
}, 'o' }
4961 static xtensa_arg_internal Iclass_xt_iclass_rsr_ddr_stateArgs
[] = {
4962 { { STATE_DDR
}, 'i' }
4965 static xtensa_arg_internal Iclass_xt_iclass_wsr_ddr_args
[] = {
4966 { { OPERAND_art
}, 'i' }
4969 static xtensa_arg_internal Iclass_xt_iclass_wsr_ddr_stateArgs
[] = {
4970 { { STATE_XTSYNC
}, 'o' },
4971 { { STATE_DDR
}, 'o' }
4974 static xtensa_arg_internal Iclass_xt_iclass_xsr_ddr_args
[] = {
4975 { { OPERAND_art
}, 'm' }
4978 static xtensa_arg_internal Iclass_xt_iclass_xsr_ddr_stateArgs
[] = {
4979 { { STATE_XTSYNC
}, 'o' },
4980 { { STATE_DDR
}, 'm' }
4983 static xtensa_arg_internal Iclass_xt_iclass_lddr32_p_args
[] = {
4984 { { OPERAND_ars
}, 'm' }
4987 static xtensa_arg_internal Iclass_xt_iclass_lddr32_p_stateArgs
[] = {
4988 { { STATE_XTSYNC
}, 'o' },
4989 { { STATE_InOCDMode
}, 'i' },
4990 { { STATE_DDR
}, 'o' }
4993 static xtensa_arg_internal Iclass_xt_iclass_sddr32_p_args
[] = {
4994 { { OPERAND_ars
}, 'm' }
4997 static xtensa_arg_internal Iclass_xt_iclass_sddr32_p_stateArgs
[] = {
4998 { { STATE_InOCDMode
}, 'i' },
4999 { { STATE_DDR
}, 'i' }
5002 static xtensa_arg_internal Iclass_xt_iclass_rfdo_args
[] = {
5003 { { OPERAND_imms
}, 'i' }
5006 static xtensa_arg_internal Iclass_xt_iclass_rfdo_stateArgs
[] = {
5007 { { STATE_InOCDMode
}, 'm' },
5008 { { STATE_EPC6
}, 'i' },
5009 { { STATE_PSWOE
}, 'o' },
5010 { { STATE_PSCALLINC
}, 'o' },
5011 { { STATE_PSOWB
}, 'o' },
5012 { { STATE_PSUM
}, 'o' },
5013 { { STATE_PSEXCM
}, 'o' },
5014 { { STATE_PSINTLEVEL
}, 'o' },
5015 { { STATE_EPS6
}, 'i' }
5018 static xtensa_arg_internal Iclass_xt_iclass_rfdd_stateArgs
[] = {
5019 { { STATE_InOCDMode
}, 'm' }
5022 static xtensa_arg_internal Iclass_xt_iclass_wsr_mmid_args
[] = {
5023 { { OPERAND_art
}, 'i' }
5026 static xtensa_arg_internal Iclass_xt_iclass_wsr_mmid_stateArgs
[] = {
5027 { { STATE_XTSYNC
}, 'o' }
5030 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccount_args
[] = {
5031 { { OPERAND_art
}, 'o' }
5034 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccount_stateArgs
[] = {
5035 { { STATE_CCOUNT
}, 'i' }
5038 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccount_args
[] = {
5039 { { OPERAND_art
}, 'i' }
5042 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccount_stateArgs
[] = {
5043 { { STATE_XTSYNC
}, 'o' },
5044 { { STATE_CCOUNT
}, 'o' }
5047 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccount_args
[] = {
5048 { { OPERAND_art
}, 'm' }
5051 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccount_stateArgs
[] = {
5052 { { STATE_XTSYNC
}, 'o' },
5053 { { STATE_CCOUNT
}, 'm' }
5056 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare0_args
[] = {
5057 { { OPERAND_art
}, 'o' }
5060 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare0_stateArgs
[] = {
5061 { { STATE_CCOMPARE0
}, 'i' }
5064 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare0_args
[] = {
5065 { { OPERAND_art
}, 'i' }
5068 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare0_stateArgs
[] = {
5069 { { STATE_CCOMPARE0
}, 'o' },
5070 { { STATE_INTERRUPT
}, 'm' }
5073 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare0_args
[] = {
5074 { { OPERAND_art
}, 'm' }
5077 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare0_stateArgs
[] = {
5078 { { STATE_CCOMPARE0
}, 'm' },
5079 { { STATE_INTERRUPT
}, 'm' }
5082 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare1_args
[] = {
5083 { { OPERAND_art
}, 'o' }
5086 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare1_stateArgs
[] = {
5087 { { STATE_CCOMPARE1
}, 'i' }
5090 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare1_args
[] = {
5091 { { OPERAND_art
}, 'i' }
5094 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare1_stateArgs
[] = {
5095 { { STATE_CCOMPARE1
}, 'o' },
5096 { { STATE_INTERRUPT
}, 'm' }
5099 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare1_args
[] = {
5100 { { OPERAND_art
}, 'm' }
5103 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare1_stateArgs
[] = {
5104 { { STATE_CCOMPARE1
}, 'm' },
5105 { { STATE_INTERRUPT
}, 'm' }
5108 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare2_args
[] = {
5109 { { OPERAND_art
}, 'o' }
5112 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare2_stateArgs
[] = {
5113 { { STATE_CCOMPARE2
}, 'i' }
5116 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare2_args
[] = {
5117 { { OPERAND_art
}, 'i' }
5120 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare2_stateArgs
[] = {
5121 { { STATE_CCOMPARE2
}, 'o' },
5122 { { STATE_INTERRUPT
}, 'm' }
5125 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare2_args
[] = {
5126 { { OPERAND_art
}, 'm' }
5129 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare2_stateArgs
[] = {
5130 { { STATE_CCOMPARE2
}, 'm' },
5131 { { STATE_INTERRUPT
}, 'm' }
5134 static xtensa_arg_internal Iclass_xt_iclass_icache_args
[] = {
5135 { { OPERAND_ars
}, 'i' },
5136 { { OPERAND_uimm8x4
}, 'i' }
5139 static xtensa_arg_internal Iclass_xt_iclass_icache_lock_args
[] = {
5140 { { OPERAND_ars
}, 'i' },
5141 { { OPERAND_uimm4x16
}, 'i' }
5144 static xtensa_arg_internal Iclass_xt_iclass_icache_inv_args
[] = {
5145 { { OPERAND_ars
}, 'i' },
5146 { { OPERAND_uimm8x4
}, 'i' }
5149 static xtensa_arg_internal Iclass_xt_iclass_licx_args
[] = {
5150 { { OPERAND_art
}, 'o' },
5151 { { OPERAND_ars
}, 'i' }
5154 static xtensa_arg_internal Iclass_xt_iclass_sicx_args
[] = {
5155 { { OPERAND_art
}, 'i' },
5156 { { OPERAND_ars
}, 'i' }
5159 static xtensa_arg_internal Iclass_xt_iclass_dcache_args
[] = {
5160 { { OPERAND_ars
}, 'i' },
5161 { { OPERAND_uimm8x4
}, 'i' }
5164 static xtensa_arg_internal Iclass_xt_iclass_dcache_dyn_args
[] = {
5165 { { OPERAND_ars
}, 'm' }
5168 static xtensa_arg_internal Iclass_xt_iclass_dcache_ind_args
[] = {
5169 { { OPERAND_ars
}, 'i' },
5170 { { OPERAND_uimm4x16
}, 'i' }
5173 static xtensa_arg_internal Iclass_xt_iclass_dcache_inv_args
[] = {
5174 { { OPERAND_ars
}, 'i' },
5175 { { OPERAND_uimm8x4
}, 'i' }
5178 static xtensa_arg_internal Iclass_xt_iclass_dpf_args
[] = {
5179 { { OPERAND_ars
}, 'i' },
5180 { { OPERAND_uimm8x4
}, 'i' }
5183 static xtensa_arg_internal Iclass_xt_iclass_dcache_lock_args
[] = {
5184 { { OPERAND_ars
}, 'i' },
5185 { { OPERAND_uimm4x16
}, 'i' }
5188 static xtensa_arg_internal Iclass_xt_iclass_sdct_args
[] = {
5189 { { OPERAND_art
}, 'i' },
5190 { { OPERAND_ars
}, 'i' }
5193 static xtensa_arg_internal Iclass_xt_iclass_ldct_args
[] = {
5194 { { OPERAND_art
}, 'o' },
5195 { { OPERAND_ars
}, 'i' }
5198 static xtensa_arg_internal Iclass_xt_iclass_idtlb_args
[] = {
5199 { { OPERAND_ars
}, 'i' }
5202 static xtensa_arg_internal Iclass_xt_iclass_idtlb_stateArgs
[] = {
5203 { { STATE_XTSYNC
}, 'o' }
5206 static xtensa_arg_internal Iclass_xt_iclass_rdtlb_args
[] = {
5207 { { OPERAND_art
}, 'o' },
5208 { { OPERAND_ars
}, 'i' }
5211 static xtensa_arg_internal Iclass_xt_iclass_wdtlb_args
[] = {
5212 { { OPERAND_art
}, 'i' },
5213 { { OPERAND_ars
}, 'i' }
5216 static xtensa_arg_internal Iclass_xt_iclass_wdtlb_stateArgs
[] = {
5217 { { STATE_XTSYNC
}, 'o' }
5220 static xtensa_arg_internal Iclass_xt_iclass_iitlb_args
[] = {
5221 { { OPERAND_ars
}, 'i' }
5224 static xtensa_arg_internal Iclass_xt_iclass_ritlb_args
[] = {
5225 { { OPERAND_art
}, 'o' },
5226 { { OPERAND_ars
}, 'i' }
5229 static xtensa_arg_internal Iclass_xt_iclass_witlb_args
[] = {
5230 { { OPERAND_art
}, 'i' },
5231 { { OPERAND_ars
}, 'i' }
5234 static xtensa_arg_internal Iclass_xt_iclass_clamp_args
[] = {
5235 { { OPERAND_arr
}, 'o' },
5236 { { OPERAND_ars
}, 'i' },
5237 { { OPERAND_tp7
}, 'i' }
5240 static xtensa_arg_internal Iclass_xt_iclass_minmax_args
[] = {
5241 { { OPERAND_arr
}, 'o' },
5242 { { OPERAND_ars
}, 'i' },
5243 { { OPERAND_art
}, 'i' }
5246 static xtensa_arg_internal Iclass_xt_iclass_nsa_args
[] = {
5247 { { OPERAND_art
}, 'o' },
5248 { { OPERAND_ars
}, 'i' }
5251 static xtensa_arg_internal Iclass_xt_iclass_sx_args
[] = {
5252 { { OPERAND_arr
}, 'o' },
5253 { { OPERAND_ars
}, 'i' },
5254 { { OPERAND_tp7
}, 'i' }
5257 static xtensa_arg_internal Iclass_xt_iclass_l32ai_args
[] = {
5258 { { OPERAND_art
}, 'o' },
5259 { { OPERAND_ars
}, 'i' },
5260 { { OPERAND_uimm8x4
}, 'i' }
5263 static xtensa_arg_internal Iclass_xt_iclass_s32ri_args
[] = {
5264 { { OPERAND_art
}, 'i' },
5265 { { OPERAND_ars
}, 'i' },
5266 { { OPERAND_uimm8x4
}, 'i' }
5269 static xtensa_arg_internal Iclass_xt_iclass_s32c1i_args
[] = {
5270 { { OPERAND_art
}, 'm' },
5271 { { OPERAND_ars
}, 'i' },
5272 { { OPERAND_uimm8x4
}, 'i' }
5275 static xtensa_arg_internal Iclass_xt_iclass_s32c1i_stateArgs
[] = {
5276 { { STATE_SCOMPARE1
}, 'i' },
5277 { { STATE_XTSYNC
}, 'i' },
5278 { { STATE_SCOMPARE1
}, 'i' }
5281 static xtensa_arg_internal Iclass_xt_iclass_rsr_scompare1_args
[] = {
5282 { { OPERAND_art
}, 'o' }
5285 static xtensa_arg_internal Iclass_xt_iclass_rsr_scompare1_stateArgs
[] = {
5286 { { STATE_SCOMPARE1
}, 'i' }
5289 static xtensa_arg_internal Iclass_xt_iclass_wsr_scompare1_args
[] = {
5290 { { OPERAND_art
}, 'i' }
5293 static xtensa_arg_internal Iclass_xt_iclass_wsr_scompare1_stateArgs
[] = {
5294 { { STATE_SCOMPARE1
}, 'o' }
5297 static xtensa_arg_internal Iclass_xt_iclass_xsr_scompare1_args
[] = {
5298 { { OPERAND_art
}, 'm' }
5301 static xtensa_arg_internal Iclass_xt_iclass_xsr_scompare1_stateArgs
[] = {
5302 { { STATE_SCOMPARE1
}, 'm' }
5305 static xtensa_arg_internal Iclass_xt_iclass_rsr_atomctl_args
[] = {
5306 { { OPERAND_art
}, 'o' }
5309 static xtensa_arg_internal Iclass_xt_iclass_rsr_atomctl_stateArgs
[] = {
5310 { { STATE_ATOMCTL
}, 'i' }
5313 static xtensa_arg_internal Iclass_xt_iclass_wsr_atomctl_args
[] = {
5314 { { OPERAND_art
}, 'i' }
5317 static xtensa_arg_internal Iclass_xt_iclass_wsr_atomctl_stateArgs
[] = {
5318 { { STATE_ATOMCTL
}, 'o' },
5319 { { STATE_XTSYNC
}, 'o' }
5322 static xtensa_arg_internal Iclass_xt_iclass_xsr_atomctl_args
[] = {
5323 { { OPERAND_art
}, 'm' }
5326 static xtensa_arg_internal Iclass_xt_iclass_xsr_atomctl_stateArgs
[] = {
5327 { { STATE_ATOMCTL
}, 'm' },
5328 { { STATE_XTSYNC
}, 'o' }
5331 static xtensa_arg_internal Iclass_xt_iclass_div_args
[] = {
5332 { { OPERAND_arr
}, 'o' },
5333 { { OPERAND_ars
}, 'i' },
5334 { { OPERAND_art
}, 'i' }
5337 static xtensa_arg_internal Iclass_xt_iclass_rer_args
[] = {
5338 { { OPERAND_art
}, 'o' },
5339 { { OPERAND_ars
}, 'i' }
5342 static xtensa_arg_internal Iclass_xt_iclass_rer_stateArgs
[] = {
5343 { { STATE_ERI_RAW_INTERLOCK
}, 'i' }
5346 static xtensa_interface Iclass_xt_iclass_rer_intfArgs
[] = {
5347 INTERFACE_ERI_RD_In
,
5348 INTERFACE_ERI_RD_Out
5351 static xtensa_arg_internal Iclass_xt_iclass_wer_args
[] = {
5352 { { OPERAND_art
}, 'i' },
5353 { { OPERAND_ars
}, 'i' }
5356 static xtensa_arg_internal Iclass_xt_iclass_wer_stateArgs
[] = {
5357 { { STATE_ERI_RAW_INTERLOCK
}, 'o' }
5360 static xtensa_interface Iclass_xt_iclass_wer_intfArgs
[] = {
5361 INTERFACE_ERI_WR_In
,
5362 INTERFACE_ERI_WR_Out
5365 static xtensa_arg_internal Iclass_rur_expstate_args
[] = {
5366 { { OPERAND_arr
}, 'o' }
5369 static xtensa_arg_internal Iclass_rur_expstate_stateArgs
[] = {
5370 { { STATE_EXPSTATE
}, 'i' }
5373 static xtensa_arg_internal Iclass_wur_expstate_args
[] = {
5374 { { OPERAND_art
}, 'i' }
5377 static xtensa_arg_internal Iclass_wur_expstate_stateArgs
[] = {
5378 { { STATE_EXPSTATE
}, 'o' }
5381 static xtensa_arg_internal Iclass_iclass_READ_IMPWIRE_args
[] = {
5382 { { OPERAND_art
}, 'o' }
5385 static xtensa_interface Iclass_iclass_READ_IMPWIRE_intfArgs
[] = {
5389 static xtensa_arg_internal Iclass_iclass_SETB_EXPSTATE_args
[] = {
5390 { { OPERAND_bitindex
}, 'i' }
5393 static xtensa_arg_internal Iclass_iclass_SETB_EXPSTATE_stateArgs
[] = {
5394 { { STATE_EXPSTATE
}, 'm' }
5397 static xtensa_arg_internal Iclass_iclass_CLRB_EXPSTATE_args
[] = {
5398 { { OPERAND_bitindex
}, 'i' }
5401 static xtensa_arg_internal Iclass_iclass_CLRB_EXPSTATE_stateArgs
[] = {
5402 { { STATE_EXPSTATE
}, 'm' }
5405 static xtensa_arg_internal Iclass_iclass_WRMSK_EXPSTATE_args
[] = {
5406 { { OPERAND_art
}, 'i' },
5407 { { OPERAND_ars
}, 'i' }
5410 static xtensa_arg_internal Iclass_iclass_WRMSK_EXPSTATE_stateArgs
[] = {
5411 { { STATE_EXPSTATE
}, 'm' }
5414 static xtensa_iclass_internal iclasses
[] = {
5415 { 0, 0 /* xt_iclass_excw */,
5417 { 0, 0 /* xt_iclass_rfe */,
5418 2, Iclass_xt_iclass_rfe_stateArgs
, 0, 0 },
5419 { 0, 0 /* xt_iclass_rfde */,
5420 1, Iclass_xt_iclass_rfde_stateArgs
, 0, 0 },
5421 { 0, 0 /* xt_iclass_syscall */,
5423 { 2, Iclass_xt_iclass_call12_args
,
5424 1, Iclass_xt_iclass_call12_stateArgs
, 0, 0 },
5425 { 2, Iclass_xt_iclass_call8_args
,
5426 1, Iclass_xt_iclass_call8_stateArgs
, 0, 0 },
5427 { 2, Iclass_xt_iclass_call4_args
,
5428 1, Iclass_xt_iclass_call4_stateArgs
, 0, 0 },
5429 { 2, Iclass_xt_iclass_callx12_args
,
5430 1, Iclass_xt_iclass_callx12_stateArgs
, 0, 0 },
5431 { 2, Iclass_xt_iclass_callx8_args
,
5432 1, Iclass_xt_iclass_callx8_stateArgs
, 0, 0 },
5433 { 2, Iclass_xt_iclass_callx4_args
,
5434 1, Iclass_xt_iclass_callx4_stateArgs
, 0, 0 },
5435 { 3, Iclass_xt_iclass_entry_args
,
5436 5, Iclass_xt_iclass_entry_stateArgs
, 0, 0 },
5437 { 2, Iclass_xt_iclass_movsp_args
,
5438 2, Iclass_xt_iclass_movsp_stateArgs
, 0, 0 },
5439 { 1, Iclass_xt_iclass_rotw_args
,
5440 1, Iclass_xt_iclass_rotw_stateArgs
, 0, 0 },
5441 { 1, Iclass_xt_iclass_retw_args
,
5442 5, Iclass_xt_iclass_retw_stateArgs
, 0, 0 },
5443 { 0, 0 /* xt_iclass_rfwou */,
5444 5, Iclass_xt_iclass_rfwou_stateArgs
, 0, 0 },
5445 { 3, Iclass_xt_iclass_l32e_args
,
5447 { 3, Iclass_xt_iclass_s32e_args
,
5449 { 1, Iclass_xt_iclass_rsr_windowbase_args
,
5450 1, Iclass_xt_iclass_rsr_windowbase_stateArgs
, 0, 0 },
5451 { 1, Iclass_xt_iclass_wsr_windowbase_args
,
5452 1, Iclass_xt_iclass_wsr_windowbase_stateArgs
, 0, 0 },
5453 { 1, Iclass_xt_iclass_xsr_windowbase_args
,
5454 1, Iclass_xt_iclass_xsr_windowbase_stateArgs
, 0, 0 },
5455 { 1, Iclass_xt_iclass_rsr_windowstart_args
,
5456 1, Iclass_xt_iclass_rsr_windowstart_stateArgs
, 0, 0 },
5457 { 1, Iclass_xt_iclass_wsr_windowstart_args
,
5458 1, Iclass_xt_iclass_wsr_windowstart_stateArgs
, 0, 0 },
5459 { 1, Iclass_xt_iclass_xsr_windowstart_args
,
5460 1, Iclass_xt_iclass_xsr_windowstart_stateArgs
, 0, 0 },
5461 { 3, Iclass_xt_iclass_add_n_args
,
5463 { 3, Iclass_xt_iclass_addi_n_args
,
5465 { 2, Iclass_xt_iclass_bz6_args
,
5467 { 0, 0 /* xt_iclass_ill_n */,
5469 { 3, Iclass_xt_iclass_loadi4_args
,
5471 { 2, Iclass_xt_iclass_mov_n_args
,
5473 { 2, Iclass_xt_iclass_movi_n_args
,
5475 { 0, 0 /* xt_iclass_nopn */,
5477 { 1, Iclass_xt_iclass_retn_args
,
5479 { 3, Iclass_xt_iclass_storei4_args
,
5481 { 3, Iclass_xt_iclass_addi_args
,
5483 { 3, Iclass_xt_iclass_addmi_args
,
5485 { 3, Iclass_xt_iclass_addsub_args
,
5487 { 3, Iclass_xt_iclass_bit_args
,
5489 { 3, Iclass_xt_iclass_bsi8_args
,
5491 { 3, Iclass_xt_iclass_bsi8b_args
,
5493 { 3, Iclass_xt_iclass_bsi8u_args
,
5495 { 3, Iclass_xt_iclass_bst8_args
,
5497 { 2, Iclass_xt_iclass_bsz12_args
,
5499 { 2, Iclass_xt_iclass_call0_args
,
5501 { 2, Iclass_xt_iclass_callx0_args
,
5503 { 4, Iclass_xt_iclass_exti_args
,
5505 { 0, 0 /* xt_iclass_ill */,
5507 { 1, Iclass_xt_iclass_jump_args
,
5509 { 1, Iclass_xt_iclass_jumpx_args
,
5511 { 3, Iclass_xt_iclass_l16ui_args
,
5513 { 3, Iclass_xt_iclass_l16si_args
,
5515 { 3, Iclass_xt_iclass_l32i_args
,
5517 { 2, Iclass_xt_iclass_l32r_args
,
5519 { 3, Iclass_xt_iclass_l8i_args
,
5521 { 2, Iclass_xt_iclass_loop_args
,
5522 3, Iclass_xt_iclass_loop_stateArgs
, 0, 0 },
5523 { 2, Iclass_xt_iclass_loopz_args
,
5524 3, Iclass_xt_iclass_loopz_stateArgs
, 0, 0 },
5525 { 2, Iclass_xt_iclass_movi_args
,
5527 { 3, Iclass_xt_iclass_movz_args
,
5529 { 2, Iclass_xt_iclass_neg_args
,
5531 { 0, 0 /* xt_iclass_nop */,
5533 { 1, Iclass_xt_iclass_return_args
,
5535 { 0, 0 /* xt_iclass_simcall */,
5537 { 3, Iclass_xt_iclass_s16i_args
,
5539 { 3, Iclass_xt_iclass_s32i_args
,
5541 { 3, Iclass_xt_iclass_s32nb_args
,
5543 { 3, Iclass_xt_iclass_s8i_args
,
5545 { 1, Iclass_xt_iclass_sar_args
,
5546 1, Iclass_xt_iclass_sar_stateArgs
, 0, 0 },
5547 { 1, Iclass_xt_iclass_sari_args
,
5548 1, Iclass_xt_iclass_sari_stateArgs
, 0, 0 },
5549 { 2, Iclass_xt_iclass_shifts_args
,
5550 1, Iclass_xt_iclass_shifts_stateArgs
, 0, 0 },
5551 { 3, Iclass_xt_iclass_shiftst_args
,
5552 1, Iclass_xt_iclass_shiftst_stateArgs
, 0, 0 },
5553 { 2, Iclass_xt_iclass_shiftt_args
,
5554 1, Iclass_xt_iclass_shiftt_stateArgs
, 0, 0 },
5555 { 3, Iclass_xt_iclass_slli_args
,
5557 { 3, Iclass_xt_iclass_srai_args
,
5559 { 3, Iclass_xt_iclass_srli_args
,
5561 { 0, 0 /* xt_iclass_memw */,
5563 { 0, 0 /* xt_iclass_extw */,
5565 { 0, 0 /* xt_iclass_isync */,
5567 { 0, 0 /* xt_iclass_sync */,
5568 1, Iclass_xt_iclass_sync_stateArgs
, 0, 0 },
5569 { 2, Iclass_xt_iclass_rsil_args
,
5570 6, Iclass_xt_iclass_rsil_stateArgs
, 0, 0 },
5571 { 1, Iclass_xt_iclass_rsr_lend_args
,
5572 1, Iclass_xt_iclass_rsr_lend_stateArgs
, 0, 0 },
5573 { 1, Iclass_xt_iclass_wsr_lend_args
,
5574 1, Iclass_xt_iclass_wsr_lend_stateArgs
, 0, 0 },
5575 { 1, Iclass_xt_iclass_xsr_lend_args
,
5576 1, Iclass_xt_iclass_xsr_lend_stateArgs
, 0, 0 },
5577 { 1, Iclass_xt_iclass_rsr_lcount_args
,
5578 1, Iclass_xt_iclass_rsr_lcount_stateArgs
, 0, 0 },
5579 { 1, Iclass_xt_iclass_wsr_lcount_args
,
5580 2, Iclass_xt_iclass_wsr_lcount_stateArgs
, 0, 0 },
5581 { 1, Iclass_xt_iclass_xsr_lcount_args
,
5582 2, Iclass_xt_iclass_xsr_lcount_stateArgs
, 0, 0 },
5583 { 1, Iclass_xt_iclass_rsr_lbeg_args
,
5584 1, Iclass_xt_iclass_rsr_lbeg_stateArgs
, 0, 0 },
5585 { 1, Iclass_xt_iclass_wsr_lbeg_args
,
5586 1, Iclass_xt_iclass_wsr_lbeg_stateArgs
, 0, 0 },
5587 { 1, Iclass_xt_iclass_xsr_lbeg_args
,
5588 1, Iclass_xt_iclass_xsr_lbeg_stateArgs
, 0, 0 },
5589 { 1, Iclass_xt_iclass_rsr_sar_args
,
5590 1, Iclass_xt_iclass_rsr_sar_stateArgs
, 0, 0 },
5591 { 1, Iclass_xt_iclass_wsr_sar_args
,
5592 2, Iclass_xt_iclass_wsr_sar_stateArgs
, 0, 0 },
5593 { 1, Iclass_xt_iclass_xsr_sar_args
,
5594 1, Iclass_xt_iclass_xsr_sar_stateArgs
, 0, 0 },
5595 { 1, Iclass_xt_iclass_rsr_memctl_args
,
5597 { 1, Iclass_xt_iclass_wsr_memctl_args
,
5599 { 1, Iclass_xt_iclass_xsr_memctl_args
,
5601 { 1, Iclass_xt_iclass_rsr_litbase_args
,
5603 { 1, Iclass_xt_iclass_wsr_litbase_args
,
5605 { 1, Iclass_xt_iclass_xsr_litbase_args
,
5607 { 1, Iclass_xt_iclass_rsr_configid0_args
,
5609 { 1, Iclass_xt_iclass_wsr_configid0_args
,
5611 { 1, Iclass_xt_iclass_rsr_configid1_args
,
5613 { 1, Iclass_xt_iclass_rsr_ps_args
,
5614 6, Iclass_xt_iclass_rsr_ps_stateArgs
, 0, 0 },
5615 { 1, Iclass_xt_iclass_wsr_ps_args
,
5616 6, Iclass_xt_iclass_wsr_ps_stateArgs
, 0, 0 },
5617 { 1, Iclass_xt_iclass_xsr_ps_args
,
5618 6, Iclass_xt_iclass_xsr_ps_stateArgs
, 0, 0 },
5619 { 1, Iclass_xt_iclass_rsr_epc1_args
,
5620 1, Iclass_xt_iclass_rsr_epc1_stateArgs
, 0, 0 },
5621 { 1, Iclass_xt_iclass_wsr_epc1_args
,
5622 1, Iclass_xt_iclass_wsr_epc1_stateArgs
, 0, 0 },
5623 { 1, Iclass_xt_iclass_xsr_epc1_args
,
5624 1, Iclass_xt_iclass_xsr_epc1_stateArgs
, 0, 0 },
5625 { 1, Iclass_xt_iclass_rsr_excsave1_args
,
5626 1, Iclass_xt_iclass_rsr_excsave1_stateArgs
, 0, 0 },
5627 { 1, Iclass_xt_iclass_wsr_excsave1_args
,
5628 1, Iclass_xt_iclass_wsr_excsave1_stateArgs
, 0, 0 },
5629 { 1, Iclass_xt_iclass_xsr_excsave1_args
,
5630 1, Iclass_xt_iclass_xsr_excsave1_stateArgs
, 0, 0 },
5631 { 1, Iclass_xt_iclass_rsr_epc2_args
,
5632 1, Iclass_xt_iclass_rsr_epc2_stateArgs
, 0, 0 },
5633 { 1, Iclass_xt_iclass_wsr_epc2_args
,
5634 1, Iclass_xt_iclass_wsr_epc2_stateArgs
, 0, 0 },
5635 { 1, Iclass_xt_iclass_xsr_epc2_args
,
5636 1, Iclass_xt_iclass_xsr_epc2_stateArgs
, 0, 0 },
5637 { 1, Iclass_xt_iclass_rsr_excsave2_args
,
5638 1, Iclass_xt_iclass_rsr_excsave2_stateArgs
, 0, 0 },
5639 { 1, Iclass_xt_iclass_wsr_excsave2_args
,
5640 1, Iclass_xt_iclass_wsr_excsave2_stateArgs
, 0, 0 },
5641 { 1, Iclass_xt_iclass_xsr_excsave2_args
,
5642 1, Iclass_xt_iclass_xsr_excsave2_stateArgs
, 0, 0 },
5643 { 1, Iclass_xt_iclass_rsr_epc3_args
,
5644 1, Iclass_xt_iclass_rsr_epc3_stateArgs
, 0, 0 },
5645 { 1, Iclass_xt_iclass_wsr_epc3_args
,
5646 1, Iclass_xt_iclass_wsr_epc3_stateArgs
, 0, 0 },
5647 { 1, Iclass_xt_iclass_xsr_epc3_args
,
5648 1, Iclass_xt_iclass_xsr_epc3_stateArgs
, 0, 0 },
5649 { 1, Iclass_xt_iclass_rsr_excsave3_args
,
5650 1, Iclass_xt_iclass_rsr_excsave3_stateArgs
, 0, 0 },
5651 { 1, Iclass_xt_iclass_wsr_excsave3_args
,
5652 1, Iclass_xt_iclass_wsr_excsave3_stateArgs
, 0, 0 },
5653 { 1, Iclass_xt_iclass_xsr_excsave3_args
,
5654 1, Iclass_xt_iclass_xsr_excsave3_stateArgs
, 0, 0 },
5655 { 1, Iclass_xt_iclass_rsr_epc4_args
,
5656 1, Iclass_xt_iclass_rsr_epc4_stateArgs
, 0, 0 },
5657 { 1, Iclass_xt_iclass_wsr_epc4_args
,
5658 1, Iclass_xt_iclass_wsr_epc4_stateArgs
, 0, 0 },
5659 { 1, Iclass_xt_iclass_xsr_epc4_args
,
5660 1, Iclass_xt_iclass_xsr_epc4_stateArgs
, 0, 0 },
5661 { 1, Iclass_xt_iclass_rsr_excsave4_args
,
5662 1, Iclass_xt_iclass_rsr_excsave4_stateArgs
, 0, 0 },
5663 { 1, Iclass_xt_iclass_wsr_excsave4_args
,
5664 1, Iclass_xt_iclass_wsr_excsave4_stateArgs
, 0, 0 },
5665 { 1, Iclass_xt_iclass_xsr_excsave4_args
,
5666 1, Iclass_xt_iclass_xsr_excsave4_stateArgs
, 0, 0 },
5667 { 1, Iclass_xt_iclass_rsr_epc5_args
,
5668 1, Iclass_xt_iclass_rsr_epc5_stateArgs
, 0, 0 },
5669 { 1, Iclass_xt_iclass_wsr_epc5_args
,
5670 1, Iclass_xt_iclass_wsr_epc5_stateArgs
, 0, 0 },
5671 { 1, Iclass_xt_iclass_xsr_epc5_args
,
5672 1, Iclass_xt_iclass_xsr_epc5_stateArgs
, 0, 0 },
5673 { 1, Iclass_xt_iclass_rsr_excsave5_args
,
5674 1, Iclass_xt_iclass_rsr_excsave5_stateArgs
, 0, 0 },
5675 { 1, Iclass_xt_iclass_wsr_excsave5_args
,
5676 1, Iclass_xt_iclass_wsr_excsave5_stateArgs
, 0, 0 },
5677 { 1, Iclass_xt_iclass_xsr_excsave5_args
,
5678 1, Iclass_xt_iclass_xsr_excsave5_stateArgs
, 0, 0 },
5679 { 1, Iclass_xt_iclass_rsr_epc6_args
,
5680 1, Iclass_xt_iclass_rsr_epc6_stateArgs
, 0, 0 },
5681 { 1, Iclass_xt_iclass_wsr_epc6_args
,
5682 1, Iclass_xt_iclass_wsr_epc6_stateArgs
, 0, 0 },
5683 { 1, Iclass_xt_iclass_xsr_epc6_args
,
5684 1, Iclass_xt_iclass_xsr_epc6_stateArgs
, 0, 0 },
5685 { 1, Iclass_xt_iclass_rsr_excsave6_args
,
5686 1, Iclass_xt_iclass_rsr_excsave6_stateArgs
, 0, 0 },
5687 { 1, Iclass_xt_iclass_wsr_excsave6_args
,
5688 1, Iclass_xt_iclass_wsr_excsave6_stateArgs
, 0, 0 },
5689 { 1, Iclass_xt_iclass_xsr_excsave6_args
,
5690 1, Iclass_xt_iclass_xsr_excsave6_stateArgs
, 0, 0 },
5691 { 1, Iclass_xt_iclass_rsr_epc7_args
,
5692 1, Iclass_xt_iclass_rsr_epc7_stateArgs
, 0, 0 },
5693 { 1, Iclass_xt_iclass_wsr_epc7_args
,
5694 1, Iclass_xt_iclass_wsr_epc7_stateArgs
, 0, 0 },
5695 { 1, Iclass_xt_iclass_xsr_epc7_args
,
5696 1, Iclass_xt_iclass_xsr_epc7_stateArgs
, 0, 0 },
5697 { 1, Iclass_xt_iclass_rsr_excsave7_args
,
5698 1, Iclass_xt_iclass_rsr_excsave7_stateArgs
, 0, 0 },
5699 { 1, Iclass_xt_iclass_wsr_excsave7_args
,
5700 1, Iclass_xt_iclass_wsr_excsave7_stateArgs
, 0, 0 },
5701 { 1, Iclass_xt_iclass_xsr_excsave7_args
,
5702 1, Iclass_xt_iclass_xsr_excsave7_stateArgs
, 0, 0 },
5703 { 1, Iclass_xt_iclass_rsr_eps2_args
,
5704 1, Iclass_xt_iclass_rsr_eps2_stateArgs
, 0, 0 },
5705 { 1, Iclass_xt_iclass_wsr_eps2_args
,
5706 1, Iclass_xt_iclass_wsr_eps2_stateArgs
, 0, 0 },
5707 { 1, Iclass_xt_iclass_xsr_eps2_args
,
5708 1, Iclass_xt_iclass_xsr_eps2_stateArgs
, 0, 0 },
5709 { 1, Iclass_xt_iclass_rsr_eps3_args
,
5710 1, Iclass_xt_iclass_rsr_eps3_stateArgs
, 0, 0 },
5711 { 1, Iclass_xt_iclass_wsr_eps3_args
,
5712 1, Iclass_xt_iclass_wsr_eps3_stateArgs
, 0, 0 },
5713 { 1, Iclass_xt_iclass_xsr_eps3_args
,
5714 1, Iclass_xt_iclass_xsr_eps3_stateArgs
, 0, 0 },
5715 { 1, Iclass_xt_iclass_rsr_eps4_args
,
5716 1, Iclass_xt_iclass_rsr_eps4_stateArgs
, 0, 0 },
5717 { 1, Iclass_xt_iclass_wsr_eps4_args
,
5718 1, Iclass_xt_iclass_wsr_eps4_stateArgs
, 0, 0 },
5719 { 1, Iclass_xt_iclass_xsr_eps4_args
,
5720 1, Iclass_xt_iclass_xsr_eps4_stateArgs
, 0, 0 },
5721 { 1, Iclass_xt_iclass_rsr_eps5_args
,
5722 1, Iclass_xt_iclass_rsr_eps5_stateArgs
, 0, 0 },
5723 { 1, Iclass_xt_iclass_wsr_eps5_args
,
5724 1, Iclass_xt_iclass_wsr_eps5_stateArgs
, 0, 0 },
5725 { 1, Iclass_xt_iclass_xsr_eps5_args
,
5726 1, Iclass_xt_iclass_xsr_eps5_stateArgs
, 0, 0 },
5727 { 1, Iclass_xt_iclass_rsr_eps6_args
,
5728 1, Iclass_xt_iclass_rsr_eps6_stateArgs
, 0, 0 },
5729 { 1, Iclass_xt_iclass_wsr_eps6_args
,
5730 1, Iclass_xt_iclass_wsr_eps6_stateArgs
, 0, 0 },
5731 { 1, Iclass_xt_iclass_xsr_eps6_args
,
5732 1, Iclass_xt_iclass_xsr_eps6_stateArgs
, 0, 0 },
5733 { 1, Iclass_xt_iclass_rsr_eps7_args
,
5734 1, Iclass_xt_iclass_rsr_eps7_stateArgs
, 0, 0 },
5735 { 1, Iclass_xt_iclass_wsr_eps7_args
,
5736 1, Iclass_xt_iclass_wsr_eps7_stateArgs
, 0, 0 },
5737 { 1, Iclass_xt_iclass_xsr_eps7_args
,
5738 1, Iclass_xt_iclass_xsr_eps7_stateArgs
, 0, 0 },
5739 { 1, Iclass_xt_iclass_rsr_excvaddr_args
,
5740 1, Iclass_xt_iclass_rsr_excvaddr_stateArgs
, 0, 0 },
5741 { 1, Iclass_xt_iclass_wsr_excvaddr_args
,
5742 1, Iclass_xt_iclass_wsr_excvaddr_stateArgs
, 0, 0 },
5743 { 1, Iclass_xt_iclass_xsr_excvaddr_args
,
5744 1, Iclass_xt_iclass_xsr_excvaddr_stateArgs
, 0, 0 },
5745 { 1, Iclass_xt_iclass_rsr_depc_args
,
5746 1, Iclass_xt_iclass_rsr_depc_stateArgs
, 0, 0 },
5747 { 1, Iclass_xt_iclass_wsr_depc_args
,
5748 1, Iclass_xt_iclass_wsr_depc_stateArgs
, 0, 0 },
5749 { 1, Iclass_xt_iclass_xsr_depc_args
,
5750 1, Iclass_xt_iclass_xsr_depc_stateArgs
, 0, 0 },
5751 { 1, Iclass_xt_iclass_rsr_exccause_args
,
5752 2, Iclass_xt_iclass_rsr_exccause_stateArgs
, 0, 0 },
5753 { 1, Iclass_xt_iclass_wsr_exccause_args
,
5754 1, Iclass_xt_iclass_wsr_exccause_stateArgs
, 0, 0 },
5755 { 1, Iclass_xt_iclass_xsr_exccause_args
,
5756 1, Iclass_xt_iclass_xsr_exccause_stateArgs
, 0, 0 },
5757 { 1, Iclass_xt_iclass_rsr_misc0_args
,
5758 1, Iclass_xt_iclass_rsr_misc0_stateArgs
, 0, 0 },
5759 { 1, Iclass_xt_iclass_wsr_misc0_args
,
5760 1, Iclass_xt_iclass_wsr_misc0_stateArgs
, 0, 0 },
5761 { 1, Iclass_xt_iclass_xsr_misc0_args
,
5762 1, Iclass_xt_iclass_xsr_misc0_stateArgs
, 0, 0 },
5763 { 1, Iclass_xt_iclass_rsr_misc1_args
,
5764 1, Iclass_xt_iclass_rsr_misc1_stateArgs
, 0, 0 },
5765 { 1, Iclass_xt_iclass_wsr_misc1_args
,
5766 1, Iclass_xt_iclass_wsr_misc1_stateArgs
, 0, 0 },
5767 { 1, Iclass_xt_iclass_xsr_misc1_args
,
5768 1, Iclass_xt_iclass_xsr_misc1_stateArgs
, 0, 0 },
5769 { 1, Iclass_xt_iclass_rsr_prid_args
,
5771 { 1, Iclass_xt_iclass_rsr_vecbase_args
,
5772 1, Iclass_xt_iclass_rsr_vecbase_stateArgs
, 0, 0 },
5773 { 1, Iclass_xt_iclass_wsr_vecbase_args
,
5774 1, Iclass_xt_iclass_wsr_vecbase_stateArgs
, 0, 0 },
5775 { 1, Iclass_xt_iclass_xsr_vecbase_args
,
5776 1, Iclass_xt_iclass_xsr_vecbase_stateArgs
, 0, 0 },
5777 { 3, Iclass_xt_mul16_args
,
5779 { 3, Iclass_xt_mul32_args
,
5781 { 2, Iclass_xt_iclass_mac16_aa_args
,
5782 1, Iclass_xt_iclass_mac16_aa_stateArgs
, 0, 0 },
5783 { 2, Iclass_xt_iclass_mac16_ad_args
,
5784 1, Iclass_xt_iclass_mac16_ad_stateArgs
, 0, 0 },
5785 { 2, Iclass_xt_iclass_mac16_da_args
,
5786 1, Iclass_xt_iclass_mac16_da_stateArgs
, 0, 0 },
5787 { 2, Iclass_xt_iclass_mac16_dd_args
,
5788 1, Iclass_xt_iclass_mac16_dd_stateArgs
, 0, 0 },
5789 { 2, Iclass_xt_iclass_mac16a_aa_args
,
5790 1, Iclass_xt_iclass_mac16a_aa_stateArgs
, 0, 0 },
5791 { 2, Iclass_xt_iclass_mac16a_ad_args
,
5792 1, Iclass_xt_iclass_mac16a_ad_stateArgs
, 0, 0 },
5793 { 2, Iclass_xt_iclass_mac16a_da_args
,
5794 1, Iclass_xt_iclass_mac16a_da_stateArgs
, 0, 0 },
5795 { 2, Iclass_xt_iclass_mac16a_dd_args
,
5796 1, Iclass_xt_iclass_mac16a_dd_stateArgs
, 0, 0 },
5797 { 4, Iclass_xt_iclass_mac16al_da_args
,
5798 1, Iclass_xt_iclass_mac16al_da_stateArgs
, 0, 0 },
5799 { 4, Iclass_xt_iclass_mac16al_dd_args
,
5800 1, Iclass_xt_iclass_mac16al_dd_stateArgs
, 0, 0 },
5801 { 2, Iclass_xt_iclass_mac16_l_args
,
5803 { 2, Iclass_xt_iclass_rsr_m0_args
,
5805 { 2, Iclass_xt_iclass_wsr_m0_args
,
5807 { 2, Iclass_xt_iclass_xsr_m0_args
,
5809 { 2, Iclass_xt_iclass_rsr_m1_args
,
5811 { 2, Iclass_xt_iclass_wsr_m1_args
,
5813 { 2, Iclass_xt_iclass_xsr_m1_args
,
5815 { 2, Iclass_xt_iclass_rsr_m2_args
,
5817 { 2, Iclass_xt_iclass_wsr_m2_args
,
5819 { 2, Iclass_xt_iclass_xsr_m2_args
,
5821 { 2, Iclass_xt_iclass_rsr_m3_args
,
5823 { 2, Iclass_xt_iclass_wsr_m3_args
,
5825 { 2, Iclass_xt_iclass_xsr_m3_args
,
5827 { 1, Iclass_xt_iclass_rsr_acclo_args
,
5828 1, Iclass_xt_iclass_rsr_acclo_stateArgs
, 0, 0 },
5829 { 1, Iclass_xt_iclass_wsr_acclo_args
,
5830 1, Iclass_xt_iclass_wsr_acclo_stateArgs
, 0, 0 },
5831 { 1, Iclass_xt_iclass_xsr_acclo_args
,
5832 1, Iclass_xt_iclass_xsr_acclo_stateArgs
, 0, 0 },
5833 { 1, Iclass_xt_iclass_rsr_acchi_args
,
5834 1, Iclass_xt_iclass_rsr_acchi_stateArgs
, 0, 0 },
5835 { 1, Iclass_xt_iclass_wsr_acchi_args
,
5836 1, Iclass_xt_iclass_wsr_acchi_stateArgs
, 0, 0 },
5837 { 1, Iclass_xt_iclass_xsr_acchi_args
,
5838 1, Iclass_xt_iclass_xsr_acchi_stateArgs
, 0, 0 },
5839 { 1, Iclass_xt_iclass_rfi_args
,
5840 20, Iclass_xt_iclass_rfi_stateArgs
, 0, 0 },
5841 { 1, Iclass_xt_iclass_wait_args
,
5842 1, Iclass_xt_iclass_wait_stateArgs
, 0, 0 },
5843 { 1, Iclass_xt_iclass_rsr_interrupt_args
,
5844 1, Iclass_xt_iclass_rsr_interrupt_stateArgs
, 0, 0 },
5845 { 1, Iclass_xt_iclass_wsr_intset_args
,
5846 2, Iclass_xt_iclass_wsr_intset_stateArgs
, 0, 0 },
5847 { 1, Iclass_xt_iclass_wsr_intclear_args
,
5848 2, Iclass_xt_iclass_wsr_intclear_stateArgs
, 0, 0 },
5849 { 1, Iclass_xt_iclass_rsr_intenable_args
,
5850 1, Iclass_xt_iclass_rsr_intenable_stateArgs
, 0, 0 },
5851 { 1, Iclass_xt_iclass_wsr_intenable_args
,
5852 1, Iclass_xt_iclass_wsr_intenable_stateArgs
, 0, 0 },
5853 { 1, Iclass_xt_iclass_xsr_intenable_args
,
5854 1, Iclass_xt_iclass_xsr_intenable_stateArgs
, 0, 0 },
5855 { 2, Iclass_xt_iclass_break_args
,
5856 2, Iclass_xt_iclass_break_stateArgs
, 0, 0 },
5857 { 1, Iclass_xt_iclass_break_n_args
,
5858 2, Iclass_xt_iclass_break_n_stateArgs
, 0, 0 },
5859 { 1, Iclass_xt_iclass_rsr_dbreaka0_args
,
5860 1, Iclass_xt_iclass_rsr_dbreaka0_stateArgs
, 0, 0 },
5861 { 1, Iclass_xt_iclass_wsr_dbreaka0_args
,
5862 2, Iclass_xt_iclass_wsr_dbreaka0_stateArgs
, 0, 0 },
5863 { 1, Iclass_xt_iclass_xsr_dbreaka0_args
,
5864 2, Iclass_xt_iclass_xsr_dbreaka0_stateArgs
, 0, 0 },
5865 { 1, Iclass_xt_iclass_rsr_dbreakc0_args
,
5866 1, Iclass_xt_iclass_rsr_dbreakc0_stateArgs
, 0, 0 },
5867 { 1, Iclass_xt_iclass_wsr_dbreakc0_args
,
5868 2, Iclass_xt_iclass_wsr_dbreakc0_stateArgs
, 0, 0 },
5869 { 1, Iclass_xt_iclass_xsr_dbreakc0_args
,
5870 2, Iclass_xt_iclass_xsr_dbreakc0_stateArgs
, 0, 0 },
5871 { 1, Iclass_xt_iclass_rsr_dbreaka1_args
,
5872 1, Iclass_xt_iclass_rsr_dbreaka1_stateArgs
, 0, 0 },
5873 { 1, Iclass_xt_iclass_wsr_dbreaka1_args
,
5874 2, Iclass_xt_iclass_wsr_dbreaka1_stateArgs
, 0, 0 },
5875 { 1, Iclass_xt_iclass_xsr_dbreaka1_args
,
5876 2, Iclass_xt_iclass_xsr_dbreaka1_stateArgs
, 0, 0 },
5877 { 1, Iclass_xt_iclass_rsr_dbreakc1_args
,
5878 1, Iclass_xt_iclass_rsr_dbreakc1_stateArgs
, 0, 0 },
5879 { 1, Iclass_xt_iclass_wsr_dbreakc1_args
,
5880 2, Iclass_xt_iclass_wsr_dbreakc1_stateArgs
, 0, 0 },
5881 { 1, Iclass_xt_iclass_xsr_dbreakc1_args
,
5882 2, Iclass_xt_iclass_xsr_dbreakc1_stateArgs
, 0, 0 },
5883 { 1, Iclass_xt_iclass_rsr_ibreaka0_args
,
5884 1, Iclass_xt_iclass_rsr_ibreaka0_stateArgs
, 0, 0 },
5885 { 1, Iclass_xt_iclass_wsr_ibreaka0_args
,
5886 1, Iclass_xt_iclass_wsr_ibreaka0_stateArgs
, 0, 0 },
5887 { 1, Iclass_xt_iclass_xsr_ibreaka0_args
,
5888 1, Iclass_xt_iclass_xsr_ibreaka0_stateArgs
, 0, 0 },
5889 { 1, Iclass_xt_iclass_rsr_ibreaka1_args
,
5890 1, Iclass_xt_iclass_rsr_ibreaka1_stateArgs
, 0, 0 },
5891 { 1, Iclass_xt_iclass_wsr_ibreaka1_args
,
5892 1, Iclass_xt_iclass_wsr_ibreaka1_stateArgs
, 0, 0 },
5893 { 1, Iclass_xt_iclass_xsr_ibreaka1_args
,
5894 1, Iclass_xt_iclass_xsr_ibreaka1_stateArgs
, 0, 0 },
5895 { 1, Iclass_xt_iclass_rsr_ibreakenable_args
,
5896 1, Iclass_xt_iclass_rsr_ibreakenable_stateArgs
, 0, 0 },
5897 { 1, Iclass_xt_iclass_wsr_ibreakenable_args
,
5898 1, Iclass_xt_iclass_wsr_ibreakenable_stateArgs
, 0, 0 },
5899 { 1, Iclass_xt_iclass_xsr_ibreakenable_args
,
5900 1, Iclass_xt_iclass_xsr_ibreakenable_stateArgs
, 0, 0 },
5901 { 1, Iclass_xt_iclass_rsr_debugcause_args
,
5902 2, Iclass_xt_iclass_rsr_debugcause_stateArgs
, 0, 0 },
5903 { 1, Iclass_xt_iclass_wsr_debugcause_args
,
5904 2, Iclass_xt_iclass_wsr_debugcause_stateArgs
, 0, 0 },
5905 { 1, Iclass_xt_iclass_xsr_debugcause_args
,
5906 2, Iclass_xt_iclass_xsr_debugcause_stateArgs
, 0, 0 },
5907 { 1, Iclass_xt_iclass_rsr_icount_args
,
5908 1, Iclass_xt_iclass_rsr_icount_stateArgs
, 0, 0 },
5909 { 1, Iclass_xt_iclass_wsr_icount_args
,
5910 2, Iclass_xt_iclass_wsr_icount_stateArgs
, 0, 0 },
5911 { 1, Iclass_xt_iclass_xsr_icount_args
,
5912 2, Iclass_xt_iclass_xsr_icount_stateArgs
, 0, 0 },
5913 { 1, Iclass_xt_iclass_rsr_icountlevel_args
,
5914 1, Iclass_xt_iclass_rsr_icountlevel_stateArgs
, 0, 0 },
5915 { 1, Iclass_xt_iclass_wsr_icountlevel_args
,
5916 1, Iclass_xt_iclass_wsr_icountlevel_stateArgs
, 0, 0 },
5917 { 1, Iclass_xt_iclass_xsr_icountlevel_args
,
5918 1, Iclass_xt_iclass_xsr_icountlevel_stateArgs
, 0, 0 },
5919 { 1, Iclass_xt_iclass_rsr_ddr_args
,
5920 1, Iclass_xt_iclass_rsr_ddr_stateArgs
, 0, 0 },
5921 { 1, Iclass_xt_iclass_wsr_ddr_args
,
5922 2, Iclass_xt_iclass_wsr_ddr_stateArgs
, 0, 0 },
5923 { 1, Iclass_xt_iclass_xsr_ddr_args
,
5924 2, Iclass_xt_iclass_xsr_ddr_stateArgs
, 0, 0 },
5925 { 1, Iclass_xt_iclass_lddr32_p_args
,
5926 3, Iclass_xt_iclass_lddr32_p_stateArgs
, 0, 0 },
5927 { 1, Iclass_xt_iclass_sddr32_p_args
,
5928 2, Iclass_xt_iclass_sddr32_p_stateArgs
, 0, 0 },
5929 { 1, Iclass_xt_iclass_rfdo_args
,
5930 9, Iclass_xt_iclass_rfdo_stateArgs
, 0, 0 },
5931 { 0, 0 /* xt_iclass_rfdd */,
5932 1, Iclass_xt_iclass_rfdd_stateArgs
, 0, 0 },
5933 { 1, Iclass_xt_iclass_wsr_mmid_args
,
5934 1, Iclass_xt_iclass_wsr_mmid_stateArgs
, 0, 0 },
5935 { 1, Iclass_xt_iclass_rsr_ccount_args
,
5936 1, Iclass_xt_iclass_rsr_ccount_stateArgs
, 0, 0 },
5937 { 1, Iclass_xt_iclass_wsr_ccount_args
,
5938 2, Iclass_xt_iclass_wsr_ccount_stateArgs
, 0, 0 },
5939 { 1, Iclass_xt_iclass_xsr_ccount_args
,
5940 2, Iclass_xt_iclass_xsr_ccount_stateArgs
, 0, 0 },
5941 { 1, Iclass_xt_iclass_rsr_ccompare0_args
,
5942 1, Iclass_xt_iclass_rsr_ccompare0_stateArgs
, 0, 0 },
5943 { 1, Iclass_xt_iclass_wsr_ccompare0_args
,
5944 2, Iclass_xt_iclass_wsr_ccompare0_stateArgs
, 0, 0 },
5945 { 1, Iclass_xt_iclass_xsr_ccompare0_args
,
5946 2, Iclass_xt_iclass_xsr_ccompare0_stateArgs
, 0, 0 },
5947 { 1, Iclass_xt_iclass_rsr_ccompare1_args
,
5948 1, Iclass_xt_iclass_rsr_ccompare1_stateArgs
, 0, 0 },
5949 { 1, Iclass_xt_iclass_wsr_ccompare1_args
,
5950 2, Iclass_xt_iclass_wsr_ccompare1_stateArgs
, 0, 0 },
5951 { 1, Iclass_xt_iclass_xsr_ccompare1_args
,
5952 2, Iclass_xt_iclass_xsr_ccompare1_stateArgs
, 0, 0 },
5953 { 1, Iclass_xt_iclass_rsr_ccompare2_args
,
5954 1, Iclass_xt_iclass_rsr_ccompare2_stateArgs
, 0, 0 },
5955 { 1, Iclass_xt_iclass_wsr_ccompare2_args
,
5956 2, Iclass_xt_iclass_wsr_ccompare2_stateArgs
, 0, 0 },
5957 { 1, Iclass_xt_iclass_xsr_ccompare2_args
,
5958 2, Iclass_xt_iclass_xsr_ccompare2_stateArgs
, 0, 0 },
5959 { 2, Iclass_xt_iclass_icache_args
,
5961 { 2, Iclass_xt_iclass_icache_lock_args
,
5963 { 2, Iclass_xt_iclass_icache_inv_args
,
5965 { 2, Iclass_xt_iclass_licx_args
,
5967 { 2, Iclass_xt_iclass_sicx_args
,
5969 { 2, Iclass_xt_iclass_dcache_args
,
5971 { 1, Iclass_xt_iclass_dcache_dyn_args
,
5973 { 2, Iclass_xt_iclass_dcache_ind_args
,
5975 { 2, Iclass_xt_iclass_dcache_inv_args
,
5977 { 2, Iclass_xt_iclass_dpf_args
,
5979 { 2, Iclass_xt_iclass_dcache_lock_args
,
5981 { 2, Iclass_xt_iclass_sdct_args
,
5983 { 2, Iclass_xt_iclass_ldct_args
,
5985 { 1, Iclass_xt_iclass_idtlb_args
,
5986 1, Iclass_xt_iclass_idtlb_stateArgs
, 0, 0 },
5987 { 2, Iclass_xt_iclass_rdtlb_args
,
5989 { 2, Iclass_xt_iclass_wdtlb_args
,
5990 1, Iclass_xt_iclass_wdtlb_stateArgs
, 0, 0 },
5991 { 1, Iclass_xt_iclass_iitlb_args
,
5993 { 2, Iclass_xt_iclass_ritlb_args
,
5995 { 2, Iclass_xt_iclass_witlb_args
,
5997 { 3, Iclass_xt_iclass_clamp_args
,
5999 { 3, Iclass_xt_iclass_minmax_args
,
6001 { 2, Iclass_xt_iclass_nsa_args
,
6003 { 3, Iclass_xt_iclass_sx_args
,
6005 { 3, Iclass_xt_iclass_l32ai_args
,
6007 { 3, Iclass_xt_iclass_s32ri_args
,
6009 { 3, Iclass_xt_iclass_s32c1i_args
,
6010 3, Iclass_xt_iclass_s32c1i_stateArgs
, 0, 0 },
6011 { 1, Iclass_xt_iclass_rsr_scompare1_args
,
6012 1, Iclass_xt_iclass_rsr_scompare1_stateArgs
, 0, 0 },
6013 { 1, Iclass_xt_iclass_wsr_scompare1_args
,
6014 1, Iclass_xt_iclass_wsr_scompare1_stateArgs
, 0, 0 },
6015 { 1, Iclass_xt_iclass_xsr_scompare1_args
,
6016 1, Iclass_xt_iclass_xsr_scompare1_stateArgs
, 0, 0 },
6017 { 1, Iclass_xt_iclass_rsr_atomctl_args
,
6018 1, Iclass_xt_iclass_rsr_atomctl_stateArgs
, 0, 0 },
6019 { 1, Iclass_xt_iclass_wsr_atomctl_args
,
6020 2, Iclass_xt_iclass_wsr_atomctl_stateArgs
, 0, 0 },
6021 { 1, Iclass_xt_iclass_xsr_atomctl_args
,
6022 2, Iclass_xt_iclass_xsr_atomctl_stateArgs
, 0, 0 },
6023 { 3, Iclass_xt_iclass_div_args
,
6025 { 2, Iclass_xt_iclass_rer_args
,
6026 1, Iclass_xt_iclass_rer_stateArgs
, 2, Iclass_xt_iclass_rer_intfArgs
},
6027 { 2, Iclass_xt_iclass_wer_args
,
6028 1, Iclass_xt_iclass_wer_stateArgs
, 2, Iclass_xt_iclass_wer_intfArgs
},
6029 { 1, Iclass_rur_expstate_args
,
6030 1, Iclass_rur_expstate_stateArgs
, 0, 0 },
6031 { 1, Iclass_wur_expstate_args
,
6032 1, Iclass_wur_expstate_stateArgs
, 0, 0 },
6033 { 1, Iclass_iclass_READ_IMPWIRE_args
,
6034 0, 0, 1, Iclass_iclass_READ_IMPWIRE_intfArgs
},
6035 { 1, Iclass_iclass_SETB_EXPSTATE_args
,
6036 1, Iclass_iclass_SETB_EXPSTATE_stateArgs
, 0, 0 },
6037 { 1, Iclass_iclass_CLRB_EXPSTATE_args
,
6038 1, Iclass_iclass_CLRB_EXPSTATE_stateArgs
, 0, 0 },
6039 { 2, Iclass_iclass_WRMSK_EXPSTATE_args
,
6040 1, Iclass_iclass_WRMSK_EXPSTATE_stateArgs
, 0, 0 }
6043 enum xtensa_iclass_id
{
6044 ICLASS_xt_iclass_excw
,
6045 ICLASS_xt_iclass_rfe
,
6046 ICLASS_xt_iclass_rfde
,
6047 ICLASS_xt_iclass_syscall
,
6048 ICLASS_xt_iclass_call12
,
6049 ICLASS_xt_iclass_call8
,
6050 ICLASS_xt_iclass_call4
,
6051 ICLASS_xt_iclass_callx12
,
6052 ICLASS_xt_iclass_callx8
,
6053 ICLASS_xt_iclass_callx4
,
6054 ICLASS_xt_iclass_entry
,
6055 ICLASS_xt_iclass_movsp
,
6056 ICLASS_xt_iclass_rotw
,
6057 ICLASS_xt_iclass_retw
,
6058 ICLASS_xt_iclass_rfwou
,
6059 ICLASS_xt_iclass_l32e
,
6060 ICLASS_xt_iclass_s32e
,
6061 ICLASS_xt_iclass_rsr_windowbase
,
6062 ICLASS_xt_iclass_wsr_windowbase
,
6063 ICLASS_xt_iclass_xsr_windowbase
,
6064 ICLASS_xt_iclass_rsr_windowstart
,
6065 ICLASS_xt_iclass_wsr_windowstart
,
6066 ICLASS_xt_iclass_xsr_windowstart
,
6067 ICLASS_xt_iclass_add_n
,
6068 ICLASS_xt_iclass_addi_n
,
6069 ICLASS_xt_iclass_bz6
,
6070 ICLASS_xt_iclass_ill_n
,
6071 ICLASS_xt_iclass_loadi4
,
6072 ICLASS_xt_iclass_mov_n
,
6073 ICLASS_xt_iclass_movi_n
,
6074 ICLASS_xt_iclass_nopn
,
6075 ICLASS_xt_iclass_retn
,
6076 ICLASS_xt_iclass_storei4
,
6077 ICLASS_xt_iclass_addi
,
6078 ICLASS_xt_iclass_addmi
,
6079 ICLASS_xt_iclass_addsub
,
6080 ICLASS_xt_iclass_bit
,
6081 ICLASS_xt_iclass_bsi8
,
6082 ICLASS_xt_iclass_bsi8b
,
6083 ICLASS_xt_iclass_bsi8u
,
6084 ICLASS_xt_iclass_bst8
,
6085 ICLASS_xt_iclass_bsz12
,
6086 ICLASS_xt_iclass_call0
,
6087 ICLASS_xt_iclass_callx0
,
6088 ICLASS_xt_iclass_exti
,
6089 ICLASS_xt_iclass_ill
,
6090 ICLASS_xt_iclass_jump
,
6091 ICLASS_xt_iclass_jumpx
,
6092 ICLASS_xt_iclass_l16ui
,
6093 ICLASS_xt_iclass_l16si
,
6094 ICLASS_xt_iclass_l32i
,
6095 ICLASS_xt_iclass_l32r
,
6096 ICLASS_xt_iclass_l8i
,
6097 ICLASS_xt_iclass_loop
,
6098 ICLASS_xt_iclass_loopz
,
6099 ICLASS_xt_iclass_movi
,
6100 ICLASS_xt_iclass_movz
,
6101 ICLASS_xt_iclass_neg
,
6102 ICLASS_xt_iclass_nop
,
6103 ICLASS_xt_iclass_return
,
6104 ICLASS_xt_iclass_simcall
,
6105 ICLASS_xt_iclass_s16i
,
6106 ICLASS_xt_iclass_s32i
,
6107 ICLASS_xt_iclass_s32nb
,
6108 ICLASS_xt_iclass_s8i
,
6109 ICLASS_xt_iclass_sar
,
6110 ICLASS_xt_iclass_sari
,
6111 ICLASS_xt_iclass_shifts
,
6112 ICLASS_xt_iclass_shiftst
,
6113 ICLASS_xt_iclass_shiftt
,
6114 ICLASS_xt_iclass_slli
,
6115 ICLASS_xt_iclass_srai
,
6116 ICLASS_xt_iclass_srli
,
6117 ICLASS_xt_iclass_memw
,
6118 ICLASS_xt_iclass_extw
,
6119 ICLASS_xt_iclass_isync
,
6120 ICLASS_xt_iclass_sync
,
6121 ICLASS_xt_iclass_rsil
,
6122 ICLASS_xt_iclass_rsr_lend
,
6123 ICLASS_xt_iclass_wsr_lend
,
6124 ICLASS_xt_iclass_xsr_lend
,
6125 ICLASS_xt_iclass_rsr_lcount
,
6126 ICLASS_xt_iclass_wsr_lcount
,
6127 ICLASS_xt_iclass_xsr_lcount
,
6128 ICLASS_xt_iclass_rsr_lbeg
,
6129 ICLASS_xt_iclass_wsr_lbeg
,
6130 ICLASS_xt_iclass_xsr_lbeg
,
6131 ICLASS_xt_iclass_rsr_sar
,
6132 ICLASS_xt_iclass_wsr_sar
,
6133 ICLASS_xt_iclass_xsr_sar
,
6134 ICLASS_xt_iclass_rsr_memctl
,
6135 ICLASS_xt_iclass_wsr_memctl
,
6136 ICLASS_xt_iclass_xsr_memctl
,
6137 ICLASS_xt_iclass_rsr_litbase
,
6138 ICLASS_xt_iclass_wsr_litbase
,
6139 ICLASS_xt_iclass_xsr_litbase
,
6140 ICLASS_xt_iclass_rsr_configid0
,
6141 ICLASS_xt_iclass_wsr_configid0
,
6142 ICLASS_xt_iclass_rsr_configid1
,
6143 ICLASS_xt_iclass_rsr_ps
,
6144 ICLASS_xt_iclass_wsr_ps
,
6145 ICLASS_xt_iclass_xsr_ps
,
6146 ICLASS_xt_iclass_rsr_epc1
,
6147 ICLASS_xt_iclass_wsr_epc1
,
6148 ICLASS_xt_iclass_xsr_epc1
,
6149 ICLASS_xt_iclass_rsr_excsave1
,
6150 ICLASS_xt_iclass_wsr_excsave1
,
6151 ICLASS_xt_iclass_xsr_excsave1
,
6152 ICLASS_xt_iclass_rsr_epc2
,
6153 ICLASS_xt_iclass_wsr_epc2
,
6154 ICLASS_xt_iclass_xsr_epc2
,
6155 ICLASS_xt_iclass_rsr_excsave2
,
6156 ICLASS_xt_iclass_wsr_excsave2
,
6157 ICLASS_xt_iclass_xsr_excsave2
,
6158 ICLASS_xt_iclass_rsr_epc3
,
6159 ICLASS_xt_iclass_wsr_epc3
,
6160 ICLASS_xt_iclass_xsr_epc3
,
6161 ICLASS_xt_iclass_rsr_excsave3
,
6162 ICLASS_xt_iclass_wsr_excsave3
,
6163 ICLASS_xt_iclass_xsr_excsave3
,
6164 ICLASS_xt_iclass_rsr_epc4
,
6165 ICLASS_xt_iclass_wsr_epc4
,
6166 ICLASS_xt_iclass_xsr_epc4
,
6167 ICLASS_xt_iclass_rsr_excsave4
,
6168 ICLASS_xt_iclass_wsr_excsave4
,
6169 ICLASS_xt_iclass_xsr_excsave4
,
6170 ICLASS_xt_iclass_rsr_epc5
,
6171 ICLASS_xt_iclass_wsr_epc5
,
6172 ICLASS_xt_iclass_xsr_epc5
,
6173 ICLASS_xt_iclass_rsr_excsave5
,
6174 ICLASS_xt_iclass_wsr_excsave5
,
6175 ICLASS_xt_iclass_xsr_excsave5
,
6176 ICLASS_xt_iclass_rsr_epc6
,
6177 ICLASS_xt_iclass_wsr_epc6
,
6178 ICLASS_xt_iclass_xsr_epc6
,
6179 ICLASS_xt_iclass_rsr_excsave6
,
6180 ICLASS_xt_iclass_wsr_excsave6
,
6181 ICLASS_xt_iclass_xsr_excsave6
,
6182 ICLASS_xt_iclass_rsr_epc7
,
6183 ICLASS_xt_iclass_wsr_epc7
,
6184 ICLASS_xt_iclass_xsr_epc7
,
6185 ICLASS_xt_iclass_rsr_excsave7
,
6186 ICLASS_xt_iclass_wsr_excsave7
,
6187 ICLASS_xt_iclass_xsr_excsave7
,
6188 ICLASS_xt_iclass_rsr_eps2
,
6189 ICLASS_xt_iclass_wsr_eps2
,
6190 ICLASS_xt_iclass_xsr_eps2
,
6191 ICLASS_xt_iclass_rsr_eps3
,
6192 ICLASS_xt_iclass_wsr_eps3
,
6193 ICLASS_xt_iclass_xsr_eps3
,
6194 ICLASS_xt_iclass_rsr_eps4
,
6195 ICLASS_xt_iclass_wsr_eps4
,
6196 ICLASS_xt_iclass_xsr_eps4
,
6197 ICLASS_xt_iclass_rsr_eps5
,
6198 ICLASS_xt_iclass_wsr_eps5
,
6199 ICLASS_xt_iclass_xsr_eps5
,
6200 ICLASS_xt_iclass_rsr_eps6
,
6201 ICLASS_xt_iclass_wsr_eps6
,
6202 ICLASS_xt_iclass_xsr_eps6
,
6203 ICLASS_xt_iclass_rsr_eps7
,
6204 ICLASS_xt_iclass_wsr_eps7
,
6205 ICLASS_xt_iclass_xsr_eps7
,
6206 ICLASS_xt_iclass_rsr_excvaddr
,
6207 ICLASS_xt_iclass_wsr_excvaddr
,
6208 ICLASS_xt_iclass_xsr_excvaddr
,
6209 ICLASS_xt_iclass_rsr_depc
,
6210 ICLASS_xt_iclass_wsr_depc
,
6211 ICLASS_xt_iclass_xsr_depc
,
6212 ICLASS_xt_iclass_rsr_exccause
,
6213 ICLASS_xt_iclass_wsr_exccause
,
6214 ICLASS_xt_iclass_xsr_exccause
,
6215 ICLASS_xt_iclass_rsr_misc0
,
6216 ICLASS_xt_iclass_wsr_misc0
,
6217 ICLASS_xt_iclass_xsr_misc0
,
6218 ICLASS_xt_iclass_rsr_misc1
,
6219 ICLASS_xt_iclass_wsr_misc1
,
6220 ICLASS_xt_iclass_xsr_misc1
,
6221 ICLASS_xt_iclass_rsr_prid
,
6222 ICLASS_xt_iclass_rsr_vecbase
,
6223 ICLASS_xt_iclass_wsr_vecbase
,
6224 ICLASS_xt_iclass_xsr_vecbase
,
6227 ICLASS_xt_iclass_mac16_aa
,
6228 ICLASS_xt_iclass_mac16_ad
,
6229 ICLASS_xt_iclass_mac16_da
,
6230 ICLASS_xt_iclass_mac16_dd
,
6231 ICLASS_xt_iclass_mac16a_aa
,
6232 ICLASS_xt_iclass_mac16a_ad
,
6233 ICLASS_xt_iclass_mac16a_da
,
6234 ICLASS_xt_iclass_mac16a_dd
,
6235 ICLASS_xt_iclass_mac16al_da
,
6236 ICLASS_xt_iclass_mac16al_dd
,
6237 ICLASS_xt_iclass_mac16_l
,
6238 ICLASS_xt_iclass_rsr_m0
,
6239 ICLASS_xt_iclass_wsr_m0
,
6240 ICLASS_xt_iclass_xsr_m0
,
6241 ICLASS_xt_iclass_rsr_m1
,
6242 ICLASS_xt_iclass_wsr_m1
,
6243 ICLASS_xt_iclass_xsr_m1
,
6244 ICLASS_xt_iclass_rsr_m2
,
6245 ICLASS_xt_iclass_wsr_m2
,
6246 ICLASS_xt_iclass_xsr_m2
,
6247 ICLASS_xt_iclass_rsr_m3
,
6248 ICLASS_xt_iclass_wsr_m3
,
6249 ICLASS_xt_iclass_xsr_m3
,
6250 ICLASS_xt_iclass_rsr_acclo
,
6251 ICLASS_xt_iclass_wsr_acclo
,
6252 ICLASS_xt_iclass_xsr_acclo
,
6253 ICLASS_xt_iclass_rsr_acchi
,
6254 ICLASS_xt_iclass_wsr_acchi
,
6255 ICLASS_xt_iclass_xsr_acchi
,
6256 ICLASS_xt_iclass_rfi
,
6257 ICLASS_xt_iclass_wait
,
6258 ICLASS_xt_iclass_rsr_interrupt
,
6259 ICLASS_xt_iclass_wsr_intset
,
6260 ICLASS_xt_iclass_wsr_intclear
,
6261 ICLASS_xt_iclass_rsr_intenable
,
6262 ICLASS_xt_iclass_wsr_intenable
,
6263 ICLASS_xt_iclass_xsr_intenable
,
6264 ICLASS_xt_iclass_break
,
6265 ICLASS_xt_iclass_break_n
,
6266 ICLASS_xt_iclass_rsr_dbreaka0
,
6267 ICLASS_xt_iclass_wsr_dbreaka0
,
6268 ICLASS_xt_iclass_xsr_dbreaka0
,
6269 ICLASS_xt_iclass_rsr_dbreakc0
,
6270 ICLASS_xt_iclass_wsr_dbreakc0
,
6271 ICLASS_xt_iclass_xsr_dbreakc0
,
6272 ICLASS_xt_iclass_rsr_dbreaka1
,
6273 ICLASS_xt_iclass_wsr_dbreaka1
,
6274 ICLASS_xt_iclass_xsr_dbreaka1
,
6275 ICLASS_xt_iclass_rsr_dbreakc1
,
6276 ICLASS_xt_iclass_wsr_dbreakc1
,
6277 ICLASS_xt_iclass_xsr_dbreakc1
,
6278 ICLASS_xt_iclass_rsr_ibreaka0
,
6279 ICLASS_xt_iclass_wsr_ibreaka0
,
6280 ICLASS_xt_iclass_xsr_ibreaka0
,
6281 ICLASS_xt_iclass_rsr_ibreaka1
,
6282 ICLASS_xt_iclass_wsr_ibreaka1
,
6283 ICLASS_xt_iclass_xsr_ibreaka1
,
6284 ICLASS_xt_iclass_rsr_ibreakenable
,
6285 ICLASS_xt_iclass_wsr_ibreakenable
,
6286 ICLASS_xt_iclass_xsr_ibreakenable
,
6287 ICLASS_xt_iclass_rsr_debugcause
,
6288 ICLASS_xt_iclass_wsr_debugcause
,
6289 ICLASS_xt_iclass_xsr_debugcause
,
6290 ICLASS_xt_iclass_rsr_icount
,
6291 ICLASS_xt_iclass_wsr_icount
,
6292 ICLASS_xt_iclass_xsr_icount
,
6293 ICLASS_xt_iclass_rsr_icountlevel
,
6294 ICLASS_xt_iclass_wsr_icountlevel
,
6295 ICLASS_xt_iclass_xsr_icountlevel
,
6296 ICLASS_xt_iclass_rsr_ddr
,
6297 ICLASS_xt_iclass_wsr_ddr
,
6298 ICLASS_xt_iclass_xsr_ddr
,
6299 ICLASS_xt_iclass_lddr32_p
,
6300 ICLASS_xt_iclass_sddr32_p
,
6301 ICLASS_xt_iclass_rfdo
,
6302 ICLASS_xt_iclass_rfdd
,
6303 ICLASS_xt_iclass_wsr_mmid
,
6304 ICLASS_xt_iclass_rsr_ccount
,
6305 ICLASS_xt_iclass_wsr_ccount
,
6306 ICLASS_xt_iclass_xsr_ccount
,
6307 ICLASS_xt_iclass_rsr_ccompare0
,
6308 ICLASS_xt_iclass_wsr_ccompare0
,
6309 ICLASS_xt_iclass_xsr_ccompare0
,
6310 ICLASS_xt_iclass_rsr_ccompare1
,
6311 ICLASS_xt_iclass_wsr_ccompare1
,
6312 ICLASS_xt_iclass_xsr_ccompare1
,
6313 ICLASS_xt_iclass_rsr_ccompare2
,
6314 ICLASS_xt_iclass_wsr_ccompare2
,
6315 ICLASS_xt_iclass_xsr_ccompare2
,
6316 ICLASS_xt_iclass_icache
,
6317 ICLASS_xt_iclass_icache_lock
,
6318 ICLASS_xt_iclass_icache_inv
,
6319 ICLASS_xt_iclass_licx
,
6320 ICLASS_xt_iclass_sicx
,
6321 ICLASS_xt_iclass_dcache
,
6322 ICLASS_xt_iclass_dcache_dyn
,
6323 ICLASS_xt_iclass_dcache_ind
,
6324 ICLASS_xt_iclass_dcache_inv
,
6325 ICLASS_xt_iclass_dpf
,
6326 ICLASS_xt_iclass_dcache_lock
,
6327 ICLASS_xt_iclass_sdct
,
6328 ICLASS_xt_iclass_ldct
,
6329 ICLASS_xt_iclass_idtlb
,
6330 ICLASS_xt_iclass_rdtlb
,
6331 ICLASS_xt_iclass_wdtlb
,
6332 ICLASS_xt_iclass_iitlb
,
6333 ICLASS_xt_iclass_ritlb
,
6334 ICLASS_xt_iclass_witlb
,
6335 ICLASS_xt_iclass_clamp
,
6336 ICLASS_xt_iclass_minmax
,
6337 ICLASS_xt_iclass_nsa
,
6338 ICLASS_xt_iclass_sx
,
6339 ICLASS_xt_iclass_l32ai
,
6340 ICLASS_xt_iclass_s32ri
,
6341 ICLASS_xt_iclass_s32c1i
,
6342 ICLASS_xt_iclass_rsr_scompare1
,
6343 ICLASS_xt_iclass_wsr_scompare1
,
6344 ICLASS_xt_iclass_xsr_scompare1
,
6345 ICLASS_xt_iclass_rsr_atomctl
,
6346 ICLASS_xt_iclass_wsr_atomctl
,
6347 ICLASS_xt_iclass_xsr_atomctl
,
6348 ICLASS_xt_iclass_div
,
6349 ICLASS_xt_iclass_rer
,
6350 ICLASS_xt_iclass_wer
,
6351 ICLASS_rur_expstate
,
6352 ICLASS_wur_expstate
,
6353 ICLASS_iclass_READ_IMPWIRE
,
6354 ICLASS_iclass_SETB_EXPSTATE
,
6355 ICLASS_iclass_CLRB_EXPSTATE
,
6356 ICLASS_iclass_WRMSK_EXPSTATE
6360 /* Opcode encodings. */
6363 Opcode_excw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6365 slotbuf
[0] = 0x2080;
6369 Opcode_rfe_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6371 slotbuf
[0] = 0x3000;
6375 Opcode_rfde_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6377 slotbuf
[0] = 0x3200;
6381 Opcode_syscall_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6383 slotbuf
[0] = 0x5000;
6387 Opcode_call12_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6393 Opcode_call8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6399 Opcode_call4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6405 Opcode_callx12_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6411 Opcode_callx8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6417 Opcode_callx4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6423 Opcode_entry_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6429 Opcode_movsp_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6431 slotbuf
[0] = 0x1000;
6435 Opcode_rotw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6437 slotbuf
[0] = 0x408000;
6441 Opcode_retw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6447 Opcode_retw_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6449 slotbuf
[0] = 0xf01d;
6453 Opcode_rfwo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6455 slotbuf
[0] = 0x3400;
6459 Opcode_rfwu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6461 slotbuf
[0] = 0x3500;
6465 Opcode_l32e_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6467 slotbuf
[0] = 0x90000;
6471 Opcode_s32e_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6473 slotbuf
[0] = 0x490000;
6477 Opcode_rsr_windowbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6479 slotbuf
[0] = 0x34800;
6483 Opcode_wsr_windowbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6485 slotbuf
[0] = 0x134800;
6489 Opcode_xsr_windowbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6491 slotbuf
[0] = 0x614800;
6495 Opcode_rsr_windowstart_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6497 slotbuf
[0] = 0x34900;
6501 Opcode_wsr_windowstart_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6503 slotbuf
[0] = 0x134900;
6507 Opcode_xsr_windowstart_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6509 slotbuf
[0] = 0x614900;
6513 Opcode_add_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6519 Opcode_addi_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6525 Opcode_beqz_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6531 Opcode_bnez_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6537 Opcode_ill_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6539 slotbuf
[0] = 0xf06d;
6543 Opcode_l32i_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6549 Opcode_mov_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6555 Opcode_movi_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6561 Opcode_nop_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6563 slotbuf
[0] = 0xf03d;
6567 Opcode_ret_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6569 slotbuf
[0] = 0xf00d;
6573 Opcode_s32i_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6579 Opcode_addi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6581 slotbuf
[0] = 0xc002;
6585 Opcode_addmi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6587 slotbuf
[0] = 0xd002;
6591 Opcode_add_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6593 slotbuf
[0] = 0x800000;
6597 Opcode_sub_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6599 slotbuf
[0] = 0xc00000;
6603 Opcode_addx2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6605 slotbuf
[0] = 0x900000;
6609 Opcode_addx4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6611 slotbuf
[0] = 0xa00000;
6615 Opcode_addx8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6617 slotbuf
[0] = 0xb00000;
6621 Opcode_subx2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6623 slotbuf
[0] = 0xd00000;
6627 Opcode_subx4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6629 slotbuf
[0] = 0xe00000;
6633 Opcode_subx8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6635 slotbuf
[0] = 0xf00000;
6639 Opcode_and_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6641 slotbuf
[0] = 0x100000;
6645 Opcode_or_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6647 slotbuf
[0] = 0x200000;
6651 Opcode_xor_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6653 slotbuf
[0] = 0x300000;
6657 Opcode_beqi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6663 Opcode_bnei_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6669 Opcode_bgei_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6675 Opcode_blti_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6681 Opcode_bbci_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6683 slotbuf
[0] = 0x6007;
6687 Opcode_bbsi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6689 slotbuf
[0] = 0xe007;
6693 Opcode_bgeui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6699 Opcode_bltui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6705 Opcode_beq_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6707 slotbuf
[0] = 0x1007;
6711 Opcode_bne_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6713 slotbuf
[0] = 0x9007;
6717 Opcode_bge_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6719 slotbuf
[0] = 0xa007;
6723 Opcode_blt_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6725 slotbuf
[0] = 0x2007;
6729 Opcode_bgeu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6731 slotbuf
[0] = 0xb007;
6735 Opcode_bltu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6737 slotbuf
[0] = 0x3007;
6741 Opcode_bany_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6743 slotbuf
[0] = 0x8007;
6747 Opcode_bnone_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6753 Opcode_ball_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6755 slotbuf
[0] = 0x4007;
6759 Opcode_bnall_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6761 slotbuf
[0] = 0xc007;
6765 Opcode_bbc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6767 slotbuf
[0] = 0x5007;
6771 Opcode_bbs_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6773 slotbuf
[0] = 0xd007;
6777 Opcode_beqz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6783 Opcode_bnez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6789 Opcode_bgez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6795 Opcode_bltz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6801 Opcode_call0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6807 Opcode_callx0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6813 Opcode_extui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6815 slotbuf
[0] = 0x40000;
6819 Opcode_ill_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6825 Opcode_j_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6831 Opcode_jx_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6837 Opcode_l16ui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6839 slotbuf
[0] = 0x1002;
6843 Opcode_l16si_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6845 slotbuf
[0] = 0x9002;
6849 Opcode_l32i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6851 slotbuf
[0] = 0x2002;
6855 Opcode_l32r_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6861 Opcode_l8ui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6867 Opcode_loop_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6869 slotbuf
[0] = 0x8076;
6873 Opcode_loopnez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6875 slotbuf
[0] = 0x9076;
6879 Opcode_loopgtz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6881 slotbuf
[0] = 0xa076;
6885 Opcode_movi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6887 slotbuf
[0] = 0xa002;
6891 Opcode_moveqz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6893 slotbuf
[0] = 0x830000;
6897 Opcode_movnez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6899 slotbuf
[0] = 0x930000;
6903 Opcode_movltz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6905 slotbuf
[0] = 0xa30000;
6909 Opcode_movgez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6911 slotbuf
[0] = 0xb30000;
6915 Opcode_neg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6917 slotbuf
[0] = 0x600000;
6921 Opcode_abs_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6923 slotbuf
[0] = 0x600100;
6927 Opcode_nop_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6929 slotbuf
[0] = 0x20f0;
6933 Opcode_ret_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6939 Opcode_simcall_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6941 slotbuf
[0] = 0x5100;
6945 Opcode_s16i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6947 slotbuf
[0] = 0x5002;
6951 Opcode_s32i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6953 slotbuf
[0] = 0x6002;
6957 Opcode_s32nb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6959 slotbuf
[0] = 0x590000;
6963 Opcode_s8i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6965 slotbuf
[0] = 0x4002;
6969 Opcode_ssr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6971 slotbuf
[0] = 0x400000;
6975 Opcode_ssl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6977 slotbuf
[0] = 0x401000;
6981 Opcode_ssa8l_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6983 slotbuf
[0] = 0x402000;
6987 Opcode_ssa8b_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6989 slotbuf
[0] = 0x403000;
6993 Opcode_ssai_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6995 slotbuf
[0] = 0x404000;
6999 Opcode_sll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7001 slotbuf
[0] = 0xa10000;
7005 Opcode_src_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7007 slotbuf
[0] = 0x810000;
7011 Opcode_srl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7013 slotbuf
[0] = 0x910000;
7017 Opcode_sra_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7019 slotbuf
[0] = 0xb10000;
7023 Opcode_slli_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7025 slotbuf
[0] = 0x10000;
7029 Opcode_srai_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7031 slotbuf
[0] = 0x210000;
7035 Opcode_srli_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7037 slotbuf
[0] = 0x410000;
7041 Opcode_memw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7043 slotbuf
[0] = 0x20c0;
7047 Opcode_extw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7049 slotbuf
[0] = 0x20d0;
7053 Opcode_isync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7055 slotbuf
[0] = 0x2000;
7059 Opcode_rsync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7061 slotbuf
[0] = 0x2010;
7065 Opcode_esync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7067 slotbuf
[0] = 0x2020;
7071 Opcode_dsync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7073 slotbuf
[0] = 0x2030;
7077 Opcode_rsil_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7079 slotbuf
[0] = 0x6000;
7083 Opcode_rsr_lend_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7085 slotbuf
[0] = 0x30100;
7089 Opcode_wsr_lend_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7091 slotbuf
[0] = 0x130100;
7095 Opcode_xsr_lend_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7097 slotbuf
[0] = 0x610100;
7101 Opcode_rsr_lcount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7103 slotbuf
[0] = 0x30200;
7107 Opcode_wsr_lcount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7109 slotbuf
[0] = 0x130200;
7113 Opcode_xsr_lcount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7115 slotbuf
[0] = 0x610200;
7119 Opcode_rsr_lbeg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7121 slotbuf
[0] = 0x30000;
7125 Opcode_wsr_lbeg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7127 slotbuf
[0] = 0x130000;
7131 Opcode_xsr_lbeg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7133 slotbuf
[0] = 0x610000;
7137 Opcode_rsr_sar_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7139 slotbuf
[0] = 0x30300;
7143 Opcode_wsr_sar_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7145 slotbuf
[0] = 0x130300;
7149 Opcode_xsr_sar_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7151 slotbuf
[0] = 0x610300;
7155 Opcode_rsr_memctl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7157 slotbuf
[0] = 0x36100;
7161 Opcode_wsr_memctl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7163 slotbuf
[0] = 0x136100;
7167 Opcode_xsr_memctl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7169 slotbuf
[0] = 0x616100;
7173 Opcode_rsr_litbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7175 slotbuf
[0] = 0x30500;
7179 Opcode_wsr_litbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7181 slotbuf
[0] = 0x130500;
7185 Opcode_xsr_litbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7187 slotbuf
[0] = 0x610500;
7191 Opcode_rsr_configid0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7193 slotbuf
[0] = 0x3b000;
7197 Opcode_wsr_configid0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7199 slotbuf
[0] = 0x13b000;
7203 Opcode_rsr_configid1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7205 slotbuf
[0] = 0x3d000;
7209 Opcode_rsr_ps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7211 slotbuf
[0] = 0x3e600;
7215 Opcode_wsr_ps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7217 slotbuf
[0] = 0x13e600;
7221 Opcode_xsr_ps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7223 slotbuf
[0] = 0x61e600;
7227 Opcode_rsr_epc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7229 slotbuf
[0] = 0x3b100;
7233 Opcode_wsr_epc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7235 slotbuf
[0] = 0x13b100;
7239 Opcode_xsr_epc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7241 slotbuf
[0] = 0x61b100;
7245 Opcode_rsr_excsave1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7247 slotbuf
[0] = 0x3d100;
7251 Opcode_wsr_excsave1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7253 slotbuf
[0] = 0x13d100;
7257 Opcode_xsr_excsave1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7259 slotbuf
[0] = 0x61d100;
7263 Opcode_rsr_epc2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7265 slotbuf
[0] = 0x3b200;
7269 Opcode_wsr_epc2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7271 slotbuf
[0] = 0x13b200;
7275 Opcode_xsr_epc2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7277 slotbuf
[0] = 0x61b200;
7281 Opcode_rsr_excsave2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7283 slotbuf
[0] = 0x3d200;
7287 Opcode_wsr_excsave2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7289 slotbuf
[0] = 0x13d200;
7293 Opcode_xsr_excsave2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7295 slotbuf
[0] = 0x61d200;
7299 Opcode_rsr_epc3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7301 slotbuf
[0] = 0x3b300;
7305 Opcode_wsr_epc3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7307 slotbuf
[0] = 0x13b300;
7311 Opcode_xsr_epc3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7313 slotbuf
[0] = 0x61b300;
7317 Opcode_rsr_excsave3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7319 slotbuf
[0] = 0x3d300;
7323 Opcode_wsr_excsave3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7325 slotbuf
[0] = 0x13d300;
7329 Opcode_xsr_excsave3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7331 slotbuf
[0] = 0x61d300;
7335 Opcode_rsr_epc4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7337 slotbuf
[0] = 0x3b400;
7341 Opcode_wsr_epc4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7343 slotbuf
[0] = 0x13b400;
7347 Opcode_xsr_epc4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7349 slotbuf
[0] = 0x61b400;
7353 Opcode_rsr_excsave4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7355 slotbuf
[0] = 0x3d400;
7359 Opcode_wsr_excsave4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7361 slotbuf
[0] = 0x13d400;
7365 Opcode_xsr_excsave4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7367 slotbuf
[0] = 0x61d400;
7371 Opcode_rsr_epc5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7373 slotbuf
[0] = 0x3b500;
7377 Opcode_wsr_epc5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7379 slotbuf
[0] = 0x13b500;
7383 Opcode_xsr_epc5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7385 slotbuf
[0] = 0x61b500;
7389 Opcode_rsr_excsave5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7391 slotbuf
[0] = 0x3d500;
7395 Opcode_wsr_excsave5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7397 slotbuf
[0] = 0x13d500;
7401 Opcode_xsr_excsave5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7403 slotbuf
[0] = 0x61d500;
7407 Opcode_rsr_epc6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7409 slotbuf
[0] = 0x3b600;
7413 Opcode_wsr_epc6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7415 slotbuf
[0] = 0x13b600;
7419 Opcode_xsr_epc6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7421 slotbuf
[0] = 0x61b600;
7425 Opcode_rsr_excsave6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7427 slotbuf
[0] = 0x3d600;
7431 Opcode_wsr_excsave6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7433 slotbuf
[0] = 0x13d600;
7437 Opcode_xsr_excsave6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7439 slotbuf
[0] = 0x61d600;
7443 Opcode_rsr_epc7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7445 slotbuf
[0] = 0x3b700;
7449 Opcode_wsr_epc7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7451 slotbuf
[0] = 0x13b700;
7455 Opcode_xsr_epc7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7457 slotbuf
[0] = 0x61b700;
7461 Opcode_rsr_excsave7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7463 slotbuf
[0] = 0x3d700;
7467 Opcode_wsr_excsave7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7469 slotbuf
[0] = 0x13d700;
7473 Opcode_xsr_excsave7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7475 slotbuf
[0] = 0x61d700;
7479 Opcode_rsr_eps2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7481 slotbuf
[0] = 0x3c200;
7485 Opcode_wsr_eps2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7487 slotbuf
[0] = 0x13c200;
7491 Opcode_xsr_eps2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7493 slotbuf
[0] = 0x61c200;
7497 Opcode_rsr_eps3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7499 slotbuf
[0] = 0x3c300;
7503 Opcode_wsr_eps3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7505 slotbuf
[0] = 0x13c300;
7509 Opcode_xsr_eps3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7511 slotbuf
[0] = 0x61c300;
7515 Opcode_rsr_eps4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7517 slotbuf
[0] = 0x3c400;
7521 Opcode_wsr_eps4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7523 slotbuf
[0] = 0x13c400;
7527 Opcode_xsr_eps4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7529 slotbuf
[0] = 0x61c400;
7533 Opcode_rsr_eps5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7535 slotbuf
[0] = 0x3c500;
7539 Opcode_wsr_eps5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7541 slotbuf
[0] = 0x13c500;
7545 Opcode_xsr_eps5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7547 slotbuf
[0] = 0x61c500;
7551 Opcode_rsr_eps6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7553 slotbuf
[0] = 0x3c600;
7557 Opcode_wsr_eps6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7559 slotbuf
[0] = 0x13c600;
7563 Opcode_xsr_eps6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7565 slotbuf
[0] = 0x61c600;
7569 Opcode_rsr_eps7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7571 slotbuf
[0] = 0x3c700;
7575 Opcode_wsr_eps7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7577 slotbuf
[0] = 0x13c700;
7581 Opcode_xsr_eps7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7583 slotbuf
[0] = 0x61c700;
7587 Opcode_rsr_excvaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7589 slotbuf
[0] = 0x3ee00;
7593 Opcode_wsr_excvaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7595 slotbuf
[0] = 0x13ee00;
7599 Opcode_xsr_excvaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7601 slotbuf
[0] = 0x61ee00;
7605 Opcode_rsr_depc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7607 slotbuf
[0] = 0x3c000;
7611 Opcode_wsr_depc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7613 slotbuf
[0] = 0x13c000;
7617 Opcode_xsr_depc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7619 slotbuf
[0] = 0x61c000;
7623 Opcode_rsr_exccause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7625 slotbuf
[0] = 0x3e800;
7629 Opcode_wsr_exccause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7631 slotbuf
[0] = 0x13e800;
7635 Opcode_xsr_exccause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7637 slotbuf
[0] = 0x61e800;
7641 Opcode_rsr_misc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7643 slotbuf
[0] = 0x3f400;
7647 Opcode_wsr_misc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7649 slotbuf
[0] = 0x13f400;
7653 Opcode_xsr_misc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7655 slotbuf
[0] = 0x61f400;
7659 Opcode_rsr_misc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7661 slotbuf
[0] = 0x3f500;
7665 Opcode_wsr_misc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7667 slotbuf
[0] = 0x13f500;
7671 Opcode_xsr_misc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7673 slotbuf
[0] = 0x61f500;
7677 Opcode_rsr_prid_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7679 slotbuf
[0] = 0x3eb00;
7683 Opcode_rsr_vecbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7685 slotbuf
[0] = 0x3e700;
7689 Opcode_wsr_vecbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7691 slotbuf
[0] = 0x13e700;
7695 Opcode_xsr_vecbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7697 slotbuf
[0] = 0x61e700;
7701 Opcode_mul16u_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7703 slotbuf
[0] = 0xc10000;
7707 Opcode_mul16s_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7709 slotbuf
[0] = 0xd10000;
7713 Opcode_mull_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7715 slotbuf
[0] = 0x820000;
7719 Opcode_mul_aa_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7721 slotbuf
[0] = 0x740004;
7725 Opcode_mul_aa_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7727 slotbuf
[0] = 0x750004;
7731 Opcode_mul_aa_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7733 slotbuf
[0] = 0x760004;
7737 Opcode_mul_aa_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7739 slotbuf
[0] = 0x770004;
7743 Opcode_umul_aa_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7745 slotbuf
[0] = 0x700004;
7749 Opcode_umul_aa_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7751 slotbuf
[0] = 0x710004;
7755 Opcode_umul_aa_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7757 slotbuf
[0] = 0x720004;
7761 Opcode_umul_aa_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7763 slotbuf
[0] = 0x730004;
7767 Opcode_mul_ad_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7769 slotbuf
[0] = 0x340004;
7773 Opcode_mul_ad_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7775 slotbuf
[0] = 0x350004;
7779 Opcode_mul_ad_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7781 slotbuf
[0] = 0x360004;
7785 Opcode_mul_ad_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7787 slotbuf
[0] = 0x370004;
7791 Opcode_mul_da_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7793 slotbuf
[0] = 0x640004;
7797 Opcode_mul_da_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7799 slotbuf
[0] = 0x650004;
7803 Opcode_mul_da_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7805 slotbuf
[0] = 0x660004;
7809 Opcode_mul_da_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7811 slotbuf
[0] = 0x670004;
7815 Opcode_mul_dd_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7817 slotbuf
[0] = 0x240004;
7821 Opcode_mul_dd_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7823 slotbuf
[0] = 0x250004;
7827 Opcode_mul_dd_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7829 slotbuf
[0] = 0x260004;
7833 Opcode_mul_dd_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7835 slotbuf
[0] = 0x270004;
7839 Opcode_mula_aa_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7841 slotbuf
[0] = 0x780004;
7845 Opcode_mula_aa_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7847 slotbuf
[0] = 0x790004;
7851 Opcode_mula_aa_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7853 slotbuf
[0] = 0x7a0004;
7857 Opcode_mula_aa_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7859 slotbuf
[0] = 0x7b0004;
7863 Opcode_muls_aa_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7865 slotbuf
[0] = 0x7c0004;
7869 Opcode_muls_aa_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7871 slotbuf
[0] = 0x7d0004;
7875 Opcode_muls_aa_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7877 slotbuf
[0] = 0x7e0004;
7881 Opcode_muls_aa_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7883 slotbuf
[0] = 0x7f0004;
7887 Opcode_mula_ad_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7889 slotbuf
[0] = 0x380004;
7893 Opcode_mula_ad_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7895 slotbuf
[0] = 0x390004;
7899 Opcode_mula_ad_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7901 slotbuf
[0] = 0x3a0004;
7905 Opcode_mula_ad_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7907 slotbuf
[0] = 0x3b0004;
7911 Opcode_muls_ad_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7913 slotbuf
[0] = 0x3c0004;
7917 Opcode_muls_ad_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7919 slotbuf
[0] = 0x3d0004;
7923 Opcode_muls_ad_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7925 slotbuf
[0] = 0x3e0004;
7929 Opcode_muls_ad_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7931 slotbuf
[0] = 0x3f0004;
7935 Opcode_mula_da_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7937 slotbuf
[0] = 0x680004;
7941 Opcode_mula_da_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7943 slotbuf
[0] = 0x690004;
7947 Opcode_mula_da_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7949 slotbuf
[0] = 0x6a0004;
7953 Opcode_mula_da_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7955 slotbuf
[0] = 0x6b0004;
7959 Opcode_muls_da_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7961 slotbuf
[0] = 0x6c0004;
7965 Opcode_muls_da_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7967 slotbuf
[0] = 0x6d0004;
7971 Opcode_muls_da_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7973 slotbuf
[0] = 0x6e0004;
7977 Opcode_muls_da_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7979 slotbuf
[0] = 0x6f0004;
7983 Opcode_mula_dd_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7985 slotbuf
[0] = 0x280004;
7989 Opcode_mula_dd_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7991 slotbuf
[0] = 0x290004;
7995 Opcode_mula_dd_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7997 slotbuf
[0] = 0x2a0004;
8001 Opcode_mula_dd_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8003 slotbuf
[0] = 0x2b0004;
8007 Opcode_muls_dd_ll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8009 slotbuf
[0] = 0x2c0004;
8013 Opcode_muls_dd_hl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8015 slotbuf
[0] = 0x2d0004;
8019 Opcode_muls_dd_lh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8021 slotbuf
[0] = 0x2e0004;
8025 Opcode_muls_dd_hh_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8027 slotbuf
[0] = 0x2f0004;
8031 Opcode_mula_da_ll_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8033 slotbuf
[0] = 0x580004;
8037 Opcode_mula_da_ll_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8039 slotbuf
[0] = 0x480004;
8043 Opcode_mula_da_hl_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8045 slotbuf
[0] = 0x590004;
8049 Opcode_mula_da_hl_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8051 slotbuf
[0] = 0x490004;
8055 Opcode_mula_da_lh_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8057 slotbuf
[0] = 0x5a0004;
8061 Opcode_mula_da_lh_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8063 slotbuf
[0] = 0x4a0004;
8067 Opcode_mula_da_hh_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8069 slotbuf
[0] = 0x5b0004;
8073 Opcode_mula_da_hh_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8075 slotbuf
[0] = 0x4b0004;
8079 Opcode_mula_dd_ll_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8081 slotbuf
[0] = 0x180004;
8085 Opcode_mula_dd_ll_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8087 slotbuf
[0] = 0x80004;
8091 Opcode_mula_dd_hl_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8093 slotbuf
[0] = 0x190004;
8097 Opcode_mula_dd_hl_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8099 slotbuf
[0] = 0x90004;
8103 Opcode_mula_dd_lh_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8105 slotbuf
[0] = 0x1a0004;
8109 Opcode_mula_dd_lh_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8111 slotbuf
[0] = 0xa0004;
8115 Opcode_mula_dd_hh_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8117 slotbuf
[0] = 0x1b0004;
8121 Opcode_mula_dd_hh_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8123 slotbuf
[0] = 0xb0004;
8127 Opcode_lddec_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8129 slotbuf
[0] = 0x900004;
8133 Opcode_ldinc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8135 slotbuf
[0] = 0x800004;
8139 Opcode_rsr_m0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8141 slotbuf
[0] = 0x32000;
8145 Opcode_wsr_m0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8147 slotbuf
[0] = 0x132000;
8151 Opcode_xsr_m0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8153 slotbuf
[0] = 0x612000;
8157 Opcode_rsr_m1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8159 slotbuf
[0] = 0x32100;
8163 Opcode_wsr_m1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8165 slotbuf
[0] = 0x132100;
8169 Opcode_xsr_m1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8171 slotbuf
[0] = 0x612100;
8175 Opcode_rsr_m2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8177 slotbuf
[0] = 0x32200;
8181 Opcode_wsr_m2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8183 slotbuf
[0] = 0x132200;
8187 Opcode_xsr_m2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8189 slotbuf
[0] = 0x612200;
8193 Opcode_rsr_m3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8195 slotbuf
[0] = 0x32300;
8199 Opcode_wsr_m3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8201 slotbuf
[0] = 0x132300;
8205 Opcode_xsr_m3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8207 slotbuf
[0] = 0x612300;
8211 Opcode_rsr_acclo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8213 slotbuf
[0] = 0x31000;
8217 Opcode_wsr_acclo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8219 slotbuf
[0] = 0x131000;
8223 Opcode_xsr_acclo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8225 slotbuf
[0] = 0x611000;
8229 Opcode_rsr_acchi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8231 slotbuf
[0] = 0x31100;
8235 Opcode_wsr_acchi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8237 slotbuf
[0] = 0x131100;
8241 Opcode_xsr_acchi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8243 slotbuf
[0] = 0x611100;
8247 Opcode_rfi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8249 slotbuf
[0] = 0x3010;
8253 Opcode_waiti_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8255 slotbuf
[0] = 0x7000;
8259 Opcode_rsr_interrupt_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8261 slotbuf
[0] = 0x3e200;
8265 Opcode_wsr_intset_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8267 slotbuf
[0] = 0x13e200;
8271 Opcode_wsr_intclear_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8273 slotbuf
[0] = 0x13e300;
8277 Opcode_rsr_intenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8279 slotbuf
[0] = 0x3e400;
8283 Opcode_wsr_intenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8285 slotbuf
[0] = 0x13e400;
8289 Opcode_xsr_intenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8291 slotbuf
[0] = 0x61e400;
8295 Opcode_break_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8297 slotbuf
[0] = 0x4000;
8301 Opcode_break_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
8303 slotbuf
[0] = 0xf02d;
8307 Opcode_rsr_dbreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8309 slotbuf
[0] = 0x39000;
8313 Opcode_wsr_dbreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8315 slotbuf
[0] = 0x139000;
8319 Opcode_xsr_dbreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8321 slotbuf
[0] = 0x619000;
8325 Opcode_rsr_dbreakc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8327 slotbuf
[0] = 0x3a000;
8331 Opcode_wsr_dbreakc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8333 slotbuf
[0] = 0x13a000;
8337 Opcode_xsr_dbreakc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8339 slotbuf
[0] = 0x61a000;
8343 Opcode_rsr_dbreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8345 slotbuf
[0] = 0x39100;
8349 Opcode_wsr_dbreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8351 slotbuf
[0] = 0x139100;
8355 Opcode_xsr_dbreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8357 slotbuf
[0] = 0x619100;
8361 Opcode_rsr_dbreakc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8363 slotbuf
[0] = 0x3a100;
8367 Opcode_wsr_dbreakc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8369 slotbuf
[0] = 0x13a100;
8373 Opcode_xsr_dbreakc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8375 slotbuf
[0] = 0x61a100;
8379 Opcode_rsr_ibreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8381 slotbuf
[0] = 0x38000;
8385 Opcode_wsr_ibreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8387 slotbuf
[0] = 0x138000;
8391 Opcode_xsr_ibreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8393 slotbuf
[0] = 0x618000;
8397 Opcode_rsr_ibreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8399 slotbuf
[0] = 0x38100;
8403 Opcode_wsr_ibreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8405 slotbuf
[0] = 0x138100;
8409 Opcode_xsr_ibreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8411 slotbuf
[0] = 0x618100;
8415 Opcode_rsr_ibreakenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8417 slotbuf
[0] = 0x36000;
8421 Opcode_wsr_ibreakenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8423 slotbuf
[0] = 0x136000;
8427 Opcode_xsr_ibreakenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8429 slotbuf
[0] = 0x616000;
8433 Opcode_rsr_debugcause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8435 slotbuf
[0] = 0x3e900;
8439 Opcode_wsr_debugcause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8441 slotbuf
[0] = 0x13e900;
8445 Opcode_xsr_debugcause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8447 slotbuf
[0] = 0x61e900;
8451 Opcode_rsr_icount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8453 slotbuf
[0] = 0x3ec00;
8457 Opcode_wsr_icount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8459 slotbuf
[0] = 0x13ec00;
8463 Opcode_xsr_icount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8465 slotbuf
[0] = 0x61ec00;
8469 Opcode_rsr_icountlevel_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8471 slotbuf
[0] = 0x3ed00;
8475 Opcode_wsr_icountlevel_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8477 slotbuf
[0] = 0x13ed00;
8481 Opcode_xsr_icountlevel_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8483 slotbuf
[0] = 0x61ed00;
8487 Opcode_rsr_ddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8489 slotbuf
[0] = 0x36800;
8493 Opcode_wsr_ddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8495 slotbuf
[0] = 0x136800;
8499 Opcode_xsr_ddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8501 slotbuf
[0] = 0x616800;
8505 Opcode_lddr32_p_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8507 slotbuf
[0] = 0x70e0;
8511 Opcode_sddr32_p_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8513 slotbuf
[0] = 0x70f0;
8517 Opcode_rfdo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8519 slotbuf
[0] = 0xf1e000;
8523 Opcode_rfdd_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8525 slotbuf
[0] = 0xf1e010;
8529 Opcode_wsr_mmid_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8531 slotbuf
[0] = 0x135900;
8535 Opcode_rsr_ccount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8537 slotbuf
[0] = 0x3ea00;
8541 Opcode_wsr_ccount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8543 slotbuf
[0] = 0x13ea00;
8547 Opcode_xsr_ccount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8549 slotbuf
[0] = 0x61ea00;
8553 Opcode_rsr_ccompare0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8555 slotbuf
[0] = 0x3f000;
8559 Opcode_wsr_ccompare0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8561 slotbuf
[0] = 0x13f000;
8565 Opcode_xsr_ccompare0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8567 slotbuf
[0] = 0x61f000;
8571 Opcode_rsr_ccompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8573 slotbuf
[0] = 0x3f100;
8577 Opcode_wsr_ccompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8579 slotbuf
[0] = 0x13f100;
8583 Opcode_xsr_ccompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8585 slotbuf
[0] = 0x61f100;
8589 Opcode_rsr_ccompare2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8591 slotbuf
[0] = 0x3f200;
8595 Opcode_wsr_ccompare2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8597 slotbuf
[0] = 0x13f200;
8601 Opcode_xsr_ccompare2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8603 slotbuf
[0] = 0x61f200;
8607 Opcode_ipf_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8609 slotbuf
[0] = 0x70c2;
8613 Opcode_ihi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8615 slotbuf
[0] = 0x70e2;
8619 Opcode_ipfl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8621 slotbuf
[0] = 0x70d2;
8625 Opcode_ihu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8627 slotbuf
[0] = 0x270d2;
8631 Opcode_iiu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8633 slotbuf
[0] = 0x370d2;
8637 Opcode_iii_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8639 slotbuf
[0] = 0x70f2;
8643 Opcode_lict_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8645 slotbuf
[0] = 0xf10000;
8649 Opcode_licw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8651 slotbuf
[0] = 0xf12000;
8655 Opcode_sict_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8657 slotbuf
[0] = 0xf11000;
8661 Opcode_sicw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8663 slotbuf
[0] = 0xf13000;
8667 Opcode_dhwb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8669 slotbuf
[0] = 0x7042;
8673 Opcode_dhwbi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8675 slotbuf
[0] = 0x7052;
8679 Opcode_diwbui_p_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8681 slotbuf
[0] = 0xf7082;
8685 Opcode_diwb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8687 slotbuf
[0] = 0x47082;
8691 Opcode_diwbi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8693 slotbuf
[0] = 0x57082;
8697 Opcode_dhi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8699 slotbuf
[0] = 0x7062;
8703 Opcode_dii_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8705 slotbuf
[0] = 0x7072;
8709 Opcode_dpfr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8711 slotbuf
[0] = 0x7002;
8715 Opcode_dpfw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8717 slotbuf
[0] = 0x7012;
8721 Opcode_dpfro_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8723 slotbuf
[0] = 0x7022;
8727 Opcode_dpfwo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8729 slotbuf
[0] = 0x7032;
8733 Opcode_dpfl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8735 slotbuf
[0] = 0x7082;
8739 Opcode_dhu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8741 slotbuf
[0] = 0x27082;
8745 Opcode_diu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8747 slotbuf
[0] = 0x37082;
8751 Opcode_sdct_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8753 slotbuf
[0] = 0xf19000;
8757 Opcode_ldct_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8759 slotbuf
[0] = 0xf18000;
8763 Opcode_idtlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8765 slotbuf
[0] = 0x50c000;
8769 Opcode_pdtlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8771 slotbuf
[0] = 0x50d000;
8775 Opcode_rdtlb0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8777 slotbuf
[0] = 0x50b000;
8781 Opcode_rdtlb1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8783 slotbuf
[0] = 0x50f000;
8787 Opcode_wdtlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8789 slotbuf
[0] = 0x50e000;
8793 Opcode_iitlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8795 slotbuf
[0] = 0x504000;
8799 Opcode_pitlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8801 slotbuf
[0] = 0x505000;
8805 Opcode_ritlb0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8807 slotbuf
[0] = 0x503000;
8811 Opcode_ritlb1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8813 slotbuf
[0] = 0x507000;
8817 Opcode_witlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8819 slotbuf
[0] = 0x506000;
8823 Opcode_clamps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8825 slotbuf
[0] = 0x330000;
8829 Opcode_min_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8831 slotbuf
[0] = 0x430000;
8835 Opcode_max_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8837 slotbuf
[0] = 0x530000;
8841 Opcode_minu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8843 slotbuf
[0] = 0x630000;
8847 Opcode_maxu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8849 slotbuf
[0] = 0x730000;
8853 Opcode_nsa_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8855 slotbuf
[0] = 0x40e000;
8859 Opcode_nsau_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8861 slotbuf
[0] = 0x40f000;
8865 Opcode_sext_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8867 slotbuf
[0] = 0x230000;
8871 Opcode_l32ai_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8873 slotbuf
[0] = 0xb002;
8877 Opcode_s32ri_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8879 slotbuf
[0] = 0xf002;
8883 Opcode_s32c1i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8885 slotbuf
[0] = 0xe002;
8889 Opcode_rsr_scompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8891 slotbuf
[0] = 0x30c00;
8895 Opcode_wsr_scompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8897 slotbuf
[0] = 0x130c00;
8901 Opcode_xsr_scompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8903 slotbuf
[0] = 0x610c00;
8907 Opcode_rsr_atomctl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8909 slotbuf
[0] = 0x36300;
8913 Opcode_wsr_atomctl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8915 slotbuf
[0] = 0x136300;
8919 Opcode_xsr_atomctl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8921 slotbuf
[0] = 0x616300;
8925 Opcode_quou_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8927 slotbuf
[0] = 0xc20000;
8931 Opcode_quos_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8933 slotbuf
[0] = 0xd20000;
8937 Opcode_remu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8939 slotbuf
[0] = 0xe20000;
8943 Opcode_rems_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8945 slotbuf
[0] = 0xf20000;
8949 Opcode_rer_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8951 slotbuf
[0] = 0x406000;
8955 Opcode_wer_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8957 slotbuf
[0] = 0x407000;
8961 Opcode_rur_expstate_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8963 slotbuf
[0] = 0xe30e60;
8967 Opcode_wur_expstate_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8969 slotbuf
[0] = 0xf3e600;
8973 Opcode_read_impwire_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8975 slotbuf
[0] = 0xe0000;
8979 Opcode_setb_expstate_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8981 slotbuf
[0] = 0xe1000;
8985 Opcode_clrb_expstate_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8987 slotbuf
[0] = 0xe1200;
8991 Opcode_wrmsk_expstate_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8993 slotbuf
[0] = 0xe2000;
8996 static xtensa_opcode_encode_fn Opcode_excw_encode_fns
[] = {
8997 Opcode_excw_Slot_inst_encode
, 0, 0
9000 static xtensa_opcode_encode_fn Opcode_rfe_encode_fns
[] = {
9001 Opcode_rfe_Slot_inst_encode
, 0, 0
9004 static xtensa_opcode_encode_fn Opcode_rfde_encode_fns
[] = {
9005 Opcode_rfde_Slot_inst_encode
, 0, 0
9008 static xtensa_opcode_encode_fn Opcode_syscall_encode_fns
[] = {
9009 Opcode_syscall_Slot_inst_encode
, 0, 0
9012 static xtensa_opcode_encode_fn Opcode_call12_encode_fns
[] = {
9013 Opcode_call12_Slot_inst_encode
, 0, 0
9016 static xtensa_opcode_encode_fn Opcode_call8_encode_fns
[] = {
9017 Opcode_call8_Slot_inst_encode
, 0, 0
9020 static xtensa_opcode_encode_fn Opcode_call4_encode_fns
[] = {
9021 Opcode_call4_Slot_inst_encode
, 0, 0
9024 static xtensa_opcode_encode_fn Opcode_callx12_encode_fns
[] = {
9025 Opcode_callx12_Slot_inst_encode
, 0, 0
9028 static xtensa_opcode_encode_fn Opcode_callx8_encode_fns
[] = {
9029 Opcode_callx8_Slot_inst_encode
, 0, 0
9032 static xtensa_opcode_encode_fn Opcode_callx4_encode_fns
[] = {
9033 Opcode_callx4_Slot_inst_encode
, 0, 0
9036 static xtensa_opcode_encode_fn Opcode_entry_encode_fns
[] = {
9037 Opcode_entry_Slot_inst_encode
, 0, 0
9040 static xtensa_opcode_encode_fn Opcode_movsp_encode_fns
[] = {
9041 Opcode_movsp_Slot_inst_encode
, 0, 0
9044 static xtensa_opcode_encode_fn Opcode_rotw_encode_fns
[] = {
9045 Opcode_rotw_Slot_inst_encode
, 0, 0
9048 static xtensa_opcode_encode_fn Opcode_retw_encode_fns
[] = {
9049 Opcode_retw_Slot_inst_encode
, 0, 0
9052 static xtensa_opcode_encode_fn Opcode_retw_n_encode_fns
[] = {
9053 0, 0, Opcode_retw_n_Slot_inst16b_encode
9056 static xtensa_opcode_encode_fn Opcode_rfwo_encode_fns
[] = {
9057 Opcode_rfwo_Slot_inst_encode
, 0, 0
9060 static xtensa_opcode_encode_fn Opcode_rfwu_encode_fns
[] = {
9061 Opcode_rfwu_Slot_inst_encode
, 0, 0
9064 static xtensa_opcode_encode_fn Opcode_l32e_encode_fns
[] = {
9065 Opcode_l32e_Slot_inst_encode
, 0, 0
9068 static xtensa_opcode_encode_fn Opcode_s32e_encode_fns
[] = {
9069 Opcode_s32e_Slot_inst_encode
, 0, 0
9072 static xtensa_opcode_encode_fn Opcode_rsr_windowbase_encode_fns
[] = {
9073 Opcode_rsr_windowbase_Slot_inst_encode
, 0, 0
9076 static xtensa_opcode_encode_fn Opcode_wsr_windowbase_encode_fns
[] = {
9077 Opcode_wsr_windowbase_Slot_inst_encode
, 0, 0
9080 static xtensa_opcode_encode_fn Opcode_xsr_windowbase_encode_fns
[] = {
9081 Opcode_xsr_windowbase_Slot_inst_encode
, 0, 0
9084 static xtensa_opcode_encode_fn Opcode_rsr_windowstart_encode_fns
[] = {
9085 Opcode_rsr_windowstart_Slot_inst_encode
, 0, 0
9088 static xtensa_opcode_encode_fn Opcode_wsr_windowstart_encode_fns
[] = {
9089 Opcode_wsr_windowstart_Slot_inst_encode
, 0, 0
9092 static xtensa_opcode_encode_fn Opcode_xsr_windowstart_encode_fns
[] = {
9093 Opcode_xsr_windowstart_Slot_inst_encode
, 0, 0
9096 static xtensa_opcode_encode_fn Opcode_add_n_encode_fns
[] = {
9097 0, Opcode_add_n_Slot_inst16a_encode
, 0
9100 static xtensa_opcode_encode_fn Opcode_addi_n_encode_fns
[] = {
9101 0, Opcode_addi_n_Slot_inst16a_encode
, 0
9104 static xtensa_opcode_encode_fn Opcode_beqz_n_encode_fns
[] = {
9105 0, 0, Opcode_beqz_n_Slot_inst16b_encode
9108 static xtensa_opcode_encode_fn Opcode_bnez_n_encode_fns
[] = {
9109 0, 0, Opcode_bnez_n_Slot_inst16b_encode
9112 static xtensa_opcode_encode_fn Opcode_ill_n_encode_fns
[] = {
9113 0, 0, Opcode_ill_n_Slot_inst16b_encode
9116 static xtensa_opcode_encode_fn Opcode_l32i_n_encode_fns
[] = {
9117 0, Opcode_l32i_n_Slot_inst16a_encode
, 0
9120 static xtensa_opcode_encode_fn Opcode_mov_n_encode_fns
[] = {
9121 0, 0, Opcode_mov_n_Slot_inst16b_encode
9124 static xtensa_opcode_encode_fn Opcode_movi_n_encode_fns
[] = {
9125 0, 0, Opcode_movi_n_Slot_inst16b_encode
9128 static xtensa_opcode_encode_fn Opcode_nop_n_encode_fns
[] = {
9129 0, 0, Opcode_nop_n_Slot_inst16b_encode
9132 static xtensa_opcode_encode_fn Opcode_ret_n_encode_fns
[] = {
9133 0, 0, Opcode_ret_n_Slot_inst16b_encode
9136 static xtensa_opcode_encode_fn Opcode_s32i_n_encode_fns
[] = {
9137 0, Opcode_s32i_n_Slot_inst16a_encode
, 0
9140 static xtensa_opcode_encode_fn Opcode_addi_encode_fns
[] = {
9141 Opcode_addi_Slot_inst_encode
, 0, 0
9144 static xtensa_opcode_encode_fn Opcode_addmi_encode_fns
[] = {
9145 Opcode_addmi_Slot_inst_encode
, 0, 0
9148 static xtensa_opcode_encode_fn Opcode_add_encode_fns
[] = {
9149 Opcode_add_Slot_inst_encode
, 0, 0
9152 static xtensa_opcode_encode_fn Opcode_sub_encode_fns
[] = {
9153 Opcode_sub_Slot_inst_encode
, 0, 0
9156 static xtensa_opcode_encode_fn Opcode_addx2_encode_fns
[] = {
9157 Opcode_addx2_Slot_inst_encode
, 0, 0
9160 static xtensa_opcode_encode_fn Opcode_addx4_encode_fns
[] = {
9161 Opcode_addx4_Slot_inst_encode
, 0, 0
9164 static xtensa_opcode_encode_fn Opcode_addx8_encode_fns
[] = {
9165 Opcode_addx8_Slot_inst_encode
, 0, 0
9168 static xtensa_opcode_encode_fn Opcode_subx2_encode_fns
[] = {
9169 Opcode_subx2_Slot_inst_encode
, 0, 0
9172 static xtensa_opcode_encode_fn Opcode_subx4_encode_fns
[] = {
9173 Opcode_subx4_Slot_inst_encode
, 0, 0
9176 static xtensa_opcode_encode_fn Opcode_subx8_encode_fns
[] = {
9177 Opcode_subx8_Slot_inst_encode
, 0, 0
9180 static xtensa_opcode_encode_fn Opcode_and_encode_fns
[] = {
9181 Opcode_and_Slot_inst_encode
, 0, 0
9184 static xtensa_opcode_encode_fn Opcode_or_encode_fns
[] = {
9185 Opcode_or_Slot_inst_encode
, 0, 0
9188 static xtensa_opcode_encode_fn Opcode_xor_encode_fns
[] = {
9189 Opcode_xor_Slot_inst_encode
, 0, 0
9192 static xtensa_opcode_encode_fn Opcode_beqi_encode_fns
[] = {
9193 Opcode_beqi_Slot_inst_encode
, 0, 0
9196 static xtensa_opcode_encode_fn Opcode_bnei_encode_fns
[] = {
9197 Opcode_bnei_Slot_inst_encode
, 0, 0
9200 static xtensa_opcode_encode_fn Opcode_bgei_encode_fns
[] = {
9201 Opcode_bgei_Slot_inst_encode
, 0, 0
9204 static xtensa_opcode_encode_fn Opcode_blti_encode_fns
[] = {
9205 Opcode_blti_Slot_inst_encode
, 0, 0
9208 static xtensa_opcode_encode_fn Opcode_bbci_encode_fns
[] = {
9209 Opcode_bbci_Slot_inst_encode
, 0, 0
9212 static xtensa_opcode_encode_fn Opcode_bbsi_encode_fns
[] = {
9213 Opcode_bbsi_Slot_inst_encode
, 0, 0
9216 static xtensa_opcode_encode_fn Opcode_bgeui_encode_fns
[] = {
9217 Opcode_bgeui_Slot_inst_encode
, 0, 0
9220 static xtensa_opcode_encode_fn Opcode_bltui_encode_fns
[] = {
9221 Opcode_bltui_Slot_inst_encode
, 0, 0
9224 static xtensa_opcode_encode_fn Opcode_beq_encode_fns
[] = {
9225 Opcode_beq_Slot_inst_encode
, 0, 0
9228 static xtensa_opcode_encode_fn Opcode_bne_encode_fns
[] = {
9229 Opcode_bne_Slot_inst_encode
, 0, 0
9232 static xtensa_opcode_encode_fn Opcode_bge_encode_fns
[] = {
9233 Opcode_bge_Slot_inst_encode
, 0, 0
9236 static xtensa_opcode_encode_fn Opcode_blt_encode_fns
[] = {
9237 Opcode_blt_Slot_inst_encode
, 0, 0
9240 static xtensa_opcode_encode_fn Opcode_bgeu_encode_fns
[] = {
9241 Opcode_bgeu_Slot_inst_encode
, 0, 0
9244 static xtensa_opcode_encode_fn Opcode_bltu_encode_fns
[] = {
9245 Opcode_bltu_Slot_inst_encode
, 0, 0
9248 static xtensa_opcode_encode_fn Opcode_bany_encode_fns
[] = {
9249 Opcode_bany_Slot_inst_encode
, 0, 0
9252 static xtensa_opcode_encode_fn Opcode_bnone_encode_fns
[] = {
9253 Opcode_bnone_Slot_inst_encode
, 0, 0
9256 static xtensa_opcode_encode_fn Opcode_ball_encode_fns
[] = {
9257 Opcode_ball_Slot_inst_encode
, 0, 0
9260 static xtensa_opcode_encode_fn Opcode_bnall_encode_fns
[] = {
9261 Opcode_bnall_Slot_inst_encode
, 0, 0
9264 static xtensa_opcode_encode_fn Opcode_bbc_encode_fns
[] = {
9265 Opcode_bbc_Slot_inst_encode
, 0, 0
9268 static xtensa_opcode_encode_fn Opcode_bbs_encode_fns
[] = {
9269 Opcode_bbs_Slot_inst_encode
, 0, 0
9272 static xtensa_opcode_encode_fn Opcode_beqz_encode_fns
[] = {
9273 Opcode_beqz_Slot_inst_encode
, 0, 0
9276 static xtensa_opcode_encode_fn Opcode_bnez_encode_fns
[] = {
9277 Opcode_bnez_Slot_inst_encode
, 0, 0
9280 static xtensa_opcode_encode_fn Opcode_bgez_encode_fns
[] = {
9281 Opcode_bgez_Slot_inst_encode
, 0, 0
9284 static xtensa_opcode_encode_fn Opcode_bltz_encode_fns
[] = {
9285 Opcode_bltz_Slot_inst_encode
, 0, 0
9288 static xtensa_opcode_encode_fn Opcode_call0_encode_fns
[] = {
9289 Opcode_call0_Slot_inst_encode
, 0, 0
9292 static xtensa_opcode_encode_fn Opcode_callx0_encode_fns
[] = {
9293 Opcode_callx0_Slot_inst_encode
, 0, 0
9296 static xtensa_opcode_encode_fn Opcode_extui_encode_fns
[] = {
9297 Opcode_extui_Slot_inst_encode
, 0, 0
9300 static xtensa_opcode_encode_fn Opcode_ill_encode_fns
[] = {
9301 Opcode_ill_Slot_inst_encode
, 0, 0
9304 static xtensa_opcode_encode_fn Opcode_j_encode_fns
[] = {
9305 Opcode_j_Slot_inst_encode
, 0, 0
9308 static xtensa_opcode_encode_fn Opcode_jx_encode_fns
[] = {
9309 Opcode_jx_Slot_inst_encode
, 0, 0
9312 static xtensa_opcode_encode_fn Opcode_l16ui_encode_fns
[] = {
9313 Opcode_l16ui_Slot_inst_encode
, 0, 0
9316 static xtensa_opcode_encode_fn Opcode_l16si_encode_fns
[] = {
9317 Opcode_l16si_Slot_inst_encode
, 0, 0
9320 static xtensa_opcode_encode_fn Opcode_l32i_encode_fns
[] = {
9321 Opcode_l32i_Slot_inst_encode
, 0, 0
9324 static xtensa_opcode_encode_fn Opcode_l32r_encode_fns
[] = {
9325 Opcode_l32r_Slot_inst_encode
, 0, 0
9328 static xtensa_opcode_encode_fn Opcode_l8ui_encode_fns
[] = {
9329 Opcode_l8ui_Slot_inst_encode
, 0, 0
9332 static xtensa_opcode_encode_fn Opcode_loop_encode_fns
[] = {
9333 Opcode_loop_Slot_inst_encode
, 0, 0
9336 static xtensa_opcode_encode_fn Opcode_loopnez_encode_fns
[] = {
9337 Opcode_loopnez_Slot_inst_encode
, 0, 0
9340 static xtensa_opcode_encode_fn Opcode_loopgtz_encode_fns
[] = {
9341 Opcode_loopgtz_Slot_inst_encode
, 0, 0
9344 static xtensa_opcode_encode_fn Opcode_movi_encode_fns
[] = {
9345 Opcode_movi_Slot_inst_encode
, 0, 0
9348 static xtensa_opcode_encode_fn Opcode_moveqz_encode_fns
[] = {
9349 Opcode_moveqz_Slot_inst_encode
, 0, 0
9352 static xtensa_opcode_encode_fn Opcode_movnez_encode_fns
[] = {
9353 Opcode_movnez_Slot_inst_encode
, 0, 0
9356 static xtensa_opcode_encode_fn Opcode_movltz_encode_fns
[] = {
9357 Opcode_movltz_Slot_inst_encode
, 0, 0
9360 static xtensa_opcode_encode_fn Opcode_movgez_encode_fns
[] = {
9361 Opcode_movgez_Slot_inst_encode
, 0, 0
9364 static xtensa_opcode_encode_fn Opcode_neg_encode_fns
[] = {
9365 Opcode_neg_Slot_inst_encode
, 0, 0
9368 static xtensa_opcode_encode_fn Opcode_abs_encode_fns
[] = {
9369 Opcode_abs_Slot_inst_encode
, 0, 0
9372 static xtensa_opcode_encode_fn Opcode_nop_encode_fns
[] = {
9373 Opcode_nop_Slot_inst_encode
, 0, 0
9376 static xtensa_opcode_encode_fn Opcode_ret_encode_fns
[] = {
9377 Opcode_ret_Slot_inst_encode
, 0, 0
9380 static xtensa_opcode_encode_fn Opcode_simcall_encode_fns
[] = {
9381 Opcode_simcall_Slot_inst_encode
, 0, 0
9384 static xtensa_opcode_encode_fn Opcode_s16i_encode_fns
[] = {
9385 Opcode_s16i_Slot_inst_encode
, 0, 0
9388 static xtensa_opcode_encode_fn Opcode_s32i_encode_fns
[] = {
9389 Opcode_s32i_Slot_inst_encode
, 0, 0
9392 static xtensa_opcode_encode_fn Opcode_s32nb_encode_fns
[] = {
9393 Opcode_s32nb_Slot_inst_encode
, 0, 0
9396 static xtensa_opcode_encode_fn Opcode_s8i_encode_fns
[] = {
9397 Opcode_s8i_Slot_inst_encode
, 0, 0
9400 static xtensa_opcode_encode_fn Opcode_ssr_encode_fns
[] = {
9401 Opcode_ssr_Slot_inst_encode
, 0, 0
9404 static xtensa_opcode_encode_fn Opcode_ssl_encode_fns
[] = {
9405 Opcode_ssl_Slot_inst_encode
, 0, 0
9408 static xtensa_opcode_encode_fn Opcode_ssa8l_encode_fns
[] = {
9409 Opcode_ssa8l_Slot_inst_encode
, 0, 0
9412 static xtensa_opcode_encode_fn Opcode_ssa8b_encode_fns
[] = {
9413 Opcode_ssa8b_Slot_inst_encode
, 0, 0
9416 static xtensa_opcode_encode_fn Opcode_ssai_encode_fns
[] = {
9417 Opcode_ssai_Slot_inst_encode
, 0, 0
9420 static xtensa_opcode_encode_fn Opcode_sll_encode_fns
[] = {
9421 Opcode_sll_Slot_inst_encode
, 0, 0
9424 static xtensa_opcode_encode_fn Opcode_src_encode_fns
[] = {
9425 Opcode_src_Slot_inst_encode
, 0, 0
9428 static xtensa_opcode_encode_fn Opcode_srl_encode_fns
[] = {
9429 Opcode_srl_Slot_inst_encode
, 0, 0
9432 static xtensa_opcode_encode_fn Opcode_sra_encode_fns
[] = {
9433 Opcode_sra_Slot_inst_encode
, 0, 0
9436 static xtensa_opcode_encode_fn Opcode_slli_encode_fns
[] = {
9437 Opcode_slli_Slot_inst_encode
, 0, 0
9440 static xtensa_opcode_encode_fn Opcode_srai_encode_fns
[] = {
9441 Opcode_srai_Slot_inst_encode
, 0, 0
9444 static xtensa_opcode_encode_fn Opcode_srli_encode_fns
[] = {
9445 Opcode_srli_Slot_inst_encode
, 0, 0
9448 static xtensa_opcode_encode_fn Opcode_memw_encode_fns
[] = {
9449 Opcode_memw_Slot_inst_encode
, 0, 0
9452 static xtensa_opcode_encode_fn Opcode_extw_encode_fns
[] = {
9453 Opcode_extw_Slot_inst_encode
, 0, 0
9456 static xtensa_opcode_encode_fn Opcode_isync_encode_fns
[] = {
9457 Opcode_isync_Slot_inst_encode
, 0, 0
9460 static xtensa_opcode_encode_fn Opcode_rsync_encode_fns
[] = {
9461 Opcode_rsync_Slot_inst_encode
, 0, 0
9464 static xtensa_opcode_encode_fn Opcode_esync_encode_fns
[] = {
9465 Opcode_esync_Slot_inst_encode
, 0, 0
9468 static xtensa_opcode_encode_fn Opcode_dsync_encode_fns
[] = {
9469 Opcode_dsync_Slot_inst_encode
, 0, 0
9472 static xtensa_opcode_encode_fn Opcode_rsil_encode_fns
[] = {
9473 Opcode_rsil_Slot_inst_encode
, 0, 0
9476 static xtensa_opcode_encode_fn Opcode_rsr_lend_encode_fns
[] = {
9477 Opcode_rsr_lend_Slot_inst_encode
, 0, 0
9480 static xtensa_opcode_encode_fn Opcode_wsr_lend_encode_fns
[] = {
9481 Opcode_wsr_lend_Slot_inst_encode
, 0, 0
9484 static xtensa_opcode_encode_fn Opcode_xsr_lend_encode_fns
[] = {
9485 Opcode_xsr_lend_Slot_inst_encode
, 0, 0
9488 static xtensa_opcode_encode_fn Opcode_rsr_lcount_encode_fns
[] = {
9489 Opcode_rsr_lcount_Slot_inst_encode
, 0, 0
9492 static xtensa_opcode_encode_fn Opcode_wsr_lcount_encode_fns
[] = {
9493 Opcode_wsr_lcount_Slot_inst_encode
, 0, 0
9496 static xtensa_opcode_encode_fn Opcode_xsr_lcount_encode_fns
[] = {
9497 Opcode_xsr_lcount_Slot_inst_encode
, 0, 0
9500 static xtensa_opcode_encode_fn Opcode_rsr_lbeg_encode_fns
[] = {
9501 Opcode_rsr_lbeg_Slot_inst_encode
, 0, 0
9504 static xtensa_opcode_encode_fn Opcode_wsr_lbeg_encode_fns
[] = {
9505 Opcode_wsr_lbeg_Slot_inst_encode
, 0, 0
9508 static xtensa_opcode_encode_fn Opcode_xsr_lbeg_encode_fns
[] = {
9509 Opcode_xsr_lbeg_Slot_inst_encode
, 0, 0
9512 static xtensa_opcode_encode_fn Opcode_rsr_sar_encode_fns
[] = {
9513 Opcode_rsr_sar_Slot_inst_encode
, 0, 0
9516 static xtensa_opcode_encode_fn Opcode_wsr_sar_encode_fns
[] = {
9517 Opcode_wsr_sar_Slot_inst_encode
, 0, 0
9520 static xtensa_opcode_encode_fn Opcode_xsr_sar_encode_fns
[] = {
9521 Opcode_xsr_sar_Slot_inst_encode
, 0, 0
9524 static xtensa_opcode_encode_fn Opcode_rsr_memctl_encode_fns
[] = {
9525 Opcode_rsr_memctl_Slot_inst_encode
, 0, 0
9528 static xtensa_opcode_encode_fn Opcode_wsr_memctl_encode_fns
[] = {
9529 Opcode_wsr_memctl_Slot_inst_encode
, 0, 0
9532 static xtensa_opcode_encode_fn Opcode_xsr_memctl_encode_fns
[] = {
9533 Opcode_xsr_memctl_Slot_inst_encode
, 0, 0
9536 static xtensa_opcode_encode_fn Opcode_rsr_litbase_encode_fns
[] = {
9537 Opcode_rsr_litbase_Slot_inst_encode
, 0, 0
9540 static xtensa_opcode_encode_fn Opcode_wsr_litbase_encode_fns
[] = {
9541 Opcode_wsr_litbase_Slot_inst_encode
, 0, 0
9544 static xtensa_opcode_encode_fn Opcode_xsr_litbase_encode_fns
[] = {
9545 Opcode_xsr_litbase_Slot_inst_encode
, 0, 0
9548 static xtensa_opcode_encode_fn Opcode_rsr_configid0_encode_fns
[] = {
9549 Opcode_rsr_configid0_Slot_inst_encode
, 0, 0
9552 static xtensa_opcode_encode_fn Opcode_wsr_configid0_encode_fns
[] = {
9553 Opcode_wsr_configid0_Slot_inst_encode
, 0, 0
9556 static xtensa_opcode_encode_fn Opcode_rsr_configid1_encode_fns
[] = {
9557 Opcode_rsr_configid1_Slot_inst_encode
, 0, 0
9560 static xtensa_opcode_encode_fn Opcode_rsr_ps_encode_fns
[] = {
9561 Opcode_rsr_ps_Slot_inst_encode
, 0, 0
9564 static xtensa_opcode_encode_fn Opcode_wsr_ps_encode_fns
[] = {
9565 Opcode_wsr_ps_Slot_inst_encode
, 0, 0
9568 static xtensa_opcode_encode_fn Opcode_xsr_ps_encode_fns
[] = {
9569 Opcode_xsr_ps_Slot_inst_encode
, 0, 0
9572 static xtensa_opcode_encode_fn Opcode_rsr_epc1_encode_fns
[] = {
9573 Opcode_rsr_epc1_Slot_inst_encode
, 0, 0
9576 static xtensa_opcode_encode_fn Opcode_wsr_epc1_encode_fns
[] = {
9577 Opcode_wsr_epc1_Slot_inst_encode
, 0, 0
9580 static xtensa_opcode_encode_fn Opcode_xsr_epc1_encode_fns
[] = {
9581 Opcode_xsr_epc1_Slot_inst_encode
, 0, 0
9584 static xtensa_opcode_encode_fn Opcode_rsr_excsave1_encode_fns
[] = {
9585 Opcode_rsr_excsave1_Slot_inst_encode
, 0, 0
9588 static xtensa_opcode_encode_fn Opcode_wsr_excsave1_encode_fns
[] = {
9589 Opcode_wsr_excsave1_Slot_inst_encode
, 0, 0
9592 static xtensa_opcode_encode_fn Opcode_xsr_excsave1_encode_fns
[] = {
9593 Opcode_xsr_excsave1_Slot_inst_encode
, 0, 0
9596 static xtensa_opcode_encode_fn Opcode_rsr_epc2_encode_fns
[] = {
9597 Opcode_rsr_epc2_Slot_inst_encode
, 0, 0
9600 static xtensa_opcode_encode_fn Opcode_wsr_epc2_encode_fns
[] = {
9601 Opcode_wsr_epc2_Slot_inst_encode
, 0, 0
9604 static xtensa_opcode_encode_fn Opcode_xsr_epc2_encode_fns
[] = {
9605 Opcode_xsr_epc2_Slot_inst_encode
, 0, 0
9608 static xtensa_opcode_encode_fn Opcode_rsr_excsave2_encode_fns
[] = {
9609 Opcode_rsr_excsave2_Slot_inst_encode
, 0, 0
9612 static xtensa_opcode_encode_fn Opcode_wsr_excsave2_encode_fns
[] = {
9613 Opcode_wsr_excsave2_Slot_inst_encode
, 0, 0
9616 static xtensa_opcode_encode_fn Opcode_xsr_excsave2_encode_fns
[] = {
9617 Opcode_xsr_excsave2_Slot_inst_encode
, 0, 0
9620 static xtensa_opcode_encode_fn Opcode_rsr_epc3_encode_fns
[] = {
9621 Opcode_rsr_epc3_Slot_inst_encode
, 0, 0
9624 static xtensa_opcode_encode_fn Opcode_wsr_epc3_encode_fns
[] = {
9625 Opcode_wsr_epc3_Slot_inst_encode
, 0, 0
9628 static xtensa_opcode_encode_fn Opcode_xsr_epc3_encode_fns
[] = {
9629 Opcode_xsr_epc3_Slot_inst_encode
, 0, 0
9632 static xtensa_opcode_encode_fn Opcode_rsr_excsave3_encode_fns
[] = {
9633 Opcode_rsr_excsave3_Slot_inst_encode
, 0, 0
9636 static xtensa_opcode_encode_fn Opcode_wsr_excsave3_encode_fns
[] = {
9637 Opcode_wsr_excsave3_Slot_inst_encode
, 0, 0
9640 static xtensa_opcode_encode_fn Opcode_xsr_excsave3_encode_fns
[] = {
9641 Opcode_xsr_excsave3_Slot_inst_encode
, 0, 0
9644 static xtensa_opcode_encode_fn Opcode_rsr_epc4_encode_fns
[] = {
9645 Opcode_rsr_epc4_Slot_inst_encode
, 0, 0
9648 static xtensa_opcode_encode_fn Opcode_wsr_epc4_encode_fns
[] = {
9649 Opcode_wsr_epc4_Slot_inst_encode
, 0, 0
9652 static xtensa_opcode_encode_fn Opcode_xsr_epc4_encode_fns
[] = {
9653 Opcode_xsr_epc4_Slot_inst_encode
, 0, 0
9656 static xtensa_opcode_encode_fn Opcode_rsr_excsave4_encode_fns
[] = {
9657 Opcode_rsr_excsave4_Slot_inst_encode
, 0, 0
9660 static xtensa_opcode_encode_fn Opcode_wsr_excsave4_encode_fns
[] = {
9661 Opcode_wsr_excsave4_Slot_inst_encode
, 0, 0
9664 static xtensa_opcode_encode_fn Opcode_xsr_excsave4_encode_fns
[] = {
9665 Opcode_xsr_excsave4_Slot_inst_encode
, 0, 0
9668 static xtensa_opcode_encode_fn Opcode_rsr_epc5_encode_fns
[] = {
9669 Opcode_rsr_epc5_Slot_inst_encode
, 0, 0
9672 static xtensa_opcode_encode_fn Opcode_wsr_epc5_encode_fns
[] = {
9673 Opcode_wsr_epc5_Slot_inst_encode
, 0, 0
9676 static xtensa_opcode_encode_fn Opcode_xsr_epc5_encode_fns
[] = {
9677 Opcode_xsr_epc5_Slot_inst_encode
, 0, 0
9680 static xtensa_opcode_encode_fn Opcode_rsr_excsave5_encode_fns
[] = {
9681 Opcode_rsr_excsave5_Slot_inst_encode
, 0, 0
9684 static xtensa_opcode_encode_fn Opcode_wsr_excsave5_encode_fns
[] = {
9685 Opcode_wsr_excsave5_Slot_inst_encode
, 0, 0
9688 static xtensa_opcode_encode_fn Opcode_xsr_excsave5_encode_fns
[] = {
9689 Opcode_xsr_excsave5_Slot_inst_encode
, 0, 0
9692 static xtensa_opcode_encode_fn Opcode_rsr_epc6_encode_fns
[] = {
9693 Opcode_rsr_epc6_Slot_inst_encode
, 0, 0
9696 static xtensa_opcode_encode_fn Opcode_wsr_epc6_encode_fns
[] = {
9697 Opcode_wsr_epc6_Slot_inst_encode
, 0, 0
9700 static xtensa_opcode_encode_fn Opcode_xsr_epc6_encode_fns
[] = {
9701 Opcode_xsr_epc6_Slot_inst_encode
, 0, 0
9704 static xtensa_opcode_encode_fn Opcode_rsr_excsave6_encode_fns
[] = {
9705 Opcode_rsr_excsave6_Slot_inst_encode
, 0, 0
9708 static xtensa_opcode_encode_fn Opcode_wsr_excsave6_encode_fns
[] = {
9709 Opcode_wsr_excsave6_Slot_inst_encode
, 0, 0
9712 static xtensa_opcode_encode_fn Opcode_xsr_excsave6_encode_fns
[] = {
9713 Opcode_xsr_excsave6_Slot_inst_encode
, 0, 0
9716 static xtensa_opcode_encode_fn Opcode_rsr_epc7_encode_fns
[] = {
9717 Opcode_rsr_epc7_Slot_inst_encode
, 0, 0
9720 static xtensa_opcode_encode_fn Opcode_wsr_epc7_encode_fns
[] = {
9721 Opcode_wsr_epc7_Slot_inst_encode
, 0, 0
9724 static xtensa_opcode_encode_fn Opcode_xsr_epc7_encode_fns
[] = {
9725 Opcode_xsr_epc7_Slot_inst_encode
, 0, 0
9728 static xtensa_opcode_encode_fn Opcode_rsr_excsave7_encode_fns
[] = {
9729 Opcode_rsr_excsave7_Slot_inst_encode
, 0, 0
9732 static xtensa_opcode_encode_fn Opcode_wsr_excsave7_encode_fns
[] = {
9733 Opcode_wsr_excsave7_Slot_inst_encode
, 0, 0
9736 static xtensa_opcode_encode_fn Opcode_xsr_excsave7_encode_fns
[] = {
9737 Opcode_xsr_excsave7_Slot_inst_encode
, 0, 0
9740 static xtensa_opcode_encode_fn Opcode_rsr_eps2_encode_fns
[] = {
9741 Opcode_rsr_eps2_Slot_inst_encode
, 0, 0
9744 static xtensa_opcode_encode_fn Opcode_wsr_eps2_encode_fns
[] = {
9745 Opcode_wsr_eps2_Slot_inst_encode
, 0, 0
9748 static xtensa_opcode_encode_fn Opcode_xsr_eps2_encode_fns
[] = {
9749 Opcode_xsr_eps2_Slot_inst_encode
, 0, 0
9752 static xtensa_opcode_encode_fn Opcode_rsr_eps3_encode_fns
[] = {
9753 Opcode_rsr_eps3_Slot_inst_encode
, 0, 0
9756 static xtensa_opcode_encode_fn Opcode_wsr_eps3_encode_fns
[] = {
9757 Opcode_wsr_eps3_Slot_inst_encode
, 0, 0
9760 static xtensa_opcode_encode_fn Opcode_xsr_eps3_encode_fns
[] = {
9761 Opcode_xsr_eps3_Slot_inst_encode
, 0, 0
9764 static xtensa_opcode_encode_fn Opcode_rsr_eps4_encode_fns
[] = {
9765 Opcode_rsr_eps4_Slot_inst_encode
, 0, 0
9768 static xtensa_opcode_encode_fn Opcode_wsr_eps4_encode_fns
[] = {
9769 Opcode_wsr_eps4_Slot_inst_encode
, 0, 0
9772 static xtensa_opcode_encode_fn Opcode_xsr_eps4_encode_fns
[] = {
9773 Opcode_xsr_eps4_Slot_inst_encode
, 0, 0
9776 static xtensa_opcode_encode_fn Opcode_rsr_eps5_encode_fns
[] = {
9777 Opcode_rsr_eps5_Slot_inst_encode
, 0, 0
9780 static xtensa_opcode_encode_fn Opcode_wsr_eps5_encode_fns
[] = {
9781 Opcode_wsr_eps5_Slot_inst_encode
, 0, 0
9784 static xtensa_opcode_encode_fn Opcode_xsr_eps5_encode_fns
[] = {
9785 Opcode_xsr_eps5_Slot_inst_encode
, 0, 0
9788 static xtensa_opcode_encode_fn Opcode_rsr_eps6_encode_fns
[] = {
9789 Opcode_rsr_eps6_Slot_inst_encode
, 0, 0
9792 static xtensa_opcode_encode_fn Opcode_wsr_eps6_encode_fns
[] = {
9793 Opcode_wsr_eps6_Slot_inst_encode
, 0, 0
9796 static xtensa_opcode_encode_fn Opcode_xsr_eps6_encode_fns
[] = {
9797 Opcode_xsr_eps6_Slot_inst_encode
, 0, 0
9800 static xtensa_opcode_encode_fn Opcode_rsr_eps7_encode_fns
[] = {
9801 Opcode_rsr_eps7_Slot_inst_encode
, 0, 0
9804 static xtensa_opcode_encode_fn Opcode_wsr_eps7_encode_fns
[] = {
9805 Opcode_wsr_eps7_Slot_inst_encode
, 0, 0
9808 static xtensa_opcode_encode_fn Opcode_xsr_eps7_encode_fns
[] = {
9809 Opcode_xsr_eps7_Slot_inst_encode
, 0, 0
9812 static xtensa_opcode_encode_fn Opcode_rsr_excvaddr_encode_fns
[] = {
9813 Opcode_rsr_excvaddr_Slot_inst_encode
, 0, 0
9816 static xtensa_opcode_encode_fn Opcode_wsr_excvaddr_encode_fns
[] = {
9817 Opcode_wsr_excvaddr_Slot_inst_encode
, 0, 0
9820 static xtensa_opcode_encode_fn Opcode_xsr_excvaddr_encode_fns
[] = {
9821 Opcode_xsr_excvaddr_Slot_inst_encode
, 0, 0
9824 static xtensa_opcode_encode_fn Opcode_rsr_depc_encode_fns
[] = {
9825 Opcode_rsr_depc_Slot_inst_encode
, 0, 0
9828 static xtensa_opcode_encode_fn Opcode_wsr_depc_encode_fns
[] = {
9829 Opcode_wsr_depc_Slot_inst_encode
, 0, 0
9832 static xtensa_opcode_encode_fn Opcode_xsr_depc_encode_fns
[] = {
9833 Opcode_xsr_depc_Slot_inst_encode
, 0, 0
9836 static xtensa_opcode_encode_fn Opcode_rsr_exccause_encode_fns
[] = {
9837 Opcode_rsr_exccause_Slot_inst_encode
, 0, 0
9840 static xtensa_opcode_encode_fn Opcode_wsr_exccause_encode_fns
[] = {
9841 Opcode_wsr_exccause_Slot_inst_encode
, 0, 0
9844 static xtensa_opcode_encode_fn Opcode_xsr_exccause_encode_fns
[] = {
9845 Opcode_xsr_exccause_Slot_inst_encode
, 0, 0
9848 static xtensa_opcode_encode_fn Opcode_rsr_misc0_encode_fns
[] = {
9849 Opcode_rsr_misc0_Slot_inst_encode
, 0, 0
9852 static xtensa_opcode_encode_fn Opcode_wsr_misc0_encode_fns
[] = {
9853 Opcode_wsr_misc0_Slot_inst_encode
, 0, 0
9856 static xtensa_opcode_encode_fn Opcode_xsr_misc0_encode_fns
[] = {
9857 Opcode_xsr_misc0_Slot_inst_encode
, 0, 0
9860 static xtensa_opcode_encode_fn Opcode_rsr_misc1_encode_fns
[] = {
9861 Opcode_rsr_misc1_Slot_inst_encode
, 0, 0
9864 static xtensa_opcode_encode_fn Opcode_wsr_misc1_encode_fns
[] = {
9865 Opcode_wsr_misc1_Slot_inst_encode
, 0, 0
9868 static xtensa_opcode_encode_fn Opcode_xsr_misc1_encode_fns
[] = {
9869 Opcode_xsr_misc1_Slot_inst_encode
, 0, 0
9872 static xtensa_opcode_encode_fn Opcode_rsr_prid_encode_fns
[] = {
9873 Opcode_rsr_prid_Slot_inst_encode
, 0, 0
9876 static xtensa_opcode_encode_fn Opcode_rsr_vecbase_encode_fns
[] = {
9877 Opcode_rsr_vecbase_Slot_inst_encode
, 0, 0
9880 static xtensa_opcode_encode_fn Opcode_wsr_vecbase_encode_fns
[] = {
9881 Opcode_wsr_vecbase_Slot_inst_encode
, 0, 0
9884 static xtensa_opcode_encode_fn Opcode_xsr_vecbase_encode_fns
[] = {
9885 Opcode_xsr_vecbase_Slot_inst_encode
, 0, 0
9888 static xtensa_opcode_encode_fn Opcode_mul16u_encode_fns
[] = {
9889 Opcode_mul16u_Slot_inst_encode
, 0, 0
9892 static xtensa_opcode_encode_fn Opcode_mul16s_encode_fns
[] = {
9893 Opcode_mul16s_Slot_inst_encode
, 0, 0
9896 static xtensa_opcode_encode_fn Opcode_mull_encode_fns
[] = {
9897 Opcode_mull_Slot_inst_encode
, 0, 0
9900 static xtensa_opcode_encode_fn Opcode_mul_aa_ll_encode_fns
[] = {
9901 Opcode_mul_aa_ll_Slot_inst_encode
, 0, 0
9904 static xtensa_opcode_encode_fn Opcode_mul_aa_hl_encode_fns
[] = {
9905 Opcode_mul_aa_hl_Slot_inst_encode
, 0, 0
9908 static xtensa_opcode_encode_fn Opcode_mul_aa_lh_encode_fns
[] = {
9909 Opcode_mul_aa_lh_Slot_inst_encode
, 0, 0
9912 static xtensa_opcode_encode_fn Opcode_mul_aa_hh_encode_fns
[] = {
9913 Opcode_mul_aa_hh_Slot_inst_encode
, 0, 0
9916 static xtensa_opcode_encode_fn Opcode_umul_aa_ll_encode_fns
[] = {
9917 Opcode_umul_aa_ll_Slot_inst_encode
, 0, 0
9920 static xtensa_opcode_encode_fn Opcode_umul_aa_hl_encode_fns
[] = {
9921 Opcode_umul_aa_hl_Slot_inst_encode
, 0, 0
9924 static xtensa_opcode_encode_fn Opcode_umul_aa_lh_encode_fns
[] = {
9925 Opcode_umul_aa_lh_Slot_inst_encode
, 0, 0
9928 static xtensa_opcode_encode_fn Opcode_umul_aa_hh_encode_fns
[] = {
9929 Opcode_umul_aa_hh_Slot_inst_encode
, 0, 0
9932 static xtensa_opcode_encode_fn Opcode_mul_ad_ll_encode_fns
[] = {
9933 Opcode_mul_ad_ll_Slot_inst_encode
, 0, 0
9936 static xtensa_opcode_encode_fn Opcode_mul_ad_hl_encode_fns
[] = {
9937 Opcode_mul_ad_hl_Slot_inst_encode
, 0, 0
9940 static xtensa_opcode_encode_fn Opcode_mul_ad_lh_encode_fns
[] = {
9941 Opcode_mul_ad_lh_Slot_inst_encode
, 0, 0
9944 static xtensa_opcode_encode_fn Opcode_mul_ad_hh_encode_fns
[] = {
9945 Opcode_mul_ad_hh_Slot_inst_encode
, 0, 0
9948 static xtensa_opcode_encode_fn Opcode_mul_da_ll_encode_fns
[] = {
9949 Opcode_mul_da_ll_Slot_inst_encode
, 0, 0
9952 static xtensa_opcode_encode_fn Opcode_mul_da_hl_encode_fns
[] = {
9953 Opcode_mul_da_hl_Slot_inst_encode
, 0, 0
9956 static xtensa_opcode_encode_fn Opcode_mul_da_lh_encode_fns
[] = {
9957 Opcode_mul_da_lh_Slot_inst_encode
, 0, 0
9960 static xtensa_opcode_encode_fn Opcode_mul_da_hh_encode_fns
[] = {
9961 Opcode_mul_da_hh_Slot_inst_encode
, 0, 0
9964 static xtensa_opcode_encode_fn Opcode_mul_dd_ll_encode_fns
[] = {
9965 Opcode_mul_dd_ll_Slot_inst_encode
, 0, 0
9968 static xtensa_opcode_encode_fn Opcode_mul_dd_hl_encode_fns
[] = {
9969 Opcode_mul_dd_hl_Slot_inst_encode
, 0, 0
9972 static xtensa_opcode_encode_fn Opcode_mul_dd_lh_encode_fns
[] = {
9973 Opcode_mul_dd_lh_Slot_inst_encode
, 0, 0
9976 static xtensa_opcode_encode_fn Opcode_mul_dd_hh_encode_fns
[] = {
9977 Opcode_mul_dd_hh_Slot_inst_encode
, 0, 0
9980 static xtensa_opcode_encode_fn Opcode_mula_aa_ll_encode_fns
[] = {
9981 Opcode_mula_aa_ll_Slot_inst_encode
, 0, 0
9984 static xtensa_opcode_encode_fn Opcode_mula_aa_hl_encode_fns
[] = {
9985 Opcode_mula_aa_hl_Slot_inst_encode
, 0, 0
9988 static xtensa_opcode_encode_fn Opcode_mula_aa_lh_encode_fns
[] = {
9989 Opcode_mula_aa_lh_Slot_inst_encode
, 0, 0
9992 static xtensa_opcode_encode_fn Opcode_mula_aa_hh_encode_fns
[] = {
9993 Opcode_mula_aa_hh_Slot_inst_encode
, 0, 0
9996 static xtensa_opcode_encode_fn Opcode_muls_aa_ll_encode_fns
[] = {
9997 Opcode_muls_aa_ll_Slot_inst_encode
, 0, 0
10000 static xtensa_opcode_encode_fn Opcode_muls_aa_hl_encode_fns
[] = {
10001 Opcode_muls_aa_hl_Slot_inst_encode
, 0, 0
10004 static xtensa_opcode_encode_fn Opcode_muls_aa_lh_encode_fns
[] = {
10005 Opcode_muls_aa_lh_Slot_inst_encode
, 0, 0
10008 static xtensa_opcode_encode_fn Opcode_muls_aa_hh_encode_fns
[] = {
10009 Opcode_muls_aa_hh_Slot_inst_encode
, 0, 0
10012 static xtensa_opcode_encode_fn Opcode_mula_ad_ll_encode_fns
[] = {
10013 Opcode_mula_ad_ll_Slot_inst_encode
, 0, 0
10016 static xtensa_opcode_encode_fn Opcode_mula_ad_hl_encode_fns
[] = {
10017 Opcode_mula_ad_hl_Slot_inst_encode
, 0, 0
10020 static xtensa_opcode_encode_fn Opcode_mula_ad_lh_encode_fns
[] = {
10021 Opcode_mula_ad_lh_Slot_inst_encode
, 0, 0
10024 static xtensa_opcode_encode_fn Opcode_mula_ad_hh_encode_fns
[] = {
10025 Opcode_mula_ad_hh_Slot_inst_encode
, 0, 0
10028 static xtensa_opcode_encode_fn Opcode_muls_ad_ll_encode_fns
[] = {
10029 Opcode_muls_ad_ll_Slot_inst_encode
, 0, 0
10032 static xtensa_opcode_encode_fn Opcode_muls_ad_hl_encode_fns
[] = {
10033 Opcode_muls_ad_hl_Slot_inst_encode
, 0, 0
10036 static xtensa_opcode_encode_fn Opcode_muls_ad_lh_encode_fns
[] = {
10037 Opcode_muls_ad_lh_Slot_inst_encode
, 0, 0
10040 static xtensa_opcode_encode_fn Opcode_muls_ad_hh_encode_fns
[] = {
10041 Opcode_muls_ad_hh_Slot_inst_encode
, 0, 0
10044 static xtensa_opcode_encode_fn Opcode_mula_da_ll_encode_fns
[] = {
10045 Opcode_mula_da_ll_Slot_inst_encode
, 0, 0
10048 static xtensa_opcode_encode_fn Opcode_mula_da_hl_encode_fns
[] = {
10049 Opcode_mula_da_hl_Slot_inst_encode
, 0, 0
10052 static xtensa_opcode_encode_fn Opcode_mula_da_lh_encode_fns
[] = {
10053 Opcode_mula_da_lh_Slot_inst_encode
, 0, 0
10056 static xtensa_opcode_encode_fn Opcode_mula_da_hh_encode_fns
[] = {
10057 Opcode_mula_da_hh_Slot_inst_encode
, 0, 0
10060 static xtensa_opcode_encode_fn Opcode_muls_da_ll_encode_fns
[] = {
10061 Opcode_muls_da_ll_Slot_inst_encode
, 0, 0
10064 static xtensa_opcode_encode_fn Opcode_muls_da_hl_encode_fns
[] = {
10065 Opcode_muls_da_hl_Slot_inst_encode
, 0, 0
10068 static xtensa_opcode_encode_fn Opcode_muls_da_lh_encode_fns
[] = {
10069 Opcode_muls_da_lh_Slot_inst_encode
, 0, 0
10072 static xtensa_opcode_encode_fn Opcode_muls_da_hh_encode_fns
[] = {
10073 Opcode_muls_da_hh_Slot_inst_encode
, 0, 0
10076 static xtensa_opcode_encode_fn Opcode_mula_dd_ll_encode_fns
[] = {
10077 Opcode_mula_dd_ll_Slot_inst_encode
, 0, 0
10080 static xtensa_opcode_encode_fn Opcode_mula_dd_hl_encode_fns
[] = {
10081 Opcode_mula_dd_hl_Slot_inst_encode
, 0, 0
10084 static xtensa_opcode_encode_fn Opcode_mula_dd_lh_encode_fns
[] = {
10085 Opcode_mula_dd_lh_Slot_inst_encode
, 0, 0
10088 static xtensa_opcode_encode_fn Opcode_mula_dd_hh_encode_fns
[] = {
10089 Opcode_mula_dd_hh_Slot_inst_encode
, 0, 0
10092 static xtensa_opcode_encode_fn Opcode_muls_dd_ll_encode_fns
[] = {
10093 Opcode_muls_dd_ll_Slot_inst_encode
, 0, 0
10096 static xtensa_opcode_encode_fn Opcode_muls_dd_hl_encode_fns
[] = {
10097 Opcode_muls_dd_hl_Slot_inst_encode
, 0, 0
10100 static xtensa_opcode_encode_fn Opcode_muls_dd_lh_encode_fns
[] = {
10101 Opcode_muls_dd_lh_Slot_inst_encode
, 0, 0
10104 static xtensa_opcode_encode_fn Opcode_muls_dd_hh_encode_fns
[] = {
10105 Opcode_muls_dd_hh_Slot_inst_encode
, 0, 0
10108 static xtensa_opcode_encode_fn Opcode_mula_da_ll_lddec_encode_fns
[] = {
10109 Opcode_mula_da_ll_lddec_Slot_inst_encode
, 0, 0
10112 static xtensa_opcode_encode_fn Opcode_mula_da_ll_ldinc_encode_fns
[] = {
10113 Opcode_mula_da_ll_ldinc_Slot_inst_encode
, 0, 0
10116 static xtensa_opcode_encode_fn Opcode_mula_da_hl_lddec_encode_fns
[] = {
10117 Opcode_mula_da_hl_lddec_Slot_inst_encode
, 0, 0
10120 static xtensa_opcode_encode_fn Opcode_mula_da_hl_ldinc_encode_fns
[] = {
10121 Opcode_mula_da_hl_ldinc_Slot_inst_encode
, 0, 0
10124 static xtensa_opcode_encode_fn Opcode_mula_da_lh_lddec_encode_fns
[] = {
10125 Opcode_mula_da_lh_lddec_Slot_inst_encode
, 0, 0
10128 static xtensa_opcode_encode_fn Opcode_mula_da_lh_ldinc_encode_fns
[] = {
10129 Opcode_mula_da_lh_ldinc_Slot_inst_encode
, 0, 0
10132 static xtensa_opcode_encode_fn Opcode_mula_da_hh_lddec_encode_fns
[] = {
10133 Opcode_mula_da_hh_lddec_Slot_inst_encode
, 0, 0
10136 static xtensa_opcode_encode_fn Opcode_mula_da_hh_ldinc_encode_fns
[] = {
10137 Opcode_mula_da_hh_ldinc_Slot_inst_encode
, 0, 0
10140 static xtensa_opcode_encode_fn Opcode_mula_dd_ll_lddec_encode_fns
[] = {
10141 Opcode_mula_dd_ll_lddec_Slot_inst_encode
, 0, 0
10144 static xtensa_opcode_encode_fn Opcode_mula_dd_ll_ldinc_encode_fns
[] = {
10145 Opcode_mula_dd_ll_ldinc_Slot_inst_encode
, 0, 0
10148 static xtensa_opcode_encode_fn Opcode_mula_dd_hl_lddec_encode_fns
[] = {
10149 Opcode_mula_dd_hl_lddec_Slot_inst_encode
, 0, 0
10152 static xtensa_opcode_encode_fn Opcode_mula_dd_hl_ldinc_encode_fns
[] = {
10153 Opcode_mula_dd_hl_ldinc_Slot_inst_encode
, 0, 0
10156 static xtensa_opcode_encode_fn Opcode_mula_dd_lh_lddec_encode_fns
[] = {
10157 Opcode_mula_dd_lh_lddec_Slot_inst_encode
, 0, 0
10160 static xtensa_opcode_encode_fn Opcode_mula_dd_lh_ldinc_encode_fns
[] = {
10161 Opcode_mula_dd_lh_ldinc_Slot_inst_encode
, 0, 0
10164 static xtensa_opcode_encode_fn Opcode_mula_dd_hh_lddec_encode_fns
[] = {
10165 Opcode_mula_dd_hh_lddec_Slot_inst_encode
, 0, 0
10168 static xtensa_opcode_encode_fn Opcode_mula_dd_hh_ldinc_encode_fns
[] = {
10169 Opcode_mula_dd_hh_ldinc_Slot_inst_encode
, 0, 0
10172 static xtensa_opcode_encode_fn Opcode_lddec_encode_fns
[] = {
10173 Opcode_lddec_Slot_inst_encode
, 0, 0
10176 static xtensa_opcode_encode_fn Opcode_ldinc_encode_fns
[] = {
10177 Opcode_ldinc_Slot_inst_encode
, 0, 0
10180 static xtensa_opcode_encode_fn Opcode_rsr_m0_encode_fns
[] = {
10181 Opcode_rsr_m0_Slot_inst_encode
, 0, 0
10184 static xtensa_opcode_encode_fn Opcode_wsr_m0_encode_fns
[] = {
10185 Opcode_wsr_m0_Slot_inst_encode
, 0, 0
10188 static xtensa_opcode_encode_fn Opcode_xsr_m0_encode_fns
[] = {
10189 Opcode_xsr_m0_Slot_inst_encode
, 0, 0
10192 static xtensa_opcode_encode_fn Opcode_rsr_m1_encode_fns
[] = {
10193 Opcode_rsr_m1_Slot_inst_encode
, 0, 0
10196 static xtensa_opcode_encode_fn Opcode_wsr_m1_encode_fns
[] = {
10197 Opcode_wsr_m1_Slot_inst_encode
, 0, 0
10200 static xtensa_opcode_encode_fn Opcode_xsr_m1_encode_fns
[] = {
10201 Opcode_xsr_m1_Slot_inst_encode
, 0, 0
10204 static xtensa_opcode_encode_fn Opcode_rsr_m2_encode_fns
[] = {
10205 Opcode_rsr_m2_Slot_inst_encode
, 0, 0
10208 static xtensa_opcode_encode_fn Opcode_wsr_m2_encode_fns
[] = {
10209 Opcode_wsr_m2_Slot_inst_encode
, 0, 0
10212 static xtensa_opcode_encode_fn Opcode_xsr_m2_encode_fns
[] = {
10213 Opcode_xsr_m2_Slot_inst_encode
, 0, 0
10216 static xtensa_opcode_encode_fn Opcode_rsr_m3_encode_fns
[] = {
10217 Opcode_rsr_m3_Slot_inst_encode
, 0, 0
10220 static xtensa_opcode_encode_fn Opcode_wsr_m3_encode_fns
[] = {
10221 Opcode_wsr_m3_Slot_inst_encode
, 0, 0
10224 static xtensa_opcode_encode_fn Opcode_xsr_m3_encode_fns
[] = {
10225 Opcode_xsr_m3_Slot_inst_encode
, 0, 0
10228 static xtensa_opcode_encode_fn Opcode_rsr_acclo_encode_fns
[] = {
10229 Opcode_rsr_acclo_Slot_inst_encode
, 0, 0
10232 static xtensa_opcode_encode_fn Opcode_wsr_acclo_encode_fns
[] = {
10233 Opcode_wsr_acclo_Slot_inst_encode
, 0, 0
10236 static xtensa_opcode_encode_fn Opcode_xsr_acclo_encode_fns
[] = {
10237 Opcode_xsr_acclo_Slot_inst_encode
, 0, 0
10240 static xtensa_opcode_encode_fn Opcode_rsr_acchi_encode_fns
[] = {
10241 Opcode_rsr_acchi_Slot_inst_encode
, 0, 0
10244 static xtensa_opcode_encode_fn Opcode_wsr_acchi_encode_fns
[] = {
10245 Opcode_wsr_acchi_Slot_inst_encode
, 0, 0
10248 static xtensa_opcode_encode_fn Opcode_xsr_acchi_encode_fns
[] = {
10249 Opcode_xsr_acchi_Slot_inst_encode
, 0, 0
10252 static xtensa_opcode_encode_fn Opcode_rfi_encode_fns
[] = {
10253 Opcode_rfi_Slot_inst_encode
, 0, 0
10256 static xtensa_opcode_encode_fn Opcode_waiti_encode_fns
[] = {
10257 Opcode_waiti_Slot_inst_encode
, 0, 0
10260 static xtensa_opcode_encode_fn Opcode_rsr_interrupt_encode_fns
[] = {
10261 Opcode_rsr_interrupt_Slot_inst_encode
, 0, 0
10264 static xtensa_opcode_encode_fn Opcode_wsr_intset_encode_fns
[] = {
10265 Opcode_wsr_intset_Slot_inst_encode
, 0, 0
10268 static xtensa_opcode_encode_fn Opcode_wsr_intclear_encode_fns
[] = {
10269 Opcode_wsr_intclear_Slot_inst_encode
, 0, 0
10272 static xtensa_opcode_encode_fn Opcode_rsr_intenable_encode_fns
[] = {
10273 Opcode_rsr_intenable_Slot_inst_encode
, 0, 0
10276 static xtensa_opcode_encode_fn Opcode_wsr_intenable_encode_fns
[] = {
10277 Opcode_wsr_intenable_Slot_inst_encode
, 0, 0
10280 static xtensa_opcode_encode_fn Opcode_xsr_intenable_encode_fns
[] = {
10281 Opcode_xsr_intenable_Slot_inst_encode
, 0, 0
10284 static xtensa_opcode_encode_fn Opcode_break_encode_fns
[] = {
10285 Opcode_break_Slot_inst_encode
, 0, 0
10288 static xtensa_opcode_encode_fn Opcode_break_n_encode_fns
[] = {
10289 0, 0, Opcode_break_n_Slot_inst16b_encode
10292 static xtensa_opcode_encode_fn Opcode_rsr_dbreaka0_encode_fns
[] = {
10293 Opcode_rsr_dbreaka0_Slot_inst_encode
, 0, 0
10296 static xtensa_opcode_encode_fn Opcode_wsr_dbreaka0_encode_fns
[] = {
10297 Opcode_wsr_dbreaka0_Slot_inst_encode
, 0, 0
10300 static xtensa_opcode_encode_fn Opcode_xsr_dbreaka0_encode_fns
[] = {
10301 Opcode_xsr_dbreaka0_Slot_inst_encode
, 0, 0
10304 static xtensa_opcode_encode_fn Opcode_rsr_dbreakc0_encode_fns
[] = {
10305 Opcode_rsr_dbreakc0_Slot_inst_encode
, 0, 0
10308 static xtensa_opcode_encode_fn Opcode_wsr_dbreakc0_encode_fns
[] = {
10309 Opcode_wsr_dbreakc0_Slot_inst_encode
, 0, 0
10312 static xtensa_opcode_encode_fn Opcode_xsr_dbreakc0_encode_fns
[] = {
10313 Opcode_xsr_dbreakc0_Slot_inst_encode
, 0, 0
10316 static xtensa_opcode_encode_fn Opcode_rsr_dbreaka1_encode_fns
[] = {
10317 Opcode_rsr_dbreaka1_Slot_inst_encode
, 0, 0
10320 static xtensa_opcode_encode_fn Opcode_wsr_dbreaka1_encode_fns
[] = {
10321 Opcode_wsr_dbreaka1_Slot_inst_encode
, 0, 0
10324 static xtensa_opcode_encode_fn Opcode_xsr_dbreaka1_encode_fns
[] = {
10325 Opcode_xsr_dbreaka1_Slot_inst_encode
, 0, 0
10328 static xtensa_opcode_encode_fn Opcode_rsr_dbreakc1_encode_fns
[] = {
10329 Opcode_rsr_dbreakc1_Slot_inst_encode
, 0, 0
10332 static xtensa_opcode_encode_fn Opcode_wsr_dbreakc1_encode_fns
[] = {
10333 Opcode_wsr_dbreakc1_Slot_inst_encode
, 0, 0
10336 static xtensa_opcode_encode_fn Opcode_xsr_dbreakc1_encode_fns
[] = {
10337 Opcode_xsr_dbreakc1_Slot_inst_encode
, 0, 0
10340 static xtensa_opcode_encode_fn Opcode_rsr_ibreaka0_encode_fns
[] = {
10341 Opcode_rsr_ibreaka0_Slot_inst_encode
, 0, 0
10344 static xtensa_opcode_encode_fn Opcode_wsr_ibreaka0_encode_fns
[] = {
10345 Opcode_wsr_ibreaka0_Slot_inst_encode
, 0, 0
10348 static xtensa_opcode_encode_fn Opcode_xsr_ibreaka0_encode_fns
[] = {
10349 Opcode_xsr_ibreaka0_Slot_inst_encode
, 0, 0
10352 static xtensa_opcode_encode_fn Opcode_rsr_ibreaka1_encode_fns
[] = {
10353 Opcode_rsr_ibreaka1_Slot_inst_encode
, 0, 0
10356 static xtensa_opcode_encode_fn Opcode_wsr_ibreaka1_encode_fns
[] = {
10357 Opcode_wsr_ibreaka1_Slot_inst_encode
, 0, 0
10360 static xtensa_opcode_encode_fn Opcode_xsr_ibreaka1_encode_fns
[] = {
10361 Opcode_xsr_ibreaka1_Slot_inst_encode
, 0, 0
10364 static xtensa_opcode_encode_fn Opcode_rsr_ibreakenable_encode_fns
[] = {
10365 Opcode_rsr_ibreakenable_Slot_inst_encode
, 0, 0
10368 static xtensa_opcode_encode_fn Opcode_wsr_ibreakenable_encode_fns
[] = {
10369 Opcode_wsr_ibreakenable_Slot_inst_encode
, 0, 0
10372 static xtensa_opcode_encode_fn Opcode_xsr_ibreakenable_encode_fns
[] = {
10373 Opcode_xsr_ibreakenable_Slot_inst_encode
, 0, 0
10376 static xtensa_opcode_encode_fn Opcode_rsr_debugcause_encode_fns
[] = {
10377 Opcode_rsr_debugcause_Slot_inst_encode
, 0, 0
10380 static xtensa_opcode_encode_fn Opcode_wsr_debugcause_encode_fns
[] = {
10381 Opcode_wsr_debugcause_Slot_inst_encode
, 0, 0
10384 static xtensa_opcode_encode_fn Opcode_xsr_debugcause_encode_fns
[] = {
10385 Opcode_xsr_debugcause_Slot_inst_encode
, 0, 0
10388 static xtensa_opcode_encode_fn Opcode_rsr_icount_encode_fns
[] = {
10389 Opcode_rsr_icount_Slot_inst_encode
, 0, 0
10392 static xtensa_opcode_encode_fn Opcode_wsr_icount_encode_fns
[] = {
10393 Opcode_wsr_icount_Slot_inst_encode
, 0, 0
10396 static xtensa_opcode_encode_fn Opcode_xsr_icount_encode_fns
[] = {
10397 Opcode_xsr_icount_Slot_inst_encode
, 0, 0
10400 static xtensa_opcode_encode_fn Opcode_rsr_icountlevel_encode_fns
[] = {
10401 Opcode_rsr_icountlevel_Slot_inst_encode
, 0, 0
10404 static xtensa_opcode_encode_fn Opcode_wsr_icountlevel_encode_fns
[] = {
10405 Opcode_wsr_icountlevel_Slot_inst_encode
, 0, 0
10408 static xtensa_opcode_encode_fn Opcode_xsr_icountlevel_encode_fns
[] = {
10409 Opcode_xsr_icountlevel_Slot_inst_encode
, 0, 0
10412 static xtensa_opcode_encode_fn Opcode_rsr_ddr_encode_fns
[] = {
10413 Opcode_rsr_ddr_Slot_inst_encode
, 0, 0
10416 static xtensa_opcode_encode_fn Opcode_wsr_ddr_encode_fns
[] = {
10417 Opcode_wsr_ddr_Slot_inst_encode
, 0, 0
10420 static xtensa_opcode_encode_fn Opcode_xsr_ddr_encode_fns
[] = {
10421 Opcode_xsr_ddr_Slot_inst_encode
, 0, 0
10424 static xtensa_opcode_encode_fn Opcode_lddr32_p_encode_fns
[] = {
10425 Opcode_lddr32_p_Slot_inst_encode
, 0, 0
10428 static xtensa_opcode_encode_fn Opcode_sddr32_p_encode_fns
[] = {
10429 Opcode_sddr32_p_Slot_inst_encode
, 0, 0
10432 static xtensa_opcode_encode_fn Opcode_rfdo_encode_fns
[] = {
10433 Opcode_rfdo_Slot_inst_encode
, 0, 0
10436 static xtensa_opcode_encode_fn Opcode_rfdd_encode_fns
[] = {
10437 Opcode_rfdd_Slot_inst_encode
, 0, 0
10440 static xtensa_opcode_encode_fn Opcode_wsr_mmid_encode_fns
[] = {
10441 Opcode_wsr_mmid_Slot_inst_encode
, 0, 0
10444 static xtensa_opcode_encode_fn Opcode_rsr_ccount_encode_fns
[] = {
10445 Opcode_rsr_ccount_Slot_inst_encode
, 0, 0
10448 static xtensa_opcode_encode_fn Opcode_wsr_ccount_encode_fns
[] = {
10449 Opcode_wsr_ccount_Slot_inst_encode
, 0, 0
10452 static xtensa_opcode_encode_fn Opcode_xsr_ccount_encode_fns
[] = {
10453 Opcode_xsr_ccount_Slot_inst_encode
, 0, 0
10456 static xtensa_opcode_encode_fn Opcode_rsr_ccompare0_encode_fns
[] = {
10457 Opcode_rsr_ccompare0_Slot_inst_encode
, 0, 0
10460 static xtensa_opcode_encode_fn Opcode_wsr_ccompare0_encode_fns
[] = {
10461 Opcode_wsr_ccompare0_Slot_inst_encode
, 0, 0
10464 static xtensa_opcode_encode_fn Opcode_xsr_ccompare0_encode_fns
[] = {
10465 Opcode_xsr_ccompare0_Slot_inst_encode
, 0, 0
10468 static xtensa_opcode_encode_fn Opcode_rsr_ccompare1_encode_fns
[] = {
10469 Opcode_rsr_ccompare1_Slot_inst_encode
, 0, 0
10472 static xtensa_opcode_encode_fn Opcode_wsr_ccompare1_encode_fns
[] = {
10473 Opcode_wsr_ccompare1_Slot_inst_encode
, 0, 0
10476 static xtensa_opcode_encode_fn Opcode_xsr_ccompare1_encode_fns
[] = {
10477 Opcode_xsr_ccompare1_Slot_inst_encode
, 0, 0
10480 static xtensa_opcode_encode_fn Opcode_rsr_ccompare2_encode_fns
[] = {
10481 Opcode_rsr_ccompare2_Slot_inst_encode
, 0, 0
10484 static xtensa_opcode_encode_fn Opcode_wsr_ccompare2_encode_fns
[] = {
10485 Opcode_wsr_ccompare2_Slot_inst_encode
, 0, 0
10488 static xtensa_opcode_encode_fn Opcode_xsr_ccompare2_encode_fns
[] = {
10489 Opcode_xsr_ccompare2_Slot_inst_encode
, 0, 0
10492 static xtensa_opcode_encode_fn Opcode_ipf_encode_fns
[] = {
10493 Opcode_ipf_Slot_inst_encode
, 0, 0
10496 static xtensa_opcode_encode_fn Opcode_ihi_encode_fns
[] = {
10497 Opcode_ihi_Slot_inst_encode
, 0, 0
10500 static xtensa_opcode_encode_fn Opcode_ipfl_encode_fns
[] = {
10501 Opcode_ipfl_Slot_inst_encode
, 0, 0
10504 static xtensa_opcode_encode_fn Opcode_ihu_encode_fns
[] = {
10505 Opcode_ihu_Slot_inst_encode
, 0, 0
10508 static xtensa_opcode_encode_fn Opcode_iiu_encode_fns
[] = {
10509 Opcode_iiu_Slot_inst_encode
, 0, 0
10512 static xtensa_opcode_encode_fn Opcode_iii_encode_fns
[] = {
10513 Opcode_iii_Slot_inst_encode
, 0, 0
10516 static xtensa_opcode_encode_fn Opcode_lict_encode_fns
[] = {
10517 Opcode_lict_Slot_inst_encode
, 0, 0
10520 static xtensa_opcode_encode_fn Opcode_licw_encode_fns
[] = {
10521 Opcode_licw_Slot_inst_encode
, 0, 0
10524 static xtensa_opcode_encode_fn Opcode_sict_encode_fns
[] = {
10525 Opcode_sict_Slot_inst_encode
, 0, 0
10528 static xtensa_opcode_encode_fn Opcode_sicw_encode_fns
[] = {
10529 Opcode_sicw_Slot_inst_encode
, 0, 0
10532 static xtensa_opcode_encode_fn Opcode_dhwb_encode_fns
[] = {
10533 Opcode_dhwb_Slot_inst_encode
, 0, 0
10536 static xtensa_opcode_encode_fn Opcode_dhwbi_encode_fns
[] = {
10537 Opcode_dhwbi_Slot_inst_encode
, 0, 0
10540 static xtensa_opcode_encode_fn Opcode_diwbui_p_encode_fns
[] = {
10541 Opcode_diwbui_p_Slot_inst_encode
, 0, 0
10544 static xtensa_opcode_encode_fn Opcode_diwb_encode_fns
[] = {
10545 Opcode_diwb_Slot_inst_encode
, 0, 0
10548 static xtensa_opcode_encode_fn Opcode_diwbi_encode_fns
[] = {
10549 Opcode_diwbi_Slot_inst_encode
, 0, 0
10552 static xtensa_opcode_encode_fn Opcode_dhi_encode_fns
[] = {
10553 Opcode_dhi_Slot_inst_encode
, 0, 0
10556 static xtensa_opcode_encode_fn Opcode_dii_encode_fns
[] = {
10557 Opcode_dii_Slot_inst_encode
, 0, 0
10560 static xtensa_opcode_encode_fn Opcode_dpfr_encode_fns
[] = {
10561 Opcode_dpfr_Slot_inst_encode
, 0, 0
10564 static xtensa_opcode_encode_fn Opcode_dpfw_encode_fns
[] = {
10565 Opcode_dpfw_Slot_inst_encode
, 0, 0
10568 static xtensa_opcode_encode_fn Opcode_dpfro_encode_fns
[] = {
10569 Opcode_dpfro_Slot_inst_encode
, 0, 0
10572 static xtensa_opcode_encode_fn Opcode_dpfwo_encode_fns
[] = {
10573 Opcode_dpfwo_Slot_inst_encode
, 0, 0
10576 static xtensa_opcode_encode_fn Opcode_dpfl_encode_fns
[] = {
10577 Opcode_dpfl_Slot_inst_encode
, 0, 0
10580 static xtensa_opcode_encode_fn Opcode_dhu_encode_fns
[] = {
10581 Opcode_dhu_Slot_inst_encode
, 0, 0
10584 static xtensa_opcode_encode_fn Opcode_diu_encode_fns
[] = {
10585 Opcode_diu_Slot_inst_encode
, 0, 0
10588 static xtensa_opcode_encode_fn Opcode_sdct_encode_fns
[] = {
10589 Opcode_sdct_Slot_inst_encode
, 0, 0
10592 static xtensa_opcode_encode_fn Opcode_ldct_encode_fns
[] = {
10593 Opcode_ldct_Slot_inst_encode
, 0, 0
10596 static xtensa_opcode_encode_fn Opcode_idtlb_encode_fns
[] = {
10597 Opcode_idtlb_Slot_inst_encode
, 0, 0
10600 static xtensa_opcode_encode_fn Opcode_pdtlb_encode_fns
[] = {
10601 Opcode_pdtlb_Slot_inst_encode
, 0, 0
10604 static xtensa_opcode_encode_fn Opcode_rdtlb0_encode_fns
[] = {
10605 Opcode_rdtlb0_Slot_inst_encode
, 0, 0
10608 static xtensa_opcode_encode_fn Opcode_rdtlb1_encode_fns
[] = {
10609 Opcode_rdtlb1_Slot_inst_encode
, 0, 0
10612 static xtensa_opcode_encode_fn Opcode_wdtlb_encode_fns
[] = {
10613 Opcode_wdtlb_Slot_inst_encode
, 0, 0
10616 static xtensa_opcode_encode_fn Opcode_iitlb_encode_fns
[] = {
10617 Opcode_iitlb_Slot_inst_encode
, 0, 0
10620 static xtensa_opcode_encode_fn Opcode_pitlb_encode_fns
[] = {
10621 Opcode_pitlb_Slot_inst_encode
, 0, 0
10624 static xtensa_opcode_encode_fn Opcode_ritlb0_encode_fns
[] = {
10625 Opcode_ritlb0_Slot_inst_encode
, 0, 0
10628 static xtensa_opcode_encode_fn Opcode_ritlb1_encode_fns
[] = {
10629 Opcode_ritlb1_Slot_inst_encode
, 0, 0
10632 static xtensa_opcode_encode_fn Opcode_witlb_encode_fns
[] = {
10633 Opcode_witlb_Slot_inst_encode
, 0, 0
10636 static xtensa_opcode_encode_fn Opcode_clamps_encode_fns
[] = {
10637 Opcode_clamps_Slot_inst_encode
, 0, 0
10640 static xtensa_opcode_encode_fn Opcode_min_encode_fns
[] = {
10641 Opcode_min_Slot_inst_encode
, 0, 0
10644 static xtensa_opcode_encode_fn Opcode_max_encode_fns
[] = {
10645 Opcode_max_Slot_inst_encode
, 0, 0
10648 static xtensa_opcode_encode_fn Opcode_minu_encode_fns
[] = {
10649 Opcode_minu_Slot_inst_encode
, 0, 0
10652 static xtensa_opcode_encode_fn Opcode_maxu_encode_fns
[] = {
10653 Opcode_maxu_Slot_inst_encode
, 0, 0
10656 static xtensa_opcode_encode_fn Opcode_nsa_encode_fns
[] = {
10657 Opcode_nsa_Slot_inst_encode
, 0, 0
10660 static xtensa_opcode_encode_fn Opcode_nsau_encode_fns
[] = {
10661 Opcode_nsau_Slot_inst_encode
, 0, 0
10664 static xtensa_opcode_encode_fn Opcode_sext_encode_fns
[] = {
10665 Opcode_sext_Slot_inst_encode
, 0, 0
10668 static xtensa_opcode_encode_fn Opcode_l32ai_encode_fns
[] = {
10669 Opcode_l32ai_Slot_inst_encode
, 0, 0
10672 static xtensa_opcode_encode_fn Opcode_s32ri_encode_fns
[] = {
10673 Opcode_s32ri_Slot_inst_encode
, 0, 0
10676 static xtensa_opcode_encode_fn Opcode_s32c1i_encode_fns
[] = {
10677 Opcode_s32c1i_Slot_inst_encode
, 0, 0
10680 static xtensa_opcode_encode_fn Opcode_rsr_scompare1_encode_fns
[] = {
10681 Opcode_rsr_scompare1_Slot_inst_encode
, 0, 0
10684 static xtensa_opcode_encode_fn Opcode_wsr_scompare1_encode_fns
[] = {
10685 Opcode_wsr_scompare1_Slot_inst_encode
, 0, 0
10688 static xtensa_opcode_encode_fn Opcode_xsr_scompare1_encode_fns
[] = {
10689 Opcode_xsr_scompare1_Slot_inst_encode
, 0, 0
10692 static xtensa_opcode_encode_fn Opcode_rsr_atomctl_encode_fns
[] = {
10693 Opcode_rsr_atomctl_Slot_inst_encode
, 0, 0
10696 static xtensa_opcode_encode_fn Opcode_wsr_atomctl_encode_fns
[] = {
10697 Opcode_wsr_atomctl_Slot_inst_encode
, 0, 0
10700 static xtensa_opcode_encode_fn Opcode_xsr_atomctl_encode_fns
[] = {
10701 Opcode_xsr_atomctl_Slot_inst_encode
, 0, 0
10704 static xtensa_opcode_encode_fn Opcode_quou_encode_fns
[] = {
10705 Opcode_quou_Slot_inst_encode
, 0, 0
10708 static xtensa_opcode_encode_fn Opcode_quos_encode_fns
[] = {
10709 Opcode_quos_Slot_inst_encode
, 0, 0
10712 static xtensa_opcode_encode_fn Opcode_remu_encode_fns
[] = {
10713 Opcode_remu_Slot_inst_encode
, 0, 0
10716 static xtensa_opcode_encode_fn Opcode_rems_encode_fns
[] = {
10717 Opcode_rems_Slot_inst_encode
, 0, 0
10720 static xtensa_opcode_encode_fn Opcode_rer_encode_fns
[] = {
10721 Opcode_rer_Slot_inst_encode
, 0, 0
10724 static xtensa_opcode_encode_fn Opcode_wer_encode_fns
[] = {
10725 Opcode_wer_Slot_inst_encode
, 0, 0
10728 static xtensa_opcode_encode_fn Opcode_rur_expstate_encode_fns
[] = {
10729 Opcode_rur_expstate_Slot_inst_encode
, 0, 0
10732 static xtensa_opcode_encode_fn Opcode_wur_expstate_encode_fns
[] = {
10733 Opcode_wur_expstate_Slot_inst_encode
, 0, 0
10736 static xtensa_opcode_encode_fn Opcode_read_impwire_encode_fns
[] = {
10737 Opcode_read_impwire_Slot_inst_encode
, 0, 0
10740 static xtensa_opcode_encode_fn Opcode_setb_expstate_encode_fns
[] = {
10741 Opcode_setb_expstate_Slot_inst_encode
, 0, 0
10744 static xtensa_opcode_encode_fn Opcode_clrb_expstate_encode_fns
[] = {
10745 Opcode_clrb_expstate_Slot_inst_encode
, 0, 0
10748 static xtensa_opcode_encode_fn Opcode_wrmsk_expstate_encode_fns
[] = {
10749 Opcode_wrmsk_expstate_Slot_inst_encode
, 0, 0
10756 /* Opcode table. */
10758 static xtensa_opcode_internal opcodes
[] = {
10759 { "excw", ICLASS_xt_iclass_excw
,
10761 Opcode_excw_encode_fns
, 0, 0 },
10762 { "rfe", ICLASS_xt_iclass_rfe
,
10763 XTENSA_OPCODE_IS_JUMP
,
10764 Opcode_rfe_encode_fns
, 0, 0 },
10765 { "rfde", ICLASS_xt_iclass_rfde
,
10766 XTENSA_OPCODE_IS_JUMP
,
10767 Opcode_rfde_encode_fns
, 0, 0 },
10768 { "syscall", ICLASS_xt_iclass_syscall
,
10770 Opcode_syscall_encode_fns
, 0, 0 },
10771 { "call12", ICLASS_xt_iclass_call12
,
10772 XTENSA_OPCODE_IS_CALL
,
10773 Opcode_call12_encode_fns
, 0, 0 },
10774 { "call8", ICLASS_xt_iclass_call8
,
10775 XTENSA_OPCODE_IS_CALL
,
10776 Opcode_call8_encode_fns
, 0, 0 },
10777 { "call4", ICLASS_xt_iclass_call4
,
10778 XTENSA_OPCODE_IS_CALL
,
10779 Opcode_call4_encode_fns
, 0, 0 },
10780 { "callx12", ICLASS_xt_iclass_callx12
,
10781 XTENSA_OPCODE_IS_CALL
,
10782 Opcode_callx12_encode_fns
, 0, 0 },
10783 { "callx8", ICLASS_xt_iclass_callx8
,
10784 XTENSA_OPCODE_IS_CALL
,
10785 Opcode_callx8_encode_fns
, 0, 0 },
10786 { "callx4", ICLASS_xt_iclass_callx4
,
10787 XTENSA_OPCODE_IS_CALL
,
10788 Opcode_callx4_encode_fns
, 0, 0 },
10789 { "entry", ICLASS_xt_iclass_entry
,
10791 Opcode_entry_encode_fns
, 0, 0 },
10792 { "movsp", ICLASS_xt_iclass_movsp
,
10794 Opcode_movsp_encode_fns
, 0, 0 },
10795 { "rotw", ICLASS_xt_iclass_rotw
,
10797 Opcode_rotw_encode_fns
, 0, 0 },
10798 { "retw", ICLASS_xt_iclass_retw
,
10799 XTENSA_OPCODE_IS_JUMP
,
10800 Opcode_retw_encode_fns
, 0, 0 },
10801 { "retw.n", ICLASS_xt_iclass_retw
,
10802 XTENSA_OPCODE_IS_JUMP
,
10803 Opcode_retw_n_encode_fns
, 0, 0 },
10804 { "rfwo", ICLASS_xt_iclass_rfwou
,
10805 XTENSA_OPCODE_IS_JUMP
,
10806 Opcode_rfwo_encode_fns
, 0, 0 },
10807 { "rfwu", ICLASS_xt_iclass_rfwou
,
10808 XTENSA_OPCODE_IS_JUMP
,
10809 Opcode_rfwu_encode_fns
, 0, 0 },
10810 { "l32e", ICLASS_xt_iclass_l32e
,
10812 Opcode_l32e_encode_fns
, 0, 0 },
10813 { "s32e", ICLASS_xt_iclass_s32e
,
10815 Opcode_s32e_encode_fns
, 0, 0 },
10816 { "rsr.windowbase", ICLASS_xt_iclass_rsr_windowbase
,
10818 Opcode_rsr_windowbase_encode_fns
, 0, 0 },
10819 { "wsr.windowbase", ICLASS_xt_iclass_wsr_windowbase
,
10821 Opcode_wsr_windowbase_encode_fns
, 0, 0 },
10822 { "xsr.windowbase", ICLASS_xt_iclass_xsr_windowbase
,
10824 Opcode_xsr_windowbase_encode_fns
, 0, 0 },
10825 { "rsr.windowstart", ICLASS_xt_iclass_rsr_windowstart
,
10827 Opcode_rsr_windowstart_encode_fns
, 0, 0 },
10828 { "wsr.windowstart", ICLASS_xt_iclass_wsr_windowstart
,
10830 Opcode_wsr_windowstart_encode_fns
, 0, 0 },
10831 { "xsr.windowstart", ICLASS_xt_iclass_xsr_windowstart
,
10833 Opcode_xsr_windowstart_encode_fns
, 0, 0 },
10834 { "add.n", ICLASS_xt_iclass_add_n
,
10836 Opcode_add_n_encode_fns
, 0, 0 },
10837 { "addi.n", ICLASS_xt_iclass_addi_n
,
10839 Opcode_addi_n_encode_fns
, 0, 0 },
10840 { "beqz.n", ICLASS_xt_iclass_bz6
,
10841 XTENSA_OPCODE_IS_BRANCH
,
10842 Opcode_beqz_n_encode_fns
, 0, 0 },
10843 { "bnez.n", ICLASS_xt_iclass_bz6
,
10844 XTENSA_OPCODE_IS_BRANCH
,
10845 Opcode_bnez_n_encode_fns
, 0, 0 },
10846 { "ill.n", ICLASS_xt_iclass_ill_n
,
10848 Opcode_ill_n_encode_fns
, 0, 0 },
10849 { "l32i.n", ICLASS_xt_iclass_loadi4
,
10851 Opcode_l32i_n_encode_fns
, 0, 0 },
10852 { "mov.n", ICLASS_xt_iclass_mov_n
,
10854 Opcode_mov_n_encode_fns
, 0, 0 },
10855 { "movi.n", ICLASS_xt_iclass_movi_n
,
10857 Opcode_movi_n_encode_fns
, 0, 0 },
10858 { "nop.n", ICLASS_xt_iclass_nopn
,
10860 Opcode_nop_n_encode_fns
, 0, 0 },
10861 { "ret.n", ICLASS_xt_iclass_retn
,
10862 XTENSA_OPCODE_IS_JUMP
,
10863 Opcode_ret_n_encode_fns
, 0, 0 },
10864 { "s32i.n", ICLASS_xt_iclass_storei4
,
10866 Opcode_s32i_n_encode_fns
, 0, 0 },
10867 { "addi", ICLASS_xt_iclass_addi
,
10869 Opcode_addi_encode_fns
, 0, 0 },
10870 { "addmi", ICLASS_xt_iclass_addmi
,
10872 Opcode_addmi_encode_fns
, 0, 0 },
10873 { "add", ICLASS_xt_iclass_addsub
,
10875 Opcode_add_encode_fns
, 0, 0 },
10876 { "sub", ICLASS_xt_iclass_addsub
,
10878 Opcode_sub_encode_fns
, 0, 0 },
10879 { "addx2", ICLASS_xt_iclass_addsub
,
10881 Opcode_addx2_encode_fns
, 0, 0 },
10882 { "addx4", ICLASS_xt_iclass_addsub
,
10884 Opcode_addx4_encode_fns
, 0, 0 },
10885 { "addx8", ICLASS_xt_iclass_addsub
,
10887 Opcode_addx8_encode_fns
, 0, 0 },
10888 { "subx2", ICLASS_xt_iclass_addsub
,
10890 Opcode_subx2_encode_fns
, 0, 0 },
10891 { "subx4", ICLASS_xt_iclass_addsub
,
10893 Opcode_subx4_encode_fns
, 0, 0 },
10894 { "subx8", ICLASS_xt_iclass_addsub
,
10896 Opcode_subx8_encode_fns
, 0, 0 },
10897 { "and", ICLASS_xt_iclass_bit
,
10899 Opcode_and_encode_fns
, 0, 0 },
10900 { "or", ICLASS_xt_iclass_bit
,
10902 Opcode_or_encode_fns
, 0, 0 },
10903 { "xor", ICLASS_xt_iclass_bit
,
10905 Opcode_xor_encode_fns
, 0, 0 },
10906 { "beqi", ICLASS_xt_iclass_bsi8
,
10907 XTENSA_OPCODE_IS_BRANCH
,
10908 Opcode_beqi_encode_fns
, 0, 0 },
10909 { "bnei", ICLASS_xt_iclass_bsi8
,
10910 XTENSA_OPCODE_IS_BRANCH
,
10911 Opcode_bnei_encode_fns
, 0, 0 },
10912 { "bgei", ICLASS_xt_iclass_bsi8
,
10913 XTENSA_OPCODE_IS_BRANCH
,
10914 Opcode_bgei_encode_fns
, 0, 0 },
10915 { "blti", ICLASS_xt_iclass_bsi8
,
10916 XTENSA_OPCODE_IS_BRANCH
,
10917 Opcode_blti_encode_fns
, 0, 0 },
10918 { "bbci", ICLASS_xt_iclass_bsi8b
,
10919 XTENSA_OPCODE_IS_BRANCH
,
10920 Opcode_bbci_encode_fns
, 0, 0 },
10921 { "bbsi", ICLASS_xt_iclass_bsi8b
,
10922 XTENSA_OPCODE_IS_BRANCH
,
10923 Opcode_bbsi_encode_fns
, 0, 0 },
10924 { "bgeui", ICLASS_xt_iclass_bsi8u
,
10925 XTENSA_OPCODE_IS_BRANCH
,
10926 Opcode_bgeui_encode_fns
, 0, 0 },
10927 { "bltui", ICLASS_xt_iclass_bsi8u
,
10928 XTENSA_OPCODE_IS_BRANCH
,
10929 Opcode_bltui_encode_fns
, 0, 0 },
10930 { "beq", ICLASS_xt_iclass_bst8
,
10931 XTENSA_OPCODE_IS_BRANCH
,
10932 Opcode_beq_encode_fns
, 0, 0 },
10933 { "bne", ICLASS_xt_iclass_bst8
,
10934 XTENSA_OPCODE_IS_BRANCH
,
10935 Opcode_bne_encode_fns
, 0, 0 },
10936 { "bge", ICLASS_xt_iclass_bst8
,
10937 XTENSA_OPCODE_IS_BRANCH
,
10938 Opcode_bge_encode_fns
, 0, 0 },
10939 { "blt", ICLASS_xt_iclass_bst8
,
10940 XTENSA_OPCODE_IS_BRANCH
,
10941 Opcode_blt_encode_fns
, 0, 0 },
10942 { "bgeu", ICLASS_xt_iclass_bst8
,
10943 XTENSA_OPCODE_IS_BRANCH
,
10944 Opcode_bgeu_encode_fns
, 0, 0 },
10945 { "bltu", ICLASS_xt_iclass_bst8
,
10946 XTENSA_OPCODE_IS_BRANCH
,
10947 Opcode_bltu_encode_fns
, 0, 0 },
10948 { "bany", ICLASS_xt_iclass_bst8
,
10949 XTENSA_OPCODE_IS_BRANCH
,
10950 Opcode_bany_encode_fns
, 0, 0 },
10951 { "bnone", ICLASS_xt_iclass_bst8
,
10952 XTENSA_OPCODE_IS_BRANCH
,
10953 Opcode_bnone_encode_fns
, 0, 0 },
10954 { "ball", ICLASS_xt_iclass_bst8
,
10955 XTENSA_OPCODE_IS_BRANCH
,
10956 Opcode_ball_encode_fns
, 0, 0 },
10957 { "bnall", ICLASS_xt_iclass_bst8
,
10958 XTENSA_OPCODE_IS_BRANCH
,
10959 Opcode_bnall_encode_fns
, 0, 0 },
10960 { "bbc", ICLASS_xt_iclass_bst8
,
10961 XTENSA_OPCODE_IS_BRANCH
,
10962 Opcode_bbc_encode_fns
, 0, 0 },
10963 { "bbs", ICLASS_xt_iclass_bst8
,
10964 XTENSA_OPCODE_IS_BRANCH
,
10965 Opcode_bbs_encode_fns
, 0, 0 },
10966 { "beqz", ICLASS_xt_iclass_bsz12
,
10967 XTENSA_OPCODE_IS_BRANCH
,
10968 Opcode_beqz_encode_fns
, 0, 0 },
10969 { "bnez", ICLASS_xt_iclass_bsz12
,
10970 XTENSA_OPCODE_IS_BRANCH
,
10971 Opcode_bnez_encode_fns
, 0, 0 },
10972 { "bgez", ICLASS_xt_iclass_bsz12
,
10973 XTENSA_OPCODE_IS_BRANCH
,
10974 Opcode_bgez_encode_fns
, 0, 0 },
10975 { "bltz", ICLASS_xt_iclass_bsz12
,
10976 XTENSA_OPCODE_IS_BRANCH
,
10977 Opcode_bltz_encode_fns
, 0, 0 },
10978 { "call0", ICLASS_xt_iclass_call0
,
10979 XTENSA_OPCODE_IS_CALL
,
10980 Opcode_call0_encode_fns
, 0, 0 },
10981 { "callx0", ICLASS_xt_iclass_callx0
,
10982 XTENSA_OPCODE_IS_CALL
,
10983 Opcode_callx0_encode_fns
, 0, 0 },
10984 { "extui", ICLASS_xt_iclass_exti
,
10986 Opcode_extui_encode_fns
, 0, 0 },
10987 { "ill", ICLASS_xt_iclass_ill
,
10989 Opcode_ill_encode_fns
, 0, 0 },
10990 { "j", ICLASS_xt_iclass_jump
,
10991 XTENSA_OPCODE_IS_JUMP
,
10992 Opcode_j_encode_fns
, 0, 0 },
10993 { "jx", ICLASS_xt_iclass_jumpx
,
10994 XTENSA_OPCODE_IS_JUMP
,
10995 Opcode_jx_encode_fns
, 0, 0 },
10996 { "l16ui", ICLASS_xt_iclass_l16ui
,
10998 Opcode_l16ui_encode_fns
, 0, 0 },
10999 { "l16si", ICLASS_xt_iclass_l16si
,
11001 Opcode_l16si_encode_fns
, 0, 0 },
11002 { "l32i", ICLASS_xt_iclass_l32i
,
11004 Opcode_l32i_encode_fns
, 0, 0 },
11005 { "l32r", ICLASS_xt_iclass_l32r
,
11007 Opcode_l32r_encode_fns
, 0, 0 },
11008 { "l8ui", ICLASS_xt_iclass_l8i
,
11010 Opcode_l8ui_encode_fns
, 0, 0 },
11011 { "loop", ICLASS_xt_iclass_loop
,
11012 XTENSA_OPCODE_IS_LOOP
,
11013 Opcode_loop_encode_fns
, 0, 0 },
11014 { "loopnez", ICLASS_xt_iclass_loopz
,
11015 XTENSA_OPCODE_IS_LOOP
,
11016 Opcode_loopnez_encode_fns
, 0, 0 },
11017 { "loopgtz", ICLASS_xt_iclass_loopz
,
11018 XTENSA_OPCODE_IS_LOOP
,
11019 Opcode_loopgtz_encode_fns
, 0, 0 },
11020 { "movi", ICLASS_xt_iclass_movi
,
11022 Opcode_movi_encode_fns
, 0, 0 },
11023 { "moveqz", ICLASS_xt_iclass_movz
,
11025 Opcode_moveqz_encode_fns
, 0, 0 },
11026 { "movnez", ICLASS_xt_iclass_movz
,
11028 Opcode_movnez_encode_fns
, 0, 0 },
11029 { "movltz", ICLASS_xt_iclass_movz
,
11031 Opcode_movltz_encode_fns
, 0, 0 },
11032 { "movgez", ICLASS_xt_iclass_movz
,
11034 Opcode_movgez_encode_fns
, 0, 0 },
11035 { "neg", ICLASS_xt_iclass_neg
,
11037 Opcode_neg_encode_fns
, 0, 0 },
11038 { "abs", ICLASS_xt_iclass_neg
,
11040 Opcode_abs_encode_fns
, 0, 0 },
11041 { "nop", ICLASS_xt_iclass_nop
,
11043 Opcode_nop_encode_fns
, 0, 0 },
11044 { "ret", ICLASS_xt_iclass_return
,
11045 XTENSA_OPCODE_IS_JUMP
,
11046 Opcode_ret_encode_fns
, 0, 0 },
11047 { "simcall", ICLASS_xt_iclass_simcall
,
11049 Opcode_simcall_encode_fns
, 0, 0 },
11050 { "s16i", ICLASS_xt_iclass_s16i
,
11052 Opcode_s16i_encode_fns
, 0, 0 },
11053 { "s32i", ICLASS_xt_iclass_s32i
,
11055 Opcode_s32i_encode_fns
, 0, 0 },
11056 { "s32nb", ICLASS_xt_iclass_s32nb
,
11058 Opcode_s32nb_encode_fns
, 0, 0 },
11059 { "s8i", ICLASS_xt_iclass_s8i
,
11061 Opcode_s8i_encode_fns
, 0, 0 },
11062 { "ssr", ICLASS_xt_iclass_sar
,
11064 Opcode_ssr_encode_fns
, 0, 0 },
11065 { "ssl", ICLASS_xt_iclass_sar
,
11067 Opcode_ssl_encode_fns
, 0, 0 },
11068 { "ssa8l", ICLASS_xt_iclass_sar
,
11070 Opcode_ssa8l_encode_fns
, 0, 0 },
11071 { "ssa8b", ICLASS_xt_iclass_sar
,
11073 Opcode_ssa8b_encode_fns
, 0, 0 },
11074 { "ssai", ICLASS_xt_iclass_sari
,
11076 Opcode_ssai_encode_fns
, 0, 0 },
11077 { "sll", ICLASS_xt_iclass_shifts
,
11079 Opcode_sll_encode_fns
, 0, 0 },
11080 { "src", ICLASS_xt_iclass_shiftst
,
11082 Opcode_src_encode_fns
, 0, 0 },
11083 { "srl", ICLASS_xt_iclass_shiftt
,
11085 Opcode_srl_encode_fns
, 0, 0 },
11086 { "sra", ICLASS_xt_iclass_shiftt
,
11088 Opcode_sra_encode_fns
, 0, 0 },
11089 { "slli", ICLASS_xt_iclass_slli
,
11091 Opcode_slli_encode_fns
, 0, 0 },
11092 { "srai", ICLASS_xt_iclass_srai
,
11094 Opcode_srai_encode_fns
, 0, 0 },
11095 { "srli", ICLASS_xt_iclass_srli
,
11097 Opcode_srli_encode_fns
, 0, 0 },
11098 { "memw", ICLASS_xt_iclass_memw
,
11100 Opcode_memw_encode_fns
, 0, 0 },
11101 { "extw", ICLASS_xt_iclass_extw
,
11103 Opcode_extw_encode_fns
, 0, 0 },
11104 { "isync", ICLASS_xt_iclass_isync
,
11106 Opcode_isync_encode_fns
, 0, 0 },
11107 { "rsync", ICLASS_xt_iclass_sync
,
11109 Opcode_rsync_encode_fns
, 0, 0 },
11110 { "esync", ICLASS_xt_iclass_sync
,
11112 Opcode_esync_encode_fns
, 0, 0 },
11113 { "dsync", ICLASS_xt_iclass_sync
,
11115 Opcode_dsync_encode_fns
, 0, 0 },
11116 { "rsil", ICLASS_xt_iclass_rsil
,
11118 Opcode_rsil_encode_fns
, 0, 0 },
11119 { "rsr.lend", ICLASS_xt_iclass_rsr_lend
,
11121 Opcode_rsr_lend_encode_fns
, 0, 0 },
11122 { "wsr.lend", ICLASS_xt_iclass_wsr_lend
,
11124 Opcode_wsr_lend_encode_fns
, 0, 0 },
11125 { "xsr.lend", ICLASS_xt_iclass_xsr_lend
,
11127 Opcode_xsr_lend_encode_fns
, 0, 0 },
11128 { "rsr.lcount", ICLASS_xt_iclass_rsr_lcount
,
11130 Opcode_rsr_lcount_encode_fns
, 0, 0 },
11131 { "wsr.lcount", ICLASS_xt_iclass_wsr_lcount
,
11133 Opcode_wsr_lcount_encode_fns
, 0, 0 },
11134 { "xsr.lcount", ICLASS_xt_iclass_xsr_lcount
,
11136 Opcode_xsr_lcount_encode_fns
, 0, 0 },
11137 { "rsr.lbeg", ICLASS_xt_iclass_rsr_lbeg
,
11139 Opcode_rsr_lbeg_encode_fns
, 0, 0 },
11140 { "wsr.lbeg", ICLASS_xt_iclass_wsr_lbeg
,
11142 Opcode_wsr_lbeg_encode_fns
, 0, 0 },
11143 { "xsr.lbeg", ICLASS_xt_iclass_xsr_lbeg
,
11145 Opcode_xsr_lbeg_encode_fns
, 0, 0 },
11146 { "rsr.sar", ICLASS_xt_iclass_rsr_sar
,
11148 Opcode_rsr_sar_encode_fns
, 0, 0 },
11149 { "wsr.sar", ICLASS_xt_iclass_wsr_sar
,
11151 Opcode_wsr_sar_encode_fns
, 0, 0 },
11152 { "xsr.sar", ICLASS_xt_iclass_xsr_sar
,
11154 Opcode_xsr_sar_encode_fns
, 0, 0 },
11155 { "rsr.memctl", ICLASS_xt_iclass_rsr_memctl
,
11157 Opcode_rsr_memctl_encode_fns
, 0, 0 },
11158 { "wsr.memctl", ICLASS_xt_iclass_wsr_memctl
,
11160 Opcode_wsr_memctl_encode_fns
, 0, 0 },
11161 { "xsr.memctl", ICLASS_xt_iclass_xsr_memctl
,
11163 Opcode_xsr_memctl_encode_fns
, 0, 0 },
11164 { "rsr.litbase", ICLASS_xt_iclass_rsr_litbase
,
11166 Opcode_rsr_litbase_encode_fns
, 0, 0 },
11167 { "wsr.litbase", ICLASS_xt_iclass_wsr_litbase
,
11169 Opcode_wsr_litbase_encode_fns
, 0, 0 },
11170 { "xsr.litbase", ICLASS_xt_iclass_xsr_litbase
,
11172 Opcode_xsr_litbase_encode_fns
, 0, 0 },
11173 { "rsr.configid0", ICLASS_xt_iclass_rsr_configid0
,
11175 Opcode_rsr_configid0_encode_fns
, 0, 0 },
11176 { "wsr.configid0", ICLASS_xt_iclass_wsr_configid0
,
11178 Opcode_wsr_configid0_encode_fns
, 0, 0 },
11179 { "rsr.configid1", ICLASS_xt_iclass_rsr_configid1
,
11181 Opcode_rsr_configid1_encode_fns
, 0, 0 },
11182 { "rsr.ps", ICLASS_xt_iclass_rsr_ps
,
11184 Opcode_rsr_ps_encode_fns
, 0, 0 },
11185 { "wsr.ps", ICLASS_xt_iclass_wsr_ps
,
11187 Opcode_wsr_ps_encode_fns
, 0, 0 },
11188 { "xsr.ps", ICLASS_xt_iclass_xsr_ps
,
11190 Opcode_xsr_ps_encode_fns
, 0, 0 },
11191 { "rsr.epc1", ICLASS_xt_iclass_rsr_epc1
,
11193 Opcode_rsr_epc1_encode_fns
, 0, 0 },
11194 { "wsr.epc1", ICLASS_xt_iclass_wsr_epc1
,
11196 Opcode_wsr_epc1_encode_fns
, 0, 0 },
11197 { "xsr.epc1", ICLASS_xt_iclass_xsr_epc1
,
11199 Opcode_xsr_epc1_encode_fns
, 0, 0 },
11200 { "rsr.excsave1", ICLASS_xt_iclass_rsr_excsave1
,
11202 Opcode_rsr_excsave1_encode_fns
, 0, 0 },
11203 { "wsr.excsave1", ICLASS_xt_iclass_wsr_excsave1
,
11205 Opcode_wsr_excsave1_encode_fns
, 0, 0 },
11206 { "xsr.excsave1", ICLASS_xt_iclass_xsr_excsave1
,
11208 Opcode_xsr_excsave1_encode_fns
, 0, 0 },
11209 { "rsr.epc2", ICLASS_xt_iclass_rsr_epc2
,
11211 Opcode_rsr_epc2_encode_fns
, 0, 0 },
11212 { "wsr.epc2", ICLASS_xt_iclass_wsr_epc2
,
11214 Opcode_wsr_epc2_encode_fns
, 0, 0 },
11215 { "xsr.epc2", ICLASS_xt_iclass_xsr_epc2
,
11217 Opcode_xsr_epc2_encode_fns
, 0, 0 },
11218 { "rsr.excsave2", ICLASS_xt_iclass_rsr_excsave2
,
11220 Opcode_rsr_excsave2_encode_fns
, 0, 0 },
11221 { "wsr.excsave2", ICLASS_xt_iclass_wsr_excsave2
,
11223 Opcode_wsr_excsave2_encode_fns
, 0, 0 },
11224 { "xsr.excsave2", ICLASS_xt_iclass_xsr_excsave2
,
11226 Opcode_xsr_excsave2_encode_fns
, 0, 0 },
11227 { "rsr.epc3", ICLASS_xt_iclass_rsr_epc3
,
11229 Opcode_rsr_epc3_encode_fns
, 0, 0 },
11230 { "wsr.epc3", ICLASS_xt_iclass_wsr_epc3
,
11232 Opcode_wsr_epc3_encode_fns
, 0, 0 },
11233 { "xsr.epc3", ICLASS_xt_iclass_xsr_epc3
,
11235 Opcode_xsr_epc3_encode_fns
, 0, 0 },
11236 { "rsr.excsave3", ICLASS_xt_iclass_rsr_excsave3
,
11238 Opcode_rsr_excsave3_encode_fns
, 0, 0 },
11239 { "wsr.excsave3", ICLASS_xt_iclass_wsr_excsave3
,
11241 Opcode_wsr_excsave3_encode_fns
, 0, 0 },
11242 { "xsr.excsave3", ICLASS_xt_iclass_xsr_excsave3
,
11244 Opcode_xsr_excsave3_encode_fns
, 0, 0 },
11245 { "rsr.epc4", ICLASS_xt_iclass_rsr_epc4
,
11247 Opcode_rsr_epc4_encode_fns
, 0, 0 },
11248 { "wsr.epc4", ICLASS_xt_iclass_wsr_epc4
,
11250 Opcode_wsr_epc4_encode_fns
, 0, 0 },
11251 { "xsr.epc4", ICLASS_xt_iclass_xsr_epc4
,
11253 Opcode_xsr_epc4_encode_fns
, 0, 0 },
11254 { "rsr.excsave4", ICLASS_xt_iclass_rsr_excsave4
,
11256 Opcode_rsr_excsave4_encode_fns
, 0, 0 },
11257 { "wsr.excsave4", ICLASS_xt_iclass_wsr_excsave4
,
11259 Opcode_wsr_excsave4_encode_fns
, 0, 0 },
11260 { "xsr.excsave4", ICLASS_xt_iclass_xsr_excsave4
,
11262 Opcode_xsr_excsave4_encode_fns
, 0, 0 },
11263 { "rsr.epc5", ICLASS_xt_iclass_rsr_epc5
,
11265 Opcode_rsr_epc5_encode_fns
, 0, 0 },
11266 { "wsr.epc5", ICLASS_xt_iclass_wsr_epc5
,
11268 Opcode_wsr_epc5_encode_fns
, 0, 0 },
11269 { "xsr.epc5", ICLASS_xt_iclass_xsr_epc5
,
11271 Opcode_xsr_epc5_encode_fns
, 0, 0 },
11272 { "rsr.excsave5", ICLASS_xt_iclass_rsr_excsave5
,
11274 Opcode_rsr_excsave5_encode_fns
, 0, 0 },
11275 { "wsr.excsave5", ICLASS_xt_iclass_wsr_excsave5
,
11277 Opcode_wsr_excsave5_encode_fns
, 0, 0 },
11278 { "xsr.excsave5", ICLASS_xt_iclass_xsr_excsave5
,
11280 Opcode_xsr_excsave5_encode_fns
, 0, 0 },
11281 { "rsr.epc6", ICLASS_xt_iclass_rsr_epc6
,
11283 Opcode_rsr_epc6_encode_fns
, 0, 0 },
11284 { "wsr.epc6", ICLASS_xt_iclass_wsr_epc6
,
11286 Opcode_wsr_epc6_encode_fns
, 0, 0 },
11287 { "xsr.epc6", ICLASS_xt_iclass_xsr_epc6
,
11289 Opcode_xsr_epc6_encode_fns
, 0, 0 },
11290 { "rsr.excsave6", ICLASS_xt_iclass_rsr_excsave6
,
11292 Opcode_rsr_excsave6_encode_fns
, 0, 0 },
11293 { "wsr.excsave6", ICLASS_xt_iclass_wsr_excsave6
,
11295 Opcode_wsr_excsave6_encode_fns
, 0, 0 },
11296 { "xsr.excsave6", ICLASS_xt_iclass_xsr_excsave6
,
11298 Opcode_xsr_excsave6_encode_fns
, 0, 0 },
11299 { "rsr.epc7", ICLASS_xt_iclass_rsr_epc7
,
11301 Opcode_rsr_epc7_encode_fns
, 0, 0 },
11302 { "wsr.epc7", ICLASS_xt_iclass_wsr_epc7
,
11304 Opcode_wsr_epc7_encode_fns
, 0, 0 },
11305 { "xsr.epc7", ICLASS_xt_iclass_xsr_epc7
,
11307 Opcode_xsr_epc7_encode_fns
, 0, 0 },
11308 { "rsr.excsave7", ICLASS_xt_iclass_rsr_excsave7
,
11310 Opcode_rsr_excsave7_encode_fns
, 0, 0 },
11311 { "wsr.excsave7", ICLASS_xt_iclass_wsr_excsave7
,
11313 Opcode_wsr_excsave7_encode_fns
, 0, 0 },
11314 { "xsr.excsave7", ICLASS_xt_iclass_xsr_excsave7
,
11316 Opcode_xsr_excsave7_encode_fns
, 0, 0 },
11317 { "rsr.eps2", ICLASS_xt_iclass_rsr_eps2
,
11319 Opcode_rsr_eps2_encode_fns
, 0, 0 },
11320 { "wsr.eps2", ICLASS_xt_iclass_wsr_eps2
,
11322 Opcode_wsr_eps2_encode_fns
, 0, 0 },
11323 { "xsr.eps2", ICLASS_xt_iclass_xsr_eps2
,
11325 Opcode_xsr_eps2_encode_fns
, 0, 0 },
11326 { "rsr.eps3", ICLASS_xt_iclass_rsr_eps3
,
11328 Opcode_rsr_eps3_encode_fns
, 0, 0 },
11329 { "wsr.eps3", ICLASS_xt_iclass_wsr_eps3
,
11331 Opcode_wsr_eps3_encode_fns
, 0, 0 },
11332 { "xsr.eps3", ICLASS_xt_iclass_xsr_eps3
,
11334 Opcode_xsr_eps3_encode_fns
, 0, 0 },
11335 { "rsr.eps4", ICLASS_xt_iclass_rsr_eps4
,
11337 Opcode_rsr_eps4_encode_fns
, 0, 0 },
11338 { "wsr.eps4", ICLASS_xt_iclass_wsr_eps4
,
11340 Opcode_wsr_eps4_encode_fns
, 0, 0 },
11341 { "xsr.eps4", ICLASS_xt_iclass_xsr_eps4
,
11343 Opcode_xsr_eps4_encode_fns
, 0, 0 },
11344 { "rsr.eps5", ICLASS_xt_iclass_rsr_eps5
,
11346 Opcode_rsr_eps5_encode_fns
, 0, 0 },
11347 { "wsr.eps5", ICLASS_xt_iclass_wsr_eps5
,
11349 Opcode_wsr_eps5_encode_fns
, 0, 0 },
11350 { "xsr.eps5", ICLASS_xt_iclass_xsr_eps5
,
11352 Opcode_xsr_eps5_encode_fns
, 0, 0 },
11353 { "rsr.eps6", ICLASS_xt_iclass_rsr_eps6
,
11355 Opcode_rsr_eps6_encode_fns
, 0, 0 },
11356 { "wsr.eps6", ICLASS_xt_iclass_wsr_eps6
,
11358 Opcode_wsr_eps6_encode_fns
, 0, 0 },
11359 { "xsr.eps6", ICLASS_xt_iclass_xsr_eps6
,
11361 Opcode_xsr_eps6_encode_fns
, 0, 0 },
11362 { "rsr.eps7", ICLASS_xt_iclass_rsr_eps7
,
11364 Opcode_rsr_eps7_encode_fns
, 0, 0 },
11365 { "wsr.eps7", ICLASS_xt_iclass_wsr_eps7
,
11367 Opcode_wsr_eps7_encode_fns
, 0, 0 },
11368 { "xsr.eps7", ICLASS_xt_iclass_xsr_eps7
,
11370 Opcode_xsr_eps7_encode_fns
, 0, 0 },
11371 { "rsr.excvaddr", ICLASS_xt_iclass_rsr_excvaddr
,
11373 Opcode_rsr_excvaddr_encode_fns
, 0, 0 },
11374 { "wsr.excvaddr", ICLASS_xt_iclass_wsr_excvaddr
,
11376 Opcode_wsr_excvaddr_encode_fns
, 0, 0 },
11377 { "xsr.excvaddr", ICLASS_xt_iclass_xsr_excvaddr
,
11379 Opcode_xsr_excvaddr_encode_fns
, 0, 0 },
11380 { "rsr.depc", ICLASS_xt_iclass_rsr_depc
,
11382 Opcode_rsr_depc_encode_fns
, 0, 0 },
11383 { "wsr.depc", ICLASS_xt_iclass_wsr_depc
,
11385 Opcode_wsr_depc_encode_fns
, 0, 0 },
11386 { "xsr.depc", ICLASS_xt_iclass_xsr_depc
,
11388 Opcode_xsr_depc_encode_fns
, 0, 0 },
11389 { "rsr.exccause", ICLASS_xt_iclass_rsr_exccause
,
11391 Opcode_rsr_exccause_encode_fns
, 0, 0 },
11392 { "wsr.exccause", ICLASS_xt_iclass_wsr_exccause
,
11394 Opcode_wsr_exccause_encode_fns
, 0, 0 },
11395 { "xsr.exccause", ICLASS_xt_iclass_xsr_exccause
,
11397 Opcode_xsr_exccause_encode_fns
, 0, 0 },
11398 { "rsr.misc0", ICLASS_xt_iclass_rsr_misc0
,
11400 Opcode_rsr_misc0_encode_fns
, 0, 0 },
11401 { "wsr.misc0", ICLASS_xt_iclass_wsr_misc0
,
11403 Opcode_wsr_misc0_encode_fns
, 0, 0 },
11404 { "xsr.misc0", ICLASS_xt_iclass_xsr_misc0
,
11406 Opcode_xsr_misc0_encode_fns
, 0, 0 },
11407 { "rsr.misc1", ICLASS_xt_iclass_rsr_misc1
,
11409 Opcode_rsr_misc1_encode_fns
, 0, 0 },
11410 { "wsr.misc1", ICLASS_xt_iclass_wsr_misc1
,
11412 Opcode_wsr_misc1_encode_fns
, 0, 0 },
11413 { "xsr.misc1", ICLASS_xt_iclass_xsr_misc1
,
11415 Opcode_xsr_misc1_encode_fns
, 0, 0 },
11416 { "rsr.prid", ICLASS_xt_iclass_rsr_prid
,
11418 Opcode_rsr_prid_encode_fns
, 0, 0 },
11419 { "rsr.vecbase", ICLASS_xt_iclass_rsr_vecbase
,
11421 Opcode_rsr_vecbase_encode_fns
, 0, 0 },
11422 { "wsr.vecbase", ICLASS_xt_iclass_wsr_vecbase
,
11424 Opcode_wsr_vecbase_encode_fns
, 0, 0 },
11425 { "xsr.vecbase", ICLASS_xt_iclass_xsr_vecbase
,
11427 Opcode_xsr_vecbase_encode_fns
, 0, 0 },
11428 { "mul16u", ICLASS_xt_mul16
,
11430 Opcode_mul16u_encode_fns
, 0, 0 },
11431 { "mul16s", ICLASS_xt_mul16
,
11433 Opcode_mul16s_encode_fns
, 0, 0 },
11434 { "mull", ICLASS_xt_mul32
,
11436 Opcode_mull_encode_fns
, 0, 0 },
11437 { "mul.aa.ll", ICLASS_xt_iclass_mac16_aa
,
11439 Opcode_mul_aa_ll_encode_fns
, 0, 0 },
11440 { "mul.aa.hl", ICLASS_xt_iclass_mac16_aa
,
11442 Opcode_mul_aa_hl_encode_fns
, 0, 0 },
11443 { "mul.aa.lh", ICLASS_xt_iclass_mac16_aa
,
11445 Opcode_mul_aa_lh_encode_fns
, 0, 0 },
11446 { "mul.aa.hh", ICLASS_xt_iclass_mac16_aa
,
11448 Opcode_mul_aa_hh_encode_fns
, 0, 0 },
11449 { "umul.aa.ll", ICLASS_xt_iclass_mac16_aa
,
11451 Opcode_umul_aa_ll_encode_fns
, 0, 0 },
11452 { "umul.aa.hl", ICLASS_xt_iclass_mac16_aa
,
11454 Opcode_umul_aa_hl_encode_fns
, 0, 0 },
11455 { "umul.aa.lh", ICLASS_xt_iclass_mac16_aa
,
11457 Opcode_umul_aa_lh_encode_fns
, 0, 0 },
11458 { "umul.aa.hh", ICLASS_xt_iclass_mac16_aa
,
11460 Opcode_umul_aa_hh_encode_fns
, 0, 0 },
11461 { "mul.ad.ll", ICLASS_xt_iclass_mac16_ad
,
11463 Opcode_mul_ad_ll_encode_fns
, 0, 0 },
11464 { "mul.ad.hl", ICLASS_xt_iclass_mac16_ad
,
11466 Opcode_mul_ad_hl_encode_fns
, 0, 0 },
11467 { "mul.ad.lh", ICLASS_xt_iclass_mac16_ad
,
11469 Opcode_mul_ad_lh_encode_fns
, 0, 0 },
11470 { "mul.ad.hh", ICLASS_xt_iclass_mac16_ad
,
11472 Opcode_mul_ad_hh_encode_fns
, 0, 0 },
11473 { "mul.da.ll", ICLASS_xt_iclass_mac16_da
,
11475 Opcode_mul_da_ll_encode_fns
, 0, 0 },
11476 { "mul.da.hl", ICLASS_xt_iclass_mac16_da
,
11478 Opcode_mul_da_hl_encode_fns
, 0, 0 },
11479 { "mul.da.lh", ICLASS_xt_iclass_mac16_da
,
11481 Opcode_mul_da_lh_encode_fns
, 0, 0 },
11482 { "mul.da.hh", ICLASS_xt_iclass_mac16_da
,
11484 Opcode_mul_da_hh_encode_fns
, 0, 0 },
11485 { "mul.dd.ll", ICLASS_xt_iclass_mac16_dd
,
11487 Opcode_mul_dd_ll_encode_fns
, 0, 0 },
11488 { "mul.dd.hl", ICLASS_xt_iclass_mac16_dd
,
11490 Opcode_mul_dd_hl_encode_fns
, 0, 0 },
11491 { "mul.dd.lh", ICLASS_xt_iclass_mac16_dd
,
11493 Opcode_mul_dd_lh_encode_fns
, 0, 0 },
11494 { "mul.dd.hh", ICLASS_xt_iclass_mac16_dd
,
11496 Opcode_mul_dd_hh_encode_fns
, 0, 0 },
11497 { "mula.aa.ll", ICLASS_xt_iclass_mac16a_aa
,
11499 Opcode_mula_aa_ll_encode_fns
, 0, 0 },
11500 { "mula.aa.hl", ICLASS_xt_iclass_mac16a_aa
,
11502 Opcode_mula_aa_hl_encode_fns
, 0, 0 },
11503 { "mula.aa.lh", ICLASS_xt_iclass_mac16a_aa
,
11505 Opcode_mula_aa_lh_encode_fns
, 0, 0 },
11506 { "mula.aa.hh", ICLASS_xt_iclass_mac16a_aa
,
11508 Opcode_mula_aa_hh_encode_fns
, 0, 0 },
11509 { "muls.aa.ll", ICLASS_xt_iclass_mac16a_aa
,
11511 Opcode_muls_aa_ll_encode_fns
, 0, 0 },
11512 { "muls.aa.hl", ICLASS_xt_iclass_mac16a_aa
,
11514 Opcode_muls_aa_hl_encode_fns
, 0, 0 },
11515 { "muls.aa.lh", ICLASS_xt_iclass_mac16a_aa
,
11517 Opcode_muls_aa_lh_encode_fns
, 0, 0 },
11518 { "muls.aa.hh", ICLASS_xt_iclass_mac16a_aa
,
11520 Opcode_muls_aa_hh_encode_fns
, 0, 0 },
11521 { "mula.ad.ll", ICLASS_xt_iclass_mac16a_ad
,
11523 Opcode_mula_ad_ll_encode_fns
, 0, 0 },
11524 { "mula.ad.hl", ICLASS_xt_iclass_mac16a_ad
,
11526 Opcode_mula_ad_hl_encode_fns
, 0, 0 },
11527 { "mula.ad.lh", ICLASS_xt_iclass_mac16a_ad
,
11529 Opcode_mula_ad_lh_encode_fns
, 0, 0 },
11530 { "mula.ad.hh", ICLASS_xt_iclass_mac16a_ad
,
11532 Opcode_mula_ad_hh_encode_fns
, 0, 0 },
11533 { "muls.ad.ll", ICLASS_xt_iclass_mac16a_ad
,
11535 Opcode_muls_ad_ll_encode_fns
, 0, 0 },
11536 { "muls.ad.hl", ICLASS_xt_iclass_mac16a_ad
,
11538 Opcode_muls_ad_hl_encode_fns
, 0, 0 },
11539 { "muls.ad.lh", ICLASS_xt_iclass_mac16a_ad
,
11541 Opcode_muls_ad_lh_encode_fns
, 0, 0 },
11542 { "muls.ad.hh", ICLASS_xt_iclass_mac16a_ad
,
11544 Opcode_muls_ad_hh_encode_fns
, 0, 0 },
11545 { "mula.da.ll", ICLASS_xt_iclass_mac16a_da
,
11547 Opcode_mula_da_ll_encode_fns
, 0, 0 },
11548 { "mula.da.hl", ICLASS_xt_iclass_mac16a_da
,
11550 Opcode_mula_da_hl_encode_fns
, 0, 0 },
11551 { "mula.da.lh", ICLASS_xt_iclass_mac16a_da
,
11553 Opcode_mula_da_lh_encode_fns
, 0, 0 },
11554 { "mula.da.hh", ICLASS_xt_iclass_mac16a_da
,
11556 Opcode_mula_da_hh_encode_fns
, 0, 0 },
11557 { "muls.da.ll", ICLASS_xt_iclass_mac16a_da
,
11559 Opcode_muls_da_ll_encode_fns
, 0, 0 },
11560 { "muls.da.hl", ICLASS_xt_iclass_mac16a_da
,
11562 Opcode_muls_da_hl_encode_fns
, 0, 0 },
11563 { "muls.da.lh", ICLASS_xt_iclass_mac16a_da
,
11565 Opcode_muls_da_lh_encode_fns
, 0, 0 },
11566 { "muls.da.hh", ICLASS_xt_iclass_mac16a_da
,
11568 Opcode_muls_da_hh_encode_fns
, 0, 0 },
11569 { "mula.dd.ll", ICLASS_xt_iclass_mac16a_dd
,
11571 Opcode_mula_dd_ll_encode_fns
, 0, 0 },
11572 { "mula.dd.hl", ICLASS_xt_iclass_mac16a_dd
,
11574 Opcode_mula_dd_hl_encode_fns
, 0, 0 },
11575 { "mula.dd.lh", ICLASS_xt_iclass_mac16a_dd
,
11577 Opcode_mula_dd_lh_encode_fns
, 0, 0 },
11578 { "mula.dd.hh", ICLASS_xt_iclass_mac16a_dd
,
11580 Opcode_mula_dd_hh_encode_fns
, 0, 0 },
11581 { "muls.dd.ll", ICLASS_xt_iclass_mac16a_dd
,
11583 Opcode_muls_dd_ll_encode_fns
, 0, 0 },
11584 { "muls.dd.hl", ICLASS_xt_iclass_mac16a_dd
,
11586 Opcode_muls_dd_hl_encode_fns
, 0, 0 },
11587 { "muls.dd.lh", ICLASS_xt_iclass_mac16a_dd
,
11589 Opcode_muls_dd_lh_encode_fns
, 0, 0 },
11590 { "muls.dd.hh", ICLASS_xt_iclass_mac16a_dd
,
11592 Opcode_muls_dd_hh_encode_fns
, 0, 0 },
11593 { "mula.da.ll.lddec", ICLASS_xt_iclass_mac16al_da
,
11595 Opcode_mula_da_ll_lddec_encode_fns
, 0, 0 },
11596 { "mula.da.ll.ldinc", ICLASS_xt_iclass_mac16al_da
,
11598 Opcode_mula_da_ll_ldinc_encode_fns
, 0, 0 },
11599 { "mula.da.hl.lddec", ICLASS_xt_iclass_mac16al_da
,
11601 Opcode_mula_da_hl_lddec_encode_fns
, 0, 0 },
11602 { "mula.da.hl.ldinc", ICLASS_xt_iclass_mac16al_da
,
11604 Opcode_mula_da_hl_ldinc_encode_fns
, 0, 0 },
11605 { "mula.da.lh.lddec", ICLASS_xt_iclass_mac16al_da
,
11607 Opcode_mula_da_lh_lddec_encode_fns
, 0, 0 },
11608 { "mula.da.lh.ldinc", ICLASS_xt_iclass_mac16al_da
,
11610 Opcode_mula_da_lh_ldinc_encode_fns
, 0, 0 },
11611 { "mula.da.hh.lddec", ICLASS_xt_iclass_mac16al_da
,
11613 Opcode_mula_da_hh_lddec_encode_fns
, 0, 0 },
11614 { "mula.da.hh.ldinc", ICLASS_xt_iclass_mac16al_da
,
11616 Opcode_mula_da_hh_ldinc_encode_fns
, 0, 0 },
11617 { "mula.dd.ll.lddec", ICLASS_xt_iclass_mac16al_dd
,
11619 Opcode_mula_dd_ll_lddec_encode_fns
, 0, 0 },
11620 { "mula.dd.ll.ldinc", ICLASS_xt_iclass_mac16al_dd
,
11622 Opcode_mula_dd_ll_ldinc_encode_fns
, 0, 0 },
11623 { "mula.dd.hl.lddec", ICLASS_xt_iclass_mac16al_dd
,
11625 Opcode_mula_dd_hl_lddec_encode_fns
, 0, 0 },
11626 { "mula.dd.hl.ldinc", ICLASS_xt_iclass_mac16al_dd
,
11628 Opcode_mula_dd_hl_ldinc_encode_fns
, 0, 0 },
11629 { "mula.dd.lh.lddec", ICLASS_xt_iclass_mac16al_dd
,
11631 Opcode_mula_dd_lh_lddec_encode_fns
, 0, 0 },
11632 { "mula.dd.lh.ldinc", ICLASS_xt_iclass_mac16al_dd
,
11634 Opcode_mula_dd_lh_ldinc_encode_fns
, 0, 0 },
11635 { "mula.dd.hh.lddec", ICLASS_xt_iclass_mac16al_dd
,
11637 Opcode_mula_dd_hh_lddec_encode_fns
, 0, 0 },
11638 { "mula.dd.hh.ldinc", ICLASS_xt_iclass_mac16al_dd
,
11640 Opcode_mula_dd_hh_ldinc_encode_fns
, 0, 0 },
11641 { "lddec", ICLASS_xt_iclass_mac16_l
,
11643 Opcode_lddec_encode_fns
, 0, 0 },
11644 { "ldinc", ICLASS_xt_iclass_mac16_l
,
11646 Opcode_ldinc_encode_fns
, 0, 0 },
11647 { "rsr.m0", ICLASS_xt_iclass_rsr_m0
,
11649 Opcode_rsr_m0_encode_fns
, 0, 0 },
11650 { "wsr.m0", ICLASS_xt_iclass_wsr_m0
,
11652 Opcode_wsr_m0_encode_fns
, 0, 0 },
11653 { "xsr.m0", ICLASS_xt_iclass_xsr_m0
,
11655 Opcode_xsr_m0_encode_fns
, 0, 0 },
11656 { "rsr.m1", ICLASS_xt_iclass_rsr_m1
,
11658 Opcode_rsr_m1_encode_fns
, 0, 0 },
11659 { "wsr.m1", ICLASS_xt_iclass_wsr_m1
,
11661 Opcode_wsr_m1_encode_fns
, 0, 0 },
11662 { "xsr.m1", ICLASS_xt_iclass_xsr_m1
,
11664 Opcode_xsr_m1_encode_fns
, 0, 0 },
11665 { "rsr.m2", ICLASS_xt_iclass_rsr_m2
,
11667 Opcode_rsr_m2_encode_fns
, 0, 0 },
11668 { "wsr.m2", ICLASS_xt_iclass_wsr_m2
,
11670 Opcode_wsr_m2_encode_fns
, 0, 0 },
11671 { "xsr.m2", ICLASS_xt_iclass_xsr_m2
,
11673 Opcode_xsr_m2_encode_fns
, 0, 0 },
11674 { "rsr.m3", ICLASS_xt_iclass_rsr_m3
,
11676 Opcode_rsr_m3_encode_fns
, 0, 0 },
11677 { "wsr.m3", ICLASS_xt_iclass_wsr_m3
,
11679 Opcode_wsr_m3_encode_fns
, 0, 0 },
11680 { "xsr.m3", ICLASS_xt_iclass_xsr_m3
,
11682 Opcode_xsr_m3_encode_fns
, 0, 0 },
11683 { "rsr.acclo", ICLASS_xt_iclass_rsr_acclo
,
11685 Opcode_rsr_acclo_encode_fns
, 0, 0 },
11686 { "wsr.acclo", ICLASS_xt_iclass_wsr_acclo
,
11688 Opcode_wsr_acclo_encode_fns
, 0, 0 },
11689 { "xsr.acclo", ICLASS_xt_iclass_xsr_acclo
,
11691 Opcode_xsr_acclo_encode_fns
, 0, 0 },
11692 { "rsr.acchi", ICLASS_xt_iclass_rsr_acchi
,
11694 Opcode_rsr_acchi_encode_fns
, 0, 0 },
11695 { "wsr.acchi", ICLASS_xt_iclass_wsr_acchi
,
11697 Opcode_wsr_acchi_encode_fns
, 0, 0 },
11698 { "xsr.acchi", ICLASS_xt_iclass_xsr_acchi
,
11700 Opcode_xsr_acchi_encode_fns
, 0, 0 },
11701 { "rfi", ICLASS_xt_iclass_rfi
,
11702 XTENSA_OPCODE_IS_JUMP
,
11703 Opcode_rfi_encode_fns
, 0, 0 },
11704 { "waiti", ICLASS_xt_iclass_wait
,
11706 Opcode_waiti_encode_fns
, 0, 0 },
11707 { "rsr.interrupt", ICLASS_xt_iclass_rsr_interrupt
,
11709 Opcode_rsr_interrupt_encode_fns
, 0, 0 },
11710 { "wsr.intset", ICLASS_xt_iclass_wsr_intset
,
11712 Opcode_wsr_intset_encode_fns
, 0, 0 },
11713 { "wsr.intclear", ICLASS_xt_iclass_wsr_intclear
,
11715 Opcode_wsr_intclear_encode_fns
, 0, 0 },
11716 { "rsr.intenable", ICLASS_xt_iclass_rsr_intenable
,
11718 Opcode_rsr_intenable_encode_fns
, 0, 0 },
11719 { "wsr.intenable", ICLASS_xt_iclass_wsr_intenable
,
11721 Opcode_wsr_intenable_encode_fns
, 0, 0 },
11722 { "xsr.intenable", ICLASS_xt_iclass_xsr_intenable
,
11724 Opcode_xsr_intenable_encode_fns
, 0, 0 },
11725 { "break", ICLASS_xt_iclass_break
,
11727 Opcode_break_encode_fns
, 0, 0 },
11728 { "break.n", ICLASS_xt_iclass_break_n
,
11730 Opcode_break_n_encode_fns
, 0, 0 },
11731 { "rsr.dbreaka0", ICLASS_xt_iclass_rsr_dbreaka0
,
11733 Opcode_rsr_dbreaka0_encode_fns
, 0, 0 },
11734 { "wsr.dbreaka0", ICLASS_xt_iclass_wsr_dbreaka0
,
11736 Opcode_wsr_dbreaka0_encode_fns
, 0, 0 },
11737 { "xsr.dbreaka0", ICLASS_xt_iclass_xsr_dbreaka0
,
11739 Opcode_xsr_dbreaka0_encode_fns
, 0, 0 },
11740 { "rsr.dbreakc0", ICLASS_xt_iclass_rsr_dbreakc0
,
11742 Opcode_rsr_dbreakc0_encode_fns
, 0, 0 },
11743 { "wsr.dbreakc0", ICLASS_xt_iclass_wsr_dbreakc0
,
11745 Opcode_wsr_dbreakc0_encode_fns
, 0, 0 },
11746 { "xsr.dbreakc0", ICLASS_xt_iclass_xsr_dbreakc0
,
11748 Opcode_xsr_dbreakc0_encode_fns
, 0, 0 },
11749 { "rsr.dbreaka1", ICLASS_xt_iclass_rsr_dbreaka1
,
11751 Opcode_rsr_dbreaka1_encode_fns
, 0, 0 },
11752 { "wsr.dbreaka1", ICLASS_xt_iclass_wsr_dbreaka1
,
11754 Opcode_wsr_dbreaka1_encode_fns
, 0, 0 },
11755 { "xsr.dbreaka1", ICLASS_xt_iclass_xsr_dbreaka1
,
11757 Opcode_xsr_dbreaka1_encode_fns
, 0, 0 },
11758 { "rsr.dbreakc1", ICLASS_xt_iclass_rsr_dbreakc1
,
11760 Opcode_rsr_dbreakc1_encode_fns
, 0, 0 },
11761 { "wsr.dbreakc1", ICLASS_xt_iclass_wsr_dbreakc1
,
11763 Opcode_wsr_dbreakc1_encode_fns
, 0, 0 },
11764 { "xsr.dbreakc1", ICLASS_xt_iclass_xsr_dbreakc1
,
11766 Opcode_xsr_dbreakc1_encode_fns
, 0, 0 },
11767 { "rsr.ibreaka0", ICLASS_xt_iclass_rsr_ibreaka0
,
11769 Opcode_rsr_ibreaka0_encode_fns
, 0, 0 },
11770 { "wsr.ibreaka0", ICLASS_xt_iclass_wsr_ibreaka0
,
11772 Opcode_wsr_ibreaka0_encode_fns
, 0, 0 },
11773 { "xsr.ibreaka0", ICLASS_xt_iclass_xsr_ibreaka0
,
11775 Opcode_xsr_ibreaka0_encode_fns
, 0, 0 },
11776 { "rsr.ibreaka1", ICLASS_xt_iclass_rsr_ibreaka1
,
11778 Opcode_rsr_ibreaka1_encode_fns
, 0, 0 },
11779 { "wsr.ibreaka1", ICLASS_xt_iclass_wsr_ibreaka1
,
11781 Opcode_wsr_ibreaka1_encode_fns
, 0, 0 },
11782 { "xsr.ibreaka1", ICLASS_xt_iclass_xsr_ibreaka1
,
11784 Opcode_xsr_ibreaka1_encode_fns
, 0, 0 },
11785 { "rsr.ibreakenable", ICLASS_xt_iclass_rsr_ibreakenable
,
11787 Opcode_rsr_ibreakenable_encode_fns
, 0, 0 },
11788 { "wsr.ibreakenable", ICLASS_xt_iclass_wsr_ibreakenable
,
11790 Opcode_wsr_ibreakenable_encode_fns
, 0, 0 },
11791 { "xsr.ibreakenable", ICLASS_xt_iclass_xsr_ibreakenable
,
11793 Opcode_xsr_ibreakenable_encode_fns
, 0, 0 },
11794 { "rsr.debugcause", ICLASS_xt_iclass_rsr_debugcause
,
11796 Opcode_rsr_debugcause_encode_fns
, 0, 0 },
11797 { "wsr.debugcause", ICLASS_xt_iclass_wsr_debugcause
,
11799 Opcode_wsr_debugcause_encode_fns
, 0, 0 },
11800 { "xsr.debugcause", ICLASS_xt_iclass_xsr_debugcause
,
11802 Opcode_xsr_debugcause_encode_fns
, 0, 0 },
11803 { "rsr.icount", ICLASS_xt_iclass_rsr_icount
,
11805 Opcode_rsr_icount_encode_fns
, 0, 0 },
11806 { "wsr.icount", ICLASS_xt_iclass_wsr_icount
,
11808 Opcode_wsr_icount_encode_fns
, 0, 0 },
11809 { "xsr.icount", ICLASS_xt_iclass_xsr_icount
,
11811 Opcode_xsr_icount_encode_fns
, 0, 0 },
11812 { "rsr.icountlevel", ICLASS_xt_iclass_rsr_icountlevel
,
11814 Opcode_rsr_icountlevel_encode_fns
, 0, 0 },
11815 { "wsr.icountlevel", ICLASS_xt_iclass_wsr_icountlevel
,
11817 Opcode_wsr_icountlevel_encode_fns
, 0, 0 },
11818 { "xsr.icountlevel", ICLASS_xt_iclass_xsr_icountlevel
,
11820 Opcode_xsr_icountlevel_encode_fns
, 0, 0 },
11821 { "rsr.ddr", ICLASS_xt_iclass_rsr_ddr
,
11823 Opcode_rsr_ddr_encode_fns
, 0, 0 },
11824 { "wsr.ddr", ICLASS_xt_iclass_wsr_ddr
,
11826 Opcode_wsr_ddr_encode_fns
, 0, 0 },
11827 { "xsr.ddr", ICLASS_xt_iclass_xsr_ddr
,
11829 Opcode_xsr_ddr_encode_fns
, 0, 0 },
11830 { "lddr32.p", ICLASS_xt_iclass_lddr32_p
,
11832 Opcode_lddr32_p_encode_fns
, 0, 0 },
11833 { "sddr32.p", ICLASS_xt_iclass_sddr32_p
,
11835 Opcode_sddr32_p_encode_fns
, 0, 0 },
11836 { "rfdo", ICLASS_xt_iclass_rfdo
,
11837 XTENSA_OPCODE_IS_JUMP
,
11838 Opcode_rfdo_encode_fns
, 0, 0 },
11839 { "rfdd", ICLASS_xt_iclass_rfdd
,
11840 XTENSA_OPCODE_IS_JUMP
,
11841 Opcode_rfdd_encode_fns
, 0, 0 },
11842 { "wsr.mmid", ICLASS_xt_iclass_wsr_mmid
,
11844 Opcode_wsr_mmid_encode_fns
, 0, 0 },
11845 { "rsr.ccount", ICLASS_xt_iclass_rsr_ccount
,
11847 Opcode_rsr_ccount_encode_fns
, 0, 0 },
11848 { "wsr.ccount", ICLASS_xt_iclass_wsr_ccount
,
11850 Opcode_wsr_ccount_encode_fns
, 0, 0 },
11851 { "xsr.ccount", ICLASS_xt_iclass_xsr_ccount
,
11853 Opcode_xsr_ccount_encode_fns
, 0, 0 },
11854 { "rsr.ccompare0", ICLASS_xt_iclass_rsr_ccompare0
,
11856 Opcode_rsr_ccompare0_encode_fns
, 0, 0 },
11857 { "wsr.ccompare0", ICLASS_xt_iclass_wsr_ccompare0
,
11859 Opcode_wsr_ccompare0_encode_fns
, 0, 0 },
11860 { "xsr.ccompare0", ICLASS_xt_iclass_xsr_ccompare0
,
11862 Opcode_xsr_ccompare0_encode_fns
, 0, 0 },
11863 { "rsr.ccompare1", ICLASS_xt_iclass_rsr_ccompare1
,
11865 Opcode_rsr_ccompare1_encode_fns
, 0, 0 },
11866 { "wsr.ccompare1", ICLASS_xt_iclass_wsr_ccompare1
,
11868 Opcode_wsr_ccompare1_encode_fns
, 0, 0 },
11869 { "xsr.ccompare1", ICLASS_xt_iclass_xsr_ccompare1
,
11871 Opcode_xsr_ccompare1_encode_fns
, 0, 0 },
11872 { "rsr.ccompare2", ICLASS_xt_iclass_rsr_ccompare2
,
11874 Opcode_rsr_ccompare2_encode_fns
, 0, 0 },
11875 { "wsr.ccompare2", ICLASS_xt_iclass_wsr_ccompare2
,
11877 Opcode_wsr_ccompare2_encode_fns
, 0, 0 },
11878 { "xsr.ccompare2", ICLASS_xt_iclass_xsr_ccompare2
,
11880 Opcode_xsr_ccompare2_encode_fns
, 0, 0 },
11881 { "ipf", ICLASS_xt_iclass_icache
,
11883 Opcode_ipf_encode_fns
, 0, 0 },
11884 { "ihi", ICLASS_xt_iclass_icache
,
11886 Opcode_ihi_encode_fns
, 0, 0 },
11887 { "ipfl", ICLASS_xt_iclass_icache_lock
,
11889 Opcode_ipfl_encode_fns
, 0, 0 },
11890 { "ihu", ICLASS_xt_iclass_icache_lock
,
11892 Opcode_ihu_encode_fns
, 0, 0 },
11893 { "iiu", ICLASS_xt_iclass_icache_lock
,
11895 Opcode_iiu_encode_fns
, 0, 0 },
11896 { "iii", ICLASS_xt_iclass_icache_inv
,
11898 Opcode_iii_encode_fns
, 0, 0 },
11899 { "lict", ICLASS_xt_iclass_licx
,
11901 Opcode_lict_encode_fns
, 0, 0 },
11902 { "licw", ICLASS_xt_iclass_licx
,
11904 Opcode_licw_encode_fns
, 0, 0 },
11905 { "sict", ICLASS_xt_iclass_sicx
,
11907 Opcode_sict_encode_fns
, 0, 0 },
11908 { "sicw", ICLASS_xt_iclass_sicx
,
11910 Opcode_sicw_encode_fns
, 0, 0 },
11911 { "dhwb", ICLASS_xt_iclass_dcache
,
11913 Opcode_dhwb_encode_fns
, 0, 0 },
11914 { "dhwbi", ICLASS_xt_iclass_dcache
,
11916 Opcode_dhwbi_encode_fns
, 0, 0 },
11917 { "diwbui.p", ICLASS_xt_iclass_dcache_dyn
,
11919 Opcode_diwbui_p_encode_fns
, 0, 0 },
11920 { "diwb", ICLASS_xt_iclass_dcache_ind
,
11922 Opcode_diwb_encode_fns
, 0, 0 },
11923 { "diwbi", ICLASS_xt_iclass_dcache_ind
,
11925 Opcode_diwbi_encode_fns
, 0, 0 },
11926 { "dhi", ICLASS_xt_iclass_dcache_inv
,
11928 Opcode_dhi_encode_fns
, 0, 0 },
11929 { "dii", ICLASS_xt_iclass_dcache_inv
,
11931 Opcode_dii_encode_fns
, 0, 0 },
11932 { "dpfr", ICLASS_xt_iclass_dpf
,
11934 Opcode_dpfr_encode_fns
, 0, 0 },
11935 { "dpfw", ICLASS_xt_iclass_dpf
,
11937 Opcode_dpfw_encode_fns
, 0, 0 },
11938 { "dpfro", ICLASS_xt_iclass_dpf
,
11940 Opcode_dpfro_encode_fns
, 0, 0 },
11941 { "dpfwo", ICLASS_xt_iclass_dpf
,
11943 Opcode_dpfwo_encode_fns
, 0, 0 },
11944 { "dpfl", ICLASS_xt_iclass_dcache_lock
,
11946 Opcode_dpfl_encode_fns
, 0, 0 },
11947 { "dhu", ICLASS_xt_iclass_dcache_lock
,
11949 Opcode_dhu_encode_fns
, 0, 0 },
11950 { "diu", ICLASS_xt_iclass_dcache_lock
,
11952 Opcode_diu_encode_fns
, 0, 0 },
11953 { "sdct", ICLASS_xt_iclass_sdct
,
11955 Opcode_sdct_encode_fns
, 0, 0 },
11956 { "ldct", ICLASS_xt_iclass_ldct
,
11958 Opcode_ldct_encode_fns
, 0, 0 },
11959 { "idtlb", ICLASS_xt_iclass_idtlb
,
11961 Opcode_idtlb_encode_fns
, 0, 0 },
11962 { "pdtlb", ICLASS_xt_iclass_rdtlb
,
11964 Opcode_pdtlb_encode_fns
, 0, 0 },
11965 { "rdtlb0", ICLASS_xt_iclass_rdtlb
,
11967 Opcode_rdtlb0_encode_fns
, 0, 0 },
11968 { "rdtlb1", ICLASS_xt_iclass_rdtlb
,
11970 Opcode_rdtlb1_encode_fns
, 0, 0 },
11971 { "wdtlb", ICLASS_xt_iclass_wdtlb
,
11973 Opcode_wdtlb_encode_fns
, 0, 0 },
11974 { "iitlb", ICLASS_xt_iclass_iitlb
,
11976 Opcode_iitlb_encode_fns
, 0, 0 },
11977 { "pitlb", ICLASS_xt_iclass_ritlb
,
11979 Opcode_pitlb_encode_fns
, 0, 0 },
11980 { "ritlb0", ICLASS_xt_iclass_ritlb
,
11982 Opcode_ritlb0_encode_fns
, 0, 0 },
11983 { "ritlb1", ICLASS_xt_iclass_ritlb
,
11985 Opcode_ritlb1_encode_fns
, 0, 0 },
11986 { "witlb", ICLASS_xt_iclass_witlb
,
11988 Opcode_witlb_encode_fns
, 0, 0 },
11989 { "clamps", ICLASS_xt_iclass_clamp
,
11991 Opcode_clamps_encode_fns
, 0, 0 },
11992 { "min", ICLASS_xt_iclass_minmax
,
11994 Opcode_min_encode_fns
, 0, 0 },
11995 { "max", ICLASS_xt_iclass_minmax
,
11997 Opcode_max_encode_fns
, 0, 0 },
11998 { "minu", ICLASS_xt_iclass_minmax
,
12000 Opcode_minu_encode_fns
, 0, 0 },
12001 { "maxu", ICLASS_xt_iclass_minmax
,
12003 Opcode_maxu_encode_fns
, 0, 0 },
12004 { "nsa", ICLASS_xt_iclass_nsa
,
12006 Opcode_nsa_encode_fns
, 0, 0 },
12007 { "nsau", ICLASS_xt_iclass_nsa
,
12009 Opcode_nsau_encode_fns
, 0, 0 },
12010 { "sext", ICLASS_xt_iclass_sx
,
12012 Opcode_sext_encode_fns
, 0, 0 },
12013 { "l32ai", ICLASS_xt_iclass_l32ai
,
12015 Opcode_l32ai_encode_fns
, 0, 0 },
12016 { "s32ri", ICLASS_xt_iclass_s32ri
,
12018 Opcode_s32ri_encode_fns
, 0, 0 },
12019 { "s32c1i", ICLASS_xt_iclass_s32c1i
,
12021 Opcode_s32c1i_encode_fns
, 0, 0 },
12022 { "rsr.scompare1", ICLASS_xt_iclass_rsr_scompare1
,
12024 Opcode_rsr_scompare1_encode_fns
, 0, 0 },
12025 { "wsr.scompare1", ICLASS_xt_iclass_wsr_scompare1
,
12027 Opcode_wsr_scompare1_encode_fns
, 0, 0 },
12028 { "xsr.scompare1", ICLASS_xt_iclass_xsr_scompare1
,
12030 Opcode_xsr_scompare1_encode_fns
, 0, 0 },
12031 { "rsr.atomctl", ICLASS_xt_iclass_rsr_atomctl
,
12033 Opcode_rsr_atomctl_encode_fns
, 0, 0 },
12034 { "wsr.atomctl", ICLASS_xt_iclass_wsr_atomctl
,
12036 Opcode_wsr_atomctl_encode_fns
, 0, 0 },
12037 { "xsr.atomctl", ICLASS_xt_iclass_xsr_atomctl
,
12039 Opcode_xsr_atomctl_encode_fns
, 0, 0 },
12040 { "quou", ICLASS_xt_iclass_div
,
12042 Opcode_quou_encode_fns
, 0, 0 },
12043 { "quos", ICLASS_xt_iclass_div
,
12045 Opcode_quos_encode_fns
, 0, 0 },
12046 { "remu", ICLASS_xt_iclass_div
,
12048 Opcode_remu_encode_fns
, 0, 0 },
12049 { "rems", ICLASS_xt_iclass_div
,
12051 Opcode_rems_encode_fns
, 0, 0 },
12052 { "rer", ICLASS_xt_iclass_rer
,
12054 Opcode_rer_encode_fns
, 0, 0 },
12055 { "wer", ICLASS_xt_iclass_wer
,
12057 Opcode_wer_encode_fns
, 0, 0 },
12058 { "rur.expstate", ICLASS_rur_expstate
,
12060 Opcode_rur_expstate_encode_fns
, 0, 0 },
12061 { "wur.expstate", ICLASS_wur_expstate
,
12063 Opcode_wur_expstate_encode_fns
, 0, 0 },
12064 { "read_impwire", ICLASS_iclass_READ_IMPWIRE
,
12066 Opcode_read_impwire_encode_fns
, 0, 0 },
12067 { "setb_expstate", ICLASS_iclass_SETB_EXPSTATE
,
12069 Opcode_setb_expstate_encode_fns
, 0, 0 },
12070 { "clrb_expstate", ICLASS_iclass_CLRB_EXPSTATE
,
12072 Opcode_clrb_expstate_encode_fns
, 0, 0 },
12073 { "wrmsk_expstate", ICLASS_iclass_WRMSK_EXPSTATE
,
12075 Opcode_wrmsk_expstate_encode_fns
, 0, 0 }
12078 enum xtensa_opcode_id
{
12098 OPCODE_RSR_WINDOWBASE
,
12099 OPCODE_WSR_WINDOWBASE
,
12100 OPCODE_XSR_WINDOWBASE
,
12101 OPCODE_RSR_WINDOWSTART
,
12102 OPCODE_WSR_WINDOWSTART
,
12103 OPCODE_XSR_WINDOWSTART
,
12214 OPCODE_RSR_LITBASE
,
12215 OPCODE_WSR_LITBASE
,
12216 OPCODE_XSR_LITBASE
,
12217 OPCODE_RSR_CONFIGID0
,
12218 OPCODE_WSR_CONFIGID0
,
12219 OPCODE_RSR_CONFIGID1
,
12226 OPCODE_RSR_EXCSAVE1
,
12227 OPCODE_WSR_EXCSAVE1
,
12228 OPCODE_XSR_EXCSAVE1
,
12232 OPCODE_RSR_EXCSAVE2
,
12233 OPCODE_WSR_EXCSAVE2
,
12234 OPCODE_XSR_EXCSAVE2
,
12238 OPCODE_RSR_EXCSAVE3
,
12239 OPCODE_WSR_EXCSAVE3
,
12240 OPCODE_XSR_EXCSAVE3
,
12244 OPCODE_RSR_EXCSAVE4
,
12245 OPCODE_WSR_EXCSAVE4
,
12246 OPCODE_XSR_EXCSAVE4
,
12250 OPCODE_RSR_EXCSAVE5
,
12251 OPCODE_WSR_EXCSAVE5
,
12252 OPCODE_XSR_EXCSAVE5
,
12256 OPCODE_RSR_EXCSAVE6
,
12257 OPCODE_WSR_EXCSAVE6
,
12258 OPCODE_XSR_EXCSAVE6
,
12262 OPCODE_RSR_EXCSAVE7
,
12263 OPCODE_WSR_EXCSAVE7
,
12264 OPCODE_XSR_EXCSAVE7
,
12283 OPCODE_RSR_EXCVADDR
,
12284 OPCODE_WSR_EXCVADDR
,
12285 OPCODE_XSR_EXCVADDR
,
12289 OPCODE_RSR_EXCCAUSE
,
12290 OPCODE_WSR_EXCCAUSE
,
12291 OPCODE_XSR_EXCCAUSE
,
12299 OPCODE_RSR_VECBASE
,
12300 OPCODE_WSR_VECBASE
,
12301 OPCODE_XSR_VECBASE
,
12357 OPCODE_MULA_DA_LL_LDDEC
,
12358 OPCODE_MULA_DA_LL_LDINC
,
12359 OPCODE_MULA_DA_HL_LDDEC
,
12360 OPCODE_MULA_DA_HL_LDINC
,
12361 OPCODE_MULA_DA_LH_LDDEC
,
12362 OPCODE_MULA_DA_LH_LDINC
,
12363 OPCODE_MULA_DA_HH_LDDEC
,
12364 OPCODE_MULA_DA_HH_LDINC
,
12365 OPCODE_MULA_DD_LL_LDDEC
,
12366 OPCODE_MULA_DD_LL_LDINC
,
12367 OPCODE_MULA_DD_HL_LDDEC
,
12368 OPCODE_MULA_DD_HL_LDINC
,
12369 OPCODE_MULA_DD_LH_LDDEC
,
12370 OPCODE_MULA_DD_LH_LDINC
,
12371 OPCODE_MULA_DD_HH_LDDEC
,
12372 OPCODE_MULA_DD_HH_LDINC
,
12395 OPCODE_RSR_INTERRUPT
,
12397 OPCODE_WSR_INTCLEAR
,
12398 OPCODE_RSR_INTENABLE
,
12399 OPCODE_WSR_INTENABLE
,
12400 OPCODE_XSR_INTENABLE
,
12403 OPCODE_RSR_DBREAKA0
,
12404 OPCODE_WSR_DBREAKA0
,
12405 OPCODE_XSR_DBREAKA0
,
12406 OPCODE_RSR_DBREAKC0
,
12407 OPCODE_WSR_DBREAKC0
,
12408 OPCODE_XSR_DBREAKC0
,
12409 OPCODE_RSR_DBREAKA1
,
12410 OPCODE_WSR_DBREAKA1
,
12411 OPCODE_XSR_DBREAKA1
,
12412 OPCODE_RSR_DBREAKC1
,
12413 OPCODE_WSR_DBREAKC1
,
12414 OPCODE_XSR_DBREAKC1
,
12415 OPCODE_RSR_IBREAKA0
,
12416 OPCODE_WSR_IBREAKA0
,
12417 OPCODE_XSR_IBREAKA0
,
12418 OPCODE_RSR_IBREAKA1
,
12419 OPCODE_WSR_IBREAKA1
,
12420 OPCODE_XSR_IBREAKA1
,
12421 OPCODE_RSR_IBREAKENABLE
,
12422 OPCODE_WSR_IBREAKENABLE
,
12423 OPCODE_XSR_IBREAKENABLE
,
12424 OPCODE_RSR_DEBUGCAUSE
,
12425 OPCODE_WSR_DEBUGCAUSE
,
12426 OPCODE_XSR_DEBUGCAUSE
,
12430 OPCODE_RSR_ICOUNTLEVEL
,
12431 OPCODE_WSR_ICOUNTLEVEL
,
12432 OPCODE_XSR_ICOUNTLEVEL
,
12444 OPCODE_RSR_CCOMPARE0
,
12445 OPCODE_WSR_CCOMPARE0
,
12446 OPCODE_XSR_CCOMPARE0
,
12447 OPCODE_RSR_CCOMPARE1
,
12448 OPCODE_WSR_CCOMPARE1
,
12449 OPCODE_XSR_CCOMPARE1
,
12450 OPCODE_RSR_CCOMPARE2
,
12451 OPCODE_WSR_CCOMPARE2
,
12452 OPCODE_XSR_CCOMPARE2
,
12500 OPCODE_RSR_SCOMPARE1
,
12501 OPCODE_WSR_SCOMPARE1
,
12502 OPCODE_XSR_SCOMPARE1
,
12503 OPCODE_RSR_ATOMCTL
,
12504 OPCODE_WSR_ATOMCTL
,
12505 OPCODE_XSR_ATOMCTL
,
12512 OPCODE_RUR_EXPSTATE
,
12513 OPCODE_WUR_EXPSTATE
,
12514 OPCODE_READ_IMPWIRE
,
12515 OPCODE_SETB_EXPSTATE
,
12516 OPCODE_CLRB_EXPSTATE
,
12517 OPCODE_WRMSK_EXPSTATE
12521 /* Slot-specific opcode decode functions. */
12524 Slot_inst_decode (const xtensa_insnbuf insn
)
12526 if (Field_op0_Slot_inst_get (insn
) == 0)
12528 if (Field_op1_Slot_inst_get (insn
) == 0)
12530 if (Field_op2_Slot_inst_get (insn
) == 0)
12532 if (Field_r_Slot_inst_get (insn
) == 0)
12534 if (Field_m_Slot_inst_get (insn
) == 0 &&
12535 Field_s_Slot_inst_get (insn
) == 0 &&
12536 Field_n_Slot_inst_get (insn
) == 0)
12538 if (Field_m_Slot_inst_get (insn
) == 2)
12540 if (Field_n_Slot_inst_get (insn
) == 0)
12542 if (Field_n_Slot_inst_get (insn
) == 1)
12543 return OPCODE_RETW
;
12544 if (Field_n_Slot_inst_get (insn
) == 2)
12547 if (Field_m_Slot_inst_get (insn
) == 3)
12549 if (Field_n_Slot_inst_get (insn
) == 0)
12550 return OPCODE_CALLX0
;
12551 if (Field_n_Slot_inst_get (insn
) == 1)
12552 return OPCODE_CALLX4
;
12553 if (Field_n_Slot_inst_get (insn
) == 2)
12554 return OPCODE_CALLX8
;
12555 if (Field_n_Slot_inst_get (insn
) == 3)
12556 return OPCODE_CALLX12
;
12559 if (Field_r_Slot_inst_get (insn
) == 1)
12560 return OPCODE_MOVSP
;
12561 if (Field_r_Slot_inst_get (insn
) == 2)
12563 if (Field_s_Slot_inst_get (insn
) == 0)
12565 if (Field_t_Slot_inst_get (insn
) == 0)
12566 return OPCODE_ISYNC
;
12567 if (Field_t_Slot_inst_get (insn
) == 1)
12568 return OPCODE_RSYNC
;
12569 if (Field_t_Slot_inst_get (insn
) == 2)
12570 return OPCODE_ESYNC
;
12571 if (Field_t_Slot_inst_get (insn
) == 3)
12572 return OPCODE_DSYNC
;
12573 if (Field_t_Slot_inst_get (insn
) == 8)
12574 return OPCODE_EXCW
;
12575 if (Field_t_Slot_inst_get (insn
) == 12)
12576 return OPCODE_MEMW
;
12577 if (Field_t_Slot_inst_get (insn
) == 13)
12578 return OPCODE_EXTW
;
12579 if (Field_t_Slot_inst_get (insn
) == 15)
12583 if (Field_r_Slot_inst_get (insn
) == 3)
12585 if (Field_t_Slot_inst_get (insn
) == 0)
12587 if (Field_s_Slot_inst_get (insn
) == 0)
12589 if (Field_s_Slot_inst_get (insn
) == 2)
12590 return OPCODE_RFDE
;
12591 if (Field_s_Slot_inst_get (insn
) == 4)
12592 return OPCODE_RFWO
;
12593 if (Field_s_Slot_inst_get (insn
) == 5)
12594 return OPCODE_RFWU
;
12596 if (Field_t_Slot_inst_get (insn
) == 1)
12599 if (Field_r_Slot_inst_get (insn
) == 4)
12600 return OPCODE_BREAK
;
12601 if (Field_r_Slot_inst_get (insn
) == 5)
12603 if (Field_s_Slot_inst_get (insn
) == 0 &&
12604 Field_t_Slot_inst_get (insn
) == 0)
12605 return OPCODE_SYSCALL
;
12606 if (Field_s_Slot_inst_get (insn
) == 1 &&
12607 Field_t_Slot_inst_get (insn
) == 0)
12608 return OPCODE_SIMCALL
;
12610 if (Field_r_Slot_inst_get (insn
) == 6)
12611 return OPCODE_RSIL
;
12612 if (Field_r_Slot_inst_get (insn
) == 7 &&
12613 Field_t_Slot_inst_get (insn
) == 0)
12614 return OPCODE_WAITI
;
12615 if (Field_r_Slot_inst_get (insn
) == 7)
12617 if (Field_t_Slot_inst_get (insn
) == 14)
12618 return OPCODE_LDDR32_P
;
12619 if (Field_t_Slot_inst_get (insn
) == 15)
12620 return OPCODE_SDDR32_P
;
12623 if (Field_op2_Slot_inst_get (insn
) == 1)
12625 if (Field_op2_Slot_inst_get (insn
) == 2)
12627 if (Field_op2_Slot_inst_get (insn
) == 3)
12629 if (Field_op2_Slot_inst_get (insn
) == 4)
12631 if (Field_r_Slot_inst_get (insn
) == 0 &&
12632 Field_t_Slot_inst_get (insn
) == 0)
12634 if (Field_r_Slot_inst_get (insn
) == 1 &&
12635 Field_t_Slot_inst_get (insn
) == 0)
12637 if (Field_r_Slot_inst_get (insn
) == 2 &&
12638 Field_t_Slot_inst_get (insn
) == 0)
12639 return OPCODE_SSA8L
;
12640 if (Field_r_Slot_inst_get (insn
) == 3 &&
12641 Field_t_Slot_inst_get (insn
) == 0)
12642 return OPCODE_SSA8B
;
12643 if (Field_r_Slot_inst_get (insn
) == 4 &&
12644 Field_thi3_Slot_inst_get (insn
) == 0)
12645 return OPCODE_SSAI
;
12646 if (Field_r_Slot_inst_get (insn
) == 6)
12648 if (Field_r_Slot_inst_get (insn
) == 7)
12650 if (Field_r_Slot_inst_get (insn
) == 8 &&
12651 Field_s_Slot_inst_get (insn
) == 0)
12652 return OPCODE_ROTW
;
12653 if (Field_r_Slot_inst_get (insn
) == 14)
12655 if (Field_r_Slot_inst_get (insn
) == 15)
12656 return OPCODE_NSAU
;
12658 if (Field_op2_Slot_inst_get (insn
) == 5)
12660 if (Field_r_Slot_inst_get (insn
) == 3)
12661 return OPCODE_RITLB0
;
12662 if (Field_r_Slot_inst_get (insn
) == 4 &&
12663 Field_t_Slot_inst_get (insn
) == 0)
12664 return OPCODE_IITLB
;
12665 if (Field_r_Slot_inst_get (insn
) == 5)
12666 return OPCODE_PITLB
;
12667 if (Field_r_Slot_inst_get (insn
) == 6)
12668 return OPCODE_WITLB
;
12669 if (Field_r_Slot_inst_get (insn
) == 7)
12670 return OPCODE_RITLB1
;
12671 if (Field_r_Slot_inst_get (insn
) == 11)
12672 return OPCODE_RDTLB0
;
12673 if (Field_r_Slot_inst_get (insn
) == 12 &&
12674 Field_t_Slot_inst_get (insn
) == 0)
12675 return OPCODE_IDTLB
;
12676 if (Field_r_Slot_inst_get (insn
) == 13)
12677 return OPCODE_PDTLB
;
12678 if (Field_r_Slot_inst_get (insn
) == 14)
12679 return OPCODE_WDTLB
;
12680 if (Field_r_Slot_inst_get (insn
) == 15)
12681 return OPCODE_RDTLB1
;
12683 if (Field_op2_Slot_inst_get (insn
) == 6)
12685 if (Field_s_Slot_inst_get (insn
) == 0)
12687 if (Field_s_Slot_inst_get (insn
) == 1)
12690 if (Field_op2_Slot_inst_get (insn
) == 8)
12692 if (Field_op2_Slot_inst_get (insn
) == 9)
12693 return OPCODE_ADDX2
;
12694 if (Field_op2_Slot_inst_get (insn
) == 10)
12695 return OPCODE_ADDX4
;
12696 if (Field_op2_Slot_inst_get (insn
) == 11)
12697 return OPCODE_ADDX8
;
12698 if (Field_op2_Slot_inst_get (insn
) == 12)
12700 if (Field_op2_Slot_inst_get (insn
) == 13)
12701 return OPCODE_SUBX2
;
12702 if (Field_op2_Slot_inst_get (insn
) == 14)
12703 return OPCODE_SUBX4
;
12704 if (Field_op2_Slot_inst_get (insn
) == 15)
12705 return OPCODE_SUBX8
;
12707 if (Field_op1_Slot_inst_get (insn
) == 1)
12709 if ((Field_op2_Slot_inst_get (insn
) == 0 ||
12710 Field_op2_Slot_inst_get (insn
) == 1))
12711 return OPCODE_SLLI
;
12712 if ((Field_op2_Slot_inst_get (insn
) == 2 ||
12713 Field_op2_Slot_inst_get (insn
) == 3))
12714 return OPCODE_SRAI
;
12715 if (Field_op2_Slot_inst_get (insn
) == 4)
12716 return OPCODE_SRLI
;
12717 if (Field_op2_Slot_inst_get (insn
) == 6)
12719 if (Field_sr_Slot_inst_get (insn
) == 0)
12720 return OPCODE_XSR_LBEG
;
12721 if (Field_sr_Slot_inst_get (insn
) == 1)
12722 return OPCODE_XSR_LEND
;
12723 if (Field_sr_Slot_inst_get (insn
) == 2)
12724 return OPCODE_XSR_LCOUNT
;
12725 if (Field_sr_Slot_inst_get (insn
) == 3)
12726 return OPCODE_XSR_SAR
;
12727 if (Field_sr_Slot_inst_get (insn
) == 5)
12728 return OPCODE_XSR_LITBASE
;
12729 if (Field_sr_Slot_inst_get (insn
) == 12)
12730 return OPCODE_XSR_SCOMPARE1
;
12731 if (Field_sr_Slot_inst_get (insn
) == 16)
12732 return OPCODE_XSR_ACCLO
;
12733 if (Field_sr_Slot_inst_get (insn
) == 17)
12734 return OPCODE_XSR_ACCHI
;
12735 if (Field_sr_Slot_inst_get (insn
) == 32)
12736 return OPCODE_XSR_M0
;
12737 if (Field_sr_Slot_inst_get (insn
) == 33)
12738 return OPCODE_XSR_M1
;
12739 if (Field_sr_Slot_inst_get (insn
) == 34)
12740 return OPCODE_XSR_M2
;
12741 if (Field_sr_Slot_inst_get (insn
) == 35)
12742 return OPCODE_XSR_M3
;
12743 if (Field_sr_Slot_inst_get (insn
) == 72)
12744 return OPCODE_XSR_WINDOWBASE
;
12745 if (Field_sr_Slot_inst_get (insn
) == 73)
12746 return OPCODE_XSR_WINDOWSTART
;
12747 if (Field_sr_Slot_inst_get (insn
) == 96)
12748 return OPCODE_XSR_IBREAKENABLE
;
12749 if (Field_sr_Slot_inst_get (insn
) == 97)
12750 return OPCODE_XSR_MEMCTL
;
12751 if (Field_sr_Slot_inst_get (insn
) == 99)
12752 return OPCODE_XSR_ATOMCTL
;
12753 if (Field_sr_Slot_inst_get (insn
) == 104)
12754 return OPCODE_XSR_DDR
;
12755 if (Field_sr_Slot_inst_get (insn
) == 128)
12756 return OPCODE_XSR_IBREAKA0
;
12757 if (Field_sr_Slot_inst_get (insn
) == 129)
12758 return OPCODE_XSR_IBREAKA1
;
12759 if (Field_sr_Slot_inst_get (insn
) == 144)
12760 return OPCODE_XSR_DBREAKA0
;
12761 if (Field_sr_Slot_inst_get (insn
) == 145)
12762 return OPCODE_XSR_DBREAKA1
;
12763 if (Field_sr_Slot_inst_get (insn
) == 160)
12764 return OPCODE_XSR_DBREAKC0
;
12765 if (Field_sr_Slot_inst_get (insn
) == 161)
12766 return OPCODE_XSR_DBREAKC1
;
12767 if (Field_sr_Slot_inst_get (insn
) == 177)
12768 return OPCODE_XSR_EPC1
;
12769 if (Field_sr_Slot_inst_get (insn
) == 178)
12770 return OPCODE_XSR_EPC2
;
12771 if (Field_sr_Slot_inst_get (insn
) == 179)
12772 return OPCODE_XSR_EPC3
;
12773 if (Field_sr_Slot_inst_get (insn
) == 180)
12774 return OPCODE_XSR_EPC4
;
12775 if (Field_sr_Slot_inst_get (insn
) == 181)
12776 return OPCODE_XSR_EPC5
;
12777 if (Field_sr_Slot_inst_get (insn
) == 182)
12778 return OPCODE_XSR_EPC6
;
12779 if (Field_sr_Slot_inst_get (insn
) == 183)
12780 return OPCODE_XSR_EPC7
;
12781 if (Field_sr_Slot_inst_get (insn
) == 192)
12782 return OPCODE_XSR_DEPC
;
12783 if (Field_sr_Slot_inst_get (insn
) == 194)
12784 return OPCODE_XSR_EPS2
;
12785 if (Field_sr_Slot_inst_get (insn
) == 195)
12786 return OPCODE_XSR_EPS3
;
12787 if (Field_sr_Slot_inst_get (insn
) == 196)
12788 return OPCODE_XSR_EPS4
;
12789 if (Field_sr_Slot_inst_get (insn
) == 197)
12790 return OPCODE_XSR_EPS5
;
12791 if (Field_sr_Slot_inst_get (insn
) == 198)
12792 return OPCODE_XSR_EPS6
;
12793 if (Field_sr_Slot_inst_get (insn
) == 199)
12794 return OPCODE_XSR_EPS7
;
12795 if (Field_sr_Slot_inst_get (insn
) == 209)
12796 return OPCODE_XSR_EXCSAVE1
;
12797 if (Field_sr_Slot_inst_get (insn
) == 210)
12798 return OPCODE_XSR_EXCSAVE2
;
12799 if (Field_sr_Slot_inst_get (insn
) == 211)
12800 return OPCODE_XSR_EXCSAVE3
;
12801 if (Field_sr_Slot_inst_get (insn
) == 212)
12802 return OPCODE_XSR_EXCSAVE4
;
12803 if (Field_sr_Slot_inst_get (insn
) == 213)
12804 return OPCODE_XSR_EXCSAVE5
;
12805 if (Field_sr_Slot_inst_get (insn
) == 214)
12806 return OPCODE_XSR_EXCSAVE6
;
12807 if (Field_sr_Slot_inst_get (insn
) == 215)
12808 return OPCODE_XSR_EXCSAVE7
;
12809 if (Field_sr_Slot_inst_get (insn
) == 228)
12810 return OPCODE_XSR_INTENABLE
;
12811 if (Field_sr_Slot_inst_get (insn
) == 230)
12812 return OPCODE_XSR_PS
;
12813 if (Field_sr_Slot_inst_get (insn
) == 231)
12814 return OPCODE_XSR_VECBASE
;
12815 if (Field_sr_Slot_inst_get (insn
) == 232)
12816 return OPCODE_XSR_EXCCAUSE
;
12817 if (Field_sr_Slot_inst_get (insn
) == 233)
12818 return OPCODE_XSR_DEBUGCAUSE
;
12819 if (Field_sr_Slot_inst_get (insn
) == 234)
12820 return OPCODE_XSR_CCOUNT
;
12821 if (Field_sr_Slot_inst_get (insn
) == 236)
12822 return OPCODE_XSR_ICOUNT
;
12823 if (Field_sr_Slot_inst_get (insn
) == 237)
12824 return OPCODE_XSR_ICOUNTLEVEL
;
12825 if (Field_sr_Slot_inst_get (insn
) == 238)
12826 return OPCODE_XSR_EXCVADDR
;
12827 if (Field_sr_Slot_inst_get (insn
) == 240)
12828 return OPCODE_XSR_CCOMPARE0
;
12829 if (Field_sr_Slot_inst_get (insn
) == 241)
12830 return OPCODE_XSR_CCOMPARE1
;
12831 if (Field_sr_Slot_inst_get (insn
) == 242)
12832 return OPCODE_XSR_CCOMPARE2
;
12833 if (Field_sr_Slot_inst_get (insn
) == 244)
12834 return OPCODE_XSR_MISC0
;
12835 if (Field_sr_Slot_inst_get (insn
) == 245)
12836 return OPCODE_XSR_MISC1
;
12838 if (Field_op2_Slot_inst_get (insn
) == 8)
12840 if (Field_op2_Slot_inst_get (insn
) == 9 &&
12841 Field_s_Slot_inst_get (insn
) == 0)
12843 if (Field_op2_Slot_inst_get (insn
) == 10 &&
12844 Field_t_Slot_inst_get (insn
) == 0)
12846 if (Field_op2_Slot_inst_get (insn
) == 11 &&
12847 Field_s_Slot_inst_get (insn
) == 0)
12849 if (Field_op2_Slot_inst_get (insn
) == 12)
12850 return OPCODE_MUL16U
;
12851 if (Field_op2_Slot_inst_get (insn
) == 13)
12852 return OPCODE_MUL16S
;
12853 if (Field_op2_Slot_inst_get (insn
) == 15)
12855 if (Field_r_Slot_inst_get (insn
) == 0)
12856 return OPCODE_LICT
;
12857 if (Field_r_Slot_inst_get (insn
) == 1)
12858 return OPCODE_SICT
;
12859 if (Field_r_Slot_inst_get (insn
) == 2)
12860 return OPCODE_LICW
;
12861 if (Field_r_Slot_inst_get (insn
) == 3)
12862 return OPCODE_SICW
;
12863 if (Field_r_Slot_inst_get (insn
) == 8)
12864 return OPCODE_LDCT
;
12865 if (Field_r_Slot_inst_get (insn
) == 9)
12866 return OPCODE_SDCT
;
12867 if (Field_r_Slot_inst_get (insn
) == 14 &&
12868 Field_t_Slot_inst_get (insn
) == 0)
12869 return OPCODE_RFDO
;
12870 if (Field_r_Slot_inst_get (insn
) == 14 &&
12871 Field_t_Slot_inst_get (insn
) == 1)
12872 return OPCODE_RFDD
;
12875 if (Field_op1_Slot_inst_get (insn
) == 2)
12877 if (Field_op2_Slot_inst_get (insn
) == 8)
12878 return OPCODE_MULL
;
12879 if (Field_op2_Slot_inst_get (insn
) == 12)
12880 return OPCODE_QUOU
;
12881 if (Field_op2_Slot_inst_get (insn
) == 13)
12882 return OPCODE_QUOS
;
12883 if (Field_op2_Slot_inst_get (insn
) == 14)
12884 return OPCODE_REMU
;
12885 if (Field_op2_Slot_inst_get (insn
) == 15)
12886 return OPCODE_REMS
;
12888 if (Field_op1_Slot_inst_get (insn
) == 3)
12890 if (Field_op2_Slot_inst_get (insn
) == 0)
12892 if (Field_sr_Slot_inst_get (insn
) == 0)
12893 return OPCODE_RSR_LBEG
;
12894 if (Field_sr_Slot_inst_get (insn
) == 1)
12895 return OPCODE_RSR_LEND
;
12896 if (Field_sr_Slot_inst_get (insn
) == 2)
12897 return OPCODE_RSR_LCOUNT
;
12898 if (Field_sr_Slot_inst_get (insn
) == 3)
12899 return OPCODE_RSR_SAR
;
12900 if (Field_sr_Slot_inst_get (insn
) == 5)
12901 return OPCODE_RSR_LITBASE
;
12902 if (Field_sr_Slot_inst_get (insn
) == 12)
12903 return OPCODE_RSR_SCOMPARE1
;
12904 if (Field_sr_Slot_inst_get (insn
) == 16)
12905 return OPCODE_RSR_ACCLO
;
12906 if (Field_sr_Slot_inst_get (insn
) == 17)
12907 return OPCODE_RSR_ACCHI
;
12908 if (Field_sr_Slot_inst_get (insn
) == 32)
12909 return OPCODE_RSR_M0
;
12910 if (Field_sr_Slot_inst_get (insn
) == 33)
12911 return OPCODE_RSR_M1
;
12912 if (Field_sr_Slot_inst_get (insn
) == 34)
12913 return OPCODE_RSR_M2
;
12914 if (Field_sr_Slot_inst_get (insn
) == 35)
12915 return OPCODE_RSR_M3
;
12916 if (Field_sr_Slot_inst_get (insn
) == 72)
12917 return OPCODE_RSR_WINDOWBASE
;
12918 if (Field_sr_Slot_inst_get (insn
) == 73)
12919 return OPCODE_RSR_WINDOWSTART
;
12920 if (Field_sr_Slot_inst_get (insn
) == 96)
12921 return OPCODE_RSR_IBREAKENABLE
;
12922 if (Field_sr_Slot_inst_get (insn
) == 97)
12923 return OPCODE_RSR_MEMCTL
;
12924 if (Field_sr_Slot_inst_get (insn
) == 99)
12925 return OPCODE_RSR_ATOMCTL
;
12926 if (Field_sr_Slot_inst_get (insn
) == 104)
12927 return OPCODE_RSR_DDR
;
12928 if (Field_sr_Slot_inst_get (insn
) == 128)
12929 return OPCODE_RSR_IBREAKA0
;
12930 if (Field_sr_Slot_inst_get (insn
) == 129)
12931 return OPCODE_RSR_IBREAKA1
;
12932 if (Field_sr_Slot_inst_get (insn
) == 144)
12933 return OPCODE_RSR_DBREAKA0
;
12934 if (Field_sr_Slot_inst_get (insn
) == 145)
12935 return OPCODE_RSR_DBREAKA1
;
12936 if (Field_sr_Slot_inst_get (insn
) == 160)
12937 return OPCODE_RSR_DBREAKC0
;
12938 if (Field_sr_Slot_inst_get (insn
) == 161)
12939 return OPCODE_RSR_DBREAKC1
;
12940 if (Field_sr_Slot_inst_get (insn
) == 176)
12941 return OPCODE_RSR_CONFIGID0
;
12942 if (Field_sr_Slot_inst_get (insn
) == 177)
12943 return OPCODE_RSR_EPC1
;
12944 if (Field_sr_Slot_inst_get (insn
) == 178)
12945 return OPCODE_RSR_EPC2
;
12946 if (Field_sr_Slot_inst_get (insn
) == 179)
12947 return OPCODE_RSR_EPC3
;
12948 if (Field_sr_Slot_inst_get (insn
) == 180)
12949 return OPCODE_RSR_EPC4
;
12950 if (Field_sr_Slot_inst_get (insn
) == 181)
12951 return OPCODE_RSR_EPC5
;
12952 if (Field_sr_Slot_inst_get (insn
) == 182)
12953 return OPCODE_RSR_EPC6
;
12954 if (Field_sr_Slot_inst_get (insn
) == 183)
12955 return OPCODE_RSR_EPC7
;
12956 if (Field_sr_Slot_inst_get (insn
) == 192)
12957 return OPCODE_RSR_DEPC
;
12958 if (Field_sr_Slot_inst_get (insn
) == 194)
12959 return OPCODE_RSR_EPS2
;
12960 if (Field_sr_Slot_inst_get (insn
) == 195)
12961 return OPCODE_RSR_EPS3
;
12962 if (Field_sr_Slot_inst_get (insn
) == 196)
12963 return OPCODE_RSR_EPS4
;
12964 if (Field_sr_Slot_inst_get (insn
) == 197)
12965 return OPCODE_RSR_EPS5
;
12966 if (Field_sr_Slot_inst_get (insn
) == 198)
12967 return OPCODE_RSR_EPS6
;
12968 if (Field_sr_Slot_inst_get (insn
) == 199)
12969 return OPCODE_RSR_EPS7
;
12970 if (Field_sr_Slot_inst_get (insn
) == 208)
12971 return OPCODE_RSR_CONFIGID1
;
12972 if (Field_sr_Slot_inst_get (insn
) == 209)
12973 return OPCODE_RSR_EXCSAVE1
;
12974 if (Field_sr_Slot_inst_get (insn
) == 210)
12975 return OPCODE_RSR_EXCSAVE2
;
12976 if (Field_sr_Slot_inst_get (insn
) == 211)
12977 return OPCODE_RSR_EXCSAVE3
;
12978 if (Field_sr_Slot_inst_get (insn
) == 212)
12979 return OPCODE_RSR_EXCSAVE4
;
12980 if (Field_sr_Slot_inst_get (insn
) == 213)
12981 return OPCODE_RSR_EXCSAVE5
;
12982 if (Field_sr_Slot_inst_get (insn
) == 214)
12983 return OPCODE_RSR_EXCSAVE6
;
12984 if (Field_sr_Slot_inst_get (insn
) == 215)
12985 return OPCODE_RSR_EXCSAVE7
;
12986 if (Field_sr_Slot_inst_get (insn
) == 226)
12987 return OPCODE_RSR_INTERRUPT
;
12988 if (Field_sr_Slot_inst_get (insn
) == 228)
12989 return OPCODE_RSR_INTENABLE
;
12990 if (Field_sr_Slot_inst_get (insn
) == 230)
12991 return OPCODE_RSR_PS
;
12992 if (Field_sr_Slot_inst_get (insn
) == 231)
12993 return OPCODE_RSR_VECBASE
;
12994 if (Field_sr_Slot_inst_get (insn
) == 232)
12995 return OPCODE_RSR_EXCCAUSE
;
12996 if (Field_sr_Slot_inst_get (insn
) == 233)
12997 return OPCODE_RSR_DEBUGCAUSE
;
12998 if (Field_sr_Slot_inst_get (insn
) == 234)
12999 return OPCODE_RSR_CCOUNT
;
13000 if (Field_sr_Slot_inst_get (insn
) == 235)
13001 return OPCODE_RSR_PRID
;
13002 if (Field_sr_Slot_inst_get (insn
) == 236)
13003 return OPCODE_RSR_ICOUNT
;
13004 if (Field_sr_Slot_inst_get (insn
) == 237)
13005 return OPCODE_RSR_ICOUNTLEVEL
;
13006 if (Field_sr_Slot_inst_get (insn
) == 238)
13007 return OPCODE_RSR_EXCVADDR
;
13008 if (Field_sr_Slot_inst_get (insn
) == 240)
13009 return OPCODE_RSR_CCOMPARE0
;
13010 if (Field_sr_Slot_inst_get (insn
) == 241)
13011 return OPCODE_RSR_CCOMPARE1
;
13012 if (Field_sr_Slot_inst_get (insn
) == 242)
13013 return OPCODE_RSR_CCOMPARE2
;
13014 if (Field_sr_Slot_inst_get (insn
) == 244)
13015 return OPCODE_RSR_MISC0
;
13016 if (Field_sr_Slot_inst_get (insn
) == 245)
13017 return OPCODE_RSR_MISC1
;
13019 if (Field_op2_Slot_inst_get (insn
) == 1)
13021 if (Field_sr_Slot_inst_get (insn
) == 0)
13022 return OPCODE_WSR_LBEG
;
13023 if (Field_sr_Slot_inst_get (insn
) == 1)
13024 return OPCODE_WSR_LEND
;
13025 if (Field_sr_Slot_inst_get (insn
) == 2)
13026 return OPCODE_WSR_LCOUNT
;
13027 if (Field_sr_Slot_inst_get (insn
) == 3)
13028 return OPCODE_WSR_SAR
;
13029 if (Field_sr_Slot_inst_get (insn
) == 5)
13030 return OPCODE_WSR_LITBASE
;
13031 if (Field_sr_Slot_inst_get (insn
) == 12)
13032 return OPCODE_WSR_SCOMPARE1
;
13033 if (Field_sr_Slot_inst_get (insn
) == 16)
13034 return OPCODE_WSR_ACCLO
;
13035 if (Field_sr_Slot_inst_get (insn
) == 17)
13036 return OPCODE_WSR_ACCHI
;
13037 if (Field_sr_Slot_inst_get (insn
) == 32)
13038 return OPCODE_WSR_M0
;
13039 if (Field_sr_Slot_inst_get (insn
) == 33)
13040 return OPCODE_WSR_M1
;
13041 if (Field_sr_Slot_inst_get (insn
) == 34)
13042 return OPCODE_WSR_M2
;
13043 if (Field_sr_Slot_inst_get (insn
) == 35)
13044 return OPCODE_WSR_M3
;
13045 if (Field_sr_Slot_inst_get (insn
) == 72)
13046 return OPCODE_WSR_WINDOWBASE
;
13047 if (Field_sr_Slot_inst_get (insn
) == 73)
13048 return OPCODE_WSR_WINDOWSTART
;
13049 if (Field_sr_Slot_inst_get (insn
) == 89)
13050 return OPCODE_WSR_MMID
;
13051 if (Field_sr_Slot_inst_get (insn
) == 96)
13052 return OPCODE_WSR_IBREAKENABLE
;
13053 if (Field_sr_Slot_inst_get (insn
) == 97)
13054 return OPCODE_WSR_MEMCTL
;
13055 if (Field_sr_Slot_inst_get (insn
) == 99)
13056 return OPCODE_WSR_ATOMCTL
;
13057 if (Field_sr_Slot_inst_get (insn
) == 104)
13058 return OPCODE_WSR_DDR
;
13059 if (Field_sr_Slot_inst_get (insn
) == 128)
13060 return OPCODE_WSR_IBREAKA0
;
13061 if (Field_sr_Slot_inst_get (insn
) == 129)
13062 return OPCODE_WSR_IBREAKA1
;
13063 if (Field_sr_Slot_inst_get (insn
) == 144)
13064 return OPCODE_WSR_DBREAKA0
;
13065 if (Field_sr_Slot_inst_get (insn
) == 145)
13066 return OPCODE_WSR_DBREAKA1
;
13067 if (Field_sr_Slot_inst_get (insn
) == 160)
13068 return OPCODE_WSR_DBREAKC0
;
13069 if (Field_sr_Slot_inst_get (insn
) == 161)
13070 return OPCODE_WSR_DBREAKC1
;
13071 if (Field_sr_Slot_inst_get (insn
) == 176)
13072 return OPCODE_WSR_CONFIGID0
;
13073 if (Field_sr_Slot_inst_get (insn
) == 177)
13074 return OPCODE_WSR_EPC1
;
13075 if (Field_sr_Slot_inst_get (insn
) == 178)
13076 return OPCODE_WSR_EPC2
;
13077 if (Field_sr_Slot_inst_get (insn
) == 179)
13078 return OPCODE_WSR_EPC3
;
13079 if (Field_sr_Slot_inst_get (insn
) == 180)
13080 return OPCODE_WSR_EPC4
;
13081 if (Field_sr_Slot_inst_get (insn
) == 181)
13082 return OPCODE_WSR_EPC5
;
13083 if (Field_sr_Slot_inst_get (insn
) == 182)
13084 return OPCODE_WSR_EPC6
;
13085 if (Field_sr_Slot_inst_get (insn
) == 183)
13086 return OPCODE_WSR_EPC7
;
13087 if (Field_sr_Slot_inst_get (insn
) == 192)
13088 return OPCODE_WSR_DEPC
;
13089 if (Field_sr_Slot_inst_get (insn
) == 194)
13090 return OPCODE_WSR_EPS2
;
13091 if (Field_sr_Slot_inst_get (insn
) == 195)
13092 return OPCODE_WSR_EPS3
;
13093 if (Field_sr_Slot_inst_get (insn
) == 196)
13094 return OPCODE_WSR_EPS4
;
13095 if (Field_sr_Slot_inst_get (insn
) == 197)
13096 return OPCODE_WSR_EPS5
;
13097 if (Field_sr_Slot_inst_get (insn
) == 198)
13098 return OPCODE_WSR_EPS6
;
13099 if (Field_sr_Slot_inst_get (insn
) == 199)
13100 return OPCODE_WSR_EPS7
;
13101 if (Field_sr_Slot_inst_get (insn
) == 209)
13102 return OPCODE_WSR_EXCSAVE1
;
13103 if (Field_sr_Slot_inst_get (insn
) == 210)
13104 return OPCODE_WSR_EXCSAVE2
;
13105 if (Field_sr_Slot_inst_get (insn
) == 211)
13106 return OPCODE_WSR_EXCSAVE3
;
13107 if (Field_sr_Slot_inst_get (insn
) == 212)
13108 return OPCODE_WSR_EXCSAVE4
;
13109 if (Field_sr_Slot_inst_get (insn
) == 213)
13110 return OPCODE_WSR_EXCSAVE5
;
13111 if (Field_sr_Slot_inst_get (insn
) == 214)
13112 return OPCODE_WSR_EXCSAVE6
;
13113 if (Field_sr_Slot_inst_get (insn
) == 215)
13114 return OPCODE_WSR_EXCSAVE7
;
13115 if (Field_sr_Slot_inst_get (insn
) == 226)
13116 return OPCODE_WSR_INTSET
;
13117 if (Field_sr_Slot_inst_get (insn
) == 227)
13118 return OPCODE_WSR_INTCLEAR
;
13119 if (Field_sr_Slot_inst_get (insn
) == 228)
13120 return OPCODE_WSR_INTENABLE
;
13121 if (Field_sr_Slot_inst_get (insn
) == 230)
13122 return OPCODE_WSR_PS
;
13123 if (Field_sr_Slot_inst_get (insn
) == 231)
13124 return OPCODE_WSR_VECBASE
;
13125 if (Field_sr_Slot_inst_get (insn
) == 232)
13126 return OPCODE_WSR_EXCCAUSE
;
13127 if (Field_sr_Slot_inst_get (insn
) == 233)
13128 return OPCODE_WSR_DEBUGCAUSE
;
13129 if (Field_sr_Slot_inst_get (insn
) == 234)
13130 return OPCODE_WSR_CCOUNT
;
13131 if (Field_sr_Slot_inst_get (insn
) == 236)
13132 return OPCODE_WSR_ICOUNT
;
13133 if (Field_sr_Slot_inst_get (insn
) == 237)
13134 return OPCODE_WSR_ICOUNTLEVEL
;
13135 if (Field_sr_Slot_inst_get (insn
) == 238)
13136 return OPCODE_WSR_EXCVADDR
;
13137 if (Field_sr_Slot_inst_get (insn
) == 240)
13138 return OPCODE_WSR_CCOMPARE0
;
13139 if (Field_sr_Slot_inst_get (insn
) == 241)
13140 return OPCODE_WSR_CCOMPARE1
;
13141 if (Field_sr_Slot_inst_get (insn
) == 242)
13142 return OPCODE_WSR_CCOMPARE2
;
13143 if (Field_sr_Slot_inst_get (insn
) == 244)
13144 return OPCODE_WSR_MISC0
;
13145 if (Field_sr_Slot_inst_get (insn
) == 245)
13146 return OPCODE_WSR_MISC1
;
13148 if (Field_op2_Slot_inst_get (insn
) == 2)
13149 return OPCODE_SEXT
;
13150 if (Field_op2_Slot_inst_get (insn
) == 3)
13151 return OPCODE_CLAMPS
;
13152 if (Field_op2_Slot_inst_get (insn
) == 4)
13154 if (Field_op2_Slot_inst_get (insn
) == 5)
13156 if (Field_op2_Slot_inst_get (insn
) == 6)
13157 return OPCODE_MINU
;
13158 if (Field_op2_Slot_inst_get (insn
) == 7)
13159 return OPCODE_MAXU
;
13160 if (Field_op2_Slot_inst_get (insn
) == 8)
13161 return OPCODE_MOVEQZ
;
13162 if (Field_op2_Slot_inst_get (insn
) == 9)
13163 return OPCODE_MOVNEZ
;
13164 if (Field_op2_Slot_inst_get (insn
) == 10)
13165 return OPCODE_MOVLTZ
;
13166 if (Field_op2_Slot_inst_get (insn
) == 11)
13167 return OPCODE_MOVGEZ
;
13168 if (Field_op2_Slot_inst_get (insn
) == 14)
13170 if (Field_st_Slot_inst_get (insn
) == 230)
13171 return OPCODE_RUR_EXPSTATE
;
13173 if (Field_op2_Slot_inst_get (insn
) == 15)
13175 if (Field_sr_Slot_inst_get (insn
) == 230)
13176 return OPCODE_WUR_EXPSTATE
;
13179 if ((Field_op1_Slot_inst_get (insn
) == 4 ||
13180 Field_op1_Slot_inst_get (insn
) == 5))
13181 return OPCODE_EXTUI
;
13182 if (Field_op1_Slot_inst_get (insn
) == 9)
13184 if (Field_op2_Slot_inst_get (insn
) == 0)
13185 return OPCODE_L32E
;
13186 if (Field_op2_Slot_inst_get (insn
) == 4)
13187 return OPCODE_S32E
;
13188 if (Field_op2_Slot_inst_get (insn
) == 5)
13189 return OPCODE_S32NB
;
13191 if (Field_r_Slot_inst_get (insn
) == 0 &&
13192 Field_s_Slot_inst_get (insn
) == 0 &&
13193 Field_op2_Slot_inst_get (insn
) == 0 &&
13194 Field_op1_Slot_inst_get (insn
) == 14)
13195 return OPCODE_READ_IMPWIRE
;
13196 if (Field_r_Slot_inst_get (insn
) == 1 &&
13197 Field_s3to1_Slot_inst_get (insn
) == 0 &&
13198 Field_op2_Slot_inst_get (insn
) == 0 &&
13199 Field_op1_Slot_inst_get (insn
) == 14)
13200 return OPCODE_SETB_EXPSTATE
;
13201 if (Field_r_Slot_inst_get (insn
) == 1 &&
13202 Field_s3to1_Slot_inst_get (insn
) == 1 &&
13203 Field_op2_Slot_inst_get (insn
) == 0 &&
13204 Field_op1_Slot_inst_get (insn
) == 14)
13205 return OPCODE_CLRB_EXPSTATE
;
13206 if (Field_r_Slot_inst_get (insn
) == 2 &&
13207 Field_op2_Slot_inst_get (insn
) == 0 &&
13208 Field_op1_Slot_inst_get (insn
) == 14)
13209 return OPCODE_WRMSK_EXPSTATE
;
13211 if (Field_op0_Slot_inst_get (insn
) == 1)
13212 return OPCODE_L32R
;
13213 if (Field_op0_Slot_inst_get (insn
) == 2)
13215 if (Field_r_Slot_inst_get (insn
) == 0)
13216 return OPCODE_L8UI
;
13217 if (Field_r_Slot_inst_get (insn
) == 1)
13218 return OPCODE_L16UI
;
13219 if (Field_r_Slot_inst_get (insn
) == 2)
13220 return OPCODE_L32I
;
13221 if (Field_r_Slot_inst_get (insn
) == 4)
13223 if (Field_r_Slot_inst_get (insn
) == 5)
13224 return OPCODE_S16I
;
13225 if (Field_r_Slot_inst_get (insn
) == 6)
13226 return OPCODE_S32I
;
13227 if (Field_r_Slot_inst_get (insn
) == 7)
13229 if (Field_t_Slot_inst_get (insn
) == 0)
13230 return OPCODE_DPFR
;
13231 if (Field_t_Slot_inst_get (insn
) == 1)
13232 return OPCODE_DPFW
;
13233 if (Field_t_Slot_inst_get (insn
) == 2)
13234 return OPCODE_DPFRO
;
13235 if (Field_t_Slot_inst_get (insn
) == 3)
13236 return OPCODE_DPFWO
;
13237 if (Field_t_Slot_inst_get (insn
) == 4)
13238 return OPCODE_DHWB
;
13239 if (Field_t_Slot_inst_get (insn
) == 5)
13240 return OPCODE_DHWBI
;
13241 if (Field_t_Slot_inst_get (insn
) == 6)
13243 if (Field_t_Slot_inst_get (insn
) == 7)
13245 if (Field_t_Slot_inst_get (insn
) == 8)
13247 if (Field_op1_Slot_inst_get (insn
) == 0)
13248 return OPCODE_DPFL
;
13249 if (Field_op1_Slot_inst_get (insn
) == 2)
13251 if (Field_op1_Slot_inst_get (insn
) == 3)
13253 if (Field_op1_Slot_inst_get (insn
) == 4)
13254 return OPCODE_DIWB
;
13255 if (Field_op1_Slot_inst_get (insn
) == 5)
13256 return OPCODE_DIWBI
;
13257 if (Field_op1_Slot_inst_get (insn
) == 15 &&
13258 Field_op2_Slot_inst_get (insn
) == 0)
13259 return OPCODE_DIWBUI_P
;
13261 if (Field_t_Slot_inst_get (insn
) == 12)
13263 if (Field_t_Slot_inst_get (insn
) == 13)
13265 if (Field_op1_Slot_inst_get (insn
) == 0)
13266 return OPCODE_IPFL
;
13267 if (Field_op1_Slot_inst_get (insn
) == 2)
13269 if (Field_op1_Slot_inst_get (insn
) == 3)
13272 if (Field_t_Slot_inst_get (insn
) == 14)
13274 if (Field_t_Slot_inst_get (insn
) == 15)
13277 if (Field_r_Slot_inst_get (insn
) == 9)
13278 return OPCODE_L16SI
;
13279 if (Field_r_Slot_inst_get (insn
) == 10)
13280 return OPCODE_MOVI
;
13281 if (Field_r_Slot_inst_get (insn
) == 11)
13282 return OPCODE_L32AI
;
13283 if (Field_r_Slot_inst_get (insn
) == 12)
13284 return OPCODE_ADDI
;
13285 if (Field_r_Slot_inst_get (insn
) == 13)
13286 return OPCODE_ADDMI
;
13287 if (Field_r_Slot_inst_get (insn
) == 14)
13288 return OPCODE_S32C1I
;
13289 if (Field_r_Slot_inst_get (insn
) == 15)
13290 return OPCODE_S32RI
;
13292 if (Field_op0_Slot_inst_get (insn
) == 4)
13294 if (Field_op2_Slot_inst_get (insn
) == 0)
13296 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13297 Field_t3_Slot_inst_get (insn
) == 0 &&
13298 Field_tlo_Slot_inst_get (insn
) == 0 &&
13299 Field_r3_Slot_inst_get (insn
) == 0)
13300 return OPCODE_MULA_DD_LL_LDINC
;
13301 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13302 Field_t3_Slot_inst_get (insn
) == 0 &&
13303 Field_tlo_Slot_inst_get (insn
) == 0 &&
13304 Field_r3_Slot_inst_get (insn
) == 0)
13305 return OPCODE_MULA_DD_HL_LDINC
;
13306 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13307 Field_t3_Slot_inst_get (insn
) == 0 &&
13308 Field_tlo_Slot_inst_get (insn
) == 0 &&
13309 Field_r3_Slot_inst_get (insn
) == 0)
13310 return OPCODE_MULA_DD_LH_LDINC
;
13311 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13312 Field_t3_Slot_inst_get (insn
) == 0 &&
13313 Field_tlo_Slot_inst_get (insn
) == 0 &&
13314 Field_r3_Slot_inst_get (insn
) == 0)
13315 return OPCODE_MULA_DD_HH_LDINC
;
13317 if (Field_op2_Slot_inst_get (insn
) == 1)
13319 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13320 Field_t3_Slot_inst_get (insn
) == 0 &&
13321 Field_tlo_Slot_inst_get (insn
) == 0 &&
13322 Field_r3_Slot_inst_get (insn
) == 0)
13323 return OPCODE_MULA_DD_LL_LDDEC
;
13324 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13325 Field_t3_Slot_inst_get (insn
) == 0 &&
13326 Field_tlo_Slot_inst_get (insn
) == 0 &&
13327 Field_r3_Slot_inst_get (insn
) == 0)
13328 return OPCODE_MULA_DD_HL_LDDEC
;
13329 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13330 Field_t3_Slot_inst_get (insn
) == 0 &&
13331 Field_tlo_Slot_inst_get (insn
) == 0 &&
13332 Field_r3_Slot_inst_get (insn
) == 0)
13333 return OPCODE_MULA_DD_LH_LDDEC
;
13334 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13335 Field_t3_Slot_inst_get (insn
) == 0 &&
13336 Field_tlo_Slot_inst_get (insn
) == 0 &&
13337 Field_r3_Slot_inst_get (insn
) == 0)
13338 return OPCODE_MULA_DD_HH_LDDEC
;
13340 if (Field_op2_Slot_inst_get (insn
) == 2)
13342 if (Field_op1_Slot_inst_get (insn
) == 4 &&
13343 Field_s_Slot_inst_get (insn
) == 0 &&
13344 Field_w_Slot_inst_get (insn
) == 0 &&
13345 Field_r3_Slot_inst_get (insn
) == 0 &&
13346 Field_t3_Slot_inst_get (insn
) == 0 &&
13347 Field_tlo_Slot_inst_get (insn
) == 0)
13348 return OPCODE_MUL_DD_LL
;
13349 if (Field_op1_Slot_inst_get (insn
) == 5 &&
13350 Field_s_Slot_inst_get (insn
) == 0 &&
13351 Field_w_Slot_inst_get (insn
) == 0 &&
13352 Field_r3_Slot_inst_get (insn
) == 0 &&
13353 Field_t3_Slot_inst_get (insn
) == 0 &&
13354 Field_tlo_Slot_inst_get (insn
) == 0)
13355 return OPCODE_MUL_DD_HL
;
13356 if (Field_op1_Slot_inst_get (insn
) == 6 &&
13357 Field_s_Slot_inst_get (insn
) == 0 &&
13358 Field_w_Slot_inst_get (insn
) == 0 &&
13359 Field_r3_Slot_inst_get (insn
) == 0 &&
13360 Field_t3_Slot_inst_get (insn
) == 0 &&
13361 Field_tlo_Slot_inst_get (insn
) == 0)
13362 return OPCODE_MUL_DD_LH
;
13363 if (Field_op1_Slot_inst_get (insn
) == 7 &&
13364 Field_s_Slot_inst_get (insn
) == 0 &&
13365 Field_w_Slot_inst_get (insn
) == 0 &&
13366 Field_r3_Slot_inst_get (insn
) == 0 &&
13367 Field_t3_Slot_inst_get (insn
) == 0 &&
13368 Field_tlo_Slot_inst_get (insn
) == 0)
13369 return OPCODE_MUL_DD_HH
;
13370 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13371 Field_s_Slot_inst_get (insn
) == 0 &&
13372 Field_w_Slot_inst_get (insn
) == 0 &&
13373 Field_r3_Slot_inst_get (insn
) == 0 &&
13374 Field_t3_Slot_inst_get (insn
) == 0 &&
13375 Field_tlo_Slot_inst_get (insn
) == 0)
13376 return OPCODE_MULA_DD_LL
;
13377 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13378 Field_s_Slot_inst_get (insn
) == 0 &&
13379 Field_w_Slot_inst_get (insn
) == 0 &&
13380 Field_r3_Slot_inst_get (insn
) == 0 &&
13381 Field_t3_Slot_inst_get (insn
) == 0 &&
13382 Field_tlo_Slot_inst_get (insn
) == 0)
13383 return OPCODE_MULA_DD_HL
;
13384 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13385 Field_s_Slot_inst_get (insn
) == 0 &&
13386 Field_w_Slot_inst_get (insn
) == 0 &&
13387 Field_r3_Slot_inst_get (insn
) == 0 &&
13388 Field_t3_Slot_inst_get (insn
) == 0 &&
13389 Field_tlo_Slot_inst_get (insn
) == 0)
13390 return OPCODE_MULA_DD_LH
;
13391 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13392 Field_s_Slot_inst_get (insn
) == 0 &&
13393 Field_w_Slot_inst_get (insn
) == 0 &&
13394 Field_r3_Slot_inst_get (insn
) == 0 &&
13395 Field_t3_Slot_inst_get (insn
) == 0 &&
13396 Field_tlo_Slot_inst_get (insn
) == 0)
13397 return OPCODE_MULA_DD_HH
;
13398 if (Field_op1_Slot_inst_get (insn
) == 12 &&
13399 Field_s_Slot_inst_get (insn
) == 0 &&
13400 Field_w_Slot_inst_get (insn
) == 0 &&
13401 Field_r3_Slot_inst_get (insn
) == 0 &&
13402 Field_t3_Slot_inst_get (insn
) == 0 &&
13403 Field_tlo_Slot_inst_get (insn
) == 0)
13404 return OPCODE_MULS_DD_LL
;
13405 if (Field_op1_Slot_inst_get (insn
) == 13 &&
13406 Field_s_Slot_inst_get (insn
) == 0 &&
13407 Field_w_Slot_inst_get (insn
) == 0 &&
13408 Field_r3_Slot_inst_get (insn
) == 0 &&
13409 Field_t3_Slot_inst_get (insn
) == 0 &&
13410 Field_tlo_Slot_inst_get (insn
) == 0)
13411 return OPCODE_MULS_DD_HL
;
13412 if (Field_op1_Slot_inst_get (insn
) == 14 &&
13413 Field_s_Slot_inst_get (insn
) == 0 &&
13414 Field_w_Slot_inst_get (insn
) == 0 &&
13415 Field_r3_Slot_inst_get (insn
) == 0 &&
13416 Field_t3_Slot_inst_get (insn
) == 0 &&
13417 Field_tlo_Slot_inst_get (insn
) == 0)
13418 return OPCODE_MULS_DD_LH
;
13419 if (Field_op1_Slot_inst_get (insn
) == 15 &&
13420 Field_s_Slot_inst_get (insn
) == 0 &&
13421 Field_w_Slot_inst_get (insn
) == 0 &&
13422 Field_r3_Slot_inst_get (insn
) == 0 &&
13423 Field_t3_Slot_inst_get (insn
) == 0 &&
13424 Field_tlo_Slot_inst_get (insn
) == 0)
13425 return OPCODE_MULS_DD_HH
;
13427 if (Field_op2_Slot_inst_get (insn
) == 3)
13429 if (Field_op1_Slot_inst_get (insn
) == 4 &&
13430 Field_r_Slot_inst_get (insn
) == 0 &&
13431 Field_t3_Slot_inst_get (insn
) == 0 &&
13432 Field_tlo_Slot_inst_get (insn
) == 0)
13433 return OPCODE_MUL_AD_LL
;
13434 if (Field_op1_Slot_inst_get (insn
) == 5 &&
13435 Field_r_Slot_inst_get (insn
) == 0 &&
13436 Field_t3_Slot_inst_get (insn
) == 0 &&
13437 Field_tlo_Slot_inst_get (insn
) == 0)
13438 return OPCODE_MUL_AD_HL
;
13439 if (Field_op1_Slot_inst_get (insn
) == 6 &&
13440 Field_r_Slot_inst_get (insn
) == 0 &&
13441 Field_t3_Slot_inst_get (insn
) == 0 &&
13442 Field_tlo_Slot_inst_get (insn
) == 0)
13443 return OPCODE_MUL_AD_LH
;
13444 if (Field_op1_Slot_inst_get (insn
) == 7 &&
13445 Field_r_Slot_inst_get (insn
) == 0 &&
13446 Field_t3_Slot_inst_get (insn
) == 0 &&
13447 Field_tlo_Slot_inst_get (insn
) == 0)
13448 return OPCODE_MUL_AD_HH
;
13449 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13450 Field_r_Slot_inst_get (insn
) == 0 &&
13451 Field_t3_Slot_inst_get (insn
) == 0 &&
13452 Field_tlo_Slot_inst_get (insn
) == 0)
13453 return OPCODE_MULA_AD_LL
;
13454 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13455 Field_r_Slot_inst_get (insn
) == 0 &&
13456 Field_t3_Slot_inst_get (insn
) == 0 &&
13457 Field_tlo_Slot_inst_get (insn
) == 0)
13458 return OPCODE_MULA_AD_HL
;
13459 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13460 Field_r_Slot_inst_get (insn
) == 0 &&
13461 Field_t3_Slot_inst_get (insn
) == 0 &&
13462 Field_tlo_Slot_inst_get (insn
) == 0)
13463 return OPCODE_MULA_AD_LH
;
13464 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13465 Field_r_Slot_inst_get (insn
) == 0 &&
13466 Field_t3_Slot_inst_get (insn
) == 0 &&
13467 Field_tlo_Slot_inst_get (insn
) == 0)
13468 return OPCODE_MULA_AD_HH
;
13469 if (Field_op1_Slot_inst_get (insn
) == 12 &&
13470 Field_r_Slot_inst_get (insn
) == 0 &&
13471 Field_t3_Slot_inst_get (insn
) == 0 &&
13472 Field_tlo_Slot_inst_get (insn
) == 0)
13473 return OPCODE_MULS_AD_LL
;
13474 if (Field_op1_Slot_inst_get (insn
) == 13 &&
13475 Field_r_Slot_inst_get (insn
) == 0 &&
13476 Field_t3_Slot_inst_get (insn
) == 0 &&
13477 Field_tlo_Slot_inst_get (insn
) == 0)
13478 return OPCODE_MULS_AD_HL
;
13479 if (Field_op1_Slot_inst_get (insn
) == 14 &&
13480 Field_r_Slot_inst_get (insn
) == 0 &&
13481 Field_t3_Slot_inst_get (insn
) == 0 &&
13482 Field_tlo_Slot_inst_get (insn
) == 0)
13483 return OPCODE_MULS_AD_LH
;
13484 if (Field_op1_Slot_inst_get (insn
) == 15 &&
13485 Field_r_Slot_inst_get (insn
) == 0 &&
13486 Field_t3_Slot_inst_get (insn
) == 0 &&
13487 Field_tlo_Slot_inst_get (insn
) == 0)
13488 return OPCODE_MULS_AD_HH
;
13490 if (Field_op2_Slot_inst_get (insn
) == 4)
13492 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13493 Field_r3_Slot_inst_get (insn
) == 0)
13494 return OPCODE_MULA_DA_LL_LDINC
;
13495 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13496 Field_r3_Slot_inst_get (insn
) == 0)
13497 return OPCODE_MULA_DA_HL_LDINC
;
13498 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13499 Field_r3_Slot_inst_get (insn
) == 0)
13500 return OPCODE_MULA_DA_LH_LDINC
;
13501 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13502 Field_r3_Slot_inst_get (insn
) == 0)
13503 return OPCODE_MULA_DA_HH_LDINC
;
13505 if (Field_op2_Slot_inst_get (insn
) == 5)
13507 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13508 Field_r3_Slot_inst_get (insn
) == 0)
13509 return OPCODE_MULA_DA_LL_LDDEC
;
13510 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13511 Field_r3_Slot_inst_get (insn
) == 0)
13512 return OPCODE_MULA_DA_HL_LDDEC
;
13513 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13514 Field_r3_Slot_inst_get (insn
) == 0)
13515 return OPCODE_MULA_DA_LH_LDDEC
;
13516 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13517 Field_r3_Slot_inst_get (insn
) == 0)
13518 return OPCODE_MULA_DA_HH_LDDEC
;
13520 if (Field_op2_Slot_inst_get (insn
) == 6)
13522 if (Field_op1_Slot_inst_get (insn
) == 4 &&
13523 Field_s_Slot_inst_get (insn
) == 0 &&
13524 Field_w_Slot_inst_get (insn
) == 0 &&
13525 Field_r3_Slot_inst_get (insn
) == 0)
13526 return OPCODE_MUL_DA_LL
;
13527 if (Field_op1_Slot_inst_get (insn
) == 5 &&
13528 Field_s_Slot_inst_get (insn
) == 0 &&
13529 Field_w_Slot_inst_get (insn
) == 0 &&
13530 Field_r3_Slot_inst_get (insn
) == 0)
13531 return OPCODE_MUL_DA_HL
;
13532 if (Field_op1_Slot_inst_get (insn
) == 6 &&
13533 Field_s_Slot_inst_get (insn
) == 0 &&
13534 Field_w_Slot_inst_get (insn
) == 0 &&
13535 Field_r3_Slot_inst_get (insn
) == 0)
13536 return OPCODE_MUL_DA_LH
;
13537 if (Field_op1_Slot_inst_get (insn
) == 7 &&
13538 Field_s_Slot_inst_get (insn
) == 0 &&
13539 Field_w_Slot_inst_get (insn
) == 0 &&
13540 Field_r3_Slot_inst_get (insn
) == 0)
13541 return OPCODE_MUL_DA_HH
;
13542 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13543 Field_s_Slot_inst_get (insn
) == 0 &&
13544 Field_w_Slot_inst_get (insn
) == 0 &&
13545 Field_r3_Slot_inst_get (insn
) == 0)
13546 return OPCODE_MULA_DA_LL
;
13547 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13548 Field_s_Slot_inst_get (insn
) == 0 &&
13549 Field_w_Slot_inst_get (insn
) == 0 &&
13550 Field_r3_Slot_inst_get (insn
) == 0)
13551 return OPCODE_MULA_DA_HL
;
13552 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13553 Field_s_Slot_inst_get (insn
) == 0 &&
13554 Field_w_Slot_inst_get (insn
) == 0 &&
13555 Field_r3_Slot_inst_get (insn
) == 0)
13556 return OPCODE_MULA_DA_LH
;
13557 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13558 Field_s_Slot_inst_get (insn
) == 0 &&
13559 Field_w_Slot_inst_get (insn
) == 0 &&
13560 Field_r3_Slot_inst_get (insn
) == 0)
13561 return OPCODE_MULA_DA_HH
;
13562 if (Field_op1_Slot_inst_get (insn
) == 12 &&
13563 Field_s_Slot_inst_get (insn
) == 0 &&
13564 Field_w_Slot_inst_get (insn
) == 0 &&
13565 Field_r3_Slot_inst_get (insn
) == 0)
13566 return OPCODE_MULS_DA_LL
;
13567 if (Field_op1_Slot_inst_get (insn
) == 13 &&
13568 Field_s_Slot_inst_get (insn
) == 0 &&
13569 Field_w_Slot_inst_get (insn
) == 0 &&
13570 Field_r3_Slot_inst_get (insn
) == 0)
13571 return OPCODE_MULS_DA_HL
;
13572 if (Field_op1_Slot_inst_get (insn
) == 14 &&
13573 Field_s_Slot_inst_get (insn
) == 0 &&
13574 Field_w_Slot_inst_get (insn
) == 0 &&
13575 Field_r3_Slot_inst_get (insn
) == 0)
13576 return OPCODE_MULS_DA_LH
;
13577 if (Field_op1_Slot_inst_get (insn
) == 15 &&
13578 Field_s_Slot_inst_get (insn
) == 0 &&
13579 Field_w_Slot_inst_get (insn
) == 0 &&
13580 Field_r3_Slot_inst_get (insn
) == 0)
13581 return OPCODE_MULS_DA_HH
;
13583 if (Field_op2_Slot_inst_get (insn
) == 7)
13585 if (Field_op1_Slot_inst_get (insn
) == 0 &&
13586 Field_r_Slot_inst_get (insn
) == 0)
13587 return OPCODE_UMUL_AA_LL
;
13588 if (Field_op1_Slot_inst_get (insn
) == 1 &&
13589 Field_r_Slot_inst_get (insn
) == 0)
13590 return OPCODE_UMUL_AA_HL
;
13591 if (Field_op1_Slot_inst_get (insn
) == 2 &&
13592 Field_r_Slot_inst_get (insn
) == 0)
13593 return OPCODE_UMUL_AA_LH
;
13594 if (Field_op1_Slot_inst_get (insn
) == 3 &&
13595 Field_r_Slot_inst_get (insn
) == 0)
13596 return OPCODE_UMUL_AA_HH
;
13597 if (Field_op1_Slot_inst_get (insn
) == 4 &&
13598 Field_r_Slot_inst_get (insn
) == 0)
13599 return OPCODE_MUL_AA_LL
;
13600 if (Field_op1_Slot_inst_get (insn
) == 5 &&
13601 Field_r_Slot_inst_get (insn
) == 0)
13602 return OPCODE_MUL_AA_HL
;
13603 if (Field_op1_Slot_inst_get (insn
) == 6 &&
13604 Field_r_Slot_inst_get (insn
) == 0)
13605 return OPCODE_MUL_AA_LH
;
13606 if (Field_op1_Slot_inst_get (insn
) == 7 &&
13607 Field_r_Slot_inst_get (insn
) == 0)
13608 return OPCODE_MUL_AA_HH
;
13609 if (Field_op1_Slot_inst_get (insn
) == 8 &&
13610 Field_r_Slot_inst_get (insn
) == 0)
13611 return OPCODE_MULA_AA_LL
;
13612 if (Field_op1_Slot_inst_get (insn
) == 9 &&
13613 Field_r_Slot_inst_get (insn
) == 0)
13614 return OPCODE_MULA_AA_HL
;
13615 if (Field_op1_Slot_inst_get (insn
) == 10 &&
13616 Field_r_Slot_inst_get (insn
) == 0)
13617 return OPCODE_MULA_AA_LH
;
13618 if (Field_op1_Slot_inst_get (insn
) == 11 &&
13619 Field_r_Slot_inst_get (insn
) == 0)
13620 return OPCODE_MULA_AA_HH
;
13621 if (Field_op1_Slot_inst_get (insn
) == 12 &&
13622 Field_r_Slot_inst_get (insn
) == 0)
13623 return OPCODE_MULS_AA_LL
;
13624 if (Field_op1_Slot_inst_get (insn
) == 13 &&
13625 Field_r_Slot_inst_get (insn
) == 0)
13626 return OPCODE_MULS_AA_HL
;
13627 if (Field_op1_Slot_inst_get (insn
) == 14 &&
13628 Field_r_Slot_inst_get (insn
) == 0)
13629 return OPCODE_MULS_AA_LH
;
13630 if (Field_op1_Slot_inst_get (insn
) == 15 &&
13631 Field_r_Slot_inst_get (insn
) == 0)
13632 return OPCODE_MULS_AA_HH
;
13634 if (Field_op2_Slot_inst_get (insn
) == 8)
13636 if (Field_op1_Slot_inst_get (insn
) == 0 &&
13637 Field_t_Slot_inst_get (insn
) == 0 &&
13638 Field_rhi_Slot_inst_get (insn
) == 0)
13639 return OPCODE_LDINC
;
13641 if (Field_op2_Slot_inst_get (insn
) == 9)
13643 if (Field_op1_Slot_inst_get (insn
) == 0 &&
13644 Field_t_Slot_inst_get (insn
) == 0 &&
13645 Field_rhi_Slot_inst_get (insn
) == 0)
13646 return OPCODE_LDDEC
;
13649 if (Field_op0_Slot_inst_get (insn
) == 5)
13651 if (Field_n_Slot_inst_get (insn
) == 0)
13652 return OPCODE_CALL0
;
13653 if (Field_n_Slot_inst_get (insn
) == 1)
13654 return OPCODE_CALL4
;
13655 if (Field_n_Slot_inst_get (insn
) == 2)
13656 return OPCODE_CALL8
;
13657 if (Field_n_Slot_inst_get (insn
) == 3)
13658 return OPCODE_CALL12
;
13660 if (Field_op0_Slot_inst_get (insn
) == 6)
13662 if (Field_n_Slot_inst_get (insn
) == 0)
13664 if (Field_n_Slot_inst_get (insn
) == 1)
13666 if (Field_m_Slot_inst_get (insn
) == 0)
13667 return OPCODE_BEQZ
;
13668 if (Field_m_Slot_inst_get (insn
) == 1)
13669 return OPCODE_BNEZ
;
13670 if (Field_m_Slot_inst_get (insn
) == 2)
13671 return OPCODE_BLTZ
;
13672 if (Field_m_Slot_inst_get (insn
) == 3)
13673 return OPCODE_BGEZ
;
13675 if (Field_n_Slot_inst_get (insn
) == 2)
13677 if (Field_m_Slot_inst_get (insn
) == 0)
13678 return OPCODE_BEQI
;
13679 if (Field_m_Slot_inst_get (insn
) == 1)
13680 return OPCODE_BNEI
;
13681 if (Field_m_Slot_inst_get (insn
) == 2)
13682 return OPCODE_BLTI
;
13683 if (Field_m_Slot_inst_get (insn
) == 3)
13684 return OPCODE_BGEI
;
13686 if (Field_n_Slot_inst_get (insn
) == 3)
13688 if (Field_m_Slot_inst_get (insn
) == 0)
13689 return OPCODE_ENTRY
;
13690 if (Field_m_Slot_inst_get (insn
) == 1)
13692 if (Field_r_Slot_inst_get (insn
) == 8)
13693 return OPCODE_LOOP
;
13694 if (Field_r_Slot_inst_get (insn
) == 9)
13695 return OPCODE_LOOPNEZ
;
13696 if (Field_r_Slot_inst_get (insn
) == 10)
13697 return OPCODE_LOOPGTZ
;
13699 if (Field_m_Slot_inst_get (insn
) == 2)
13700 return OPCODE_BLTUI
;
13701 if (Field_m_Slot_inst_get (insn
) == 3)
13702 return OPCODE_BGEUI
;
13705 if (Field_op0_Slot_inst_get (insn
) == 7)
13707 if (Field_r_Slot_inst_get (insn
) == 0)
13708 return OPCODE_BNONE
;
13709 if (Field_r_Slot_inst_get (insn
) == 1)
13711 if (Field_r_Slot_inst_get (insn
) == 2)
13713 if (Field_r_Slot_inst_get (insn
) == 3)
13714 return OPCODE_BLTU
;
13715 if (Field_r_Slot_inst_get (insn
) == 4)
13716 return OPCODE_BALL
;
13717 if (Field_r_Slot_inst_get (insn
) == 5)
13719 if ((Field_r_Slot_inst_get (insn
) == 6 ||
13720 Field_r_Slot_inst_get (insn
) == 7))
13721 return OPCODE_BBCI
;
13722 if (Field_r_Slot_inst_get (insn
) == 8)
13723 return OPCODE_BANY
;
13724 if (Field_r_Slot_inst_get (insn
) == 9)
13726 if (Field_r_Slot_inst_get (insn
) == 10)
13728 if (Field_r_Slot_inst_get (insn
) == 11)
13729 return OPCODE_BGEU
;
13730 if (Field_r_Slot_inst_get (insn
) == 12)
13731 return OPCODE_BNALL
;
13732 if (Field_r_Slot_inst_get (insn
) == 13)
13734 if ((Field_r_Slot_inst_get (insn
) == 14 ||
13735 Field_r_Slot_inst_get (insn
) == 15))
13736 return OPCODE_BBSI
;
13738 return XTENSA_UNDEFINED
;
13742 Slot_inst16b_decode (const xtensa_insnbuf insn
)
13744 if (Field_op0_Slot_inst16b_get (insn
) == 12)
13746 if (Field_i_Slot_inst16b_get (insn
) == 0)
13747 return OPCODE_MOVI_N
;
13748 if (Field_i_Slot_inst16b_get (insn
) == 1)
13750 if (Field_z_Slot_inst16b_get (insn
) == 0)
13751 return OPCODE_BEQZ_N
;
13752 if (Field_z_Slot_inst16b_get (insn
) == 1)
13753 return OPCODE_BNEZ_N
;
13756 if (Field_op0_Slot_inst16b_get (insn
) == 13)
13758 if (Field_r_Slot_inst16b_get (insn
) == 0)
13759 return OPCODE_MOV_N
;
13760 if (Field_r_Slot_inst16b_get (insn
) == 15)
13762 if (Field_t_Slot_inst16b_get (insn
) == 0)
13763 return OPCODE_RET_N
;
13764 if (Field_t_Slot_inst16b_get (insn
) == 1)
13765 return OPCODE_RETW_N
;
13766 if (Field_t_Slot_inst16b_get (insn
) == 2)
13767 return OPCODE_BREAK_N
;
13768 if (Field_t_Slot_inst16b_get (insn
) == 3 &&
13769 Field_s_Slot_inst16b_get (insn
) == 0)
13770 return OPCODE_NOP_N
;
13771 if (Field_t_Slot_inst16b_get (insn
) == 6 &&
13772 Field_s_Slot_inst16b_get (insn
) == 0)
13773 return OPCODE_ILL_N
;
13776 return XTENSA_UNDEFINED
;
13780 Slot_inst16a_decode (const xtensa_insnbuf insn
)
13782 if (Field_op0_Slot_inst16a_get (insn
) == 8)
13783 return OPCODE_L32I_N
;
13784 if (Field_op0_Slot_inst16a_get (insn
) == 9)
13785 return OPCODE_S32I_N
;
13786 if (Field_op0_Slot_inst16a_get (insn
) == 10)
13787 return OPCODE_ADD_N
;
13788 if (Field_op0_Slot_inst16a_get (insn
) == 11)
13789 return OPCODE_ADDI_N
;
13790 return XTENSA_UNDEFINED
;
13794 /* Instruction slots. */
13797 Slot_x24_Format_inst_0_get (const xtensa_insnbuf insn
,
13798 xtensa_insnbuf slotbuf
)
13800 slotbuf
[0] = (insn
[0] & 0xffffff);
13804 Slot_x24_Format_inst_0_set (xtensa_insnbuf insn
,
13805 const xtensa_insnbuf slotbuf
)
13807 insn
[0] = (insn
[0] & ~0xffffff) | (slotbuf
[0] & 0xffffff);
13811 Slot_x16a_Format_inst16a_0_get (const xtensa_insnbuf insn
,
13812 xtensa_insnbuf slotbuf
)
13814 slotbuf
[0] = (insn
[0] & 0xffff);
13818 Slot_x16a_Format_inst16a_0_set (xtensa_insnbuf insn
,
13819 const xtensa_insnbuf slotbuf
)
13821 insn
[0] = (insn
[0] & ~0xffff) | (slotbuf
[0] & 0xffff);
13825 Slot_x16b_Format_inst16b_0_get (const xtensa_insnbuf insn
,
13826 xtensa_insnbuf slotbuf
)
13828 slotbuf
[0] = (insn
[0] & 0xffff);
13832 Slot_x16b_Format_inst16b_0_set (xtensa_insnbuf insn
,
13833 const xtensa_insnbuf slotbuf
)
13835 insn
[0] = (insn
[0] & ~0xffff) | (slotbuf
[0] & 0xffff);
13838 static xtensa_get_field_fn
13839 Slot_inst_get_field_fns
[] = {
13840 Field_t_Slot_inst_get
,
13841 Field_bbi4_Slot_inst_get
,
13842 Field_bbi_Slot_inst_get
,
13843 Field_imm12_Slot_inst_get
,
13844 Field_imm8_Slot_inst_get
,
13845 Field_s_Slot_inst_get
,
13846 Field_imm12b_Slot_inst_get
,
13847 Field_imm16_Slot_inst_get
,
13848 Field_m_Slot_inst_get
,
13849 Field_n_Slot_inst_get
,
13850 Field_offset_Slot_inst_get
,
13851 Field_op0_Slot_inst_get
,
13852 Field_op1_Slot_inst_get
,
13853 Field_op2_Slot_inst_get
,
13854 Field_r_Slot_inst_get
,
13855 Field_sa4_Slot_inst_get
,
13856 Field_sae4_Slot_inst_get
,
13857 Field_sae_Slot_inst_get
,
13858 Field_sal_Slot_inst_get
,
13859 Field_sargt_Slot_inst_get
,
13860 Field_sas4_Slot_inst_get
,
13861 Field_sas_Slot_inst_get
,
13862 Field_sr_Slot_inst_get
,
13863 Field_st_Slot_inst_get
,
13864 Field_thi3_Slot_inst_get
,
13865 Field_imm4_Slot_inst_get
,
13866 Field_mn_Slot_inst_get
,
13875 Field_r3_Slot_inst_get
,
13876 Field_rbit2_Slot_inst_get
,
13877 Field_rhi_Slot_inst_get
,
13878 Field_t3_Slot_inst_get
,
13879 Field_tbit2_Slot_inst_get
,
13880 Field_tlo_Slot_inst_get
,
13881 Field_w_Slot_inst_get
,
13882 Field_y_Slot_inst_get
,
13883 Field_x_Slot_inst_get
,
13884 Field_xt_wbr15_imm_Slot_inst_get
,
13885 Field_xt_wbr18_imm_Slot_inst_get
,
13886 Field_bitindex_Slot_inst_get
,
13887 Field_s3to1_Slot_inst_get
,
13888 Implicit_Field_ar0_get
,
13889 Implicit_Field_ar4_get
,
13890 Implicit_Field_ar8_get
,
13891 Implicit_Field_ar12_get
,
13892 Implicit_Field_mr0_get
,
13893 Implicit_Field_mr1_get
,
13894 Implicit_Field_mr2_get
,
13895 Implicit_Field_mr3_get
13898 static xtensa_set_field_fn
13899 Slot_inst_set_field_fns
[] = {
13900 Field_t_Slot_inst_set
,
13901 Field_bbi4_Slot_inst_set
,
13902 Field_bbi_Slot_inst_set
,
13903 Field_imm12_Slot_inst_set
,
13904 Field_imm8_Slot_inst_set
,
13905 Field_s_Slot_inst_set
,
13906 Field_imm12b_Slot_inst_set
,
13907 Field_imm16_Slot_inst_set
,
13908 Field_m_Slot_inst_set
,
13909 Field_n_Slot_inst_set
,
13910 Field_offset_Slot_inst_set
,
13911 Field_op0_Slot_inst_set
,
13912 Field_op1_Slot_inst_set
,
13913 Field_op2_Slot_inst_set
,
13914 Field_r_Slot_inst_set
,
13915 Field_sa4_Slot_inst_set
,
13916 Field_sae4_Slot_inst_set
,
13917 Field_sae_Slot_inst_set
,
13918 Field_sal_Slot_inst_set
,
13919 Field_sargt_Slot_inst_set
,
13920 Field_sas4_Slot_inst_set
,
13921 Field_sas_Slot_inst_set
,
13922 Field_sr_Slot_inst_set
,
13923 Field_st_Slot_inst_set
,
13924 Field_thi3_Slot_inst_set
,
13925 Field_imm4_Slot_inst_set
,
13926 Field_mn_Slot_inst_set
,
13935 Field_r3_Slot_inst_set
,
13936 Field_rbit2_Slot_inst_set
,
13937 Field_rhi_Slot_inst_set
,
13938 Field_t3_Slot_inst_set
,
13939 Field_tbit2_Slot_inst_set
,
13940 Field_tlo_Slot_inst_set
,
13941 Field_w_Slot_inst_set
,
13942 Field_y_Slot_inst_set
,
13943 Field_x_Slot_inst_set
,
13944 Field_xt_wbr15_imm_Slot_inst_set
,
13945 Field_xt_wbr18_imm_Slot_inst_set
,
13946 Field_bitindex_Slot_inst_set
,
13947 Field_s3to1_Slot_inst_set
,
13948 Implicit_Field_set
,
13949 Implicit_Field_set
,
13950 Implicit_Field_set
,
13951 Implicit_Field_set
,
13952 Implicit_Field_set
,
13953 Implicit_Field_set
,
13954 Implicit_Field_set
,
13958 static xtensa_get_field_fn
13959 Slot_inst16a_get_field_fns
[] = {
13960 Field_t_Slot_inst16a_get
,
13965 Field_s_Slot_inst16a_get
,
13971 Field_op0_Slot_inst16a_get
,
13974 Field_r_Slot_inst16a_get
,
13982 Field_sr_Slot_inst16a_get
,
13983 Field_st_Slot_inst16a_get
,
13985 Field_imm4_Slot_inst16a_get
,
13987 Field_i_Slot_inst16a_get
,
13988 Field_imm6lo_Slot_inst16a_get
,
13989 Field_imm6hi_Slot_inst16a_get
,
13990 Field_imm7lo_Slot_inst16a_get
,
13991 Field_imm7hi_Slot_inst16a_get
,
13992 Field_z_Slot_inst16a_get
,
13993 Field_imm6_Slot_inst16a_get
,
13994 Field_imm7_Slot_inst16a_get
,
14006 Field_bitindex_Slot_inst16a_get
,
14007 Field_s3to1_Slot_inst16a_get
,
14008 Implicit_Field_ar0_get
,
14009 Implicit_Field_ar4_get
,
14010 Implicit_Field_ar8_get
,
14011 Implicit_Field_ar12_get
,
14012 Implicit_Field_mr0_get
,
14013 Implicit_Field_mr1_get
,
14014 Implicit_Field_mr2_get
,
14015 Implicit_Field_mr3_get
14018 static xtensa_set_field_fn
14019 Slot_inst16a_set_field_fns
[] = {
14020 Field_t_Slot_inst16a_set
,
14025 Field_s_Slot_inst16a_set
,
14031 Field_op0_Slot_inst16a_set
,
14034 Field_r_Slot_inst16a_set
,
14042 Field_sr_Slot_inst16a_set
,
14043 Field_st_Slot_inst16a_set
,
14045 Field_imm4_Slot_inst16a_set
,
14047 Field_i_Slot_inst16a_set
,
14048 Field_imm6lo_Slot_inst16a_set
,
14049 Field_imm6hi_Slot_inst16a_set
,
14050 Field_imm7lo_Slot_inst16a_set
,
14051 Field_imm7hi_Slot_inst16a_set
,
14052 Field_z_Slot_inst16a_set
,
14053 Field_imm6_Slot_inst16a_set
,
14054 Field_imm7_Slot_inst16a_set
,
14066 Field_bitindex_Slot_inst16a_set
,
14067 Field_s3to1_Slot_inst16a_set
,
14068 Implicit_Field_set
,
14069 Implicit_Field_set
,
14070 Implicit_Field_set
,
14071 Implicit_Field_set
,
14072 Implicit_Field_set
,
14073 Implicit_Field_set
,
14074 Implicit_Field_set
,
14078 static xtensa_get_field_fn
14079 Slot_inst16b_get_field_fns
[] = {
14080 Field_t_Slot_inst16b_get
,
14085 Field_s_Slot_inst16b_get
,
14091 Field_op0_Slot_inst16b_get
,
14094 Field_r_Slot_inst16b_get
,
14102 Field_sr_Slot_inst16b_get
,
14103 Field_st_Slot_inst16b_get
,
14105 Field_imm4_Slot_inst16b_get
,
14107 Field_i_Slot_inst16b_get
,
14108 Field_imm6lo_Slot_inst16b_get
,
14109 Field_imm6hi_Slot_inst16b_get
,
14110 Field_imm7lo_Slot_inst16b_get
,
14111 Field_imm7hi_Slot_inst16b_get
,
14112 Field_z_Slot_inst16b_get
,
14113 Field_imm6_Slot_inst16b_get
,
14114 Field_imm7_Slot_inst16b_get
,
14126 Field_bitindex_Slot_inst16b_get
,
14127 Field_s3to1_Slot_inst16b_get
,
14128 Implicit_Field_ar0_get
,
14129 Implicit_Field_ar4_get
,
14130 Implicit_Field_ar8_get
,
14131 Implicit_Field_ar12_get
,
14132 Implicit_Field_mr0_get
,
14133 Implicit_Field_mr1_get
,
14134 Implicit_Field_mr2_get
,
14135 Implicit_Field_mr3_get
14138 static xtensa_set_field_fn
14139 Slot_inst16b_set_field_fns
[] = {
14140 Field_t_Slot_inst16b_set
,
14145 Field_s_Slot_inst16b_set
,
14151 Field_op0_Slot_inst16b_set
,
14154 Field_r_Slot_inst16b_set
,
14162 Field_sr_Slot_inst16b_set
,
14163 Field_st_Slot_inst16b_set
,
14165 Field_imm4_Slot_inst16b_set
,
14167 Field_i_Slot_inst16b_set
,
14168 Field_imm6lo_Slot_inst16b_set
,
14169 Field_imm6hi_Slot_inst16b_set
,
14170 Field_imm7lo_Slot_inst16b_set
,
14171 Field_imm7hi_Slot_inst16b_set
,
14172 Field_z_Slot_inst16b_set
,
14173 Field_imm6_Slot_inst16b_set
,
14174 Field_imm7_Slot_inst16b_set
,
14186 Field_bitindex_Slot_inst16b_set
,
14187 Field_s3to1_Slot_inst16b_set
,
14188 Implicit_Field_set
,
14189 Implicit_Field_set
,
14190 Implicit_Field_set
,
14191 Implicit_Field_set
,
14192 Implicit_Field_set
,
14193 Implicit_Field_set
,
14194 Implicit_Field_set
,
14198 static xtensa_slot_internal slots
[] = {
14199 { "Inst", "x24", 0,
14200 Slot_x24_Format_inst_0_get
, Slot_x24_Format_inst_0_set
,
14201 Slot_inst_get_field_fns
, Slot_inst_set_field_fns
,
14202 Slot_inst_decode
, "nop" },
14203 { "Inst16a", "x16a", 0,
14204 Slot_x16a_Format_inst16a_0_get
, Slot_x16a_Format_inst16a_0_set
,
14205 Slot_inst16a_get_field_fns
, Slot_inst16a_set_field_fns
,
14206 Slot_inst16a_decode
, "" },
14207 { "Inst16b", "x16b", 0,
14208 Slot_x16b_Format_inst16b_0_get
, Slot_x16b_Format_inst16b_0_set
,
14209 Slot_inst16b_get_field_fns
, Slot_inst16b_set_field_fns
,
14210 Slot_inst16b_decode
, "nop.n" }
14214 /* Instruction formats. */
14217 Format_x24_encode (xtensa_insnbuf insn
)
14223 Format_x16a_encode (xtensa_insnbuf insn
)
14229 Format_x16b_encode (xtensa_insnbuf insn
)
14234 static int Format_x24_slots
[] = { 0 };
14236 static int Format_x16a_slots
[] = { 1 };
14238 static int Format_x16b_slots
[] = { 2 };
14240 static xtensa_format_internal formats
[] = {
14241 { "x24", 3, Format_x24_encode
, 1, Format_x24_slots
},
14242 { "x16a", 2, Format_x16a_encode
, 1, Format_x16a_slots
},
14243 { "x16b", 2, Format_x16b_encode
, 1, Format_x16b_slots
}
14248 format_decoder (const xtensa_insnbuf insn
)
14250 if ((insn
[0] & 0x8) == 0)
14251 return 0; /* x24 */
14252 if ((insn
[0] & 0xc) == 0x8)
14253 return 1; /* x16a */
14254 if ((insn
[0] & 0xe) == 0xc)
14255 return 2; /* x16b */
14259 static int length_table
[256] = {
14519 length_decoder (const unsigned char *insn
)
14522 return length_table
[l
];
14526 /* Top-level ISA structure. */
14528 xtensa_isa_internal xtensa_modules
= {
14529 0 /* little-endian */,
14530 3 /* insn_size */, 0,
14531 3, formats
, format_decoder
, length_decoder
,
14533 56 /* num_fields */,
14538 NUM_STATES
, states
, 0,
14539 NUM_SYSREGS
, sysregs
, 0,
14540 { MAX_SPECIAL_REG
, MAX_USER_REG
}, { 0, 0 },