1 /* Xtensa configuration-specific ISA information.
2 Copyright 2003, 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 3 of the
9 License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
22 #include <xtensa-isa.h>
23 #include "xtensa-isa-internal.h"
28 static xtensa_sysreg_internal sysregs
[] = {
32 { "PTEVADDR", 83, 0 },
37 { "INTERRUPT", 226, 0 },
38 { "INTCLEAR", 227, 0 },
42 { "CCOMPARE0", 240, 0 },
43 { "CCOMPARE1", 241, 0 },
44 { "CCOMPARE2", 242, 0 },
45 { "VECBASE", 231, 0 },
53 { "EXCSAVE1", 209, 0 },
54 { "EXCSAVE2", 210, 0 },
55 { "EXCSAVE3", 211, 0 },
56 { "EXCSAVE4", 212, 0 },
57 { "EXCSAVE5", 213, 0 },
58 { "EXCSAVE6", 214, 0 },
59 { "EXCSAVE7", 215, 0 },
66 { "EXCCAUSE", 232, 0 },
68 { "EXCVADDR", 238, 0 },
69 { "WINDOWBASE", 72, 0 },
70 { "WINDOWSTART", 73, 0 },
76 { "INTENABLE", 228, 0 },
77 { "DBREAKA0", 144, 0 },
78 { "DBREAKC0", 160, 0 },
79 { "DBREAKA1", 145, 0 },
80 { "DBREAKC1", 161, 0 },
81 { "IBREAKA0", 128, 0 },
82 { "IBREAKA1", 129, 0 },
83 { "IBREAKENABLE", 96, 0 },
84 { "ICOUNTLEVEL", 237, 0 },
85 { "DEBUGCAUSE", 233, 0 },
89 { "CPENABLE", 224, 0 },
90 { "SCOMPARE1", 12, 0 },
91 { "THREADPTR", 231, 1 }
94 #define NUM_SYSREGS 63
95 #define MAX_SPECIAL_REG 245
96 #define MAX_USER_REG 231
99 /* Processor states. */
101 static xtensa_state_internal states
[] = {
106 { "INTERRUPT", 22, 0 },
109 { "VECBASE", 22, 0 },
117 { "EXCSAVE1", 32, 0 },
118 { "EXCSAVE2", 32, 0 },
119 { "EXCSAVE3", 32, 0 },
120 { "EXCSAVE4", 32, 0 },
121 { "EXCSAVE5", 32, 0 },
122 { "EXCSAVE6", 32, 0 },
123 { "EXCSAVE7", 32, 0 },
130 { "EXCCAUSE", 6, 0 },
131 { "PSINTLEVEL", 4, 0 },
137 { "EXCVADDR", 32, 0 },
138 { "WindowBase", 3, 0 },
139 { "WindowStart", 8, 0 },
140 { "PSCALLINC", 2, 0 },
145 { "THREADPTR", 32, 0 },
146 { "LITBADDR", 20, 0 },
150 { "InOCDMode", 1, 0 },
151 { "INTENABLE", 22, 0 },
152 { "DBREAKA0", 32, 0 },
153 { "DBREAKC0", 8, 0 },
154 { "DBREAKA1", 32, 0 },
155 { "DBREAKC1", 8, 0 },
156 { "IBREAKA0", 32, 0 },
157 { "IBREAKA1", 32, 0 },
158 { "IBREAKENABLE", 2, 0 },
159 { "ICOUNTLEVEL", 4, 0 },
160 { "DEBUGCAUSE", 6, 0 },
162 { "CCOMPARE0", 32, 0 },
163 { "CCOMPARE1", 32, 0 },
164 { "CCOMPARE2", 32, 0 },
168 { "INSTPGSZID4", 2, 0 },
169 { "DATAPGSZID4", 2, 0 },
171 { "CPENABLE", 8, 0 },
172 { "SCOMPARE1", 32, 0 }
175 #define NUM_STATES 71
177 enum xtensa_state_id
{
252 /* Field definitions. */
255 Field_t_Slot_inst_get (const xtensa_insnbuf insn
)
258 tie_t
= (tie_t
<< 4) | ((insn
[0] << 12) >> 28);
263 Field_t_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
266 tie_t
= (val
<< 28) >> 28;
267 insn
[0] = (insn
[0] & ~0xf0000) | (tie_t
<< 16);
271 Field_s_Slot_inst_get (const xtensa_insnbuf insn
)
274 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
279 Field_s_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
282 tie_t
= (val
<< 28) >> 28;
283 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
287 Field_r_Slot_inst_get (const xtensa_insnbuf insn
)
290 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
295 Field_r_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
298 tie_t
= (val
<< 28) >> 28;
299 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
303 Field_op2_Slot_inst_get (const xtensa_insnbuf insn
)
306 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
311 Field_op2_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
314 tie_t
= (val
<< 28) >> 28;
315 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
319 Field_op1_Slot_inst_get (const xtensa_insnbuf insn
)
322 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
327 Field_op1_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
330 tie_t
= (val
<< 28) >> 28;
331 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
335 Field_op0_Slot_inst_get (const xtensa_insnbuf insn
)
338 tie_t
= (tie_t
<< 4) | ((insn
[0] << 8) >> 28);
343 Field_op0_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
346 tie_t
= (val
<< 28) >> 28;
347 insn
[0] = (insn
[0] & ~0xf00000) | (tie_t
<< 20);
351 Field_n_Slot_inst_get (const xtensa_insnbuf insn
)
354 tie_t
= (tie_t
<< 2) | ((insn
[0] << 12) >> 30);
359 Field_n_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
362 tie_t
= (val
<< 30) >> 30;
363 insn
[0] = (insn
[0] & ~0xc0000) | (tie_t
<< 18);
367 Field_m_Slot_inst_get (const xtensa_insnbuf insn
)
370 tie_t
= (tie_t
<< 2) | ((insn
[0] << 14) >> 30);
375 Field_m_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
378 tie_t
= (val
<< 30) >> 30;
379 insn
[0] = (insn
[0] & ~0x30000) | (tie_t
<< 16);
383 Field_sr_Slot_inst_get (const xtensa_insnbuf insn
)
386 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
387 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
392 Field_sr_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
395 tie_t
= (val
<< 28) >> 28;
396 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
397 tie_t
= (val
<< 24) >> 28;
398 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
402 Field_st_Slot_inst_get (const xtensa_insnbuf insn
)
405 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
406 tie_t
= (tie_t
<< 4) | ((insn
[0] << 12) >> 28);
411 Field_st_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
414 tie_t
= (val
<< 28) >> 28;
415 insn
[0] = (insn
[0] & ~0xf0000) | (tie_t
<< 16);
416 tie_t
= (val
<< 24) >> 28;
417 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
421 Field_thi3_Slot_inst_get (const xtensa_insnbuf insn
)
424 tie_t
= (tie_t
<< 3) | ((insn
[0] << 12) >> 29);
429 Field_thi3_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
432 tie_t
= (val
<< 29) >> 29;
433 insn
[0] = (insn
[0] & ~0xe0000) | (tie_t
<< 17);
437 Field_op0_Slot_inst16a_get (const xtensa_insnbuf insn
)
440 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
445 Field_op0_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
448 tie_t
= (val
<< 28) >> 28;
449 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
453 Field_t_Slot_inst16b_get (const xtensa_insnbuf insn
)
456 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
461 Field_t_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
464 tie_t
= (val
<< 28) >> 28;
465 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
469 Field_r_Slot_inst16b_get (const xtensa_insnbuf insn
)
472 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
477 Field_r_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
480 tie_t
= (val
<< 28) >> 28;
481 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
485 Field_op0_Slot_inst16b_get (const xtensa_insnbuf insn
)
488 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
493 Field_op0_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
496 tie_t
= (val
<< 28) >> 28;
497 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
501 Field_z_Slot_inst16b_get (const xtensa_insnbuf insn
)
504 tie_t
= (tie_t
<< 1) | ((insn
[0] << 21) >> 31);
509 Field_z_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
512 tie_t
= (val
<< 31) >> 31;
513 insn
[0] = (insn
[0] & ~0x400) | (tie_t
<< 10);
517 Field_i_Slot_inst16b_get (const xtensa_insnbuf insn
)
520 tie_t
= (tie_t
<< 1) | ((insn
[0] << 20) >> 31);
525 Field_i_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
528 tie_t
= (val
<< 31) >> 31;
529 insn
[0] = (insn
[0] & ~0x800) | (tie_t
<< 11);
533 Field_s_Slot_inst16b_get (const xtensa_insnbuf insn
)
536 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
541 Field_s_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
544 tie_t
= (val
<< 28) >> 28;
545 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
549 Field_t_Slot_inst16a_get (const xtensa_insnbuf insn
)
552 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
557 Field_t_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
560 tie_t
= (val
<< 28) >> 28;
561 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
565 Field_bbi4_Slot_inst_get (const xtensa_insnbuf insn
)
568 tie_t
= (tie_t
<< 1) | ((insn
[0] << 23) >> 31);
573 Field_bbi4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
576 tie_t
= (val
<< 31) >> 31;
577 insn
[0] = (insn
[0] & ~0x100) | (tie_t
<< 8);
581 Field_bbi_Slot_inst_get (const xtensa_insnbuf insn
)
584 tie_t
= (tie_t
<< 1) | ((insn
[0] << 23) >> 31);
585 tie_t
= (tie_t
<< 4) | ((insn
[0] << 12) >> 28);
590 Field_bbi_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
593 tie_t
= (val
<< 28) >> 28;
594 insn
[0] = (insn
[0] & ~0xf0000) | (tie_t
<< 16);
595 tie_t
= (val
<< 27) >> 31;
596 insn
[0] = (insn
[0] & ~0x100) | (tie_t
<< 8);
600 Field_imm12_Slot_inst_get (const xtensa_insnbuf insn
)
603 tie_t
= (tie_t
<< 12) | ((insn
[0] << 20) >> 20);
608 Field_imm12_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
611 tie_t
= (val
<< 20) >> 20;
612 insn
[0] = (insn
[0] & ~0xfff) | (tie_t
<< 0);
616 Field_imm8_Slot_inst_get (const xtensa_insnbuf insn
)
619 tie_t
= (tie_t
<< 8) | ((insn
[0] << 24) >> 24);
624 Field_imm8_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
627 tie_t
= (val
<< 24) >> 24;
628 insn
[0] = (insn
[0] & ~0xff) | (tie_t
<< 0);
632 Field_s_Slot_inst16a_get (const xtensa_insnbuf insn
)
635 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
640 Field_s_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
643 tie_t
= (val
<< 28) >> 28;
644 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
648 Field_imm12b_Slot_inst_get (const xtensa_insnbuf insn
)
651 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
652 tie_t
= (tie_t
<< 8) | ((insn
[0] << 24) >> 24);
657 Field_imm12b_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
660 tie_t
= (val
<< 24) >> 24;
661 insn
[0] = (insn
[0] & ~0xff) | (tie_t
<< 0);
662 tie_t
= (val
<< 20) >> 28;
663 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
667 Field_imm16_Slot_inst_get (const xtensa_insnbuf insn
)
670 tie_t
= (tie_t
<< 16) | ((insn
[0] << 16) >> 16);
675 Field_imm16_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
678 tie_t
= (val
<< 16) >> 16;
679 insn
[0] = (insn
[0] & ~0xffff) | (tie_t
<< 0);
683 Field_offset_Slot_inst_get (const xtensa_insnbuf insn
)
686 tie_t
= (tie_t
<< 18) | ((insn
[0] << 14) >> 14);
691 Field_offset_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
694 tie_t
= (val
<< 14) >> 14;
695 insn
[0] = (insn
[0] & ~0x3ffff) | (tie_t
<< 0);
699 Field_r_Slot_inst16a_get (const xtensa_insnbuf insn
)
702 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
707 Field_r_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
710 tie_t
= (val
<< 28) >> 28;
711 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
715 Field_sa4_Slot_inst_get (const xtensa_insnbuf insn
)
718 tie_t
= (tie_t
<< 1) | ((insn
[0] << 31) >> 31);
723 Field_sa4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
726 tie_t
= (val
<< 31) >> 31;
727 insn
[0] = (insn
[0] & ~0x1) | (tie_t
<< 0);
731 Field_sae4_Slot_inst_get (const xtensa_insnbuf insn
)
734 tie_t
= (tie_t
<< 1) | ((insn
[0] << 27) >> 31);
739 Field_sae4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
742 tie_t
= (val
<< 31) >> 31;
743 insn
[0] = (insn
[0] & ~0x10) | (tie_t
<< 4);
747 Field_sae_Slot_inst_get (const xtensa_insnbuf insn
)
750 tie_t
= (tie_t
<< 1) | ((insn
[0] << 27) >> 31);
751 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
756 Field_sae_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
759 tie_t
= (val
<< 28) >> 28;
760 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
761 tie_t
= (val
<< 27) >> 31;
762 insn
[0] = (insn
[0] & ~0x10) | (tie_t
<< 4);
766 Field_sal_Slot_inst_get (const xtensa_insnbuf insn
)
769 tie_t
= (tie_t
<< 1) | ((insn
[0] << 31) >> 31);
770 tie_t
= (tie_t
<< 4) | ((insn
[0] << 12) >> 28);
775 Field_sal_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
778 tie_t
= (val
<< 28) >> 28;
779 insn
[0] = (insn
[0] & ~0xf0000) | (tie_t
<< 16);
780 tie_t
= (val
<< 27) >> 31;
781 insn
[0] = (insn
[0] & ~0x1) | (tie_t
<< 0);
785 Field_sargt_Slot_inst_get (const xtensa_insnbuf insn
)
788 tie_t
= (tie_t
<< 1) | ((insn
[0] << 31) >> 31);
789 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
794 Field_sargt_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
797 tie_t
= (val
<< 28) >> 28;
798 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
799 tie_t
= (val
<< 27) >> 31;
800 insn
[0] = (insn
[0] & ~0x1) | (tie_t
<< 0);
804 Field_sas4_Slot_inst_get (const xtensa_insnbuf insn
)
807 tie_t
= (tie_t
<< 1) | ((insn
[0] << 15) >> 31);
812 Field_sas4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
815 tie_t
= (val
<< 31) >> 31;
816 insn
[0] = (insn
[0] & ~0x10000) | (tie_t
<< 16);
820 Field_sas_Slot_inst_get (const xtensa_insnbuf insn
)
823 tie_t
= (tie_t
<< 1) | ((insn
[0] << 15) >> 31);
824 tie_t
= (tie_t
<< 4) | ((insn
[0] << 16) >> 28);
829 Field_sas_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
832 tie_t
= (val
<< 28) >> 28;
833 insn
[0] = (insn
[0] & ~0xf000) | (tie_t
<< 12);
834 tie_t
= (val
<< 27) >> 31;
835 insn
[0] = (insn
[0] & ~0x10000) | (tie_t
<< 16);
839 Field_sr_Slot_inst16a_get (const xtensa_insnbuf insn
)
842 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
843 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
848 Field_sr_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
851 tie_t
= (val
<< 28) >> 28;
852 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
853 tie_t
= (val
<< 24) >> 28;
854 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
858 Field_sr_Slot_inst16b_get (const xtensa_insnbuf insn
)
861 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
862 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
867 Field_sr_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
870 tie_t
= (val
<< 28) >> 28;
871 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
872 tie_t
= (val
<< 24) >> 28;
873 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
877 Field_st_Slot_inst16a_get (const xtensa_insnbuf insn
)
880 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
881 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
886 Field_st_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
889 tie_t
= (val
<< 28) >> 28;
890 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
891 tie_t
= (val
<< 24) >> 28;
892 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
896 Field_st_Slot_inst16b_get (const xtensa_insnbuf insn
)
899 tie_t
= (tie_t
<< 4) | ((insn
[0] << 24) >> 28);
900 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
905 Field_st_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
908 tie_t
= (val
<< 28) >> 28;
909 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
910 tie_t
= (val
<< 24) >> 28;
911 insn
[0] = (insn
[0] & ~0xf0) | (tie_t
<< 4);
915 Field_imm4_Slot_inst_get (const xtensa_insnbuf insn
)
918 tie_t
= (tie_t
<< 4) | ((insn
[0] << 20) >> 28);
923 Field_imm4_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
926 tie_t
= (val
<< 28) >> 28;
927 insn
[0] = (insn
[0] & ~0xf00) | (tie_t
<< 8);
931 Field_imm4_Slot_inst16a_get (const xtensa_insnbuf insn
)
934 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
939 Field_imm4_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
942 tie_t
= (val
<< 28) >> 28;
943 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
947 Field_imm4_Slot_inst16b_get (const xtensa_insnbuf insn
)
950 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
955 Field_imm4_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
958 tie_t
= (val
<< 28) >> 28;
959 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
963 Field_mn_Slot_inst_get (const xtensa_insnbuf insn
)
966 tie_t
= (tie_t
<< 2) | ((insn
[0] << 12) >> 30);
967 tie_t
= (tie_t
<< 2) | ((insn
[0] << 14) >> 30);
972 Field_mn_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
975 tie_t
= (val
<< 30) >> 30;
976 insn
[0] = (insn
[0] & ~0x30000) | (tie_t
<< 16);
977 tie_t
= (val
<< 28) >> 30;
978 insn
[0] = (insn
[0] & ~0xc0000) | (tie_t
<< 18);
982 Field_i_Slot_inst16a_get (const xtensa_insnbuf insn
)
985 tie_t
= (tie_t
<< 1) | ((insn
[0] << 20) >> 31);
990 Field_i_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
993 tie_t
= (val
<< 31) >> 31;
994 insn
[0] = (insn
[0] & ~0x800) | (tie_t
<< 11);
998 Field_imm6lo_Slot_inst16a_get (const xtensa_insnbuf insn
)
1001 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1006 Field_imm6lo_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1009 tie_t
= (val
<< 28) >> 28;
1010 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1014 Field_imm6lo_Slot_inst16b_get (const xtensa_insnbuf insn
)
1017 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1022 Field_imm6lo_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1025 tie_t
= (val
<< 28) >> 28;
1026 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1030 Field_imm6hi_Slot_inst16a_get (const xtensa_insnbuf insn
)
1033 tie_t
= (tie_t
<< 2) | ((insn
[0] << 22) >> 30);
1038 Field_imm6hi_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1041 tie_t
= (val
<< 30) >> 30;
1042 insn
[0] = (insn
[0] & ~0x300) | (tie_t
<< 8);
1046 Field_imm6hi_Slot_inst16b_get (const xtensa_insnbuf insn
)
1049 tie_t
= (tie_t
<< 2) | ((insn
[0] << 22) >> 30);
1054 Field_imm6hi_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1057 tie_t
= (val
<< 30) >> 30;
1058 insn
[0] = (insn
[0] & ~0x300) | (tie_t
<< 8);
1062 Field_imm7lo_Slot_inst16a_get (const xtensa_insnbuf insn
)
1065 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1070 Field_imm7lo_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1073 tie_t
= (val
<< 28) >> 28;
1074 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1078 Field_imm7lo_Slot_inst16b_get (const xtensa_insnbuf insn
)
1081 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1086 Field_imm7lo_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1089 tie_t
= (val
<< 28) >> 28;
1090 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1094 Field_imm7hi_Slot_inst16a_get (const xtensa_insnbuf insn
)
1097 tie_t
= (tie_t
<< 3) | ((insn
[0] << 21) >> 29);
1102 Field_imm7hi_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1105 tie_t
= (val
<< 29) >> 29;
1106 insn
[0] = (insn
[0] & ~0x700) | (tie_t
<< 8);
1110 Field_imm7hi_Slot_inst16b_get (const xtensa_insnbuf insn
)
1113 tie_t
= (tie_t
<< 3) | ((insn
[0] << 21) >> 29);
1118 Field_imm7hi_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1121 tie_t
= (val
<< 29) >> 29;
1122 insn
[0] = (insn
[0] & ~0x700) | (tie_t
<< 8);
1126 Field_z_Slot_inst16a_get (const xtensa_insnbuf insn
)
1129 tie_t
= (tie_t
<< 1) | ((insn
[0] << 21) >> 31);
1134 Field_z_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1137 tie_t
= (val
<< 31) >> 31;
1138 insn
[0] = (insn
[0] & ~0x400) | (tie_t
<< 10);
1142 Field_imm6_Slot_inst16a_get (const xtensa_insnbuf insn
)
1145 tie_t
= (tie_t
<< 2) | ((insn
[0] << 22) >> 30);
1146 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1151 Field_imm6_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1154 tie_t
= (val
<< 28) >> 28;
1155 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1156 tie_t
= (val
<< 26) >> 30;
1157 insn
[0] = (insn
[0] & ~0x300) | (tie_t
<< 8);
1161 Field_imm6_Slot_inst16b_get (const xtensa_insnbuf insn
)
1164 tie_t
= (tie_t
<< 2) | ((insn
[0] << 22) >> 30);
1165 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1170 Field_imm6_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1173 tie_t
= (val
<< 28) >> 28;
1174 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1175 tie_t
= (val
<< 26) >> 30;
1176 insn
[0] = (insn
[0] & ~0x300) | (tie_t
<< 8);
1180 Field_imm7_Slot_inst16a_get (const xtensa_insnbuf insn
)
1183 tie_t
= (tie_t
<< 3) | ((insn
[0] << 21) >> 29);
1184 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1189 Field_imm7_Slot_inst16a_set (xtensa_insnbuf insn
, uint32 val
)
1192 tie_t
= (val
<< 28) >> 28;
1193 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1194 tie_t
= (val
<< 25) >> 29;
1195 insn
[0] = (insn
[0] & ~0x700) | (tie_t
<< 8);
1199 Field_imm7_Slot_inst16b_get (const xtensa_insnbuf insn
)
1202 tie_t
= (tie_t
<< 3) | ((insn
[0] << 21) >> 29);
1203 tie_t
= (tie_t
<< 4) | ((insn
[0] << 28) >> 28);
1208 Field_imm7_Slot_inst16b_set (xtensa_insnbuf insn
, uint32 val
)
1211 tie_t
= (val
<< 28) >> 28;
1212 insn
[0] = (insn
[0] & ~0xf) | (tie_t
<< 0);
1213 tie_t
= (val
<< 25) >> 29;
1214 insn
[0] = (insn
[0] & ~0x700) | (tie_t
<< 8);
1218 Field_xt_wbr15_imm_Slot_inst_get (const xtensa_insnbuf insn
)
1221 tie_t
= (tie_t
<< 15) | ((insn
[0] << 8) >> 17);
1226 Field_xt_wbr15_imm_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1229 tie_t
= (val
<< 17) >> 17;
1230 insn
[0] = (insn
[0] & ~0xfffe00) | (tie_t
<< 9);
1234 Field_xt_wbr18_imm_Slot_inst_get (const xtensa_insnbuf insn
)
1237 tie_t
= (tie_t
<< 18) | ((insn
[0] << 8) >> 14);
1242 Field_xt_wbr18_imm_Slot_inst_set (xtensa_insnbuf insn
, uint32 val
)
1245 tie_t
= (val
<< 14) >> 14;
1246 insn
[0] = (insn
[0] & ~0xffffc0) | (tie_t
<< 6);
1250 Implicit_Field_set (xtensa_insnbuf insn ATTRIBUTE_UNUSED
,
1251 uint32 val ATTRIBUTE_UNUSED
)
1257 Implicit_Field_ar0_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1263 Implicit_Field_ar4_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1269 Implicit_Field_ar8_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1275 Implicit_Field_ar12_get (const xtensa_insnbuf insn ATTRIBUTE_UNUSED
)
1280 enum xtensa_field_id
{
1325 /* Functional units. */
1327 static xtensa_funcUnit_internal funcUnits
[] = {
1332 /* Register files. */
1334 enum xtensa_regfile_id
{
1338 static xtensa_regfile_internal regfiles
[] = {
1339 { "AR", "a", REGFILE_AR
, 32, 32 }
1345 static xtensa_interface_internal interfaces
[] = {
1350 /* Constant tables. */
1352 /* constant table ai4c */
1353 static const unsigned CONST_TBL_ai4c_0
[] = {
1373 /* constant table b4c */
1374 static const unsigned CONST_TBL_b4c_0
[] = {
1394 /* constant table b4cu */
1395 static const unsigned CONST_TBL_b4cu_0
[] = {
1416 /* Instruction operands. */
1419 Operand_soffsetx4_decode (uint32
*valp
)
1421 unsigned soffsetx4_0
, offset_0
;
1422 offset_0
= *valp
& 0x3ffff;
1423 soffsetx4_0
= 0x4 + ((((int) offset_0
<< 14) >> 14) << 2);
1424 *valp
= soffsetx4_0
;
1429 Operand_soffsetx4_encode (uint32
*valp
)
1431 unsigned offset_0
, soffsetx4_0
;
1432 soffsetx4_0
= *valp
;
1433 offset_0
= ((soffsetx4_0
- 0x4) >> 2) & 0x3ffff;
1439 Operand_soffsetx4_ator (uint32
*valp
, uint32 pc
)
1441 *valp
-= (pc
& ~0x3);
1446 Operand_soffsetx4_rtoa (uint32
*valp
, uint32 pc
)
1448 *valp
+= (pc
& ~0x3);
1453 Operand_uimm12x8_decode (uint32
*valp
)
1455 unsigned uimm12x8_0
, imm12_0
;
1456 imm12_0
= *valp
& 0xfff;
1457 uimm12x8_0
= imm12_0
<< 3;
1463 Operand_uimm12x8_encode (uint32
*valp
)
1465 unsigned imm12_0
, uimm12x8_0
;
1467 imm12_0
= ((uimm12x8_0
>> 3) & 0xfff);
1473 Operand_simm4_decode (uint32
*valp
)
1475 unsigned simm4_0
, mn_0
;
1477 simm4_0
= ((int) mn_0
<< 28) >> 28;
1483 Operand_simm4_encode (uint32
*valp
)
1485 unsigned mn_0
, simm4_0
;
1487 mn_0
= (simm4_0
& 0xf);
1493 Operand_arr_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1499 Operand_arr_encode (uint32
*valp
)
1502 error
= (*valp
& ~0xf) != 0;
1507 Operand_ars_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1513 Operand_ars_encode (uint32
*valp
)
1516 error
= (*valp
& ~0xf) != 0;
1521 Operand_art_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1527 Operand_art_encode (uint32
*valp
)
1530 error
= (*valp
& ~0xf) != 0;
1535 Operand_ar0_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1541 Operand_ar0_encode (uint32
*valp
)
1544 error
= (*valp
& ~0x1f) != 0;
1549 Operand_ar4_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1555 Operand_ar4_encode (uint32
*valp
)
1558 error
= (*valp
& ~0x1f) != 0;
1563 Operand_ar8_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1569 Operand_ar8_encode (uint32
*valp
)
1572 error
= (*valp
& ~0x1f) != 0;
1577 Operand_ar12_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1583 Operand_ar12_encode (uint32
*valp
)
1586 error
= (*valp
& ~0x1f) != 0;
1591 Operand_ars_entry_decode (uint32
*valp ATTRIBUTE_UNUSED
)
1597 Operand_ars_entry_encode (uint32
*valp
)
1600 error
= (*valp
& ~0x1f) != 0;
1605 Operand_immrx4_decode (uint32
*valp
)
1607 unsigned immrx4_0
, r_0
;
1609 immrx4_0
= (((0xfffffff) << 4) | r_0
) << 2;
1615 Operand_immrx4_encode (uint32
*valp
)
1617 unsigned r_0
, immrx4_0
;
1619 r_0
= ((immrx4_0
>> 2) & 0xf);
1625 Operand_lsi4x4_decode (uint32
*valp
)
1627 unsigned lsi4x4_0
, r_0
;
1629 lsi4x4_0
= r_0
<< 2;
1635 Operand_lsi4x4_encode (uint32
*valp
)
1637 unsigned r_0
, lsi4x4_0
;
1639 r_0
= ((lsi4x4_0
>> 2) & 0xf);
1645 Operand_simm7_decode (uint32
*valp
)
1647 unsigned simm7_0
, imm7_0
;
1648 imm7_0
= *valp
& 0x7f;
1649 simm7_0
= ((((-((((imm7_0
>> 6) & 1)) & (((imm7_0
>> 5) & 1)))) & 0x1ffffff)) << 7) | imm7_0
;
1655 Operand_simm7_encode (uint32
*valp
)
1657 unsigned imm7_0
, simm7_0
;
1659 imm7_0
= (simm7_0
& 0x7f);
1665 Operand_uimm6_decode (uint32
*valp
)
1667 unsigned uimm6_0
, imm6_0
;
1668 imm6_0
= *valp
& 0x3f;
1669 uimm6_0
= 0x4 + (((0) << 6) | imm6_0
);
1675 Operand_uimm6_encode (uint32
*valp
)
1677 unsigned imm6_0
, uimm6_0
;
1679 imm6_0
= (uimm6_0
- 0x4) & 0x3f;
1685 Operand_uimm6_ator (uint32
*valp
, uint32 pc
)
1692 Operand_uimm6_rtoa (uint32
*valp
, uint32 pc
)
1699 Operand_ai4const_decode (uint32
*valp
)
1701 unsigned ai4const_0
, t_0
;
1703 ai4const_0
= CONST_TBL_ai4c_0
[t_0
& 0xf];
1709 Operand_ai4const_encode (uint32
*valp
)
1711 unsigned t_0
, ai4const_0
;
1715 case 0xffffffff: t_0
= 0; break;
1716 case 0x1: t_0
= 0x1; break;
1717 case 0x2: t_0
= 0x2; break;
1718 case 0x3: t_0
= 0x3; break;
1719 case 0x4: t_0
= 0x4; break;
1720 case 0x5: t_0
= 0x5; break;
1721 case 0x6: t_0
= 0x6; break;
1722 case 0x7: t_0
= 0x7; break;
1723 case 0x8: t_0
= 0x8; break;
1724 case 0x9: t_0
= 0x9; break;
1725 case 0xa: t_0
= 0xa; break;
1726 case 0xb: t_0
= 0xb; break;
1727 case 0xc: t_0
= 0xc; break;
1728 case 0xd: t_0
= 0xd; break;
1729 case 0xe: t_0
= 0xe; break;
1730 default: t_0
= 0xf; break;
1737 Operand_b4const_decode (uint32
*valp
)
1739 unsigned b4const_0
, r_0
;
1741 b4const_0
= CONST_TBL_b4c_0
[r_0
& 0xf];
1747 Operand_b4const_encode (uint32
*valp
)
1749 unsigned r_0
, b4const_0
;
1753 case 0xffffffff: r_0
= 0; break;
1754 case 0x1: r_0
= 0x1; break;
1755 case 0x2: r_0
= 0x2; break;
1756 case 0x3: r_0
= 0x3; break;
1757 case 0x4: r_0
= 0x4; break;
1758 case 0x5: r_0
= 0x5; break;
1759 case 0x6: r_0
= 0x6; break;
1760 case 0x7: r_0
= 0x7; break;
1761 case 0x8: r_0
= 0x8; break;
1762 case 0xa: r_0
= 0x9; break;
1763 case 0xc: r_0
= 0xa; break;
1764 case 0x10: r_0
= 0xb; break;
1765 case 0x20: r_0
= 0xc; break;
1766 case 0x40: r_0
= 0xd; break;
1767 case 0x80: r_0
= 0xe; break;
1768 default: r_0
= 0xf; break;
1775 Operand_b4constu_decode (uint32
*valp
)
1777 unsigned b4constu_0
, r_0
;
1779 b4constu_0
= CONST_TBL_b4cu_0
[r_0
& 0xf];
1785 Operand_b4constu_encode (uint32
*valp
)
1787 unsigned r_0
, b4constu_0
;
1791 case 0x8000: r_0
= 0; break;
1792 case 0x10000: r_0
= 0x1; break;
1793 case 0x2: r_0
= 0x2; break;
1794 case 0x3: r_0
= 0x3; break;
1795 case 0x4: r_0
= 0x4; break;
1796 case 0x5: r_0
= 0x5; break;
1797 case 0x6: r_0
= 0x6; break;
1798 case 0x7: r_0
= 0x7; break;
1799 case 0x8: r_0
= 0x8; break;
1800 case 0xa: r_0
= 0x9; break;
1801 case 0xc: r_0
= 0xa; break;
1802 case 0x10: r_0
= 0xb; break;
1803 case 0x20: r_0
= 0xc; break;
1804 case 0x40: r_0
= 0xd; break;
1805 case 0x80: r_0
= 0xe; break;
1806 default: r_0
= 0xf; break;
1813 Operand_uimm8_decode (uint32
*valp
)
1815 unsigned uimm8_0
, imm8_0
;
1816 imm8_0
= *valp
& 0xff;
1823 Operand_uimm8_encode (uint32
*valp
)
1825 unsigned imm8_0
, uimm8_0
;
1827 imm8_0
= (uimm8_0
& 0xff);
1833 Operand_uimm8x2_decode (uint32
*valp
)
1835 unsigned uimm8x2_0
, imm8_0
;
1836 imm8_0
= *valp
& 0xff;
1837 uimm8x2_0
= imm8_0
<< 1;
1843 Operand_uimm8x2_encode (uint32
*valp
)
1845 unsigned imm8_0
, uimm8x2_0
;
1847 imm8_0
= ((uimm8x2_0
>> 1) & 0xff);
1853 Operand_uimm8x4_decode (uint32
*valp
)
1855 unsigned uimm8x4_0
, imm8_0
;
1856 imm8_0
= *valp
& 0xff;
1857 uimm8x4_0
= imm8_0
<< 2;
1863 Operand_uimm8x4_encode (uint32
*valp
)
1865 unsigned imm8_0
, uimm8x4_0
;
1867 imm8_0
= ((uimm8x4_0
>> 2) & 0xff);
1873 Operand_uimm4x16_decode (uint32
*valp
)
1875 unsigned uimm4x16_0
, op2_0
;
1876 op2_0
= *valp
& 0xf;
1877 uimm4x16_0
= op2_0
<< 4;
1883 Operand_uimm4x16_encode (uint32
*valp
)
1885 unsigned op2_0
, uimm4x16_0
;
1887 op2_0
= ((uimm4x16_0
>> 4) & 0xf);
1893 Operand_simm8_decode (uint32
*valp
)
1895 unsigned simm8_0
, imm8_0
;
1896 imm8_0
= *valp
& 0xff;
1897 simm8_0
= ((int) imm8_0
<< 24) >> 24;
1903 Operand_simm8_encode (uint32
*valp
)
1905 unsigned imm8_0
, simm8_0
;
1907 imm8_0
= (simm8_0
& 0xff);
1913 Operand_simm8x256_decode (uint32
*valp
)
1915 unsigned simm8x256_0
, imm8_0
;
1916 imm8_0
= *valp
& 0xff;
1917 simm8x256_0
= (((int) imm8_0
<< 24) >> 24) << 8;
1918 *valp
= simm8x256_0
;
1923 Operand_simm8x256_encode (uint32
*valp
)
1925 unsigned imm8_0
, simm8x256_0
;
1926 simm8x256_0
= *valp
;
1927 imm8_0
= ((simm8x256_0
>> 8) & 0xff);
1933 Operand_simm12b_decode (uint32
*valp
)
1935 unsigned simm12b_0
, imm12b_0
;
1936 imm12b_0
= *valp
& 0xfff;
1937 simm12b_0
= ((int) imm12b_0
<< 20) >> 20;
1943 Operand_simm12b_encode (uint32
*valp
)
1945 unsigned imm12b_0
, simm12b_0
;
1947 imm12b_0
= (simm12b_0
& 0xfff);
1953 Operand_msalp32_decode (uint32
*valp
)
1955 unsigned msalp32_0
, sal_0
;
1956 sal_0
= *valp
& 0x1f;
1957 msalp32_0
= 0x20 - sal_0
;
1963 Operand_msalp32_encode (uint32
*valp
)
1965 unsigned sal_0
, msalp32_0
;
1967 sal_0
= (0x20 - msalp32_0
) & 0x1f;
1973 Operand_op2p1_decode (uint32
*valp
)
1975 unsigned op2p1_0
, op2_0
;
1976 op2_0
= *valp
& 0xf;
1977 op2p1_0
= op2_0
+ 0x1;
1983 Operand_op2p1_encode (uint32
*valp
)
1985 unsigned op2_0
, op2p1_0
;
1987 op2_0
= (op2p1_0
- 0x1) & 0xf;
1993 Operand_label8_decode (uint32
*valp
)
1995 unsigned label8_0
, imm8_0
;
1996 imm8_0
= *valp
& 0xff;
1997 label8_0
= 0x4 + (((int) imm8_0
<< 24) >> 24);
2003 Operand_label8_encode (uint32
*valp
)
2005 unsigned imm8_0
, label8_0
;
2007 imm8_0
= (label8_0
- 0x4) & 0xff;
2013 Operand_label8_ator (uint32
*valp
, uint32 pc
)
2020 Operand_label8_rtoa (uint32
*valp
, uint32 pc
)
2027 Operand_ulabel8_decode (uint32
*valp
)
2029 unsigned ulabel8_0
, imm8_0
;
2030 imm8_0
= *valp
& 0xff;
2031 ulabel8_0
= 0x4 + (((0) << 8) | imm8_0
);
2037 Operand_ulabel8_encode (uint32
*valp
)
2039 unsigned imm8_0
, ulabel8_0
;
2041 imm8_0
= (ulabel8_0
- 0x4) & 0xff;
2047 Operand_ulabel8_ator (uint32
*valp
, uint32 pc
)
2054 Operand_ulabel8_rtoa (uint32
*valp
, uint32 pc
)
2061 Operand_label12_decode (uint32
*valp
)
2063 unsigned label12_0
, imm12_0
;
2064 imm12_0
= *valp
& 0xfff;
2065 label12_0
= 0x4 + (((int) imm12_0
<< 20) >> 20);
2071 Operand_label12_encode (uint32
*valp
)
2073 unsigned imm12_0
, label12_0
;
2075 imm12_0
= (label12_0
- 0x4) & 0xfff;
2081 Operand_label12_ator (uint32
*valp
, uint32 pc
)
2088 Operand_label12_rtoa (uint32
*valp
, uint32 pc
)
2095 Operand_soffset_decode (uint32
*valp
)
2097 unsigned soffset_0
, offset_0
;
2098 offset_0
= *valp
& 0x3ffff;
2099 soffset_0
= 0x4 + (((int) offset_0
<< 14) >> 14);
2105 Operand_soffset_encode (uint32
*valp
)
2107 unsigned offset_0
, soffset_0
;
2109 offset_0
= (soffset_0
- 0x4) & 0x3ffff;
2115 Operand_soffset_ator (uint32
*valp
, uint32 pc
)
2122 Operand_soffset_rtoa (uint32
*valp
, uint32 pc
)
2129 Operand_uimm16x4_decode (uint32
*valp
)
2131 unsigned uimm16x4_0
, imm16_0
;
2132 imm16_0
= *valp
& 0xffff;
2133 uimm16x4_0
= (((0xffff) << 16) | imm16_0
) << 2;
2139 Operand_uimm16x4_encode (uint32
*valp
)
2141 unsigned imm16_0
, uimm16x4_0
;
2143 imm16_0
= (uimm16x4_0
>> 2) & 0xffff;
2149 Operand_uimm16x4_ator (uint32
*valp
, uint32 pc
)
2151 *valp
-= ((pc
+ 3) & ~0x3);
2156 Operand_uimm16x4_rtoa (uint32
*valp
, uint32 pc
)
2158 *valp
+= ((pc
+ 3) & ~0x3);
2163 Operand_immt_decode (uint32
*valp
)
2165 unsigned immt_0
, t_0
;
2173 Operand_immt_encode (uint32
*valp
)
2175 unsigned t_0
, immt_0
;
2183 Operand_imms_decode (uint32
*valp
)
2185 unsigned imms_0
, s_0
;
2193 Operand_imms_encode (uint32
*valp
)
2195 unsigned s_0
, imms_0
;
2203 Operand_tp7_decode (uint32
*valp
)
2205 unsigned tp7_0
, t_0
;
2213 Operand_tp7_encode (uint32
*valp
)
2215 unsigned t_0
, tp7_0
;
2217 t_0
= (tp7_0
- 0x7) & 0xf;
2223 Operand_xt_wbr15_label_decode (uint32
*valp
)
2225 unsigned xt_wbr15_label_0
, xt_wbr15_imm_0
;
2226 xt_wbr15_imm_0
= *valp
& 0x7fff;
2227 xt_wbr15_label_0
= 0x4 + (((int) xt_wbr15_imm_0
<< 17) >> 17);
2228 *valp
= xt_wbr15_label_0
;
2233 Operand_xt_wbr15_label_encode (uint32
*valp
)
2235 unsigned xt_wbr15_imm_0
, xt_wbr15_label_0
;
2236 xt_wbr15_label_0
= *valp
;
2237 xt_wbr15_imm_0
= (xt_wbr15_label_0
- 0x4) & 0x7fff;
2238 *valp
= xt_wbr15_imm_0
;
2243 Operand_xt_wbr15_label_ator (uint32
*valp
, uint32 pc
)
2250 Operand_xt_wbr15_label_rtoa (uint32
*valp
, uint32 pc
)
2257 Operand_xt_wbr18_label_decode (uint32
*valp
)
2259 unsigned xt_wbr18_label_0
, xt_wbr18_imm_0
;
2260 xt_wbr18_imm_0
= *valp
& 0x3ffff;
2261 xt_wbr18_label_0
= 0x4 + (((int) xt_wbr18_imm_0
<< 14) >> 14);
2262 *valp
= xt_wbr18_label_0
;
2267 Operand_xt_wbr18_label_encode (uint32
*valp
)
2269 unsigned xt_wbr18_imm_0
, xt_wbr18_label_0
;
2270 xt_wbr18_label_0
= *valp
;
2271 xt_wbr18_imm_0
= (xt_wbr18_label_0
- 0x4) & 0x3ffff;
2272 *valp
= xt_wbr18_imm_0
;
2277 Operand_xt_wbr18_label_ator (uint32
*valp
, uint32 pc
)
2284 Operand_xt_wbr18_label_rtoa (uint32
*valp
, uint32 pc
)
2290 static xtensa_operand_internal operands
[] = {
2291 { "soffsetx4", FIELD_offset
, -1, 0,
2292 XTENSA_OPERAND_IS_PCRELATIVE
,
2293 Operand_soffsetx4_encode
, Operand_soffsetx4_decode
,
2294 Operand_soffsetx4_ator
, Operand_soffsetx4_rtoa
},
2295 { "uimm12x8", FIELD_imm12
, -1, 0,
2297 Operand_uimm12x8_encode
, Operand_uimm12x8_decode
,
2299 { "simm4", FIELD_mn
, -1, 0,
2301 Operand_simm4_encode
, Operand_simm4_decode
,
2303 { "arr", FIELD_r
, REGFILE_AR
, 1,
2304 XTENSA_OPERAND_IS_REGISTER
,
2305 Operand_arr_encode
, Operand_arr_decode
,
2307 { "ars", FIELD_s
, REGFILE_AR
, 1,
2308 XTENSA_OPERAND_IS_REGISTER
,
2309 Operand_ars_encode
, Operand_ars_decode
,
2311 { "*ars_invisible", FIELD_s
, REGFILE_AR
, 1,
2312 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2313 Operand_ars_encode
, Operand_ars_decode
,
2315 { "art", FIELD_t
, REGFILE_AR
, 1,
2316 XTENSA_OPERAND_IS_REGISTER
,
2317 Operand_art_encode
, Operand_art_decode
,
2319 { "ar0", FIELD__ar0
, REGFILE_AR
, 1,
2320 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2321 Operand_ar0_encode
, Operand_ar0_decode
,
2323 { "ar4", FIELD__ar4
, REGFILE_AR
, 1,
2324 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2325 Operand_ar4_encode
, Operand_ar4_decode
,
2327 { "ar8", FIELD__ar8
, REGFILE_AR
, 1,
2328 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2329 Operand_ar8_encode
, Operand_ar8_decode
,
2331 { "ar12", FIELD__ar12
, REGFILE_AR
, 1,
2332 XTENSA_OPERAND_IS_REGISTER
| XTENSA_OPERAND_IS_INVISIBLE
,
2333 Operand_ar12_encode
, Operand_ar12_decode
,
2335 { "ars_entry", FIELD_s
, REGFILE_AR
, 1,
2336 XTENSA_OPERAND_IS_REGISTER
,
2337 Operand_ars_entry_encode
, Operand_ars_entry_decode
,
2339 { "immrx4", FIELD_r
, -1, 0,
2341 Operand_immrx4_encode
, Operand_immrx4_decode
,
2343 { "lsi4x4", FIELD_r
, -1, 0,
2345 Operand_lsi4x4_encode
, Operand_lsi4x4_decode
,
2347 { "simm7", FIELD_imm7
, -1, 0,
2349 Operand_simm7_encode
, Operand_simm7_decode
,
2351 { "uimm6", FIELD_imm6
, -1, 0,
2352 XTENSA_OPERAND_IS_PCRELATIVE
,
2353 Operand_uimm6_encode
, Operand_uimm6_decode
,
2354 Operand_uimm6_ator
, Operand_uimm6_rtoa
},
2355 { "ai4const", FIELD_t
, -1, 0,
2357 Operand_ai4const_encode
, Operand_ai4const_decode
,
2359 { "b4const", FIELD_r
, -1, 0,
2361 Operand_b4const_encode
, Operand_b4const_decode
,
2363 { "b4constu", FIELD_r
, -1, 0,
2365 Operand_b4constu_encode
, Operand_b4constu_decode
,
2367 { "uimm8", FIELD_imm8
, -1, 0,
2369 Operand_uimm8_encode
, Operand_uimm8_decode
,
2371 { "uimm8x2", FIELD_imm8
, -1, 0,
2373 Operand_uimm8x2_encode
, Operand_uimm8x2_decode
,
2375 { "uimm8x4", FIELD_imm8
, -1, 0,
2377 Operand_uimm8x4_encode
, Operand_uimm8x4_decode
,
2379 { "uimm4x16", FIELD_op2
, -1, 0,
2381 Operand_uimm4x16_encode
, Operand_uimm4x16_decode
,
2383 { "simm8", FIELD_imm8
, -1, 0,
2385 Operand_simm8_encode
, Operand_simm8_decode
,
2387 { "simm8x256", FIELD_imm8
, -1, 0,
2389 Operand_simm8x256_encode
, Operand_simm8x256_decode
,
2391 { "simm12b", FIELD_imm12b
, -1, 0,
2393 Operand_simm12b_encode
, Operand_simm12b_decode
,
2395 { "msalp32", FIELD_sal
, -1, 0,
2397 Operand_msalp32_encode
, Operand_msalp32_decode
,
2399 { "op2p1", FIELD_op2
, -1, 0,
2401 Operand_op2p1_encode
, Operand_op2p1_decode
,
2403 { "label8", FIELD_imm8
, -1, 0,
2404 XTENSA_OPERAND_IS_PCRELATIVE
,
2405 Operand_label8_encode
, Operand_label8_decode
,
2406 Operand_label8_ator
, Operand_label8_rtoa
},
2407 { "ulabel8", FIELD_imm8
, -1, 0,
2408 XTENSA_OPERAND_IS_PCRELATIVE
,
2409 Operand_ulabel8_encode
, Operand_ulabel8_decode
,
2410 Operand_ulabel8_ator
, Operand_ulabel8_rtoa
},
2411 { "label12", FIELD_imm12
, -1, 0,
2412 XTENSA_OPERAND_IS_PCRELATIVE
,
2413 Operand_label12_encode
, Operand_label12_decode
,
2414 Operand_label12_ator
, Operand_label12_rtoa
},
2415 { "soffset", FIELD_offset
, -1, 0,
2416 XTENSA_OPERAND_IS_PCRELATIVE
,
2417 Operand_soffset_encode
, Operand_soffset_decode
,
2418 Operand_soffset_ator
, Operand_soffset_rtoa
},
2419 { "uimm16x4", FIELD_imm16
, -1, 0,
2420 XTENSA_OPERAND_IS_PCRELATIVE
,
2421 Operand_uimm16x4_encode
, Operand_uimm16x4_decode
,
2422 Operand_uimm16x4_ator
, Operand_uimm16x4_rtoa
},
2423 { "immt", FIELD_t
, -1, 0,
2425 Operand_immt_encode
, Operand_immt_decode
,
2427 { "imms", FIELD_s
, -1, 0,
2429 Operand_imms_encode
, Operand_imms_decode
,
2431 { "tp7", FIELD_t
, -1, 0,
2433 Operand_tp7_encode
, Operand_tp7_decode
,
2435 { "xt_wbr15_label", FIELD_xt_wbr15_imm
, -1, 0,
2436 XTENSA_OPERAND_IS_PCRELATIVE
,
2437 Operand_xt_wbr15_label_encode
, Operand_xt_wbr15_label_decode
,
2438 Operand_xt_wbr15_label_ator
, Operand_xt_wbr15_label_rtoa
},
2439 { "xt_wbr18_label", FIELD_xt_wbr18_imm
, -1, 0,
2440 XTENSA_OPERAND_IS_PCRELATIVE
,
2441 Operand_xt_wbr18_label_encode
, Operand_xt_wbr18_label_decode
,
2442 Operand_xt_wbr18_label_ator
, Operand_xt_wbr18_label_rtoa
},
2443 { "t", FIELD_t
, -1, 0, 0, 0, 0, 0, 0 },
2444 { "bbi4", FIELD_bbi4
, -1, 0, 0, 0, 0, 0, 0 },
2445 { "bbi", FIELD_bbi
, -1, 0, 0, 0, 0, 0, 0 },
2446 { "imm12", FIELD_imm12
, -1, 0, 0, 0, 0, 0, 0 },
2447 { "imm8", FIELD_imm8
, -1, 0, 0, 0, 0, 0, 0 },
2448 { "s", FIELD_s
, -1, 0, 0, 0, 0, 0, 0 },
2449 { "imm12b", FIELD_imm12b
, -1, 0, 0, 0, 0, 0, 0 },
2450 { "imm16", FIELD_imm16
, -1, 0, 0, 0, 0, 0, 0 },
2451 { "m", FIELD_m
, -1, 0, 0, 0, 0, 0, 0 },
2452 { "n", FIELD_n
, -1, 0, 0, 0, 0, 0, 0 },
2453 { "offset", FIELD_offset
, -1, 0, 0, 0, 0, 0, 0 },
2454 { "op0", FIELD_op0
, -1, 0, 0, 0, 0, 0, 0 },
2455 { "op1", FIELD_op1
, -1, 0, 0, 0, 0, 0, 0 },
2456 { "op2", FIELD_op2
, -1, 0, 0, 0, 0, 0, 0 },
2457 { "r", FIELD_r
, -1, 0, 0, 0, 0, 0, 0 },
2458 { "sa4", FIELD_sa4
, -1, 0, 0, 0, 0, 0, 0 },
2459 { "sae4", FIELD_sae4
, -1, 0, 0, 0, 0, 0, 0 },
2460 { "sae", FIELD_sae
, -1, 0, 0, 0, 0, 0, 0 },
2461 { "sal", FIELD_sal
, -1, 0, 0, 0, 0, 0, 0 },
2462 { "sargt", FIELD_sargt
, -1, 0, 0, 0, 0, 0, 0 },
2463 { "sas4", FIELD_sas4
, -1, 0, 0, 0, 0, 0, 0 },
2464 { "sas", FIELD_sas
, -1, 0, 0, 0, 0, 0, 0 },
2465 { "sr", FIELD_sr
, -1, 0, 0, 0, 0, 0, 0 },
2466 { "st", FIELD_st
, -1, 0, 0, 0, 0, 0, 0 },
2467 { "thi3", FIELD_thi3
, -1, 0, 0, 0, 0, 0, 0 },
2468 { "imm4", FIELD_imm4
, -1, 0, 0, 0, 0, 0, 0 },
2469 { "mn", FIELD_mn
, -1, 0, 0, 0, 0, 0, 0 },
2470 { "i", FIELD_i
, -1, 0, 0, 0, 0, 0, 0 },
2471 { "imm6lo", FIELD_imm6lo
, -1, 0, 0, 0, 0, 0, 0 },
2472 { "imm6hi", FIELD_imm6hi
, -1, 0, 0, 0, 0, 0, 0 },
2473 { "imm7lo", FIELD_imm7lo
, -1, 0, 0, 0, 0, 0, 0 },
2474 { "imm7hi", FIELD_imm7hi
, -1, 0, 0, 0, 0, 0, 0 },
2475 { "z", FIELD_z
, -1, 0, 0, 0, 0, 0, 0 },
2476 { "imm6", FIELD_imm6
, -1, 0, 0, 0, 0, 0, 0 },
2477 { "imm7", FIELD_imm7
, -1, 0, 0, 0, 0, 0, 0 },
2478 { "xt_wbr15_imm", FIELD_xt_wbr15_imm
, -1, 0, 0, 0, 0, 0, 0 },
2479 { "xt_wbr18_imm", FIELD_xt_wbr18_imm
, -1, 0, 0, 0, 0, 0, 0 }
2482 enum xtensa_operand_id
{
2488 OPERAND__ars_invisible
,
2519 OPERAND_xt_wbr15_label
,
2520 OPERAND_xt_wbr18_label
,
2556 OPERAND_xt_wbr15_imm
,
2557 OPERAND_xt_wbr18_imm
2563 static xtensa_arg_internal Iclass_xt_iclass_rfe_stateArgs
[] = {
2564 { { STATE_PSRING
}, 'i' },
2565 { { STATE_PSEXCM
}, 'm' },
2566 { { STATE_EPC1
}, 'i' }
2569 static xtensa_arg_internal Iclass_xt_iclass_rfde_stateArgs
[] = {
2570 { { STATE_PSEXCM
}, 'i' },
2571 { { STATE_PSRING
}, 'i' },
2572 { { STATE_DEPC
}, 'i' }
2575 static xtensa_arg_internal Iclass_xt_iclass_call12_args
[] = {
2576 { { OPERAND_soffsetx4
}, 'i' },
2577 { { OPERAND_ar12
}, 'o' }
2580 static xtensa_arg_internal Iclass_xt_iclass_call12_stateArgs
[] = {
2581 { { STATE_PSCALLINC
}, 'o' }
2584 static xtensa_arg_internal Iclass_xt_iclass_call8_args
[] = {
2585 { { OPERAND_soffsetx4
}, 'i' },
2586 { { OPERAND_ar8
}, 'o' }
2589 static xtensa_arg_internal Iclass_xt_iclass_call8_stateArgs
[] = {
2590 { { STATE_PSCALLINC
}, 'o' }
2593 static xtensa_arg_internal Iclass_xt_iclass_call4_args
[] = {
2594 { { OPERAND_soffsetx4
}, 'i' },
2595 { { OPERAND_ar4
}, 'o' }
2598 static xtensa_arg_internal Iclass_xt_iclass_call4_stateArgs
[] = {
2599 { { STATE_PSCALLINC
}, 'o' }
2602 static xtensa_arg_internal Iclass_xt_iclass_callx12_args
[] = {
2603 { { OPERAND_ars
}, 'i' },
2604 { { OPERAND_ar12
}, 'o' }
2607 static xtensa_arg_internal Iclass_xt_iclass_callx12_stateArgs
[] = {
2608 { { STATE_PSCALLINC
}, 'o' }
2611 static xtensa_arg_internal Iclass_xt_iclass_callx8_args
[] = {
2612 { { OPERAND_ars
}, 'i' },
2613 { { OPERAND_ar8
}, 'o' }
2616 static xtensa_arg_internal Iclass_xt_iclass_callx8_stateArgs
[] = {
2617 { { STATE_PSCALLINC
}, 'o' }
2620 static xtensa_arg_internal Iclass_xt_iclass_callx4_args
[] = {
2621 { { OPERAND_ars
}, 'i' },
2622 { { OPERAND_ar4
}, 'o' }
2625 static xtensa_arg_internal Iclass_xt_iclass_callx4_stateArgs
[] = {
2626 { { STATE_PSCALLINC
}, 'o' }
2629 static xtensa_arg_internal Iclass_xt_iclass_entry_args
[] = {
2630 { { OPERAND_ars_entry
}, 's' },
2631 { { OPERAND_ars
}, 'i' },
2632 { { OPERAND_uimm12x8
}, 'i' }
2635 static xtensa_arg_internal Iclass_xt_iclass_entry_stateArgs
[] = {
2636 { { STATE_PSCALLINC
}, 'i' },
2637 { { STATE_PSEXCM
}, 'i' },
2638 { { STATE_PSWOE
}, 'i' },
2639 { { STATE_WindowBase
}, 'm' },
2640 { { STATE_WindowStart
}, 'm' }
2643 static xtensa_arg_internal Iclass_xt_iclass_movsp_args
[] = {
2644 { { OPERAND_art
}, 'o' },
2645 { { OPERAND_ars
}, 'i' }
2648 static xtensa_arg_internal Iclass_xt_iclass_movsp_stateArgs
[] = {
2649 { { STATE_WindowBase
}, 'i' },
2650 { { STATE_WindowStart
}, 'i' }
2653 static xtensa_arg_internal Iclass_xt_iclass_rotw_args
[] = {
2654 { { OPERAND_simm4
}, 'i' }
2657 static xtensa_arg_internal Iclass_xt_iclass_rotw_stateArgs
[] = {
2658 { { STATE_PSEXCM
}, 'i' },
2659 { { STATE_PSRING
}, 'i' },
2660 { { STATE_WindowBase
}, 'm' }
2663 static xtensa_arg_internal Iclass_xt_iclass_retw_args
[] = {
2664 { { OPERAND__ars_invisible
}, 'i' }
2667 static xtensa_arg_internal Iclass_xt_iclass_retw_stateArgs
[] = {
2668 { { STATE_WindowBase
}, 'm' },
2669 { { STATE_WindowStart
}, 'm' },
2670 { { STATE_PSEXCM
}, 'i' },
2671 { { STATE_PSWOE
}, 'i' }
2674 static xtensa_arg_internal Iclass_xt_iclass_rfwou_stateArgs
[] = {
2675 { { STATE_EPC1
}, 'i' },
2676 { { STATE_PSEXCM
}, 'm' },
2677 { { STATE_PSRING
}, 'i' },
2678 { { STATE_WindowBase
}, 'm' },
2679 { { STATE_WindowStart
}, 'm' },
2680 { { STATE_PSOWB
}, 'i' }
2683 static xtensa_arg_internal Iclass_xt_iclass_l32e_args
[] = {
2684 { { OPERAND_art
}, 'o' },
2685 { { OPERAND_ars
}, 'i' },
2686 { { OPERAND_immrx4
}, 'i' }
2689 static xtensa_arg_internal Iclass_xt_iclass_l32e_stateArgs
[] = {
2690 { { STATE_PSEXCM
}, 'i' },
2691 { { STATE_PSRING
}, 'i' }
2694 static xtensa_arg_internal Iclass_xt_iclass_s32e_args
[] = {
2695 { { OPERAND_art
}, 'i' },
2696 { { OPERAND_ars
}, 'i' },
2697 { { OPERAND_immrx4
}, 'i' }
2700 static xtensa_arg_internal Iclass_xt_iclass_s32e_stateArgs
[] = {
2701 { { STATE_PSEXCM
}, 'i' },
2702 { { STATE_PSRING
}, 'i' }
2705 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowbase_args
[] = {
2706 { { OPERAND_art
}, 'o' }
2709 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowbase_stateArgs
[] = {
2710 { { STATE_PSEXCM
}, 'i' },
2711 { { STATE_PSRING
}, 'i' },
2712 { { STATE_WindowBase
}, 'i' }
2715 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowbase_args
[] = {
2716 { { OPERAND_art
}, 'i' }
2719 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowbase_stateArgs
[] = {
2720 { { STATE_PSEXCM
}, 'i' },
2721 { { STATE_PSRING
}, 'i' },
2722 { { STATE_WindowBase
}, 'o' }
2725 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowbase_args
[] = {
2726 { { OPERAND_art
}, 'm' }
2729 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowbase_stateArgs
[] = {
2730 { { STATE_PSEXCM
}, 'i' },
2731 { { STATE_PSRING
}, 'i' },
2732 { { STATE_WindowBase
}, 'm' }
2735 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowstart_args
[] = {
2736 { { OPERAND_art
}, 'o' }
2739 static xtensa_arg_internal Iclass_xt_iclass_rsr_windowstart_stateArgs
[] = {
2740 { { STATE_PSEXCM
}, 'i' },
2741 { { STATE_PSRING
}, 'i' },
2742 { { STATE_WindowStart
}, 'i' }
2745 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowstart_args
[] = {
2746 { { OPERAND_art
}, 'i' }
2749 static xtensa_arg_internal Iclass_xt_iclass_wsr_windowstart_stateArgs
[] = {
2750 { { STATE_PSEXCM
}, 'i' },
2751 { { STATE_PSRING
}, 'i' },
2752 { { STATE_WindowStart
}, 'o' }
2755 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowstart_args
[] = {
2756 { { OPERAND_art
}, 'm' }
2759 static xtensa_arg_internal Iclass_xt_iclass_xsr_windowstart_stateArgs
[] = {
2760 { { STATE_PSEXCM
}, 'i' },
2761 { { STATE_PSRING
}, 'i' },
2762 { { STATE_WindowStart
}, 'm' }
2765 static xtensa_arg_internal Iclass_xt_iclass_add_n_args
[] = {
2766 { { OPERAND_arr
}, 'o' },
2767 { { OPERAND_ars
}, 'i' },
2768 { { OPERAND_art
}, 'i' }
2771 static xtensa_arg_internal Iclass_xt_iclass_addi_n_args
[] = {
2772 { { OPERAND_arr
}, 'o' },
2773 { { OPERAND_ars
}, 'i' },
2774 { { OPERAND_ai4const
}, 'i' }
2777 static xtensa_arg_internal Iclass_xt_iclass_bz6_args
[] = {
2778 { { OPERAND_ars
}, 'i' },
2779 { { OPERAND_uimm6
}, 'i' }
2782 static xtensa_arg_internal Iclass_xt_iclass_loadi4_args
[] = {
2783 { { OPERAND_art
}, 'o' },
2784 { { OPERAND_ars
}, 'i' },
2785 { { OPERAND_lsi4x4
}, 'i' }
2788 static xtensa_arg_internal Iclass_xt_iclass_mov_n_args
[] = {
2789 { { OPERAND_art
}, 'o' },
2790 { { OPERAND_ars
}, 'i' }
2793 static xtensa_arg_internal Iclass_xt_iclass_movi_n_args
[] = {
2794 { { OPERAND_ars
}, 'o' },
2795 { { OPERAND_simm7
}, 'i' }
2798 static xtensa_arg_internal Iclass_xt_iclass_retn_args
[] = {
2799 { { OPERAND__ars_invisible
}, 'i' }
2802 static xtensa_arg_internal Iclass_xt_iclass_storei4_args
[] = {
2803 { { OPERAND_art
}, 'i' },
2804 { { OPERAND_ars
}, 'i' },
2805 { { OPERAND_lsi4x4
}, 'i' }
2808 static xtensa_arg_internal Iclass_rur_threadptr_args
[] = {
2809 { { OPERAND_arr
}, 'o' }
2812 static xtensa_arg_internal Iclass_rur_threadptr_stateArgs
[] = {
2813 { { STATE_THREADPTR
}, 'i' }
2816 static xtensa_arg_internal Iclass_wur_threadptr_args
[] = {
2817 { { OPERAND_art
}, 'i' }
2820 static xtensa_arg_internal Iclass_wur_threadptr_stateArgs
[] = {
2821 { { STATE_THREADPTR
}, 'o' }
2824 static xtensa_arg_internal Iclass_xt_iclass_addi_args
[] = {
2825 { { OPERAND_art
}, 'o' },
2826 { { OPERAND_ars
}, 'i' },
2827 { { OPERAND_simm8
}, 'i' }
2830 static xtensa_arg_internal Iclass_xt_iclass_addmi_args
[] = {
2831 { { OPERAND_art
}, 'o' },
2832 { { OPERAND_ars
}, 'i' },
2833 { { OPERAND_simm8x256
}, 'i' }
2836 static xtensa_arg_internal Iclass_xt_iclass_addsub_args
[] = {
2837 { { OPERAND_arr
}, 'o' },
2838 { { OPERAND_ars
}, 'i' },
2839 { { OPERAND_art
}, 'i' }
2842 static xtensa_arg_internal Iclass_xt_iclass_bit_args
[] = {
2843 { { OPERAND_arr
}, 'o' },
2844 { { OPERAND_ars
}, 'i' },
2845 { { OPERAND_art
}, 'i' }
2848 static xtensa_arg_internal Iclass_xt_iclass_bsi8_args
[] = {
2849 { { OPERAND_ars
}, 'i' },
2850 { { OPERAND_b4const
}, 'i' },
2851 { { OPERAND_label8
}, 'i' }
2854 static xtensa_arg_internal Iclass_xt_iclass_bsi8b_args
[] = {
2855 { { OPERAND_ars
}, 'i' },
2856 { { OPERAND_bbi
}, 'i' },
2857 { { OPERAND_label8
}, 'i' }
2860 static xtensa_arg_internal Iclass_xt_iclass_bsi8u_args
[] = {
2861 { { OPERAND_ars
}, 'i' },
2862 { { OPERAND_b4constu
}, 'i' },
2863 { { OPERAND_label8
}, 'i' }
2866 static xtensa_arg_internal Iclass_xt_iclass_bst8_args
[] = {
2867 { { OPERAND_ars
}, 'i' },
2868 { { OPERAND_art
}, 'i' },
2869 { { OPERAND_label8
}, 'i' }
2872 static xtensa_arg_internal Iclass_xt_iclass_bsz12_args
[] = {
2873 { { OPERAND_ars
}, 'i' },
2874 { { OPERAND_label12
}, 'i' }
2877 static xtensa_arg_internal Iclass_xt_iclass_call0_args
[] = {
2878 { { OPERAND_soffsetx4
}, 'i' },
2879 { { OPERAND_ar0
}, 'o' }
2882 static xtensa_arg_internal Iclass_xt_iclass_callx0_args
[] = {
2883 { { OPERAND_ars
}, 'i' },
2884 { { OPERAND_ar0
}, 'o' }
2887 static xtensa_arg_internal Iclass_xt_iclass_exti_args
[] = {
2888 { { OPERAND_arr
}, 'o' },
2889 { { OPERAND_art
}, 'i' },
2890 { { OPERAND_sae
}, 'i' },
2891 { { OPERAND_op2p1
}, 'i' }
2894 static xtensa_arg_internal Iclass_xt_iclass_jump_args
[] = {
2895 { { OPERAND_soffset
}, 'i' }
2898 static xtensa_arg_internal Iclass_xt_iclass_jumpx_args
[] = {
2899 { { OPERAND_ars
}, 'i' }
2902 static xtensa_arg_internal Iclass_xt_iclass_l16ui_args
[] = {
2903 { { OPERAND_art
}, 'o' },
2904 { { OPERAND_ars
}, 'i' },
2905 { { OPERAND_uimm8x2
}, 'i' }
2908 static xtensa_arg_internal Iclass_xt_iclass_l16si_args
[] = {
2909 { { OPERAND_art
}, 'o' },
2910 { { OPERAND_ars
}, 'i' },
2911 { { OPERAND_uimm8x2
}, 'i' }
2914 static xtensa_arg_internal Iclass_xt_iclass_l32i_args
[] = {
2915 { { OPERAND_art
}, 'o' },
2916 { { OPERAND_ars
}, 'i' },
2917 { { OPERAND_uimm8x4
}, 'i' }
2920 static xtensa_arg_internal Iclass_xt_iclass_l32r_args
[] = {
2921 { { OPERAND_art
}, 'o' },
2922 { { OPERAND_uimm16x4
}, 'i' }
2925 static xtensa_arg_internal Iclass_xt_iclass_l32r_stateArgs
[] = {
2926 { { STATE_LITBADDR
}, 'i' },
2927 { { STATE_LITBEN
}, 'i' }
2930 static xtensa_arg_internal Iclass_xt_iclass_l8i_args
[] = {
2931 { { OPERAND_art
}, 'o' },
2932 { { OPERAND_ars
}, 'i' },
2933 { { OPERAND_uimm8
}, 'i' }
2936 static xtensa_arg_internal Iclass_xt_iclass_loop_args
[] = {
2937 { { OPERAND_ars
}, 'i' },
2938 { { OPERAND_ulabel8
}, 'i' }
2941 static xtensa_arg_internal Iclass_xt_iclass_loop_stateArgs
[] = {
2942 { { STATE_LBEG
}, 'o' },
2943 { { STATE_LEND
}, 'o' },
2944 { { STATE_LCOUNT
}, 'o' }
2947 static xtensa_arg_internal Iclass_xt_iclass_loopz_args
[] = {
2948 { { OPERAND_ars
}, 'i' },
2949 { { OPERAND_ulabel8
}, 'i' }
2952 static xtensa_arg_internal Iclass_xt_iclass_loopz_stateArgs
[] = {
2953 { { STATE_LBEG
}, 'o' },
2954 { { STATE_LEND
}, 'o' },
2955 { { STATE_LCOUNT
}, 'o' }
2958 static xtensa_arg_internal Iclass_xt_iclass_movi_args
[] = {
2959 { { OPERAND_art
}, 'o' },
2960 { { OPERAND_simm12b
}, 'i' }
2963 static xtensa_arg_internal Iclass_xt_iclass_movz_args
[] = {
2964 { { OPERAND_arr
}, 'm' },
2965 { { OPERAND_ars
}, 'i' },
2966 { { OPERAND_art
}, 'i' }
2969 static xtensa_arg_internal Iclass_xt_iclass_neg_args
[] = {
2970 { { OPERAND_arr
}, 'o' },
2971 { { OPERAND_art
}, 'i' }
2974 static xtensa_arg_internal Iclass_xt_iclass_return_args
[] = {
2975 { { OPERAND__ars_invisible
}, 'i' }
2978 static xtensa_arg_internal Iclass_xt_iclass_s16i_args
[] = {
2979 { { OPERAND_art
}, 'i' },
2980 { { OPERAND_ars
}, 'i' },
2981 { { OPERAND_uimm8x2
}, 'i' }
2984 static xtensa_arg_internal Iclass_xt_iclass_s32i_args
[] = {
2985 { { OPERAND_art
}, 'i' },
2986 { { OPERAND_ars
}, 'i' },
2987 { { OPERAND_uimm8x4
}, 'i' }
2990 static xtensa_arg_internal Iclass_xt_iclass_s8i_args
[] = {
2991 { { OPERAND_art
}, 'i' },
2992 { { OPERAND_ars
}, 'i' },
2993 { { OPERAND_uimm8
}, 'i' }
2996 static xtensa_arg_internal Iclass_xt_iclass_sar_args
[] = {
2997 { { OPERAND_ars
}, 'i' }
3000 static xtensa_arg_internal Iclass_xt_iclass_sar_stateArgs
[] = {
3001 { { STATE_SAR
}, 'o' }
3004 static xtensa_arg_internal Iclass_xt_iclass_sari_args
[] = {
3005 { { OPERAND_sas
}, 'i' }
3008 static xtensa_arg_internal Iclass_xt_iclass_sari_stateArgs
[] = {
3009 { { STATE_SAR
}, 'o' }
3012 static xtensa_arg_internal Iclass_xt_iclass_shifts_args
[] = {
3013 { { OPERAND_arr
}, 'o' },
3014 { { OPERAND_ars
}, 'i' }
3017 static xtensa_arg_internal Iclass_xt_iclass_shifts_stateArgs
[] = {
3018 { { STATE_SAR
}, 'i' }
3021 static xtensa_arg_internal Iclass_xt_iclass_shiftst_args
[] = {
3022 { { OPERAND_arr
}, 'o' },
3023 { { OPERAND_ars
}, 'i' },
3024 { { OPERAND_art
}, 'i' }
3027 static xtensa_arg_internal Iclass_xt_iclass_shiftst_stateArgs
[] = {
3028 { { STATE_SAR
}, 'i' }
3031 static xtensa_arg_internal Iclass_xt_iclass_shiftt_args
[] = {
3032 { { OPERAND_arr
}, 'o' },
3033 { { OPERAND_art
}, 'i' }
3036 static xtensa_arg_internal Iclass_xt_iclass_shiftt_stateArgs
[] = {
3037 { { STATE_SAR
}, 'i' }
3040 static xtensa_arg_internal Iclass_xt_iclass_slli_args
[] = {
3041 { { OPERAND_arr
}, 'o' },
3042 { { OPERAND_ars
}, 'i' },
3043 { { OPERAND_msalp32
}, 'i' }
3046 static xtensa_arg_internal Iclass_xt_iclass_srai_args
[] = {
3047 { { OPERAND_arr
}, 'o' },
3048 { { OPERAND_art
}, 'i' },
3049 { { OPERAND_sargt
}, 'i' }
3052 static xtensa_arg_internal Iclass_xt_iclass_srli_args
[] = {
3053 { { OPERAND_arr
}, 'o' },
3054 { { OPERAND_art
}, 'i' },
3055 { { OPERAND_s
}, 'i' }
3058 static xtensa_arg_internal Iclass_xt_iclass_sync_stateArgs
[] = {
3059 { { STATE_XTSYNC
}, 'i' }
3062 static xtensa_arg_internal Iclass_xt_iclass_rsil_args
[] = {
3063 { { OPERAND_art
}, 'o' },
3064 { { OPERAND_s
}, 'i' }
3067 static xtensa_arg_internal Iclass_xt_iclass_rsil_stateArgs
[] = {
3068 { { STATE_PSWOE
}, 'i' },
3069 { { STATE_PSCALLINC
}, 'i' },
3070 { { STATE_PSOWB
}, 'i' },
3071 { { STATE_PSRING
}, 'i' },
3072 { { STATE_PSUM
}, 'i' },
3073 { { STATE_PSEXCM
}, 'i' },
3074 { { STATE_PSINTLEVEL
}, 'm' }
3077 static xtensa_arg_internal Iclass_xt_iclass_rsr_lend_args
[] = {
3078 { { OPERAND_art
}, 'o' }
3081 static xtensa_arg_internal Iclass_xt_iclass_rsr_lend_stateArgs
[] = {
3082 { { STATE_LEND
}, 'i' }
3085 static xtensa_arg_internal Iclass_xt_iclass_wsr_lend_args
[] = {
3086 { { OPERAND_art
}, 'i' }
3089 static xtensa_arg_internal Iclass_xt_iclass_wsr_lend_stateArgs
[] = {
3090 { { STATE_LEND
}, 'o' }
3093 static xtensa_arg_internal Iclass_xt_iclass_xsr_lend_args
[] = {
3094 { { OPERAND_art
}, 'm' }
3097 static xtensa_arg_internal Iclass_xt_iclass_xsr_lend_stateArgs
[] = {
3098 { { STATE_LEND
}, 'm' }
3101 static xtensa_arg_internal Iclass_xt_iclass_rsr_lcount_args
[] = {
3102 { { OPERAND_art
}, 'o' }
3105 static xtensa_arg_internal Iclass_xt_iclass_rsr_lcount_stateArgs
[] = {
3106 { { STATE_LCOUNT
}, 'i' }
3109 static xtensa_arg_internal Iclass_xt_iclass_wsr_lcount_args
[] = {
3110 { { OPERAND_art
}, 'i' }
3113 static xtensa_arg_internal Iclass_xt_iclass_wsr_lcount_stateArgs
[] = {
3114 { { STATE_XTSYNC
}, 'o' },
3115 { { STATE_LCOUNT
}, 'o' }
3118 static xtensa_arg_internal Iclass_xt_iclass_xsr_lcount_args
[] = {
3119 { { OPERAND_art
}, 'm' }
3122 static xtensa_arg_internal Iclass_xt_iclass_xsr_lcount_stateArgs
[] = {
3123 { { STATE_XTSYNC
}, 'o' },
3124 { { STATE_LCOUNT
}, 'm' }
3127 static xtensa_arg_internal Iclass_xt_iclass_rsr_lbeg_args
[] = {
3128 { { OPERAND_art
}, 'o' }
3131 static xtensa_arg_internal Iclass_xt_iclass_rsr_lbeg_stateArgs
[] = {
3132 { { STATE_LBEG
}, 'i' }
3135 static xtensa_arg_internal Iclass_xt_iclass_wsr_lbeg_args
[] = {
3136 { { OPERAND_art
}, 'i' }
3139 static xtensa_arg_internal Iclass_xt_iclass_wsr_lbeg_stateArgs
[] = {
3140 { { STATE_LBEG
}, 'o' }
3143 static xtensa_arg_internal Iclass_xt_iclass_xsr_lbeg_args
[] = {
3144 { { OPERAND_art
}, 'm' }
3147 static xtensa_arg_internal Iclass_xt_iclass_xsr_lbeg_stateArgs
[] = {
3148 { { STATE_LBEG
}, 'm' }
3151 static xtensa_arg_internal Iclass_xt_iclass_rsr_sar_args
[] = {
3152 { { OPERAND_art
}, 'o' }
3155 static xtensa_arg_internal Iclass_xt_iclass_rsr_sar_stateArgs
[] = {
3156 { { STATE_SAR
}, 'i' }
3159 static xtensa_arg_internal Iclass_xt_iclass_wsr_sar_args
[] = {
3160 { { OPERAND_art
}, 'i' }
3163 static xtensa_arg_internal Iclass_xt_iclass_wsr_sar_stateArgs
[] = {
3164 { { STATE_SAR
}, 'o' },
3165 { { STATE_XTSYNC
}, 'o' }
3168 static xtensa_arg_internal Iclass_xt_iclass_xsr_sar_args
[] = {
3169 { { OPERAND_art
}, 'm' }
3172 static xtensa_arg_internal Iclass_xt_iclass_xsr_sar_stateArgs
[] = {
3173 { { STATE_SAR
}, 'm' }
3176 static xtensa_arg_internal Iclass_xt_iclass_rsr_litbase_args
[] = {
3177 { { OPERAND_art
}, 'o' }
3180 static xtensa_arg_internal Iclass_xt_iclass_rsr_litbase_stateArgs
[] = {
3181 { { STATE_LITBADDR
}, 'i' },
3182 { { STATE_LITBEN
}, 'i' }
3185 static xtensa_arg_internal Iclass_xt_iclass_wsr_litbase_args
[] = {
3186 { { OPERAND_art
}, 'i' }
3189 static xtensa_arg_internal Iclass_xt_iclass_wsr_litbase_stateArgs
[] = {
3190 { { STATE_LITBADDR
}, 'o' },
3191 { { STATE_LITBEN
}, 'o' }
3194 static xtensa_arg_internal Iclass_xt_iclass_xsr_litbase_args
[] = {
3195 { { OPERAND_art
}, 'm' }
3198 static xtensa_arg_internal Iclass_xt_iclass_xsr_litbase_stateArgs
[] = {
3199 { { STATE_LITBADDR
}, 'm' },
3200 { { STATE_LITBEN
}, 'm' }
3203 static xtensa_arg_internal Iclass_xt_iclass_rsr_176_args
[] = {
3204 { { OPERAND_art
}, 'o' }
3207 static xtensa_arg_internal Iclass_xt_iclass_rsr_176_stateArgs
[] = {
3208 { { STATE_PSEXCM
}, 'i' },
3209 { { STATE_PSRING
}, 'i' }
3212 static xtensa_arg_internal Iclass_xt_iclass_wsr_176_args
[] = {
3213 { { OPERAND_art
}, 'i' }
3216 static xtensa_arg_internal Iclass_xt_iclass_wsr_176_stateArgs
[] = {
3217 { { STATE_PSEXCM
}, 'i' },
3218 { { STATE_PSRING
}, 'i' }
3221 static xtensa_arg_internal Iclass_xt_iclass_rsr_208_args
[] = {
3222 { { OPERAND_art
}, 'o' }
3225 static xtensa_arg_internal Iclass_xt_iclass_rsr_208_stateArgs
[] = {
3226 { { STATE_PSEXCM
}, 'i' },
3227 { { STATE_PSRING
}, 'i' }
3230 static xtensa_arg_internal Iclass_xt_iclass_rsr_ps_args
[] = {
3231 { { OPERAND_art
}, 'o' }
3234 static xtensa_arg_internal Iclass_xt_iclass_rsr_ps_stateArgs
[] = {
3235 { { STATE_PSWOE
}, 'i' },
3236 { { STATE_PSCALLINC
}, 'i' },
3237 { { STATE_PSOWB
}, 'i' },
3238 { { STATE_PSRING
}, 'i' },
3239 { { STATE_PSUM
}, 'i' },
3240 { { STATE_PSEXCM
}, 'i' },
3241 { { STATE_PSINTLEVEL
}, 'i' }
3244 static xtensa_arg_internal Iclass_xt_iclass_wsr_ps_args
[] = {
3245 { { OPERAND_art
}, 'i' }
3248 static xtensa_arg_internal Iclass_xt_iclass_wsr_ps_stateArgs
[] = {
3249 { { STATE_PSWOE
}, 'o' },
3250 { { STATE_PSCALLINC
}, 'o' },
3251 { { STATE_PSOWB
}, 'o' },
3252 { { STATE_PSRING
}, 'm' },
3253 { { STATE_PSUM
}, 'o' },
3254 { { STATE_PSEXCM
}, 'm' },
3255 { { STATE_PSINTLEVEL
}, 'o' }
3258 static xtensa_arg_internal Iclass_xt_iclass_xsr_ps_args
[] = {
3259 { { OPERAND_art
}, 'm' }
3262 static xtensa_arg_internal Iclass_xt_iclass_xsr_ps_stateArgs
[] = {
3263 { { STATE_PSWOE
}, 'm' },
3264 { { STATE_PSCALLINC
}, 'm' },
3265 { { STATE_PSOWB
}, 'm' },
3266 { { STATE_PSRING
}, 'm' },
3267 { { STATE_PSUM
}, 'm' },
3268 { { STATE_PSEXCM
}, 'm' },
3269 { { STATE_PSINTLEVEL
}, 'm' }
3272 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc1_args
[] = {
3273 { { OPERAND_art
}, 'o' }
3276 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc1_stateArgs
[] = {
3277 { { STATE_PSEXCM
}, 'i' },
3278 { { STATE_PSRING
}, 'i' },
3279 { { STATE_EPC1
}, 'i' }
3282 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc1_args
[] = {
3283 { { OPERAND_art
}, 'i' }
3286 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc1_stateArgs
[] = {
3287 { { STATE_PSEXCM
}, 'i' },
3288 { { STATE_PSRING
}, 'i' },
3289 { { STATE_EPC1
}, 'o' }
3292 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc1_args
[] = {
3293 { { OPERAND_art
}, 'm' }
3296 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc1_stateArgs
[] = {
3297 { { STATE_PSEXCM
}, 'i' },
3298 { { STATE_PSRING
}, 'i' },
3299 { { STATE_EPC1
}, 'm' }
3302 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave1_args
[] = {
3303 { { OPERAND_art
}, 'o' }
3306 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave1_stateArgs
[] = {
3307 { { STATE_PSEXCM
}, 'i' },
3308 { { STATE_PSRING
}, 'i' },
3309 { { STATE_EXCSAVE1
}, 'i' }
3312 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave1_args
[] = {
3313 { { OPERAND_art
}, 'i' }
3316 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave1_stateArgs
[] = {
3317 { { STATE_PSEXCM
}, 'i' },
3318 { { STATE_PSRING
}, 'i' },
3319 { { STATE_EXCSAVE1
}, 'o' }
3322 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave1_args
[] = {
3323 { { OPERAND_art
}, 'm' }
3326 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave1_stateArgs
[] = {
3327 { { STATE_PSEXCM
}, 'i' },
3328 { { STATE_PSRING
}, 'i' },
3329 { { STATE_EXCSAVE1
}, 'm' }
3332 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc2_args
[] = {
3333 { { OPERAND_art
}, 'o' }
3336 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc2_stateArgs
[] = {
3337 { { STATE_PSEXCM
}, 'i' },
3338 { { STATE_PSRING
}, 'i' },
3339 { { STATE_EPC2
}, 'i' }
3342 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc2_args
[] = {
3343 { { OPERAND_art
}, 'i' }
3346 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc2_stateArgs
[] = {
3347 { { STATE_PSEXCM
}, 'i' },
3348 { { STATE_PSRING
}, 'i' },
3349 { { STATE_EPC2
}, 'o' }
3352 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc2_args
[] = {
3353 { { OPERAND_art
}, 'm' }
3356 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc2_stateArgs
[] = {
3357 { { STATE_PSEXCM
}, 'i' },
3358 { { STATE_PSRING
}, 'i' },
3359 { { STATE_EPC2
}, 'm' }
3362 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave2_args
[] = {
3363 { { OPERAND_art
}, 'o' }
3366 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave2_stateArgs
[] = {
3367 { { STATE_PSEXCM
}, 'i' },
3368 { { STATE_PSRING
}, 'i' },
3369 { { STATE_EXCSAVE2
}, 'i' }
3372 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave2_args
[] = {
3373 { { OPERAND_art
}, 'i' }
3376 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave2_stateArgs
[] = {
3377 { { STATE_PSEXCM
}, 'i' },
3378 { { STATE_PSRING
}, 'i' },
3379 { { STATE_EXCSAVE2
}, 'o' }
3382 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave2_args
[] = {
3383 { { OPERAND_art
}, 'm' }
3386 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave2_stateArgs
[] = {
3387 { { STATE_PSEXCM
}, 'i' },
3388 { { STATE_PSRING
}, 'i' },
3389 { { STATE_EXCSAVE2
}, 'm' }
3392 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc3_args
[] = {
3393 { { OPERAND_art
}, 'o' }
3396 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc3_stateArgs
[] = {
3397 { { STATE_PSEXCM
}, 'i' },
3398 { { STATE_PSRING
}, 'i' },
3399 { { STATE_EPC3
}, 'i' }
3402 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc3_args
[] = {
3403 { { OPERAND_art
}, 'i' }
3406 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc3_stateArgs
[] = {
3407 { { STATE_PSEXCM
}, 'i' },
3408 { { STATE_PSRING
}, 'i' },
3409 { { STATE_EPC3
}, 'o' }
3412 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc3_args
[] = {
3413 { { OPERAND_art
}, 'm' }
3416 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc3_stateArgs
[] = {
3417 { { STATE_PSEXCM
}, 'i' },
3418 { { STATE_PSRING
}, 'i' },
3419 { { STATE_EPC3
}, 'm' }
3422 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave3_args
[] = {
3423 { { OPERAND_art
}, 'o' }
3426 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave3_stateArgs
[] = {
3427 { { STATE_PSEXCM
}, 'i' },
3428 { { STATE_PSRING
}, 'i' },
3429 { { STATE_EXCSAVE3
}, 'i' }
3432 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave3_args
[] = {
3433 { { OPERAND_art
}, 'i' }
3436 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave3_stateArgs
[] = {
3437 { { STATE_PSEXCM
}, 'i' },
3438 { { STATE_PSRING
}, 'i' },
3439 { { STATE_EXCSAVE3
}, 'o' }
3442 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave3_args
[] = {
3443 { { OPERAND_art
}, 'm' }
3446 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave3_stateArgs
[] = {
3447 { { STATE_PSEXCM
}, 'i' },
3448 { { STATE_PSRING
}, 'i' },
3449 { { STATE_EXCSAVE3
}, 'm' }
3452 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc4_args
[] = {
3453 { { OPERAND_art
}, 'o' }
3456 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc4_stateArgs
[] = {
3457 { { STATE_PSEXCM
}, 'i' },
3458 { { STATE_PSRING
}, 'i' },
3459 { { STATE_EPC4
}, 'i' }
3462 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc4_args
[] = {
3463 { { OPERAND_art
}, 'i' }
3466 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc4_stateArgs
[] = {
3467 { { STATE_PSEXCM
}, 'i' },
3468 { { STATE_PSRING
}, 'i' },
3469 { { STATE_EPC4
}, 'o' }
3472 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc4_args
[] = {
3473 { { OPERAND_art
}, 'm' }
3476 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc4_stateArgs
[] = {
3477 { { STATE_PSEXCM
}, 'i' },
3478 { { STATE_PSRING
}, 'i' },
3479 { { STATE_EPC4
}, 'm' }
3482 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave4_args
[] = {
3483 { { OPERAND_art
}, 'o' }
3486 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave4_stateArgs
[] = {
3487 { { STATE_PSEXCM
}, 'i' },
3488 { { STATE_PSRING
}, 'i' },
3489 { { STATE_EXCSAVE4
}, 'i' }
3492 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave4_args
[] = {
3493 { { OPERAND_art
}, 'i' }
3496 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave4_stateArgs
[] = {
3497 { { STATE_PSEXCM
}, 'i' },
3498 { { STATE_PSRING
}, 'i' },
3499 { { STATE_EXCSAVE4
}, 'o' }
3502 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave4_args
[] = {
3503 { { OPERAND_art
}, 'm' }
3506 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave4_stateArgs
[] = {
3507 { { STATE_PSEXCM
}, 'i' },
3508 { { STATE_PSRING
}, 'i' },
3509 { { STATE_EXCSAVE4
}, 'm' }
3512 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc5_args
[] = {
3513 { { OPERAND_art
}, 'o' }
3516 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc5_stateArgs
[] = {
3517 { { STATE_PSEXCM
}, 'i' },
3518 { { STATE_PSRING
}, 'i' },
3519 { { STATE_EPC5
}, 'i' }
3522 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc5_args
[] = {
3523 { { OPERAND_art
}, 'i' }
3526 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc5_stateArgs
[] = {
3527 { { STATE_PSEXCM
}, 'i' },
3528 { { STATE_PSRING
}, 'i' },
3529 { { STATE_EPC5
}, 'o' }
3532 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc5_args
[] = {
3533 { { OPERAND_art
}, 'm' }
3536 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc5_stateArgs
[] = {
3537 { { STATE_PSEXCM
}, 'i' },
3538 { { STATE_PSRING
}, 'i' },
3539 { { STATE_EPC5
}, 'm' }
3542 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave5_args
[] = {
3543 { { OPERAND_art
}, 'o' }
3546 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave5_stateArgs
[] = {
3547 { { STATE_PSEXCM
}, 'i' },
3548 { { STATE_PSRING
}, 'i' },
3549 { { STATE_EXCSAVE5
}, 'i' }
3552 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave5_args
[] = {
3553 { { OPERAND_art
}, 'i' }
3556 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave5_stateArgs
[] = {
3557 { { STATE_PSEXCM
}, 'i' },
3558 { { STATE_PSRING
}, 'i' },
3559 { { STATE_EXCSAVE5
}, 'o' }
3562 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave5_args
[] = {
3563 { { OPERAND_art
}, 'm' }
3566 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave5_stateArgs
[] = {
3567 { { STATE_PSEXCM
}, 'i' },
3568 { { STATE_PSRING
}, 'i' },
3569 { { STATE_EXCSAVE5
}, 'm' }
3572 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc6_args
[] = {
3573 { { OPERAND_art
}, 'o' }
3576 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc6_stateArgs
[] = {
3577 { { STATE_PSEXCM
}, 'i' },
3578 { { STATE_PSRING
}, 'i' },
3579 { { STATE_EPC6
}, 'i' }
3582 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc6_args
[] = {
3583 { { OPERAND_art
}, 'i' }
3586 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc6_stateArgs
[] = {
3587 { { STATE_PSEXCM
}, 'i' },
3588 { { STATE_PSRING
}, 'i' },
3589 { { STATE_EPC6
}, 'o' }
3592 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc6_args
[] = {
3593 { { OPERAND_art
}, 'm' }
3596 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc6_stateArgs
[] = {
3597 { { STATE_PSEXCM
}, 'i' },
3598 { { STATE_PSRING
}, 'i' },
3599 { { STATE_EPC6
}, 'm' }
3602 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave6_args
[] = {
3603 { { OPERAND_art
}, 'o' }
3606 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave6_stateArgs
[] = {
3607 { { STATE_PSEXCM
}, 'i' },
3608 { { STATE_PSRING
}, 'i' },
3609 { { STATE_EXCSAVE6
}, 'i' }
3612 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave6_args
[] = {
3613 { { OPERAND_art
}, 'i' }
3616 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave6_stateArgs
[] = {
3617 { { STATE_PSEXCM
}, 'i' },
3618 { { STATE_PSRING
}, 'i' },
3619 { { STATE_EXCSAVE6
}, 'o' }
3622 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave6_args
[] = {
3623 { { OPERAND_art
}, 'm' }
3626 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave6_stateArgs
[] = {
3627 { { STATE_PSEXCM
}, 'i' },
3628 { { STATE_PSRING
}, 'i' },
3629 { { STATE_EXCSAVE6
}, 'm' }
3632 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc7_args
[] = {
3633 { { OPERAND_art
}, 'o' }
3636 static xtensa_arg_internal Iclass_xt_iclass_rsr_epc7_stateArgs
[] = {
3637 { { STATE_PSEXCM
}, 'i' },
3638 { { STATE_PSRING
}, 'i' },
3639 { { STATE_EPC7
}, 'i' }
3642 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc7_args
[] = {
3643 { { OPERAND_art
}, 'i' }
3646 static xtensa_arg_internal Iclass_xt_iclass_wsr_epc7_stateArgs
[] = {
3647 { { STATE_PSEXCM
}, 'i' },
3648 { { STATE_PSRING
}, 'i' },
3649 { { STATE_EPC7
}, 'o' }
3652 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc7_args
[] = {
3653 { { OPERAND_art
}, 'm' }
3656 static xtensa_arg_internal Iclass_xt_iclass_xsr_epc7_stateArgs
[] = {
3657 { { STATE_PSEXCM
}, 'i' },
3658 { { STATE_PSRING
}, 'i' },
3659 { { STATE_EPC7
}, 'm' }
3662 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave7_args
[] = {
3663 { { OPERAND_art
}, 'o' }
3666 static xtensa_arg_internal Iclass_xt_iclass_rsr_excsave7_stateArgs
[] = {
3667 { { STATE_PSEXCM
}, 'i' },
3668 { { STATE_PSRING
}, 'i' },
3669 { { STATE_EXCSAVE7
}, 'i' }
3672 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave7_args
[] = {
3673 { { OPERAND_art
}, 'i' }
3676 static xtensa_arg_internal Iclass_xt_iclass_wsr_excsave7_stateArgs
[] = {
3677 { { STATE_PSEXCM
}, 'i' },
3678 { { STATE_PSRING
}, 'i' },
3679 { { STATE_EXCSAVE7
}, 'o' }
3682 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave7_args
[] = {
3683 { { OPERAND_art
}, 'm' }
3686 static xtensa_arg_internal Iclass_xt_iclass_xsr_excsave7_stateArgs
[] = {
3687 { { STATE_PSEXCM
}, 'i' },
3688 { { STATE_PSRING
}, 'i' },
3689 { { STATE_EXCSAVE7
}, 'm' }
3692 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps2_args
[] = {
3693 { { OPERAND_art
}, 'o' }
3696 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps2_stateArgs
[] = {
3697 { { STATE_PSEXCM
}, 'i' },
3698 { { STATE_PSRING
}, 'i' },
3699 { { STATE_EPS2
}, 'i' }
3702 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps2_args
[] = {
3703 { { OPERAND_art
}, 'i' }
3706 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps2_stateArgs
[] = {
3707 { { STATE_PSEXCM
}, 'i' },
3708 { { STATE_PSRING
}, 'i' },
3709 { { STATE_EPS2
}, 'o' }
3712 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps2_args
[] = {
3713 { { OPERAND_art
}, 'm' }
3716 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps2_stateArgs
[] = {
3717 { { STATE_PSEXCM
}, 'i' },
3718 { { STATE_PSRING
}, 'i' },
3719 { { STATE_EPS2
}, 'm' }
3722 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps3_args
[] = {
3723 { { OPERAND_art
}, 'o' }
3726 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps3_stateArgs
[] = {
3727 { { STATE_PSEXCM
}, 'i' },
3728 { { STATE_PSRING
}, 'i' },
3729 { { STATE_EPS3
}, 'i' }
3732 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps3_args
[] = {
3733 { { OPERAND_art
}, 'i' }
3736 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps3_stateArgs
[] = {
3737 { { STATE_PSEXCM
}, 'i' },
3738 { { STATE_PSRING
}, 'i' },
3739 { { STATE_EPS3
}, 'o' }
3742 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps3_args
[] = {
3743 { { OPERAND_art
}, 'm' }
3746 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps3_stateArgs
[] = {
3747 { { STATE_PSEXCM
}, 'i' },
3748 { { STATE_PSRING
}, 'i' },
3749 { { STATE_EPS3
}, 'm' }
3752 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps4_args
[] = {
3753 { { OPERAND_art
}, 'o' }
3756 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps4_stateArgs
[] = {
3757 { { STATE_PSEXCM
}, 'i' },
3758 { { STATE_PSRING
}, 'i' },
3759 { { STATE_EPS4
}, 'i' }
3762 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps4_args
[] = {
3763 { { OPERAND_art
}, 'i' }
3766 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps4_stateArgs
[] = {
3767 { { STATE_PSEXCM
}, 'i' },
3768 { { STATE_PSRING
}, 'i' },
3769 { { STATE_EPS4
}, 'o' }
3772 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps4_args
[] = {
3773 { { OPERAND_art
}, 'm' }
3776 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps4_stateArgs
[] = {
3777 { { STATE_PSEXCM
}, 'i' },
3778 { { STATE_PSRING
}, 'i' },
3779 { { STATE_EPS4
}, 'm' }
3782 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps5_args
[] = {
3783 { { OPERAND_art
}, 'o' }
3786 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps5_stateArgs
[] = {
3787 { { STATE_PSEXCM
}, 'i' },
3788 { { STATE_PSRING
}, 'i' },
3789 { { STATE_EPS5
}, 'i' }
3792 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps5_args
[] = {
3793 { { OPERAND_art
}, 'i' }
3796 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps5_stateArgs
[] = {
3797 { { STATE_PSEXCM
}, 'i' },
3798 { { STATE_PSRING
}, 'i' },
3799 { { STATE_EPS5
}, 'o' }
3802 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps5_args
[] = {
3803 { { OPERAND_art
}, 'm' }
3806 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps5_stateArgs
[] = {
3807 { { STATE_PSEXCM
}, 'i' },
3808 { { STATE_PSRING
}, 'i' },
3809 { { STATE_EPS5
}, 'm' }
3812 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps6_args
[] = {
3813 { { OPERAND_art
}, 'o' }
3816 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps6_stateArgs
[] = {
3817 { { STATE_PSEXCM
}, 'i' },
3818 { { STATE_PSRING
}, 'i' },
3819 { { STATE_EPS6
}, 'i' }
3822 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps6_args
[] = {
3823 { { OPERAND_art
}, 'i' }
3826 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps6_stateArgs
[] = {
3827 { { STATE_PSEXCM
}, 'i' },
3828 { { STATE_PSRING
}, 'i' },
3829 { { STATE_EPS6
}, 'o' }
3832 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps6_args
[] = {
3833 { { OPERAND_art
}, 'm' }
3836 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps6_stateArgs
[] = {
3837 { { STATE_PSEXCM
}, 'i' },
3838 { { STATE_PSRING
}, 'i' },
3839 { { STATE_EPS6
}, 'm' }
3842 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps7_args
[] = {
3843 { { OPERAND_art
}, 'o' }
3846 static xtensa_arg_internal Iclass_xt_iclass_rsr_eps7_stateArgs
[] = {
3847 { { STATE_PSEXCM
}, 'i' },
3848 { { STATE_PSRING
}, 'i' },
3849 { { STATE_EPS7
}, 'i' }
3852 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps7_args
[] = {
3853 { { OPERAND_art
}, 'i' }
3856 static xtensa_arg_internal Iclass_xt_iclass_wsr_eps7_stateArgs
[] = {
3857 { { STATE_PSEXCM
}, 'i' },
3858 { { STATE_PSRING
}, 'i' },
3859 { { STATE_EPS7
}, 'o' }
3862 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps7_args
[] = {
3863 { { OPERAND_art
}, 'm' }
3866 static xtensa_arg_internal Iclass_xt_iclass_xsr_eps7_stateArgs
[] = {
3867 { { STATE_PSEXCM
}, 'i' },
3868 { { STATE_PSRING
}, 'i' },
3869 { { STATE_EPS7
}, 'm' }
3872 static xtensa_arg_internal Iclass_xt_iclass_rsr_excvaddr_args
[] = {
3873 { { OPERAND_art
}, 'o' }
3876 static xtensa_arg_internal Iclass_xt_iclass_rsr_excvaddr_stateArgs
[] = {
3877 { { STATE_PSEXCM
}, 'i' },
3878 { { STATE_PSRING
}, 'i' },
3879 { { STATE_EXCVADDR
}, 'i' }
3882 static xtensa_arg_internal Iclass_xt_iclass_wsr_excvaddr_args
[] = {
3883 { { OPERAND_art
}, 'i' }
3886 static xtensa_arg_internal Iclass_xt_iclass_wsr_excvaddr_stateArgs
[] = {
3887 { { STATE_PSEXCM
}, 'i' },
3888 { { STATE_PSRING
}, 'i' },
3889 { { STATE_EXCVADDR
}, 'o' }
3892 static xtensa_arg_internal Iclass_xt_iclass_xsr_excvaddr_args
[] = {
3893 { { OPERAND_art
}, 'm' }
3896 static xtensa_arg_internal Iclass_xt_iclass_xsr_excvaddr_stateArgs
[] = {
3897 { { STATE_PSEXCM
}, 'i' },
3898 { { STATE_PSRING
}, 'i' },
3899 { { STATE_EXCVADDR
}, 'm' }
3902 static xtensa_arg_internal Iclass_xt_iclass_rsr_depc_args
[] = {
3903 { { OPERAND_art
}, 'o' }
3906 static xtensa_arg_internal Iclass_xt_iclass_rsr_depc_stateArgs
[] = {
3907 { { STATE_PSEXCM
}, 'i' },
3908 { { STATE_PSRING
}, 'i' },
3909 { { STATE_DEPC
}, 'i' }
3912 static xtensa_arg_internal Iclass_xt_iclass_wsr_depc_args
[] = {
3913 { { OPERAND_art
}, 'i' }
3916 static xtensa_arg_internal Iclass_xt_iclass_wsr_depc_stateArgs
[] = {
3917 { { STATE_PSEXCM
}, 'i' },
3918 { { STATE_PSRING
}, 'i' },
3919 { { STATE_DEPC
}, 'o' }
3922 static xtensa_arg_internal Iclass_xt_iclass_xsr_depc_args
[] = {
3923 { { OPERAND_art
}, 'm' }
3926 static xtensa_arg_internal Iclass_xt_iclass_xsr_depc_stateArgs
[] = {
3927 { { STATE_PSEXCM
}, 'i' },
3928 { { STATE_PSRING
}, 'i' },
3929 { { STATE_DEPC
}, 'm' }
3932 static xtensa_arg_internal Iclass_xt_iclass_rsr_exccause_args
[] = {
3933 { { OPERAND_art
}, 'o' }
3936 static xtensa_arg_internal Iclass_xt_iclass_rsr_exccause_stateArgs
[] = {
3937 { { STATE_PSEXCM
}, 'i' },
3938 { { STATE_PSRING
}, 'i' },
3939 { { STATE_EXCCAUSE
}, 'i' },
3940 { { STATE_XTSYNC
}, 'i' }
3943 static xtensa_arg_internal Iclass_xt_iclass_wsr_exccause_args
[] = {
3944 { { OPERAND_art
}, 'i' }
3947 static xtensa_arg_internal Iclass_xt_iclass_wsr_exccause_stateArgs
[] = {
3948 { { STATE_PSEXCM
}, 'i' },
3949 { { STATE_PSRING
}, 'i' },
3950 { { STATE_EXCCAUSE
}, 'o' }
3953 static xtensa_arg_internal Iclass_xt_iclass_xsr_exccause_args
[] = {
3954 { { OPERAND_art
}, 'm' }
3957 static xtensa_arg_internal Iclass_xt_iclass_xsr_exccause_stateArgs
[] = {
3958 { { STATE_PSEXCM
}, 'i' },
3959 { { STATE_PSRING
}, 'i' },
3960 { { STATE_EXCCAUSE
}, 'm' }
3963 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc0_args
[] = {
3964 { { OPERAND_art
}, 'o' }
3967 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc0_stateArgs
[] = {
3968 { { STATE_PSEXCM
}, 'i' },
3969 { { STATE_PSRING
}, 'i' },
3970 { { STATE_MISC0
}, 'i' }
3973 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc0_args
[] = {
3974 { { OPERAND_art
}, 'i' }
3977 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc0_stateArgs
[] = {
3978 { { STATE_PSEXCM
}, 'i' },
3979 { { STATE_PSRING
}, 'i' },
3980 { { STATE_MISC0
}, 'o' }
3983 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc0_args
[] = {
3984 { { OPERAND_art
}, 'm' }
3987 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc0_stateArgs
[] = {
3988 { { STATE_PSEXCM
}, 'i' },
3989 { { STATE_PSRING
}, 'i' },
3990 { { STATE_MISC0
}, 'm' }
3993 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc1_args
[] = {
3994 { { OPERAND_art
}, 'o' }
3997 static xtensa_arg_internal Iclass_xt_iclass_rsr_misc1_stateArgs
[] = {
3998 { { STATE_PSEXCM
}, 'i' },
3999 { { STATE_PSRING
}, 'i' },
4000 { { STATE_MISC1
}, 'i' }
4003 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc1_args
[] = {
4004 { { OPERAND_art
}, 'i' }
4007 static xtensa_arg_internal Iclass_xt_iclass_wsr_misc1_stateArgs
[] = {
4008 { { STATE_PSEXCM
}, 'i' },
4009 { { STATE_PSRING
}, 'i' },
4010 { { STATE_MISC1
}, 'o' }
4013 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc1_args
[] = {
4014 { { OPERAND_art
}, 'm' }
4017 static xtensa_arg_internal Iclass_xt_iclass_xsr_misc1_stateArgs
[] = {
4018 { { STATE_PSEXCM
}, 'i' },
4019 { { STATE_PSRING
}, 'i' },
4020 { { STATE_MISC1
}, 'm' }
4023 static xtensa_arg_internal Iclass_xt_iclass_rsr_prid_args
[] = {
4024 { { OPERAND_art
}, 'o' }
4027 static xtensa_arg_internal Iclass_xt_iclass_rsr_prid_stateArgs
[] = {
4028 { { STATE_PSEXCM
}, 'i' },
4029 { { STATE_PSRING
}, 'i' }
4032 static xtensa_arg_internal Iclass_xt_iclass_rsr_vecbase_args
[] = {
4033 { { OPERAND_art
}, 'o' }
4036 static xtensa_arg_internal Iclass_xt_iclass_rsr_vecbase_stateArgs
[] = {
4037 { { STATE_PSEXCM
}, 'i' },
4038 { { STATE_PSRING
}, 'i' },
4039 { { STATE_VECBASE
}, 'i' }
4042 static xtensa_arg_internal Iclass_xt_iclass_wsr_vecbase_args
[] = {
4043 { { OPERAND_art
}, 'i' }
4046 static xtensa_arg_internal Iclass_xt_iclass_wsr_vecbase_stateArgs
[] = {
4047 { { STATE_PSEXCM
}, 'i' },
4048 { { STATE_PSRING
}, 'i' },
4049 { { STATE_VECBASE
}, 'o' }
4052 static xtensa_arg_internal Iclass_xt_iclass_xsr_vecbase_args
[] = {
4053 { { OPERAND_art
}, 'm' }
4056 static xtensa_arg_internal Iclass_xt_iclass_xsr_vecbase_stateArgs
[] = {
4057 { { STATE_PSEXCM
}, 'i' },
4058 { { STATE_PSRING
}, 'i' },
4059 { { STATE_VECBASE
}, 'm' }
4062 static xtensa_arg_internal Iclass_xt_iclass_mul16_args
[] = {
4063 { { OPERAND_arr
}, 'o' },
4064 { { OPERAND_ars
}, 'i' },
4065 { { OPERAND_art
}, 'i' }
4068 static xtensa_arg_internal Iclass_xt_iclass_rfi_args
[] = {
4069 { { OPERAND_s
}, 'i' }
4072 static xtensa_arg_internal Iclass_xt_iclass_rfi_stateArgs
[] = {
4073 { { STATE_PSWOE
}, 'o' },
4074 { { STATE_PSCALLINC
}, 'o' },
4075 { { STATE_PSOWB
}, 'o' },
4076 { { STATE_PSRING
}, 'm' },
4077 { { STATE_PSUM
}, 'o' },
4078 { { STATE_PSEXCM
}, 'm' },
4079 { { STATE_PSINTLEVEL
}, 'o' },
4080 { { STATE_EPC1
}, 'i' },
4081 { { STATE_EPC2
}, 'i' },
4082 { { STATE_EPC3
}, 'i' },
4083 { { STATE_EPC4
}, 'i' },
4084 { { STATE_EPC5
}, 'i' },
4085 { { STATE_EPC6
}, 'i' },
4086 { { STATE_EPC7
}, 'i' },
4087 { { STATE_EPS2
}, 'i' },
4088 { { STATE_EPS3
}, 'i' },
4089 { { STATE_EPS4
}, 'i' },
4090 { { STATE_EPS5
}, 'i' },
4091 { { STATE_EPS6
}, 'i' },
4092 { { STATE_EPS7
}, 'i' },
4093 { { STATE_InOCDMode
}, 'm' }
4096 static xtensa_arg_internal Iclass_xt_iclass_wait_args
[] = {
4097 { { OPERAND_s
}, 'i' }
4100 static xtensa_arg_internal Iclass_xt_iclass_wait_stateArgs
[] = {
4101 { { STATE_PSEXCM
}, 'i' },
4102 { { STATE_PSRING
}, 'i' },
4103 { { STATE_PSINTLEVEL
}, 'o' }
4106 static xtensa_arg_internal Iclass_xt_iclass_rsr_interrupt_args
[] = {
4107 { { OPERAND_art
}, 'o' }
4110 static xtensa_arg_internal Iclass_xt_iclass_rsr_interrupt_stateArgs
[] = {
4111 { { STATE_PSEXCM
}, 'i' },
4112 { { STATE_PSRING
}, 'i' },
4113 { { STATE_INTERRUPT
}, 'i' }
4116 static xtensa_arg_internal Iclass_xt_iclass_wsr_intset_args
[] = {
4117 { { OPERAND_art
}, 'i' }
4120 static xtensa_arg_internal Iclass_xt_iclass_wsr_intset_stateArgs
[] = {
4121 { { STATE_PSEXCM
}, 'i' },
4122 { { STATE_PSRING
}, 'i' },
4123 { { STATE_XTSYNC
}, 'o' },
4124 { { STATE_INTERRUPT
}, 'm' }
4127 static xtensa_arg_internal Iclass_xt_iclass_wsr_intclear_args
[] = {
4128 { { OPERAND_art
}, 'i' }
4131 static xtensa_arg_internal Iclass_xt_iclass_wsr_intclear_stateArgs
[] = {
4132 { { STATE_PSEXCM
}, 'i' },
4133 { { STATE_PSRING
}, 'i' },
4134 { { STATE_XTSYNC
}, 'o' },
4135 { { STATE_INTERRUPT
}, 'm' }
4138 static xtensa_arg_internal Iclass_xt_iclass_rsr_intenable_args
[] = {
4139 { { OPERAND_art
}, 'o' }
4142 static xtensa_arg_internal Iclass_xt_iclass_rsr_intenable_stateArgs
[] = {
4143 { { STATE_PSEXCM
}, 'i' },
4144 { { STATE_PSRING
}, 'i' },
4145 { { STATE_INTENABLE
}, 'i' }
4148 static xtensa_arg_internal Iclass_xt_iclass_wsr_intenable_args
[] = {
4149 { { OPERAND_art
}, 'i' }
4152 static xtensa_arg_internal Iclass_xt_iclass_wsr_intenable_stateArgs
[] = {
4153 { { STATE_PSEXCM
}, 'i' },
4154 { { STATE_PSRING
}, 'i' },
4155 { { STATE_INTENABLE
}, 'o' }
4158 static xtensa_arg_internal Iclass_xt_iclass_xsr_intenable_args
[] = {
4159 { { OPERAND_art
}, 'm' }
4162 static xtensa_arg_internal Iclass_xt_iclass_xsr_intenable_stateArgs
[] = {
4163 { { STATE_PSEXCM
}, 'i' },
4164 { { STATE_PSRING
}, 'i' },
4165 { { STATE_INTENABLE
}, 'm' }
4168 static xtensa_arg_internal Iclass_xt_iclass_break_args
[] = {
4169 { { OPERAND_imms
}, 'i' },
4170 { { OPERAND_immt
}, 'i' }
4173 static xtensa_arg_internal Iclass_xt_iclass_break_stateArgs
[] = {
4174 { { STATE_PSEXCM
}, 'i' },
4175 { { STATE_PSINTLEVEL
}, 'i' }
4178 static xtensa_arg_internal Iclass_xt_iclass_break_n_args
[] = {
4179 { { OPERAND_imms
}, 'i' }
4182 static xtensa_arg_internal Iclass_xt_iclass_break_n_stateArgs
[] = {
4183 { { STATE_PSEXCM
}, 'i' },
4184 { { STATE_PSINTLEVEL
}, 'i' }
4187 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka0_args
[] = {
4188 { { OPERAND_art
}, 'o' }
4191 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka0_stateArgs
[] = {
4192 { { STATE_PSEXCM
}, 'i' },
4193 { { STATE_PSRING
}, 'i' },
4194 { { STATE_DBREAKA0
}, 'i' }
4197 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka0_args
[] = {
4198 { { OPERAND_art
}, 'i' }
4201 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka0_stateArgs
[] = {
4202 { { STATE_PSEXCM
}, 'i' },
4203 { { STATE_PSRING
}, 'i' },
4204 { { STATE_DBREAKA0
}, 'o' },
4205 { { STATE_XTSYNC
}, 'o' }
4208 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka0_args
[] = {
4209 { { OPERAND_art
}, 'm' }
4212 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka0_stateArgs
[] = {
4213 { { STATE_PSEXCM
}, 'i' },
4214 { { STATE_PSRING
}, 'i' },
4215 { { STATE_DBREAKA0
}, 'm' },
4216 { { STATE_XTSYNC
}, 'o' }
4219 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc0_args
[] = {
4220 { { OPERAND_art
}, 'o' }
4223 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc0_stateArgs
[] = {
4224 { { STATE_PSEXCM
}, 'i' },
4225 { { STATE_PSRING
}, 'i' },
4226 { { STATE_DBREAKC0
}, 'i' }
4229 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc0_args
[] = {
4230 { { OPERAND_art
}, 'i' }
4233 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc0_stateArgs
[] = {
4234 { { STATE_PSEXCM
}, 'i' },
4235 { { STATE_PSRING
}, 'i' },
4236 { { STATE_DBREAKC0
}, 'o' },
4237 { { STATE_XTSYNC
}, 'o' }
4240 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc0_args
[] = {
4241 { { OPERAND_art
}, 'm' }
4244 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc0_stateArgs
[] = {
4245 { { STATE_PSEXCM
}, 'i' },
4246 { { STATE_PSRING
}, 'i' },
4247 { { STATE_DBREAKC0
}, 'm' },
4248 { { STATE_XTSYNC
}, 'o' }
4251 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka1_args
[] = {
4252 { { OPERAND_art
}, 'o' }
4255 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreaka1_stateArgs
[] = {
4256 { { STATE_PSEXCM
}, 'i' },
4257 { { STATE_PSRING
}, 'i' },
4258 { { STATE_DBREAKA1
}, 'i' }
4261 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka1_args
[] = {
4262 { { OPERAND_art
}, 'i' }
4265 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreaka1_stateArgs
[] = {
4266 { { STATE_PSEXCM
}, 'i' },
4267 { { STATE_PSRING
}, 'i' },
4268 { { STATE_DBREAKA1
}, 'o' },
4269 { { STATE_XTSYNC
}, 'o' }
4272 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka1_args
[] = {
4273 { { OPERAND_art
}, 'm' }
4276 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreaka1_stateArgs
[] = {
4277 { { STATE_PSEXCM
}, 'i' },
4278 { { STATE_PSRING
}, 'i' },
4279 { { STATE_DBREAKA1
}, 'm' },
4280 { { STATE_XTSYNC
}, 'o' }
4283 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc1_args
[] = {
4284 { { OPERAND_art
}, 'o' }
4287 static xtensa_arg_internal Iclass_xt_iclass_rsr_dbreakc1_stateArgs
[] = {
4288 { { STATE_PSEXCM
}, 'i' },
4289 { { STATE_PSRING
}, 'i' },
4290 { { STATE_DBREAKC1
}, 'i' }
4293 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc1_args
[] = {
4294 { { OPERAND_art
}, 'i' }
4297 static xtensa_arg_internal Iclass_xt_iclass_wsr_dbreakc1_stateArgs
[] = {
4298 { { STATE_PSEXCM
}, 'i' },
4299 { { STATE_PSRING
}, 'i' },
4300 { { STATE_DBREAKC1
}, 'o' },
4301 { { STATE_XTSYNC
}, 'o' }
4304 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc1_args
[] = {
4305 { { OPERAND_art
}, 'm' }
4308 static xtensa_arg_internal Iclass_xt_iclass_xsr_dbreakc1_stateArgs
[] = {
4309 { { STATE_PSEXCM
}, 'i' },
4310 { { STATE_PSRING
}, 'i' },
4311 { { STATE_DBREAKC1
}, 'm' },
4312 { { STATE_XTSYNC
}, 'o' }
4315 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka0_args
[] = {
4316 { { OPERAND_art
}, 'o' }
4319 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka0_stateArgs
[] = {
4320 { { STATE_PSEXCM
}, 'i' },
4321 { { STATE_PSRING
}, 'i' },
4322 { { STATE_IBREAKA0
}, 'i' }
4325 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka0_args
[] = {
4326 { { OPERAND_art
}, 'i' }
4329 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka0_stateArgs
[] = {
4330 { { STATE_PSEXCM
}, 'i' },
4331 { { STATE_PSRING
}, 'i' },
4332 { { STATE_IBREAKA0
}, 'o' }
4335 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka0_args
[] = {
4336 { { OPERAND_art
}, 'm' }
4339 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka0_stateArgs
[] = {
4340 { { STATE_PSEXCM
}, 'i' },
4341 { { STATE_PSRING
}, 'i' },
4342 { { STATE_IBREAKA0
}, 'm' }
4345 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka1_args
[] = {
4346 { { OPERAND_art
}, 'o' }
4349 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreaka1_stateArgs
[] = {
4350 { { STATE_PSEXCM
}, 'i' },
4351 { { STATE_PSRING
}, 'i' },
4352 { { STATE_IBREAKA1
}, 'i' }
4355 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka1_args
[] = {
4356 { { OPERAND_art
}, 'i' }
4359 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreaka1_stateArgs
[] = {
4360 { { STATE_PSEXCM
}, 'i' },
4361 { { STATE_PSRING
}, 'i' },
4362 { { STATE_IBREAKA1
}, 'o' }
4365 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka1_args
[] = {
4366 { { OPERAND_art
}, 'm' }
4369 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreaka1_stateArgs
[] = {
4370 { { STATE_PSEXCM
}, 'i' },
4371 { { STATE_PSRING
}, 'i' },
4372 { { STATE_IBREAKA1
}, 'm' }
4375 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreakenable_args
[] = {
4376 { { OPERAND_art
}, 'o' }
4379 static xtensa_arg_internal Iclass_xt_iclass_rsr_ibreakenable_stateArgs
[] = {
4380 { { STATE_PSEXCM
}, 'i' },
4381 { { STATE_PSRING
}, 'i' },
4382 { { STATE_IBREAKENABLE
}, 'i' }
4385 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreakenable_args
[] = {
4386 { { OPERAND_art
}, 'i' }
4389 static xtensa_arg_internal Iclass_xt_iclass_wsr_ibreakenable_stateArgs
[] = {
4390 { { STATE_PSEXCM
}, 'i' },
4391 { { STATE_PSRING
}, 'i' },
4392 { { STATE_IBREAKENABLE
}, 'o' }
4395 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreakenable_args
[] = {
4396 { { OPERAND_art
}, 'm' }
4399 static xtensa_arg_internal Iclass_xt_iclass_xsr_ibreakenable_stateArgs
[] = {
4400 { { STATE_PSEXCM
}, 'i' },
4401 { { STATE_PSRING
}, 'i' },
4402 { { STATE_IBREAKENABLE
}, 'm' }
4405 static xtensa_arg_internal Iclass_xt_iclass_rsr_debugcause_args
[] = {
4406 { { OPERAND_art
}, 'o' }
4409 static xtensa_arg_internal Iclass_xt_iclass_rsr_debugcause_stateArgs
[] = {
4410 { { STATE_PSEXCM
}, 'i' },
4411 { { STATE_PSRING
}, 'i' },
4412 { { STATE_DEBUGCAUSE
}, 'i' },
4413 { { STATE_DBNUM
}, 'i' }
4416 static xtensa_arg_internal Iclass_xt_iclass_wsr_debugcause_args
[] = {
4417 { { OPERAND_art
}, 'i' }
4420 static xtensa_arg_internal Iclass_xt_iclass_wsr_debugcause_stateArgs
[] = {
4421 { { STATE_PSEXCM
}, 'i' },
4422 { { STATE_PSRING
}, 'i' },
4423 { { STATE_DEBUGCAUSE
}, 'o' },
4424 { { STATE_DBNUM
}, 'o' }
4427 static xtensa_arg_internal Iclass_xt_iclass_xsr_debugcause_args
[] = {
4428 { { OPERAND_art
}, 'm' }
4431 static xtensa_arg_internal Iclass_xt_iclass_xsr_debugcause_stateArgs
[] = {
4432 { { STATE_PSEXCM
}, 'i' },
4433 { { STATE_PSRING
}, 'i' },
4434 { { STATE_DEBUGCAUSE
}, 'm' },
4435 { { STATE_DBNUM
}, 'm' }
4438 static xtensa_arg_internal Iclass_xt_iclass_rsr_icount_args
[] = {
4439 { { OPERAND_art
}, 'o' }
4442 static xtensa_arg_internal Iclass_xt_iclass_rsr_icount_stateArgs
[] = {
4443 { { STATE_PSEXCM
}, 'i' },
4444 { { STATE_PSRING
}, 'i' },
4445 { { STATE_ICOUNT
}, 'i' }
4448 static xtensa_arg_internal Iclass_xt_iclass_wsr_icount_args
[] = {
4449 { { OPERAND_art
}, 'i' }
4452 static xtensa_arg_internal Iclass_xt_iclass_wsr_icount_stateArgs
[] = {
4453 { { STATE_PSEXCM
}, 'i' },
4454 { { STATE_PSRING
}, 'i' },
4455 { { STATE_XTSYNC
}, 'o' },
4456 { { STATE_ICOUNT
}, 'o' }
4459 static xtensa_arg_internal Iclass_xt_iclass_xsr_icount_args
[] = {
4460 { { OPERAND_art
}, 'm' }
4463 static xtensa_arg_internal Iclass_xt_iclass_xsr_icount_stateArgs
[] = {
4464 { { STATE_PSEXCM
}, 'i' },
4465 { { STATE_PSRING
}, 'i' },
4466 { { STATE_XTSYNC
}, 'o' },
4467 { { STATE_ICOUNT
}, 'm' }
4470 static xtensa_arg_internal Iclass_xt_iclass_rsr_icountlevel_args
[] = {
4471 { { OPERAND_art
}, 'o' }
4474 static xtensa_arg_internal Iclass_xt_iclass_rsr_icountlevel_stateArgs
[] = {
4475 { { STATE_PSEXCM
}, 'i' },
4476 { { STATE_PSRING
}, 'i' },
4477 { { STATE_ICOUNTLEVEL
}, 'i' }
4480 static xtensa_arg_internal Iclass_xt_iclass_wsr_icountlevel_args
[] = {
4481 { { OPERAND_art
}, 'i' }
4484 static xtensa_arg_internal Iclass_xt_iclass_wsr_icountlevel_stateArgs
[] = {
4485 { { STATE_PSEXCM
}, 'i' },
4486 { { STATE_PSRING
}, 'i' },
4487 { { STATE_ICOUNTLEVEL
}, 'o' }
4490 static xtensa_arg_internal Iclass_xt_iclass_xsr_icountlevel_args
[] = {
4491 { { OPERAND_art
}, 'm' }
4494 static xtensa_arg_internal Iclass_xt_iclass_xsr_icountlevel_stateArgs
[] = {
4495 { { STATE_PSEXCM
}, 'i' },
4496 { { STATE_PSRING
}, 'i' },
4497 { { STATE_ICOUNTLEVEL
}, 'm' }
4500 static xtensa_arg_internal Iclass_xt_iclass_rsr_ddr_args
[] = {
4501 { { OPERAND_art
}, 'o' }
4504 static xtensa_arg_internal Iclass_xt_iclass_rsr_ddr_stateArgs
[] = {
4505 { { STATE_PSEXCM
}, 'i' },
4506 { { STATE_PSRING
}, 'i' },
4507 { { STATE_DDR
}, 'i' }
4510 static xtensa_arg_internal Iclass_xt_iclass_wsr_ddr_args
[] = {
4511 { { OPERAND_art
}, 'i' }
4514 static xtensa_arg_internal Iclass_xt_iclass_wsr_ddr_stateArgs
[] = {
4515 { { STATE_PSEXCM
}, 'i' },
4516 { { STATE_PSRING
}, 'i' },
4517 { { STATE_XTSYNC
}, 'o' },
4518 { { STATE_DDR
}, 'o' }
4521 static xtensa_arg_internal Iclass_xt_iclass_xsr_ddr_args
[] = {
4522 { { OPERAND_art
}, 'm' }
4525 static xtensa_arg_internal Iclass_xt_iclass_xsr_ddr_stateArgs
[] = {
4526 { { STATE_PSEXCM
}, 'i' },
4527 { { STATE_PSRING
}, 'i' },
4528 { { STATE_XTSYNC
}, 'o' },
4529 { { STATE_DDR
}, 'm' }
4532 static xtensa_arg_internal Iclass_xt_iclass_rfdo_args
[] = {
4533 { { OPERAND_imms
}, 'i' }
4536 static xtensa_arg_internal Iclass_xt_iclass_rfdo_stateArgs
[] = {
4537 { { STATE_InOCDMode
}, 'm' },
4538 { { STATE_EPC6
}, 'i' },
4539 { { STATE_PSWOE
}, 'o' },
4540 { { STATE_PSCALLINC
}, 'o' },
4541 { { STATE_PSOWB
}, 'o' },
4542 { { STATE_PSRING
}, 'o' },
4543 { { STATE_PSUM
}, 'o' },
4544 { { STATE_PSEXCM
}, 'o' },
4545 { { STATE_PSINTLEVEL
}, 'o' },
4546 { { STATE_EPS6
}, 'i' }
4549 static xtensa_arg_internal Iclass_xt_iclass_rfdd_stateArgs
[] = {
4550 { { STATE_InOCDMode
}, 'm' }
4553 static xtensa_arg_internal Iclass_xt_iclass_wsr_mmid_args
[] = {
4554 { { OPERAND_art
}, 'i' }
4557 static xtensa_arg_internal Iclass_xt_iclass_wsr_mmid_stateArgs
[] = {
4558 { { STATE_PSEXCM
}, 'i' },
4559 { { STATE_PSRING
}, 'i' },
4560 { { STATE_XTSYNC
}, 'o' }
4563 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccount_args
[] = {
4564 { { OPERAND_art
}, 'o' }
4567 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccount_stateArgs
[] = {
4568 { { STATE_PSEXCM
}, 'i' },
4569 { { STATE_PSRING
}, 'i' },
4570 { { STATE_CCOUNT
}, 'i' }
4573 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccount_args
[] = {
4574 { { OPERAND_art
}, 'i' }
4577 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccount_stateArgs
[] = {
4578 { { STATE_PSEXCM
}, 'i' },
4579 { { STATE_PSRING
}, 'i' },
4580 { { STATE_XTSYNC
}, 'o' },
4581 { { STATE_CCOUNT
}, 'o' }
4584 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccount_args
[] = {
4585 { { OPERAND_art
}, 'm' }
4588 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccount_stateArgs
[] = {
4589 { { STATE_PSEXCM
}, 'i' },
4590 { { STATE_PSRING
}, 'i' },
4591 { { STATE_XTSYNC
}, 'o' },
4592 { { STATE_CCOUNT
}, 'm' }
4595 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare0_args
[] = {
4596 { { OPERAND_art
}, 'o' }
4599 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare0_stateArgs
[] = {
4600 { { STATE_PSEXCM
}, 'i' },
4601 { { STATE_PSRING
}, 'i' },
4602 { { STATE_CCOMPARE0
}, 'i' }
4605 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare0_args
[] = {
4606 { { OPERAND_art
}, 'i' }
4609 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare0_stateArgs
[] = {
4610 { { STATE_PSEXCM
}, 'i' },
4611 { { STATE_PSRING
}, 'i' },
4612 { { STATE_CCOMPARE0
}, 'o' },
4613 { { STATE_INTERRUPT
}, 'm' }
4616 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare0_args
[] = {
4617 { { OPERAND_art
}, 'm' }
4620 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare0_stateArgs
[] = {
4621 { { STATE_PSEXCM
}, 'i' },
4622 { { STATE_PSRING
}, 'i' },
4623 { { STATE_CCOMPARE0
}, 'm' },
4624 { { STATE_INTERRUPT
}, 'm' }
4627 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare1_args
[] = {
4628 { { OPERAND_art
}, 'o' }
4631 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare1_stateArgs
[] = {
4632 { { STATE_PSEXCM
}, 'i' },
4633 { { STATE_PSRING
}, 'i' },
4634 { { STATE_CCOMPARE1
}, 'i' }
4637 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare1_args
[] = {
4638 { { OPERAND_art
}, 'i' }
4641 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare1_stateArgs
[] = {
4642 { { STATE_PSEXCM
}, 'i' },
4643 { { STATE_PSRING
}, 'i' },
4644 { { STATE_CCOMPARE1
}, 'o' },
4645 { { STATE_INTERRUPT
}, 'm' }
4648 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare1_args
[] = {
4649 { { OPERAND_art
}, 'm' }
4652 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare1_stateArgs
[] = {
4653 { { STATE_PSEXCM
}, 'i' },
4654 { { STATE_PSRING
}, 'i' },
4655 { { STATE_CCOMPARE1
}, 'm' },
4656 { { STATE_INTERRUPT
}, 'm' }
4659 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare2_args
[] = {
4660 { { OPERAND_art
}, 'o' }
4663 static xtensa_arg_internal Iclass_xt_iclass_rsr_ccompare2_stateArgs
[] = {
4664 { { STATE_PSEXCM
}, 'i' },
4665 { { STATE_PSRING
}, 'i' },
4666 { { STATE_CCOMPARE2
}, 'i' }
4669 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare2_args
[] = {
4670 { { OPERAND_art
}, 'i' }
4673 static xtensa_arg_internal Iclass_xt_iclass_wsr_ccompare2_stateArgs
[] = {
4674 { { STATE_PSEXCM
}, 'i' },
4675 { { STATE_PSRING
}, 'i' },
4676 { { STATE_CCOMPARE2
}, 'o' },
4677 { { STATE_INTERRUPT
}, 'm' }
4680 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare2_args
[] = {
4681 { { OPERAND_art
}, 'm' }
4684 static xtensa_arg_internal Iclass_xt_iclass_xsr_ccompare2_stateArgs
[] = {
4685 { { STATE_PSEXCM
}, 'i' },
4686 { { STATE_PSRING
}, 'i' },
4687 { { STATE_CCOMPARE2
}, 'm' },
4688 { { STATE_INTERRUPT
}, 'm' }
4691 static xtensa_arg_internal Iclass_xt_iclass_icache_args
[] = {
4692 { { OPERAND_ars
}, 'i' },
4693 { { OPERAND_uimm8x4
}, 'i' }
4696 static xtensa_arg_internal Iclass_xt_iclass_icache_lock_args
[] = {
4697 { { OPERAND_ars
}, 'i' },
4698 { { OPERAND_uimm4x16
}, 'i' }
4701 static xtensa_arg_internal Iclass_xt_iclass_icache_lock_stateArgs
[] = {
4702 { { STATE_PSEXCM
}, 'i' },
4703 { { STATE_PSRING
}, 'i' }
4706 static xtensa_arg_internal Iclass_xt_iclass_icache_inv_args
[] = {
4707 { { OPERAND_ars
}, 'i' },
4708 { { OPERAND_uimm8x4
}, 'i' }
4711 static xtensa_arg_internal Iclass_xt_iclass_icache_inv_stateArgs
[] = {
4712 { { STATE_PSEXCM
}, 'i' },
4713 { { STATE_PSRING
}, 'i' }
4716 static xtensa_arg_internal Iclass_xt_iclass_licx_args
[] = {
4717 { { OPERAND_art
}, 'o' },
4718 { { OPERAND_ars
}, 'i' }
4721 static xtensa_arg_internal Iclass_xt_iclass_licx_stateArgs
[] = {
4722 { { STATE_PSEXCM
}, 'i' },
4723 { { STATE_PSRING
}, 'i' }
4726 static xtensa_arg_internal Iclass_xt_iclass_sicx_args
[] = {
4727 { { OPERAND_art
}, 'i' },
4728 { { OPERAND_ars
}, 'i' }
4731 static xtensa_arg_internal Iclass_xt_iclass_sicx_stateArgs
[] = {
4732 { { STATE_PSEXCM
}, 'i' },
4733 { { STATE_PSRING
}, 'i' }
4736 static xtensa_arg_internal Iclass_xt_iclass_dcache_args
[] = {
4737 { { OPERAND_ars
}, 'i' },
4738 { { OPERAND_uimm8x4
}, 'i' }
4741 static xtensa_arg_internal Iclass_xt_iclass_dcache_ind_args
[] = {
4742 { { OPERAND_ars
}, 'i' },
4743 { { OPERAND_uimm4x16
}, 'i' }
4746 static xtensa_arg_internal Iclass_xt_iclass_dcache_ind_stateArgs
[] = {
4747 { { STATE_PSEXCM
}, 'i' },
4748 { { STATE_PSRING
}, 'i' }
4751 static xtensa_arg_internal Iclass_xt_iclass_dcache_inv_args
[] = {
4752 { { OPERAND_ars
}, 'i' },
4753 { { OPERAND_uimm8x4
}, 'i' }
4756 static xtensa_arg_internal Iclass_xt_iclass_dcache_inv_stateArgs
[] = {
4757 { { STATE_PSEXCM
}, 'i' },
4758 { { STATE_PSRING
}, 'i' }
4761 static xtensa_arg_internal Iclass_xt_iclass_dpf_args
[] = {
4762 { { OPERAND_ars
}, 'i' },
4763 { { OPERAND_uimm8x4
}, 'i' }
4766 static xtensa_arg_internal Iclass_xt_iclass_dcache_lock_args
[] = {
4767 { { OPERAND_ars
}, 'i' },
4768 { { OPERAND_uimm4x16
}, 'i' }
4771 static xtensa_arg_internal Iclass_xt_iclass_dcache_lock_stateArgs
[] = {
4772 { { STATE_PSEXCM
}, 'i' },
4773 { { STATE_PSRING
}, 'i' }
4776 static xtensa_arg_internal Iclass_xt_iclass_sdct_args
[] = {
4777 { { OPERAND_art
}, 'i' },
4778 { { OPERAND_ars
}, 'i' }
4781 static xtensa_arg_internal Iclass_xt_iclass_sdct_stateArgs
[] = {
4782 { { STATE_PSEXCM
}, 'i' },
4783 { { STATE_PSRING
}, 'i' }
4786 static xtensa_arg_internal Iclass_xt_iclass_ldct_args
[] = {
4787 { { OPERAND_art
}, 'o' },
4788 { { OPERAND_ars
}, 'i' }
4791 static xtensa_arg_internal Iclass_xt_iclass_ldct_stateArgs
[] = {
4792 { { STATE_PSEXCM
}, 'i' },
4793 { { STATE_PSRING
}, 'i' }
4796 static xtensa_arg_internal Iclass_xt_iclass_wsr_ptevaddr_args
[] = {
4797 { { OPERAND_art
}, 'i' }
4800 static xtensa_arg_internal Iclass_xt_iclass_wsr_ptevaddr_stateArgs
[] = {
4801 { { STATE_PSEXCM
}, 'i' },
4802 { { STATE_PSRING
}, 'i' },
4803 { { STATE_PTBASE
}, 'o' },
4804 { { STATE_XTSYNC
}, 'o' }
4807 static xtensa_arg_internal Iclass_xt_iclass_rsr_ptevaddr_args
[] = {
4808 { { OPERAND_art
}, 'o' }
4811 static xtensa_arg_internal Iclass_xt_iclass_rsr_ptevaddr_stateArgs
[] = {
4812 { { STATE_PSEXCM
}, 'i' },
4813 { { STATE_PSRING
}, 'i' },
4814 { { STATE_PTBASE
}, 'i' },
4815 { { STATE_EXCVADDR
}, 'i' }
4818 static xtensa_arg_internal Iclass_xt_iclass_xsr_ptevaddr_args
[] = {
4819 { { OPERAND_art
}, 'm' }
4822 static xtensa_arg_internal Iclass_xt_iclass_xsr_ptevaddr_stateArgs
[] = {
4823 { { STATE_PSEXCM
}, 'i' },
4824 { { STATE_PSRING
}, 'i' },
4825 { { STATE_PTBASE
}, 'm' },
4826 { { STATE_EXCVADDR
}, 'i' },
4827 { { STATE_XTSYNC
}, 'o' }
4830 static xtensa_arg_internal Iclass_xt_iclass_rsr_rasid_args
[] = {
4831 { { OPERAND_art
}, 'o' }
4834 static xtensa_arg_internal Iclass_xt_iclass_rsr_rasid_stateArgs
[] = {
4835 { { STATE_PSEXCM
}, 'i' },
4836 { { STATE_PSRING
}, 'i' },
4837 { { STATE_ASID3
}, 'i' },
4838 { { STATE_ASID2
}, 'i' },
4839 { { STATE_ASID1
}, 'i' }
4842 static xtensa_arg_internal Iclass_xt_iclass_wsr_rasid_args
[] = {
4843 { { OPERAND_art
}, 'i' }
4846 static xtensa_arg_internal Iclass_xt_iclass_wsr_rasid_stateArgs
[] = {
4847 { { STATE_XTSYNC
}, 'o' },
4848 { { STATE_PSEXCM
}, 'i' },
4849 { { STATE_PSRING
}, 'i' },
4850 { { STATE_ASID3
}, 'o' },
4851 { { STATE_ASID2
}, 'o' },
4852 { { STATE_ASID1
}, 'o' }
4855 static xtensa_arg_internal Iclass_xt_iclass_xsr_rasid_args
[] = {
4856 { { OPERAND_art
}, 'm' }
4859 static xtensa_arg_internal Iclass_xt_iclass_xsr_rasid_stateArgs
[] = {
4860 { { STATE_XTSYNC
}, 'o' },
4861 { { STATE_PSEXCM
}, 'i' },
4862 { { STATE_PSRING
}, 'i' },
4863 { { STATE_ASID3
}, 'm' },
4864 { { STATE_ASID2
}, 'm' },
4865 { { STATE_ASID1
}, 'm' }
4868 static xtensa_arg_internal Iclass_xt_iclass_rsr_itlbcfg_args
[] = {
4869 { { OPERAND_art
}, 'o' }
4872 static xtensa_arg_internal Iclass_xt_iclass_rsr_itlbcfg_stateArgs
[] = {
4873 { { STATE_PSEXCM
}, 'i' },
4874 { { STATE_PSRING
}, 'i' },
4875 { { STATE_INSTPGSZID4
}, 'i' }
4878 static xtensa_arg_internal Iclass_xt_iclass_wsr_itlbcfg_args
[] = {
4879 { { OPERAND_art
}, 'i' }
4882 static xtensa_arg_internal Iclass_xt_iclass_wsr_itlbcfg_stateArgs
[] = {
4883 { { STATE_XTSYNC
}, 'o' },
4884 { { STATE_PSEXCM
}, 'i' },
4885 { { STATE_PSRING
}, 'i' },
4886 { { STATE_INSTPGSZID4
}, 'o' }
4889 static xtensa_arg_internal Iclass_xt_iclass_xsr_itlbcfg_args
[] = {
4890 { { OPERAND_art
}, 'm' }
4893 static xtensa_arg_internal Iclass_xt_iclass_xsr_itlbcfg_stateArgs
[] = {
4894 { { STATE_XTSYNC
}, 'o' },
4895 { { STATE_PSEXCM
}, 'i' },
4896 { { STATE_PSRING
}, 'i' },
4897 { { STATE_INSTPGSZID4
}, 'm' }
4900 static xtensa_arg_internal Iclass_xt_iclass_rsr_dtlbcfg_args
[] = {
4901 { { OPERAND_art
}, 'o' }
4904 static xtensa_arg_internal Iclass_xt_iclass_rsr_dtlbcfg_stateArgs
[] = {
4905 { { STATE_PSEXCM
}, 'i' },
4906 { { STATE_PSRING
}, 'i' },
4907 { { STATE_DATAPGSZID4
}, 'i' }
4910 static xtensa_arg_internal Iclass_xt_iclass_wsr_dtlbcfg_args
[] = {
4911 { { OPERAND_art
}, 'i' }
4914 static xtensa_arg_internal Iclass_xt_iclass_wsr_dtlbcfg_stateArgs
[] = {
4915 { { STATE_XTSYNC
}, 'o' },
4916 { { STATE_PSEXCM
}, 'i' },
4917 { { STATE_PSRING
}, 'i' },
4918 { { STATE_DATAPGSZID4
}, 'o' }
4921 static xtensa_arg_internal Iclass_xt_iclass_xsr_dtlbcfg_args
[] = {
4922 { { OPERAND_art
}, 'm' }
4925 static xtensa_arg_internal Iclass_xt_iclass_xsr_dtlbcfg_stateArgs
[] = {
4926 { { STATE_XTSYNC
}, 'o' },
4927 { { STATE_PSEXCM
}, 'i' },
4928 { { STATE_PSRING
}, 'i' },
4929 { { STATE_DATAPGSZID4
}, 'm' }
4932 static xtensa_arg_internal Iclass_xt_iclass_idtlb_args
[] = {
4933 { { OPERAND_ars
}, 'i' }
4936 static xtensa_arg_internal Iclass_xt_iclass_idtlb_stateArgs
[] = {
4937 { { STATE_PSEXCM
}, 'i' },
4938 { { STATE_PSRING
}, 'i' },
4939 { { STATE_XTSYNC
}, 'o' }
4942 static xtensa_arg_internal Iclass_xt_iclass_rdtlb_args
[] = {
4943 { { OPERAND_art
}, 'o' },
4944 { { OPERAND_ars
}, 'i' }
4947 static xtensa_arg_internal Iclass_xt_iclass_rdtlb_stateArgs
[] = {
4948 { { STATE_PSEXCM
}, 'i' },
4949 { { STATE_PSRING
}, 'i' }
4952 static xtensa_arg_internal Iclass_xt_iclass_wdtlb_args
[] = {
4953 { { OPERAND_art
}, 'i' },
4954 { { OPERAND_ars
}, 'i' }
4957 static xtensa_arg_internal Iclass_xt_iclass_wdtlb_stateArgs
[] = {
4958 { { STATE_PSEXCM
}, 'i' },
4959 { { STATE_PSRING
}, 'i' },
4960 { { STATE_XTSYNC
}, 'o' }
4963 static xtensa_arg_internal Iclass_xt_iclass_iitlb_args
[] = {
4964 { { OPERAND_ars
}, 'i' }
4967 static xtensa_arg_internal Iclass_xt_iclass_iitlb_stateArgs
[] = {
4968 { { STATE_PSEXCM
}, 'i' },
4969 { { STATE_PSRING
}, 'i' }
4972 static xtensa_arg_internal Iclass_xt_iclass_ritlb_args
[] = {
4973 { { OPERAND_art
}, 'o' },
4974 { { OPERAND_ars
}, 'i' }
4977 static xtensa_arg_internal Iclass_xt_iclass_ritlb_stateArgs
[] = {
4978 { { STATE_PSEXCM
}, 'i' },
4979 { { STATE_PSRING
}, 'i' }
4982 static xtensa_arg_internal Iclass_xt_iclass_witlb_args
[] = {
4983 { { OPERAND_art
}, 'i' },
4984 { { OPERAND_ars
}, 'i' }
4987 static xtensa_arg_internal Iclass_xt_iclass_witlb_stateArgs
[] = {
4988 { { STATE_PSEXCM
}, 'i' },
4989 { { STATE_PSRING
}, 'i' }
4992 static xtensa_arg_internal Iclass_xt_iclass_ldpte_stateArgs
[] = {
4993 { { STATE_PTBASE
}, 'i' },
4994 { { STATE_EXCVADDR
}, 'i' }
4997 static xtensa_arg_internal Iclass_xt_iclass_hwwitlba_stateArgs
[] = {
4998 { { STATE_EXCVADDR
}, 'i' }
5001 static xtensa_arg_internal Iclass_xt_iclass_hwwdtlba_stateArgs
[] = {
5002 { { STATE_EXCVADDR
}, 'i' }
5005 static xtensa_arg_internal Iclass_xt_iclass_rsr_cpenable_args
[] = {
5006 { { OPERAND_art
}, 'o' }
5009 static xtensa_arg_internal Iclass_xt_iclass_rsr_cpenable_stateArgs
[] = {
5010 { { STATE_PSEXCM
}, 'i' },
5011 { { STATE_PSRING
}, 'i' },
5012 { { STATE_CPENABLE
}, 'i' }
5015 static xtensa_arg_internal Iclass_xt_iclass_wsr_cpenable_args
[] = {
5016 { { OPERAND_art
}, 'i' }
5019 static xtensa_arg_internal Iclass_xt_iclass_wsr_cpenable_stateArgs
[] = {
5020 { { STATE_PSEXCM
}, 'i' },
5021 { { STATE_PSRING
}, 'i' },
5022 { { STATE_CPENABLE
}, 'o' }
5025 static xtensa_arg_internal Iclass_xt_iclass_xsr_cpenable_args
[] = {
5026 { { OPERAND_art
}, 'm' }
5029 static xtensa_arg_internal Iclass_xt_iclass_xsr_cpenable_stateArgs
[] = {
5030 { { STATE_PSEXCM
}, 'i' },
5031 { { STATE_PSRING
}, 'i' },
5032 { { STATE_CPENABLE
}, 'm' }
5035 static xtensa_arg_internal Iclass_xt_iclass_clamp_args
[] = {
5036 { { OPERAND_arr
}, 'o' },
5037 { { OPERAND_ars
}, 'i' },
5038 { { OPERAND_tp7
}, 'i' }
5041 static xtensa_arg_internal Iclass_xt_iclass_minmax_args
[] = {
5042 { { OPERAND_arr
}, 'o' },
5043 { { OPERAND_ars
}, 'i' },
5044 { { OPERAND_art
}, 'i' }
5047 static xtensa_arg_internal Iclass_xt_iclass_nsa_args
[] = {
5048 { { OPERAND_art
}, 'o' },
5049 { { OPERAND_ars
}, 'i' }
5052 static xtensa_arg_internal Iclass_xt_iclass_sx_args
[] = {
5053 { { OPERAND_arr
}, 'o' },
5054 { { OPERAND_ars
}, 'i' },
5055 { { OPERAND_tp7
}, 'i' }
5058 static xtensa_arg_internal Iclass_xt_iclass_l32ai_args
[] = {
5059 { { OPERAND_art
}, 'o' },
5060 { { OPERAND_ars
}, 'i' },
5061 { { OPERAND_uimm8x4
}, 'i' }
5064 static xtensa_arg_internal Iclass_xt_iclass_s32ri_args
[] = {
5065 { { OPERAND_art
}, 'i' },
5066 { { OPERAND_ars
}, 'i' },
5067 { { OPERAND_uimm8x4
}, 'i' }
5070 static xtensa_arg_internal Iclass_xt_iclass_s32c1i_args
[] = {
5071 { { OPERAND_art
}, 'm' },
5072 { { OPERAND_ars
}, 'i' },
5073 { { OPERAND_uimm8x4
}, 'i' }
5076 static xtensa_arg_internal Iclass_xt_iclass_s32c1i_stateArgs
[] = {
5077 { { STATE_SCOMPARE1
}, 'i' },
5078 { { STATE_SCOMPARE1
}, 'i' }
5081 static xtensa_arg_internal Iclass_xt_iclass_rsr_scompare1_args
[] = {
5082 { { OPERAND_art
}, 'o' }
5085 static xtensa_arg_internal Iclass_xt_iclass_rsr_scompare1_stateArgs
[] = {
5086 { { STATE_SCOMPARE1
}, 'i' }
5089 static xtensa_arg_internal Iclass_xt_iclass_wsr_scompare1_args
[] = {
5090 { { OPERAND_art
}, 'i' }
5093 static xtensa_arg_internal Iclass_xt_iclass_wsr_scompare1_stateArgs
[] = {
5094 { { STATE_SCOMPARE1
}, 'o' }
5097 static xtensa_arg_internal Iclass_xt_iclass_xsr_scompare1_args
[] = {
5098 { { OPERAND_art
}, 'm' }
5101 static xtensa_arg_internal Iclass_xt_iclass_xsr_scompare1_stateArgs
[] = {
5102 { { STATE_SCOMPARE1
}, 'm' }
5105 static xtensa_arg_internal Iclass_xt_iclass_div_args
[] = {
5106 { { OPERAND_arr
}, 'o' },
5107 { { OPERAND_ars
}, 'i' },
5108 { { OPERAND_art
}, 'i' }
5111 static xtensa_arg_internal Iclass_xt_mul32_args
[] = {
5112 { { OPERAND_arr
}, 'o' },
5113 { { OPERAND_ars
}, 'i' },
5114 { { OPERAND_art
}, 'i' }
5117 static xtensa_iclass_internal iclasses
[] = {
5118 { 0, 0 /* xt_iclass_excw */,
5120 { 0, 0 /* xt_iclass_rfe */,
5121 3, Iclass_xt_iclass_rfe_stateArgs
, 0, 0 },
5122 { 0, 0 /* xt_iclass_rfde */,
5123 3, Iclass_xt_iclass_rfde_stateArgs
, 0, 0 },
5124 { 0, 0 /* xt_iclass_syscall */,
5126 { 0, 0 /* xt_iclass_simcall */,
5128 { 2, Iclass_xt_iclass_call12_args
,
5129 1, Iclass_xt_iclass_call12_stateArgs
, 0, 0 },
5130 { 2, Iclass_xt_iclass_call8_args
,
5131 1, Iclass_xt_iclass_call8_stateArgs
, 0, 0 },
5132 { 2, Iclass_xt_iclass_call4_args
,
5133 1, Iclass_xt_iclass_call4_stateArgs
, 0, 0 },
5134 { 2, Iclass_xt_iclass_callx12_args
,
5135 1, Iclass_xt_iclass_callx12_stateArgs
, 0, 0 },
5136 { 2, Iclass_xt_iclass_callx8_args
,
5137 1, Iclass_xt_iclass_callx8_stateArgs
, 0, 0 },
5138 { 2, Iclass_xt_iclass_callx4_args
,
5139 1, Iclass_xt_iclass_callx4_stateArgs
, 0, 0 },
5140 { 3, Iclass_xt_iclass_entry_args
,
5141 5, Iclass_xt_iclass_entry_stateArgs
, 0, 0 },
5142 { 2, Iclass_xt_iclass_movsp_args
,
5143 2, Iclass_xt_iclass_movsp_stateArgs
, 0, 0 },
5144 { 1, Iclass_xt_iclass_rotw_args
,
5145 3, Iclass_xt_iclass_rotw_stateArgs
, 0, 0 },
5146 { 1, Iclass_xt_iclass_retw_args
,
5147 4, Iclass_xt_iclass_retw_stateArgs
, 0, 0 },
5148 { 0, 0 /* xt_iclass_rfwou */,
5149 6, Iclass_xt_iclass_rfwou_stateArgs
, 0, 0 },
5150 { 3, Iclass_xt_iclass_l32e_args
,
5151 2, Iclass_xt_iclass_l32e_stateArgs
, 0, 0 },
5152 { 3, Iclass_xt_iclass_s32e_args
,
5153 2, Iclass_xt_iclass_s32e_stateArgs
, 0, 0 },
5154 { 1, Iclass_xt_iclass_rsr_windowbase_args
,
5155 3, Iclass_xt_iclass_rsr_windowbase_stateArgs
, 0, 0 },
5156 { 1, Iclass_xt_iclass_wsr_windowbase_args
,
5157 3, Iclass_xt_iclass_wsr_windowbase_stateArgs
, 0, 0 },
5158 { 1, Iclass_xt_iclass_xsr_windowbase_args
,
5159 3, Iclass_xt_iclass_xsr_windowbase_stateArgs
, 0, 0 },
5160 { 1, Iclass_xt_iclass_rsr_windowstart_args
,
5161 3, Iclass_xt_iclass_rsr_windowstart_stateArgs
, 0, 0 },
5162 { 1, Iclass_xt_iclass_wsr_windowstart_args
,
5163 3, Iclass_xt_iclass_wsr_windowstart_stateArgs
, 0, 0 },
5164 { 1, Iclass_xt_iclass_xsr_windowstart_args
,
5165 3, Iclass_xt_iclass_xsr_windowstart_stateArgs
, 0, 0 },
5166 { 3, Iclass_xt_iclass_add_n_args
,
5168 { 3, Iclass_xt_iclass_addi_n_args
,
5170 { 2, Iclass_xt_iclass_bz6_args
,
5172 { 0, 0 /* xt_iclass_ill_n */,
5174 { 3, Iclass_xt_iclass_loadi4_args
,
5176 { 2, Iclass_xt_iclass_mov_n_args
,
5178 { 2, Iclass_xt_iclass_movi_n_args
,
5180 { 0, 0 /* xt_iclass_nopn */,
5182 { 1, Iclass_xt_iclass_retn_args
,
5184 { 3, Iclass_xt_iclass_storei4_args
,
5186 { 1, Iclass_rur_threadptr_args
,
5187 1, Iclass_rur_threadptr_stateArgs
, 0, 0 },
5188 { 1, Iclass_wur_threadptr_args
,
5189 1, Iclass_wur_threadptr_stateArgs
, 0, 0 },
5190 { 3, Iclass_xt_iclass_addi_args
,
5192 { 3, Iclass_xt_iclass_addmi_args
,
5194 { 3, Iclass_xt_iclass_addsub_args
,
5196 { 3, Iclass_xt_iclass_bit_args
,
5198 { 3, Iclass_xt_iclass_bsi8_args
,
5200 { 3, Iclass_xt_iclass_bsi8b_args
,
5202 { 3, Iclass_xt_iclass_bsi8u_args
,
5204 { 3, Iclass_xt_iclass_bst8_args
,
5206 { 2, Iclass_xt_iclass_bsz12_args
,
5208 { 2, Iclass_xt_iclass_call0_args
,
5210 { 2, Iclass_xt_iclass_callx0_args
,
5212 { 4, Iclass_xt_iclass_exti_args
,
5214 { 0, 0 /* xt_iclass_ill */,
5216 { 1, Iclass_xt_iclass_jump_args
,
5218 { 1, Iclass_xt_iclass_jumpx_args
,
5220 { 3, Iclass_xt_iclass_l16ui_args
,
5222 { 3, Iclass_xt_iclass_l16si_args
,
5224 { 3, Iclass_xt_iclass_l32i_args
,
5226 { 2, Iclass_xt_iclass_l32r_args
,
5227 2, Iclass_xt_iclass_l32r_stateArgs
, 0, 0 },
5228 { 3, Iclass_xt_iclass_l8i_args
,
5230 { 2, Iclass_xt_iclass_loop_args
,
5231 3, Iclass_xt_iclass_loop_stateArgs
, 0, 0 },
5232 { 2, Iclass_xt_iclass_loopz_args
,
5233 3, Iclass_xt_iclass_loopz_stateArgs
, 0, 0 },
5234 { 2, Iclass_xt_iclass_movi_args
,
5236 { 3, Iclass_xt_iclass_movz_args
,
5238 { 2, Iclass_xt_iclass_neg_args
,
5240 { 0, 0 /* xt_iclass_nop */,
5242 { 1, Iclass_xt_iclass_return_args
,
5244 { 3, Iclass_xt_iclass_s16i_args
,
5246 { 3, Iclass_xt_iclass_s32i_args
,
5248 { 3, Iclass_xt_iclass_s8i_args
,
5250 { 1, Iclass_xt_iclass_sar_args
,
5251 1, Iclass_xt_iclass_sar_stateArgs
, 0, 0 },
5252 { 1, Iclass_xt_iclass_sari_args
,
5253 1, Iclass_xt_iclass_sari_stateArgs
, 0, 0 },
5254 { 2, Iclass_xt_iclass_shifts_args
,
5255 1, Iclass_xt_iclass_shifts_stateArgs
, 0, 0 },
5256 { 3, Iclass_xt_iclass_shiftst_args
,
5257 1, Iclass_xt_iclass_shiftst_stateArgs
, 0, 0 },
5258 { 2, Iclass_xt_iclass_shiftt_args
,
5259 1, Iclass_xt_iclass_shiftt_stateArgs
, 0, 0 },
5260 { 3, Iclass_xt_iclass_slli_args
,
5262 { 3, Iclass_xt_iclass_srai_args
,
5264 { 3, Iclass_xt_iclass_srli_args
,
5266 { 0, 0 /* xt_iclass_memw */,
5268 { 0, 0 /* xt_iclass_extw */,
5270 { 0, 0 /* xt_iclass_isync */,
5272 { 0, 0 /* xt_iclass_sync */,
5273 1, Iclass_xt_iclass_sync_stateArgs
, 0, 0 },
5274 { 2, Iclass_xt_iclass_rsil_args
,
5275 7, Iclass_xt_iclass_rsil_stateArgs
, 0, 0 },
5276 { 1, Iclass_xt_iclass_rsr_lend_args
,
5277 1, Iclass_xt_iclass_rsr_lend_stateArgs
, 0, 0 },
5278 { 1, Iclass_xt_iclass_wsr_lend_args
,
5279 1, Iclass_xt_iclass_wsr_lend_stateArgs
, 0, 0 },
5280 { 1, Iclass_xt_iclass_xsr_lend_args
,
5281 1, Iclass_xt_iclass_xsr_lend_stateArgs
, 0, 0 },
5282 { 1, Iclass_xt_iclass_rsr_lcount_args
,
5283 1, Iclass_xt_iclass_rsr_lcount_stateArgs
, 0, 0 },
5284 { 1, Iclass_xt_iclass_wsr_lcount_args
,
5285 2, Iclass_xt_iclass_wsr_lcount_stateArgs
, 0, 0 },
5286 { 1, Iclass_xt_iclass_xsr_lcount_args
,
5287 2, Iclass_xt_iclass_xsr_lcount_stateArgs
, 0, 0 },
5288 { 1, Iclass_xt_iclass_rsr_lbeg_args
,
5289 1, Iclass_xt_iclass_rsr_lbeg_stateArgs
, 0, 0 },
5290 { 1, Iclass_xt_iclass_wsr_lbeg_args
,
5291 1, Iclass_xt_iclass_wsr_lbeg_stateArgs
, 0, 0 },
5292 { 1, Iclass_xt_iclass_xsr_lbeg_args
,
5293 1, Iclass_xt_iclass_xsr_lbeg_stateArgs
, 0, 0 },
5294 { 1, Iclass_xt_iclass_rsr_sar_args
,
5295 1, Iclass_xt_iclass_rsr_sar_stateArgs
, 0, 0 },
5296 { 1, Iclass_xt_iclass_wsr_sar_args
,
5297 2, Iclass_xt_iclass_wsr_sar_stateArgs
, 0, 0 },
5298 { 1, Iclass_xt_iclass_xsr_sar_args
,
5299 1, Iclass_xt_iclass_xsr_sar_stateArgs
, 0, 0 },
5300 { 1, Iclass_xt_iclass_rsr_litbase_args
,
5301 2, Iclass_xt_iclass_rsr_litbase_stateArgs
, 0, 0 },
5302 { 1, Iclass_xt_iclass_wsr_litbase_args
,
5303 2, Iclass_xt_iclass_wsr_litbase_stateArgs
, 0, 0 },
5304 { 1, Iclass_xt_iclass_xsr_litbase_args
,
5305 2, Iclass_xt_iclass_xsr_litbase_stateArgs
, 0, 0 },
5306 { 1, Iclass_xt_iclass_rsr_176_args
,
5307 2, Iclass_xt_iclass_rsr_176_stateArgs
, 0, 0 },
5308 { 1, Iclass_xt_iclass_wsr_176_args
,
5309 2, Iclass_xt_iclass_wsr_176_stateArgs
, 0, 0 },
5310 { 1, Iclass_xt_iclass_rsr_208_args
,
5311 2, Iclass_xt_iclass_rsr_208_stateArgs
, 0, 0 },
5312 { 1, Iclass_xt_iclass_rsr_ps_args
,
5313 7, Iclass_xt_iclass_rsr_ps_stateArgs
, 0, 0 },
5314 { 1, Iclass_xt_iclass_wsr_ps_args
,
5315 7, Iclass_xt_iclass_wsr_ps_stateArgs
, 0, 0 },
5316 { 1, Iclass_xt_iclass_xsr_ps_args
,
5317 7, Iclass_xt_iclass_xsr_ps_stateArgs
, 0, 0 },
5318 { 1, Iclass_xt_iclass_rsr_epc1_args
,
5319 3, Iclass_xt_iclass_rsr_epc1_stateArgs
, 0, 0 },
5320 { 1, Iclass_xt_iclass_wsr_epc1_args
,
5321 3, Iclass_xt_iclass_wsr_epc1_stateArgs
, 0, 0 },
5322 { 1, Iclass_xt_iclass_xsr_epc1_args
,
5323 3, Iclass_xt_iclass_xsr_epc1_stateArgs
, 0, 0 },
5324 { 1, Iclass_xt_iclass_rsr_excsave1_args
,
5325 3, Iclass_xt_iclass_rsr_excsave1_stateArgs
, 0, 0 },
5326 { 1, Iclass_xt_iclass_wsr_excsave1_args
,
5327 3, Iclass_xt_iclass_wsr_excsave1_stateArgs
, 0, 0 },
5328 { 1, Iclass_xt_iclass_xsr_excsave1_args
,
5329 3, Iclass_xt_iclass_xsr_excsave1_stateArgs
, 0, 0 },
5330 { 1, Iclass_xt_iclass_rsr_epc2_args
,
5331 3, Iclass_xt_iclass_rsr_epc2_stateArgs
, 0, 0 },
5332 { 1, Iclass_xt_iclass_wsr_epc2_args
,
5333 3, Iclass_xt_iclass_wsr_epc2_stateArgs
, 0, 0 },
5334 { 1, Iclass_xt_iclass_xsr_epc2_args
,
5335 3, Iclass_xt_iclass_xsr_epc2_stateArgs
, 0, 0 },
5336 { 1, Iclass_xt_iclass_rsr_excsave2_args
,
5337 3, Iclass_xt_iclass_rsr_excsave2_stateArgs
, 0, 0 },
5338 { 1, Iclass_xt_iclass_wsr_excsave2_args
,
5339 3, Iclass_xt_iclass_wsr_excsave2_stateArgs
, 0, 0 },
5340 { 1, Iclass_xt_iclass_xsr_excsave2_args
,
5341 3, Iclass_xt_iclass_xsr_excsave2_stateArgs
, 0, 0 },
5342 { 1, Iclass_xt_iclass_rsr_epc3_args
,
5343 3, Iclass_xt_iclass_rsr_epc3_stateArgs
, 0, 0 },
5344 { 1, Iclass_xt_iclass_wsr_epc3_args
,
5345 3, Iclass_xt_iclass_wsr_epc3_stateArgs
, 0, 0 },
5346 { 1, Iclass_xt_iclass_xsr_epc3_args
,
5347 3, Iclass_xt_iclass_xsr_epc3_stateArgs
, 0, 0 },
5348 { 1, Iclass_xt_iclass_rsr_excsave3_args
,
5349 3, Iclass_xt_iclass_rsr_excsave3_stateArgs
, 0, 0 },
5350 { 1, Iclass_xt_iclass_wsr_excsave3_args
,
5351 3, Iclass_xt_iclass_wsr_excsave3_stateArgs
, 0, 0 },
5352 { 1, Iclass_xt_iclass_xsr_excsave3_args
,
5353 3, Iclass_xt_iclass_xsr_excsave3_stateArgs
, 0, 0 },
5354 { 1, Iclass_xt_iclass_rsr_epc4_args
,
5355 3, Iclass_xt_iclass_rsr_epc4_stateArgs
, 0, 0 },
5356 { 1, Iclass_xt_iclass_wsr_epc4_args
,
5357 3, Iclass_xt_iclass_wsr_epc4_stateArgs
, 0, 0 },
5358 { 1, Iclass_xt_iclass_xsr_epc4_args
,
5359 3, Iclass_xt_iclass_xsr_epc4_stateArgs
, 0, 0 },
5360 { 1, Iclass_xt_iclass_rsr_excsave4_args
,
5361 3, Iclass_xt_iclass_rsr_excsave4_stateArgs
, 0, 0 },
5362 { 1, Iclass_xt_iclass_wsr_excsave4_args
,
5363 3, Iclass_xt_iclass_wsr_excsave4_stateArgs
, 0, 0 },
5364 { 1, Iclass_xt_iclass_xsr_excsave4_args
,
5365 3, Iclass_xt_iclass_xsr_excsave4_stateArgs
, 0, 0 },
5366 { 1, Iclass_xt_iclass_rsr_epc5_args
,
5367 3, Iclass_xt_iclass_rsr_epc5_stateArgs
, 0, 0 },
5368 { 1, Iclass_xt_iclass_wsr_epc5_args
,
5369 3, Iclass_xt_iclass_wsr_epc5_stateArgs
, 0, 0 },
5370 { 1, Iclass_xt_iclass_xsr_epc5_args
,
5371 3, Iclass_xt_iclass_xsr_epc5_stateArgs
, 0, 0 },
5372 { 1, Iclass_xt_iclass_rsr_excsave5_args
,
5373 3, Iclass_xt_iclass_rsr_excsave5_stateArgs
, 0, 0 },
5374 { 1, Iclass_xt_iclass_wsr_excsave5_args
,
5375 3, Iclass_xt_iclass_wsr_excsave5_stateArgs
, 0, 0 },
5376 { 1, Iclass_xt_iclass_xsr_excsave5_args
,
5377 3, Iclass_xt_iclass_xsr_excsave5_stateArgs
, 0, 0 },
5378 { 1, Iclass_xt_iclass_rsr_epc6_args
,
5379 3, Iclass_xt_iclass_rsr_epc6_stateArgs
, 0, 0 },
5380 { 1, Iclass_xt_iclass_wsr_epc6_args
,
5381 3, Iclass_xt_iclass_wsr_epc6_stateArgs
, 0, 0 },
5382 { 1, Iclass_xt_iclass_xsr_epc6_args
,
5383 3, Iclass_xt_iclass_xsr_epc6_stateArgs
, 0, 0 },
5384 { 1, Iclass_xt_iclass_rsr_excsave6_args
,
5385 3, Iclass_xt_iclass_rsr_excsave6_stateArgs
, 0, 0 },
5386 { 1, Iclass_xt_iclass_wsr_excsave6_args
,
5387 3, Iclass_xt_iclass_wsr_excsave6_stateArgs
, 0, 0 },
5388 { 1, Iclass_xt_iclass_xsr_excsave6_args
,
5389 3, Iclass_xt_iclass_xsr_excsave6_stateArgs
, 0, 0 },
5390 { 1, Iclass_xt_iclass_rsr_epc7_args
,
5391 3, Iclass_xt_iclass_rsr_epc7_stateArgs
, 0, 0 },
5392 { 1, Iclass_xt_iclass_wsr_epc7_args
,
5393 3, Iclass_xt_iclass_wsr_epc7_stateArgs
, 0, 0 },
5394 { 1, Iclass_xt_iclass_xsr_epc7_args
,
5395 3, Iclass_xt_iclass_xsr_epc7_stateArgs
, 0, 0 },
5396 { 1, Iclass_xt_iclass_rsr_excsave7_args
,
5397 3, Iclass_xt_iclass_rsr_excsave7_stateArgs
, 0, 0 },
5398 { 1, Iclass_xt_iclass_wsr_excsave7_args
,
5399 3, Iclass_xt_iclass_wsr_excsave7_stateArgs
, 0, 0 },
5400 { 1, Iclass_xt_iclass_xsr_excsave7_args
,
5401 3, Iclass_xt_iclass_xsr_excsave7_stateArgs
, 0, 0 },
5402 { 1, Iclass_xt_iclass_rsr_eps2_args
,
5403 3, Iclass_xt_iclass_rsr_eps2_stateArgs
, 0, 0 },
5404 { 1, Iclass_xt_iclass_wsr_eps2_args
,
5405 3, Iclass_xt_iclass_wsr_eps2_stateArgs
, 0, 0 },
5406 { 1, Iclass_xt_iclass_xsr_eps2_args
,
5407 3, Iclass_xt_iclass_xsr_eps2_stateArgs
, 0, 0 },
5408 { 1, Iclass_xt_iclass_rsr_eps3_args
,
5409 3, Iclass_xt_iclass_rsr_eps3_stateArgs
, 0, 0 },
5410 { 1, Iclass_xt_iclass_wsr_eps3_args
,
5411 3, Iclass_xt_iclass_wsr_eps3_stateArgs
, 0, 0 },
5412 { 1, Iclass_xt_iclass_xsr_eps3_args
,
5413 3, Iclass_xt_iclass_xsr_eps3_stateArgs
, 0, 0 },
5414 { 1, Iclass_xt_iclass_rsr_eps4_args
,
5415 3, Iclass_xt_iclass_rsr_eps4_stateArgs
, 0, 0 },
5416 { 1, Iclass_xt_iclass_wsr_eps4_args
,
5417 3, Iclass_xt_iclass_wsr_eps4_stateArgs
, 0, 0 },
5418 { 1, Iclass_xt_iclass_xsr_eps4_args
,
5419 3, Iclass_xt_iclass_xsr_eps4_stateArgs
, 0, 0 },
5420 { 1, Iclass_xt_iclass_rsr_eps5_args
,
5421 3, Iclass_xt_iclass_rsr_eps5_stateArgs
, 0, 0 },
5422 { 1, Iclass_xt_iclass_wsr_eps5_args
,
5423 3, Iclass_xt_iclass_wsr_eps5_stateArgs
, 0, 0 },
5424 { 1, Iclass_xt_iclass_xsr_eps5_args
,
5425 3, Iclass_xt_iclass_xsr_eps5_stateArgs
, 0, 0 },
5426 { 1, Iclass_xt_iclass_rsr_eps6_args
,
5427 3, Iclass_xt_iclass_rsr_eps6_stateArgs
, 0, 0 },
5428 { 1, Iclass_xt_iclass_wsr_eps6_args
,
5429 3, Iclass_xt_iclass_wsr_eps6_stateArgs
, 0, 0 },
5430 { 1, Iclass_xt_iclass_xsr_eps6_args
,
5431 3, Iclass_xt_iclass_xsr_eps6_stateArgs
, 0, 0 },
5432 { 1, Iclass_xt_iclass_rsr_eps7_args
,
5433 3, Iclass_xt_iclass_rsr_eps7_stateArgs
, 0, 0 },
5434 { 1, Iclass_xt_iclass_wsr_eps7_args
,
5435 3, Iclass_xt_iclass_wsr_eps7_stateArgs
, 0, 0 },
5436 { 1, Iclass_xt_iclass_xsr_eps7_args
,
5437 3, Iclass_xt_iclass_xsr_eps7_stateArgs
, 0, 0 },
5438 { 1, Iclass_xt_iclass_rsr_excvaddr_args
,
5439 3, Iclass_xt_iclass_rsr_excvaddr_stateArgs
, 0, 0 },
5440 { 1, Iclass_xt_iclass_wsr_excvaddr_args
,
5441 3, Iclass_xt_iclass_wsr_excvaddr_stateArgs
, 0, 0 },
5442 { 1, Iclass_xt_iclass_xsr_excvaddr_args
,
5443 3, Iclass_xt_iclass_xsr_excvaddr_stateArgs
, 0, 0 },
5444 { 1, Iclass_xt_iclass_rsr_depc_args
,
5445 3, Iclass_xt_iclass_rsr_depc_stateArgs
, 0, 0 },
5446 { 1, Iclass_xt_iclass_wsr_depc_args
,
5447 3, Iclass_xt_iclass_wsr_depc_stateArgs
, 0, 0 },
5448 { 1, Iclass_xt_iclass_xsr_depc_args
,
5449 3, Iclass_xt_iclass_xsr_depc_stateArgs
, 0, 0 },
5450 { 1, Iclass_xt_iclass_rsr_exccause_args
,
5451 4, Iclass_xt_iclass_rsr_exccause_stateArgs
, 0, 0 },
5452 { 1, Iclass_xt_iclass_wsr_exccause_args
,
5453 3, Iclass_xt_iclass_wsr_exccause_stateArgs
, 0, 0 },
5454 { 1, Iclass_xt_iclass_xsr_exccause_args
,
5455 3, Iclass_xt_iclass_xsr_exccause_stateArgs
, 0, 0 },
5456 { 1, Iclass_xt_iclass_rsr_misc0_args
,
5457 3, Iclass_xt_iclass_rsr_misc0_stateArgs
, 0, 0 },
5458 { 1, Iclass_xt_iclass_wsr_misc0_args
,
5459 3, Iclass_xt_iclass_wsr_misc0_stateArgs
, 0, 0 },
5460 { 1, Iclass_xt_iclass_xsr_misc0_args
,
5461 3, Iclass_xt_iclass_xsr_misc0_stateArgs
, 0, 0 },
5462 { 1, Iclass_xt_iclass_rsr_misc1_args
,
5463 3, Iclass_xt_iclass_rsr_misc1_stateArgs
, 0, 0 },
5464 { 1, Iclass_xt_iclass_wsr_misc1_args
,
5465 3, Iclass_xt_iclass_wsr_misc1_stateArgs
, 0, 0 },
5466 { 1, Iclass_xt_iclass_xsr_misc1_args
,
5467 3, Iclass_xt_iclass_xsr_misc1_stateArgs
, 0, 0 },
5468 { 1, Iclass_xt_iclass_rsr_prid_args
,
5469 2, Iclass_xt_iclass_rsr_prid_stateArgs
, 0, 0 },
5470 { 1, Iclass_xt_iclass_rsr_vecbase_args
,
5471 3, Iclass_xt_iclass_rsr_vecbase_stateArgs
, 0, 0 },
5472 { 1, Iclass_xt_iclass_wsr_vecbase_args
,
5473 3, Iclass_xt_iclass_wsr_vecbase_stateArgs
, 0, 0 },
5474 { 1, Iclass_xt_iclass_xsr_vecbase_args
,
5475 3, Iclass_xt_iclass_xsr_vecbase_stateArgs
, 0, 0 },
5476 { 3, Iclass_xt_iclass_mul16_args
,
5478 { 1, Iclass_xt_iclass_rfi_args
,
5479 21, Iclass_xt_iclass_rfi_stateArgs
, 0, 0 },
5480 { 1, Iclass_xt_iclass_wait_args
,
5481 3, Iclass_xt_iclass_wait_stateArgs
, 0, 0 },
5482 { 1, Iclass_xt_iclass_rsr_interrupt_args
,
5483 3, Iclass_xt_iclass_rsr_interrupt_stateArgs
, 0, 0 },
5484 { 1, Iclass_xt_iclass_wsr_intset_args
,
5485 4, Iclass_xt_iclass_wsr_intset_stateArgs
, 0, 0 },
5486 { 1, Iclass_xt_iclass_wsr_intclear_args
,
5487 4, Iclass_xt_iclass_wsr_intclear_stateArgs
, 0, 0 },
5488 { 1, Iclass_xt_iclass_rsr_intenable_args
,
5489 3, Iclass_xt_iclass_rsr_intenable_stateArgs
, 0, 0 },
5490 { 1, Iclass_xt_iclass_wsr_intenable_args
,
5491 3, Iclass_xt_iclass_wsr_intenable_stateArgs
, 0, 0 },
5492 { 1, Iclass_xt_iclass_xsr_intenable_args
,
5493 3, Iclass_xt_iclass_xsr_intenable_stateArgs
, 0, 0 },
5494 { 2, Iclass_xt_iclass_break_args
,
5495 2, Iclass_xt_iclass_break_stateArgs
, 0, 0 },
5496 { 1, Iclass_xt_iclass_break_n_args
,
5497 2, Iclass_xt_iclass_break_n_stateArgs
, 0, 0 },
5498 { 1, Iclass_xt_iclass_rsr_dbreaka0_args
,
5499 3, Iclass_xt_iclass_rsr_dbreaka0_stateArgs
, 0, 0 },
5500 { 1, Iclass_xt_iclass_wsr_dbreaka0_args
,
5501 4, Iclass_xt_iclass_wsr_dbreaka0_stateArgs
, 0, 0 },
5502 { 1, Iclass_xt_iclass_xsr_dbreaka0_args
,
5503 4, Iclass_xt_iclass_xsr_dbreaka0_stateArgs
, 0, 0 },
5504 { 1, Iclass_xt_iclass_rsr_dbreakc0_args
,
5505 3, Iclass_xt_iclass_rsr_dbreakc0_stateArgs
, 0, 0 },
5506 { 1, Iclass_xt_iclass_wsr_dbreakc0_args
,
5507 4, Iclass_xt_iclass_wsr_dbreakc0_stateArgs
, 0, 0 },
5508 { 1, Iclass_xt_iclass_xsr_dbreakc0_args
,
5509 4, Iclass_xt_iclass_xsr_dbreakc0_stateArgs
, 0, 0 },
5510 { 1, Iclass_xt_iclass_rsr_dbreaka1_args
,
5511 3, Iclass_xt_iclass_rsr_dbreaka1_stateArgs
, 0, 0 },
5512 { 1, Iclass_xt_iclass_wsr_dbreaka1_args
,
5513 4, Iclass_xt_iclass_wsr_dbreaka1_stateArgs
, 0, 0 },
5514 { 1, Iclass_xt_iclass_xsr_dbreaka1_args
,
5515 4, Iclass_xt_iclass_xsr_dbreaka1_stateArgs
, 0, 0 },
5516 { 1, Iclass_xt_iclass_rsr_dbreakc1_args
,
5517 3, Iclass_xt_iclass_rsr_dbreakc1_stateArgs
, 0, 0 },
5518 { 1, Iclass_xt_iclass_wsr_dbreakc1_args
,
5519 4, Iclass_xt_iclass_wsr_dbreakc1_stateArgs
, 0, 0 },
5520 { 1, Iclass_xt_iclass_xsr_dbreakc1_args
,
5521 4, Iclass_xt_iclass_xsr_dbreakc1_stateArgs
, 0, 0 },
5522 { 1, Iclass_xt_iclass_rsr_ibreaka0_args
,
5523 3, Iclass_xt_iclass_rsr_ibreaka0_stateArgs
, 0, 0 },
5524 { 1, Iclass_xt_iclass_wsr_ibreaka0_args
,
5525 3, Iclass_xt_iclass_wsr_ibreaka0_stateArgs
, 0, 0 },
5526 { 1, Iclass_xt_iclass_xsr_ibreaka0_args
,
5527 3, Iclass_xt_iclass_xsr_ibreaka0_stateArgs
, 0, 0 },
5528 { 1, Iclass_xt_iclass_rsr_ibreaka1_args
,
5529 3, Iclass_xt_iclass_rsr_ibreaka1_stateArgs
, 0, 0 },
5530 { 1, Iclass_xt_iclass_wsr_ibreaka1_args
,
5531 3, Iclass_xt_iclass_wsr_ibreaka1_stateArgs
, 0, 0 },
5532 { 1, Iclass_xt_iclass_xsr_ibreaka1_args
,
5533 3, Iclass_xt_iclass_xsr_ibreaka1_stateArgs
, 0, 0 },
5534 { 1, Iclass_xt_iclass_rsr_ibreakenable_args
,
5535 3, Iclass_xt_iclass_rsr_ibreakenable_stateArgs
, 0, 0 },
5536 { 1, Iclass_xt_iclass_wsr_ibreakenable_args
,
5537 3, Iclass_xt_iclass_wsr_ibreakenable_stateArgs
, 0, 0 },
5538 { 1, Iclass_xt_iclass_xsr_ibreakenable_args
,
5539 3, Iclass_xt_iclass_xsr_ibreakenable_stateArgs
, 0, 0 },
5540 { 1, Iclass_xt_iclass_rsr_debugcause_args
,
5541 4, Iclass_xt_iclass_rsr_debugcause_stateArgs
, 0, 0 },
5542 { 1, Iclass_xt_iclass_wsr_debugcause_args
,
5543 4, Iclass_xt_iclass_wsr_debugcause_stateArgs
, 0, 0 },
5544 { 1, Iclass_xt_iclass_xsr_debugcause_args
,
5545 4, Iclass_xt_iclass_xsr_debugcause_stateArgs
, 0, 0 },
5546 { 1, Iclass_xt_iclass_rsr_icount_args
,
5547 3, Iclass_xt_iclass_rsr_icount_stateArgs
, 0, 0 },
5548 { 1, Iclass_xt_iclass_wsr_icount_args
,
5549 4, Iclass_xt_iclass_wsr_icount_stateArgs
, 0, 0 },
5550 { 1, Iclass_xt_iclass_xsr_icount_args
,
5551 4, Iclass_xt_iclass_xsr_icount_stateArgs
, 0, 0 },
5552 { 1, Iclass_xt_iclass_rsr_icountlevel_args
,
5553 3, Iclass_xt_iclass_rsr_icountlevel_stateArgs
, 0, 0 },
5554 { 1, Iclass_xt_iclass_wsr_icountlevel_args
,
5555 3, Iclass_xt_iclass_wsr_icountlevel_stateArgs
, 0, 0 },
5556 { 1, Iclass_xt_iclass_xsr_icountlevel_args
,
5557 3, Iclass_xt_iclass_xsr_icountlevel_stateArgs
, 0, 0 },
5558 { 1, Iclass_xt_iclass_rsr_ddr_args
,
5559 3, Iclass_xt_iclass_rsr_ddr_stateArgs
, 0, 0 },
5560 { 1, Iclass_xt_iclass_wsr_ddr_args
,
5561 4, Iclass_xt_iclass_wsr_ddr_stateArgs
, 0, 0 },
5562 { 1, Iclass_xt_iclass_xsr_ddr_args
,
5563 4, Iclass_xt_iclass_xsr_ddr_stateArgs
, 0, 0 },
5564 { 1, Iclass_xt_iclass_rfdo_args
,
5565 10, Iclass_xt_iclass_rfdo_stateArgs
, 0, 0 },
5566 { 0, 0 /* xt_iclass_rfdd */,
5567 1, Iclass_xt_iclass_rfdd_stateArgs
, 0, 0 },
5568 { 1, Iclass_xt_iclass_wsr_mmid_args
,
5569 3, Iclass_xt_iclass_wsr_mmid_stateArgs
, 0, 0 },
5570 { 1, Iclass_xt_iclass_rsr_ccount_args
,
5571 3, Iclass_xt_iclass_rsr_ccount_stateArgs
, 0, 0 },
5572 { 1, Iclass_xt_iclass_wsr_ccount_args
,
5573 4, Iclass_xt_iclass_wsr_ccount_stateArgs
, 0, 0 },
5574 { 1, Iclass_xt_iclass_xsr_ccount_args
,
5575 4, Iclass_xt_iclass_xsr_ccount_stateArgs
, 0, 0 },
5576 { 1, Iclass_xt_iclass_rsr_ccompare0_args
,
5577 3, Iclass_xt_iclass_rsr_ccompare0_stateArgs
, 0, 0 },
5578 { 1, Iclass_xt_iclass_wsr_ccompare0_args
,
5579 4, Iclass_xt_iclass_wsr_ccompare0_stateArgs
, 0, 0 },
5580 { 1, Iclass_xt_iclass_xsr_ccompare0_args
,
5581 4, Iclass_xt_iclass_xsr_ccompare0_stateArgs
, 0, 0 },
5582 { 1, Iclass_xt_iclass_rsr_ccompare1_args
,
5583 3, Iclass_xt_iclass_rsr_ccompare1_stateArgs
, 0, 0 },
5584 { 1, Iclass_xt_iclass_wsr_ccompare1_args
,
5585 4, Iclass_xt_iclass_wsr_ccompare1_stateArgs
, 0, 0 },
5586 { 1, Iclass_xt_iclass_xsr_ccompare1_args
,
5587 4, Iclass_xt_iclass_xsr_ccompare1_stateArgs
, 0, 0 },
5588 { 1, Iclass_xt_iclass_rsr_ccompare2_args
,
5589 3, Iclass_xt_iclass_rsr_ccompare2_stateArgs
, 0, 0 },
5590 { 1, Iclass_xt_iclass_wsr_ccompare2_args
,
5591 4, Iclass_xt_iclass_wsr_ccompare2_stateArgs
, 0, 0 },
5592 { 1, Iclass_xt_iclass_xsr_ccompare2_args
,
5593 4, Iclass_xt_iclass_xsr_ccompare2_stateArgs
, 0, 0 },
5594 { 2, Iclass_xt_iclass_icache_args
,
5596 { 2, Iclass_xt_iclass_icache_lock_args
,
5597 2, Iclass_xt_iclass_icache_lock_stateArgs
, 0, 0 },
5598 { 2, Iclass_xt_iclass_icache_inv_args
,
5599 2, Iclass_xt_iclass_icache_inv_stateArgs
, 0, 0 },
5600 { 2, Iclass_xt_iclass_licx_args
,
5601 2, Iclass_xt_iclass_licx_stateArgs
, 0, 0 },
5602 { 2, Iclass_xt_iclass_sicx_args
,
5603 2, Iclass_xt_iclass_sicx_stateArgs
, 0, 0 },
5604 { 2, Iclass_xt_iclass_dcache_args
,
5606 { 2, Iclass_xt_iclass_dcache_ind_args
,
5607 2, Iclass_xt_iclass_dcache_ind_stateArgs
, 0, 0 },
5608 { 2, Iclass_xt_iclass_dcache_inv_args
,
5609 2, Iclass_xt_iclass_dcache_inv_stateArgs
, 0, 0 },
5610 { 2, Iclass_xt_iclass_dpf_args
,
5612 { 2, Iclass_xt_iclass_dcache_lock_args
,
5613 2, Iclass_xt_iclass_dcache_lock_stateArgs
, 0, 0 },
5614 { 2, Iclass_xt_iclass_sdct_args
,
5615 2, Iclass_xt_iclass_sdct_stateArgs
, 0, 0 },
5616 { 2, Iclass_xt_iclass_ldct_args
,
5617 2, Iclass_xt_iclass_ldct_stateArgs
, 0, 0 },
5618 { 1, Iclass_xt_iclass_wsr_ptevaddr_args
,
5619 4, Iclass_xt_iclass_wsr_ptevaddr_stateArgs
, 0, 0 },
5620 { 1, Iclass_xt_iclass_rsr_ptevaddr_args
,
5621 4, Iclass_xt_iclass_rsr_ptevaddr_stateArgs
, 0, 0 },
5622 { 1, Iclass_xt_iclass_xsr_ptevaddr_args
,
5623 5, Iclass_xt_iclass_xsr_ptevaddr_stateArgs
, 0, 0 },
5624 { 1, Iclass_xt_iclass_rsr_rasid_args
,
5625 5, Iclass_xt_iclass_rsr_rasid_stateArgs
, 0, 0 },
5626 { 1, Iclass_xt_iclass_wsr_rasid_args
,
5627 6, Iclass_xt_iclass_wsr_rasid_stateArgs
, 0, 0 },
5628 { 1, Iclass_xt_iclass_xsr_rasid_args
,
5629 6, Iclass_xt_iclass_xsr_rasid_stateArgs
, 0, 0 },
5630 { 1, Iclass_xt_iclass_rsr_itlbcfg_args
,
5631 3, Iclass_xt_iclass_rsr_itlbcfg_stateArgs
, 0, 0 },
5632 { 1, Iclass_xt_iclass_wsr_itlbcfg_args
,
5633 4, Iclass_xt_iclass_wsr_itlbcfg_stateArgs
, 0, 0 },
5634 { 1, Iclass_xt_iclass_xsr_itlbcfg_args
,
5635 4, Iclass_xt_iclass_xsr_itlbcfg_stateArgs
, 0, 0 },
5636 { 1, Iclass_xt_iclass_rsr_dtlbcfg_args
,
5637 3, Iclass_xt_iclass_rsr_dtlbcfg_stateArgs
, 0, 0 },
5638 { 1, Iclass_xt_iclass_wsr_dtlbcfg_args
,
5639 4, Iclass_xt_iclass_wsr_dtlbcfg_stateArgs
, 0, 0 },
5640 { 1, Iclass_xt_iclass_xsr_dtlbcfg_args
,
5641 4, Iclass_xt_iclass_xsr_dtlbcfg_stateArgs
, 0, 0 },
5642 { 1, Iclass_xt_iclass_idtlb_args
,
5643 3, Iclass_xt_iclass_idtlb_stateArgs
, 0, 0 },
5644 { 2, Iclass_xt_iclass_rdtlb_args
,
5645 2, Iclass_xt_iclass_rdtlb_stateArgs
, 0, 0 },
5646 { 2, Iclass_xt_iclass_wdtlb_args
,
5647 3, Iclass_xt_iclass_wdtlb_stateArgs
, 0, 0 },
5648 { 1, Iclass_xt_iclass_iitlb_args
,
5649 2, Iclass_xt_iclass_iitlb_stateArgs
, 0, 0 },
5650 { 2, Iclass_xt_iclass_ritlb_args
,
5651 2, Iclass_xt_iclass_ritlb_stateArgs
, 0, 0 },
5652 { 2, Iclass_xt_iclass_witlb_args
,
5653 2, Iclass_xt_iclass_witlb_stateArgs
, 0, 0 },
5654 { 0, 0 /* xt_iclass_ldpte */,
5655 2, Iclass_xt_iclass_ldpte_stateArgs
, 0, 0 },
5656 { 0, 0 /* xt_iclass_hwwitlba */,
5657 1, Iclass_xt_iclass_hwwitlba_stateArgs
, 0, 0 },
5658 { 0, 0 /* xt_iclass_hwwdtlba */,
5659 1, Iclass_xt_iclass_hwwdtlba_stateArgs
, 0, 0 },
5660 { 1, Iclass_xt_iclass_rsr_cpenable_args
,
5661 3, Iclass_xt_iclass_rsr_cpenable_stateArgs
, 0, 0 },
5662 { 1, Iclass_xt_iclass_wsr_cpenable_args
,
5663 3, Iclass_xt_iclass_wsr_cpenable_stateArgs
, 0, 0 },
5664 { 1, Iclass_xt_iclass_xsr_cpenable_args
,
5665 3, Iclass_xt_iclass_xsr_cpenable_stateArgs
, 0, 0 },
5666 { 3, Iclass_xt_iclass_clamp_args
,
5668 { 3, Iclass_xt_iclass_minmax_args
,
5670 { 2, Iclass_xt_iclass_nsa_args
,
5672 { 3, Iclass_xt_iclass_sx_args
,
5674 { 3, Iclass_xt_iclass_l32ai_args
,
5676 { 3, Iclass_xt_iclass_s32ri_args
,
5678 { 3, Iclass_xt_iclass_s32c1i_args
,
5679 2, Iclass_xt_iclass_s32c1i_stateArgs
, 0, 0 },
5680 { 1, Iclass_xt_iclass_rsr_scompare1_args
,
5681 1, Iclass_xt_iclass_rsr_scompare1_stateArgs
, 0, 0 },
5682 { 1, Iclass_xt_iclass_wsr_scompare1_args
,
5683 1, Iclass_xt_iclass_wsr_scompare1_stateArgs
, 0, 0 },
5684 { 1, Iclass_xt_iclass_xsr_scompare1_args
,
5685 1, Iclass_xt_iclass_xsr_scompare1_stateArgs
, 0, 0 },
5686 { 3, Iclass_xt_iclass_div_args
,
5688 { 3, Iclass_xt_mul32_args
,
5692 enum xtensa_iclass_id
{
5693 ICLASS_xt_iclass_excw
,
5694 ICLASS_xt_iclass_rfe
,
5695 ICLASS_xt_iclass_rfde
,
5696 ICLASS_xt_iclass_syscall
,
5697 ICLASS_xt_iclass_simcall
,
5698 ICLASS_xt_iclass_call12
,
5699 ICLASS_xt_iclass_call8
,
5700 ICLASS_xt_iclass_call4
,
5701 ICLASS_xt_iclass_callx12
,
5702 ICLASS_xt_iclass_callx8
,
5703 ICLASS_xt_iclass_callx4
,
5704 ICLASS_xt_iclass_entry
,
5705 ICLASS_xt_iclass_movsp
,
5706 ICLASS_xt_iclass_rotw
,
5707 ICLASS_xt_iclass_retw
,
5708 ICLASS_xt_iclass_rfwou
,
5709 ICLASS_xt_iclass_l32e
,
5710 ICLASS_xt_iclass_s32e
,
5711 ICLASS_xt_iclass_rsr_windowbase
,
5712 ICLASS_xt_iclass_wsr_windowbase
,
5713 ICLASS_xt_iclass_xsr_windowbase
,
5714 ICLASS_xt_iclass_rsr_windowstart
,
5715 ICLASS_xt_iclass_wsr_windowstart
,
5716 ICLASS_xt_iclass_xsr_windowstart
,
5717 ICLASS_xt_iclass_add_n
,
5718 ICLASS_xt_iclass_addi_n
,
5719 ICLASS_xt_iclass_bz6
,
5720 ICLASS_xt_iclass_ill_n
,
5721 ICLASS_xt_iclass_loadi4
,
5722 ICLASS_xt_iclass_mov_n
,
5723 ICLASS_xt_iclass_movi_n
,
5724 ICLASS_xt_iclass_nopn
,
5725 ICLASS_xt_iclass_retn
,
5726 ICLASS_xt_iclass_storei4
,
5727 ICLASS_rur_threadptr
,
5728 ICLASS_wur_threadptr
,
5729 ICLASS_xt_iclass_addi
,
5730 ICLASS_xt_iclass_addmi
,
5731 ICLASS_xt_iclass_addsub
,
5732 ICLASS_xt_iclass_bit
,
5733 ICLASS_xt_iclass_bsi8
,
5734 ICLASS_xt_iclass_bsi8b
,
5735 ICLASS_xt_iclass_bsi8u
,
5736 ICLASS_xt_iclass_bst8
,
5737 ICLASS_xt_iclass_bsz12
,
5738 ICLASS_xt_iclass_call0
,
5739 ICLASS_xt_iclass_callx0
,
5740 ICLASS_xt_iclass_exti
,
5741 ICLASS_xt_iclass_ill
,
5742 ICLASS_xt_iclass_jump
,
5743 ICLASS_xt_iclass_jumpx
,
5744 ICLASS_xt_iclass_l16ui
,
5745 ICLASS_xt_iclass_l16si
,
5746 ICLASS_xt_iclass_l32i
,
5747 ICLASS_xt_iclass_l32r
,
5748 ICLASS_xt_iclass_l8i
,
5749 ICLASS_xt_iclass_loop
,
5750 ICLASS_xt_iclass_loopz
,
5751 ICLASS_xt_iclass_movi
,
5752 ICLASS_xt_iclass_movz
,
5753 ICLASS_xt_iclass_neg
,
5754 ICLASS_xt_iclass_nop
,
5755 ICLASS_xt_iclass_return
,
5756 ICLASS_xt_iclass_s16i
,
5757 ICLASS_xt_iclass_s32i
,
5758 ICLASS_xt_iclass_s8i
,
5759 ICLASS_xt_iclass_sar
,
5760 ICLASS_xt_iclass_sari
,
5761 ICLASS_xt_iclass_shifts
,
5762 ICLASS_xt_iclass_shiftst
,
5763 ICLASS_xt_iclass_shiftt
,
5764 ICLASS_xt_iclass_slli
,
5765 ICLASS_xt_iclass_srai
,
5766 ICLASS_xt_iclass_srli
,
5767 ICLASS_xt_iclass_memw
,
5768 ICLASS_xt_iclass_extw
,
5769 ICLASS_xt_iclass_isync
,
5770 ICLASS_xt_iclass_sync
,
5771 ICLASS_xt_iclass_rsil
,
5772 ICLASS_xt_iclass_rsr_lend
,
5773 ICLASS_xt_iclass_wsr_lend
,
5774 ICLASS_xt_iclass_xsr_lend
,
5775 ICLASS_xt_iclass_rsr_lcount
,
5776 ICLASS_xt_iclass_wsr_lcount
,
5777 ICLASS_xt_iclass_xsr_lcount
,
5778 ICLASS_xt_iclass_rsr_lbeg
,
5779 ICLASS_xt_iclass_wsr_lbeg
,
5780 ICLASS_xt_iclass_xsr_lbeg
,
5781 ICLASS_xt_iclass_rsr_sar
,
5782 ICLASS_xt_iclass_wsr_sar
,
5783 ICLASS_xt_iclass_xsr_sar
,
5784 ICLASS_xt_iclass_rsr_litbase
,
5785 ICLASS_xt_iclass_wsr_litbase
,
5786 ICLASS_xt_iclass_xsr_litbase
,
5787 ICLASS_xt_iclass_rsr_176
,
5788 ICLASS_xt_iclass_wsr_176
,
5789 ICLASS_xt_iclass_rsr_208
,
5790 ICLASS_xt_iclass_rsr_ps
,
5791 ICLASS_xt_iclass_wsr_ps
,
5792 ICLASS_xt_iclass_xsr_ps
,
5793 ICLASS_xt_iclass_rsr_epc1
,
5794 ICLASS_xt_iclass_wsr_epc1
,
5795 ICLASS_xt_iclass_xsr_epc1
,
5796 ICLASS_xt_iclass_rsr_excsave1
,
5797 ICLASS_xt_iclass_wsr_excsave1
,
5798 ICLASS_xt_iclass_xsr_excsave1
,
5799 ICLASS_xt_iclass_rsr_epc2
,
5800 ICLASS_xt_iclass_wsr_epc2
,
5801 ICLASS_xt_iclass_xsr_epc2
,
5802 ICLASS_xt_iclass_rsr_excsave2
,
5803 ICLASS_xt_iclass_wsr_excsave2
,
5804 ICLASS_xt_iclass_xsr_excsave2
,
5805 ICLASS_xt_iclass_rsr_epc3
,
5806 ICLASS_xt_iclass_wsr_epc3
,
5807 ICLASS_xt_iclass_xsr_epc3
,
5808 ICLASS_xt_iclass_rsr_excsave3
,
5809 ICLASS_xt_iclass_wsr_excsave3
,
5810 ICLASS_xt_iclass_xsr_excsave3
,
5811 ICLASS_xt_iclass_rsr_epc4
,
5812 ICLASS_xt_iclass_wsr_epc4
,
5813 ICLASS_xt_iclass_xsr_epc4
,
5814 ICLASS_xt_iclass_rsr_excsave4
,
5815 ICLASS_xt_iclass_wsr_excsave4
,
5816 ICLASS_xt_iclass_xsr_excsave4
,
5817 ICLASS_xt_iclass_rsr_epc5
,
5818 ICLASS_xt_iclass_wsr_epc5
,
5819 ICLASS_xt_iclass_xsr_epc5
,
5820 ICLASS_xt_iclass_rsr_excsave5
,
5821 ICLASS_xt_iclass_wsr_excsave5
,
5822 ICLASS_xt_iclass_xsr_excsave5
,
5823 ICLASS_xt_iclass_rsr_epc6
,
5824 ICLASS_xt_iclass_wsr_epc6
,
5825 ICLASS_xt_iclass_xsr_epc6
,
5826 ICLASS_xt_iclass_rsr_excsave6
,
5827 ICLASS_xt_iclass_wsr_excsave6
,
5828 ICLASS_xt_iclass_xsr_excsave6
,
5829 ICLASS_xt_iclass_rsr_epc7
,
5830 ICLASS_xt_iclass_wsr_epc7
,
5831 ICLASS_xt_iclass_xsr_epc7
,
5832 ICLASS_xt_iclass_rsr_excsave7
,
5833 ICLASS_xt_iclass_wsr_excsave7
,
5834 ICLASS_xt_iclass_xsr_excsave7
,
5835 ICLASS_xt_iclass_rsr_eps2
,
5836 ICLASS_xt_iclass_wsr_eps2
,
5837 ICLASS_xt_iclass_xsr_eps2
,
5838 ICLASS_xt_iclass_rsr_eps3
,
5839 ICLASS_xt_iclass_wsr_eps3
,
5840 ICLASS_xt_iclass_xsr_eps3
,
5841 ICLASS_xt_iclass_rsr_eps4
,
5842 ICLASS_xt_iclass_wsr_eps4
,
5843 ICLASS_xt_iclass_xsr_eps4
,
5844 ICLASS_xt_iclass_rsr_eps5
,
5845 ICLASS_xt_iclass_wsr_eps5
,
5846 ICLASS_xt_iclass_xsr_eps5
,
5847 ICLASS_xt_iclass_rsr_eps6
,
5848 ICLASS_xt_iclass_wsr_eps6
,
5849 ICLASS_xt_iclass_xsr_eps6
,
5850 ICLASS_xt_iclass_rsr_eps7
,
5851 ICLASS_xt_iclass_wsr_eps7
,
5852 ICLASS_xt_iclass_xsr_eps7
,
5853 ICLASS_xt_iclass_rsr_excvaddr
,
5854 ICLASS_xt_iclass_wsr_excvaddr
,
5855 ICLASS_xt_iclass_xsr_excvaddr
,
5856 ICLASS_xt_iclass_rsr_depc
,
5857 ICLASS_xt_iclass_wsr_depc
,
5858 ICLASS_xt_iclass_xsr_depc
,
5859 ICLASS_xt_iclass_rsr_exccause
,
5860 ICLASS_xt_iclass_wsr_exccause
,
5861 ICLASS_xt_iclass_xsr_exccause
,
5862 ICLASS_xt_iclass_rsr_misc0
,
5863 ICLASS_xt_iclass_wsr_misc0
,
5864 ICLASS_xt_iclass_xsr_misc0
,
5865 ICLASS_xt_iclass_rsr_misc1
,
5866 ICLASS_xt_iclass_wsr_misc1
,
5867 ICLASS_xt_iclass_xsr_misc1
,
5868 ICLASS_xt_iclass_rsr_prid
,
5869 ICLASS_xt_iclass_rsr_vecbase
,
5870 ICLASS_xt_iclass_wsr_vecbase
,
5871 ICLASS_xt_iclass_xsr_vecbase
,
5872 ICLASS_xt_iclass_mul16
,
5873 ICLASS_xt_iclass_rfi
,
5874 ICLASS_xt_iclass_wait
,
5875 ICLASS_xt_iclass_rsr_interrupt
,
5876 ICLASS_xt_iclass_wsr_intset
,
5877 ICLASS_xt_iclass_wsr_intclear
,
5878 ICLASS_xt_iclass_rsr_intenable
,
5879 ICLASS_xt_iclass_wsr_intenable
,
5880 ICLASS_xt_iclass_xsr_intenable
,
5881 ICLASS_xt_iclass_break
,
5882 ICLASS_xt_iclass_break_n
,
5883 ICLASS_xt_iclass_rsr_dbreaka0
,
5884 ICLASS_xt_iclass_wsr_dbreaka0
,
5885 ICLASS_xt_iclass_xsr_dbreaka0
,
5886 ICLASS_xt_iclass_rsr_dbreakc0
,
5887 ICLASS_xt_iclass_wsr_dbreakc0
,
5888 ICLASS_xt_iclass_xsr_dbreakc0
,
5889 ICLASS_xt_iclass_rsr_dbreaka1
,
5890 ICLASS_xt_iclass_wsr_dbreaka1
,
5891 ICLASS_xt_iclass_xsr_dbreaka1
,
5892 ICLASS_xt_iclass_rsr_dbreakc1
,
5893 ICLASS_xt_iclass_wsr_dbreakc1
,
5894 ICLASS_xt_iclass_xsr_dbreakc1
,
5895 ICLASS_xt_iclass_rsr_ibreaka0
,
5896 ICLASS_xt_iclass_wsr_ibreaka0
,
5897 ICLASS_xt_iclass_xsr_ibreaka0
,
5898 ICLASS_xt_iclass_rsr_ibreaka1
,
5899 ICLASS_xt_iclass_wsr_ibreaka1
,
5900 ICLASS_xt_iclass_xsr_ibreaka1
,
5901 ICLASS_xt_iclass_rsr_ibreakenable
,
5902 ICLASS_xt_iclass_wsr_ibreakenable
,
5903 ICLASS_xt_iclass_xsr_ibreakenable
,
5904 ICLASS_xt_iclass_rsr_debugcause
,
5905 ICLASS_xt_iclass_wsr_debugcause
,
5906 ICLASS_xt_iclass_xsr_debugcause
,
5907 ICLASS_xt_iclass_rsr_icount
,
5908 ICLASS_xt_iclass_wsr_icount
,
5909 ICLASS_xt_iclass_xsr_icount
,
5910 ICLASS_xt_iclass_rsr_icountlevel
,
5911 ICLASS_xt_iclass_wsr_icountlevel
,
5912 ICLASS_xt_iclass_xsr_icountlevel
,
5913 ICLASS_xt_iclass_rsr_ddr
,
5914 ICLASS_xt_iclass_wsr_ddr
,
5915 ICLASS_xt_iclass_xsr_ddr
,
5916 ICLASS_xt_iclass_rfdo
,
5917 ICLASS_xt_iclass_rfdd
,
5918 ICLASS_xt_iclass_wsr_mmid
,
5919 ICLASS_xt_iclass_rsr_ccount
,
5920 ICLASS_xt_iclass_wsr_ccount
,
5921 ICLASS_xt_iclass_xsr_ccount
,
5922 ICLASS_xt_iclass_rsr_ccompare0
,
5923 ICLASS_xt_iclass_wsr_ccompare0
,
5924 ICLASS_xt_iclass_xsr_ccompare0
,
5925 ICLASS_xt_iclass_rsr_ccompare1
,
5926 ICLASS_xt_iclass_wsr_ccompare1
,
5927 ICLASS_xt_iclass_xsr_ccompare1
,
5928 ICLASS_xt_iclass_rsr_ccompare2
,
5929 ICLASS_xt_iclass_wsr_ccompare2
,
5930 ICLASS_xt_iclass_xsr_ccompare2
,
5931 ICLASS_xt_iclass_icache
,
5932 ICLASS_xt_iclass_icache_lock
,
5933 ICLASS_xt_iclass_icache_inv
,
5934 ICLASS_xt_iclass_licx
,
5935 ICLASS_xt_iclass_sicx
,
5936 ICLASS_xt_iclass_dcache
,
5937 ICLASS_xt_iclass_dcache_ind
,
5938 ICLASS_xt_iclass_dcache_inv
,
5939 ICLASS_xt_iclass_dpf
,
5940 ICLASS_xt_iclass_dcache_lock
,
5941 ICLASS_xt_iclass_sdct
,
5942 ICLASS_xt_iclass_ldct
,
5943 ICLASS_xt_iclass_wsr_ptevaddr
,
5944 ICLASS_xt_iclass_rsr_ptevaddr
,
5945 ICLASS_xt_iclass_xsr_ptevaddr
,
5946 ICLASS_xt_iclass_rsr_rasid
,
5947 ICLASS_xt_iclass_wsr_rasid
,
5948 ICLASS_xt_iclass_xsr_rasid
,
5949 ICLASS_xt_iclass_rsr_itlbcfg
,
5950 ICLASS_xt_iclass_wsr_itlbcfg
,
5951 ICLASS_xt_iclass_xsr_itlbcfg
,
5952 ICLASS_xt_iclass_rsr_dtlbcfg
,
5953 ICLASS_xt_iclass_wsr_dtlbcfg
,
5954 ICLASS_xt_iclass_xsr_dtlbcfg
,
5955 ICLASS_xt_iclass_idtlb
,
5956 ICLASS_xt_iclass_rdtlb
,
5957 ICLASS_xt_iclass_wdtlb
,
5958 ICLASS_xt_iclass_iitlb
,
5959 ICLASS_xt_iclass_ritlb
,
5960 ICLASS_xt_iclass_witlb
,
5961 ICLASS_xt_iclass_ldpte
,
5962 ICLASS_xt_iclass_hwwitlba
,
5963 ICLASS_xt_iclass_hwwdtlba
,
5964 ICLASS_xt_iclass_rsr_cpenable
,
5965 ICLASS_xt_iclass_wsr_cpenable
,
5966 ICLASS_xt_iclass_xsr_cpenable
,
5967 ICLASS_xt_iclass_clamp
,
5968 ICLASS_xt_iclass_minmax
,
5969 ICLASS_xt_iclass_nsa
,
5970 ICLASS_xt_iclass_sx
,
5971 ICLASS_xt_iclass_l32ai
,
5972 ICLASS_xt_iclass_s32ri
,
5973 ICLASS_xt_iclass_s32c1i
,
5974 ICLASS_xt_iclass_rsr_scompare1
,
5975 ICLASS_xt_iclass_wsr_scompare1
,
5976 ICLASS_xt_iclass_xsr_scompare1
,
5977 ICLASS_xt_iclass_div
,
5982 /* Opcode encodings. */
5985 Opcode_excw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
5987 slotbuf
[0] = 0x80200;
5991 Opcode_rfe_Slot_inst_encode (xtensa_insnbuf slotbuf
)
5997 Opcode_rfde_Slot_inst_encode (xtensa_insnbuf slotbuf
)
5999 slotbuf
[0] = 0x2300;
6003 Opcode_syscall_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6009 Opcode_simcall_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6011 slotbuf
[0] = 0x1500;
6015 Opcode_call12_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6017 slotbuf
[0] = 0x5c0000;
6021 Opcode_call8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6023 slotbuf
[0] = 0x580000;
6027 Opcode_call4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6029 slotbuf
[0] = 0x540000;
6033 Opcode_callx12_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6035 slotbuf
[0] = 0xf0000;
6039 Opcode_callx8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6041 slotbuf
[0] = 0xb0000;
6045 Opcode_callx4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6047 slotbuf
[0] = 0x70000;
6051 Opcode_entry_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6053 slotbuf
[0] = 0x6c0000;
6057 Opcode_movsp_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6063 Opcode_rotw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6069 Opcode_retw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6071 slotbuf
[0] = 0x60000;
6075 Opcode_retw_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6077 slotbuf
[0] = 0xd10f;
6081 Opcode_rfwo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6083 slotbuf
[0] = 0x4300;
6087 Opcode_rfwu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6089 slotbuf
[0] = 0x5300;
6093 Opcode_l32e_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6099 Opcode_s32e_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6105 Opcode_rsr_windowbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6107 slotbuf
[0] = 0x4830;
6111 Opcode_wsr_windowbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6113 slotbuf
[0] = 0x4831;
6117 Opcode_xsr_windowbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6119 slotbuf
[0] = 0x4816;
6123 Opcode_rsr_windowstart_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6125 slotbuf
[0] = 0x4930;
6129 Opcode_wsr_windowstart_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6131 slotbuf
[0] = 0x4931;
6135 Opcode_xsr_windowstart_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6137 slotbuf
[0] = 0x4916;
6141 Opcode_add_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6143 slotbuf
[0] = 0xa000;
6147 Opcode_addi_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6149 slotbuf
[0] = 0xb000;
6153 Opcode_beqz_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6155 slotbuf
[0] = 0xc800;
6159 Opcode_bnez_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6161 slotbuf
[0] = 0xcc00;
6165 Opcode_ill_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6167 slotbuf
[0] = 0xd60f;
6171 Opcode_l32i_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6173 slotbuf
[0] = 0x8000;
6177 Opcode_mov_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6179 slotbuf
[0] = 0xd000;
6183 Opcode_movi_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6185 slotbuf
[0] = 0xc000;
6189 Opcode_nop_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6191 slotbuf
[0] = 0xd30f;
6195 Opcode_ret_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
6197 slotbuf
[0] = 0xd00f;
6201 Opcode_s32i_n_Slot_inst16a_encode (xtensa_insnbuf slotbuf
)
6203 slotbuf
[0] = 0x9000;
6207 Opcode_rur_threadptr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6209 slotbuf
[0] = 0x7e03e;
6213 Opcode_wur_threadptr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6215 slotbuf
[0] = 0xe73f;
6219 Opcode_addi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6221 slotbuf
[0] = 0x200c00;
6225 Opcode_addmi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6227 slotbuf
[0] = 0x200d00;
6231 Opcode_add_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6237 Opcode_sub_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6243 Opcode_addx2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6249 Opcode_addx4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6255 Opcode_addx8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6261 Opcode_subx2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6267 Opcode_subx4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6273 Opcode_subx8_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6279 Opcode_and_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6285 Opcode_or_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6291 Opcode_xor_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6297 Opcode_beqi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6299 slotbuf
[0] = 0x680000;
6303 Opcode_bnei_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6305 slotbuf
[0] = 0x690000;
6309 Opcode_bgei_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6311 slotbuf
[0] = 0x6b0000;
6315 Opcode_blti_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6317 slotbuf
[0] = 0x6a0000;
6321 Opcode_bbci_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6323 slotbuf
[0] = 0x700600;
6327 Opcode_bbsi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6329 slotbuf
[0] = 0x700e00;
6333 Opcode_bgeui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6335 slotbuf
[0] = 0x6f0000;
6339 Opcode_bltui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6341 slotbuf
[0] = 0x6e0000;
6345 Opcode_beq_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6347 slotbuf
[0] = 0x700100;
6351 Opcode_bne_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6353 slotbuf
[0] = 0x700900;
6357 Opcode_bge_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6359 slotbuf
[0] = 0x700a00;
6363 Opcode_blt_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6365 slotbuf
[0] = 0x700200;
6369 Opcode_bgeu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6371 slotbuf
[0] = 0x700b00;
6375 Opcode_bltu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6377 slotbuf
[0] = 0x700300;
6381 Opcode_bany_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6383 slotbuf
[0] = 0x700800;
6387 Opcode_bnone_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6389 slotbuf
[0] = 0x700000;
6393 Opcode_ball_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6395 slotbuf
[0] = 0x700400;
6399 Opcode_bnall_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6401 slotbuf
[0] = 0x700c00;
6405 Opcode_bbc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6407 slotbuf
[0] = 0x700500;
6411 Opcode_bbs_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6413 slotbuf
[0] = 0x700d00;
6417 Opcode_beqz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6419 slotbuf
[0] = 0x640000;
6423 Opcode_bnez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6425 slotbuf
[0] = 0x650000;
6429 Opcode_bgez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6431 slotbuf
[0] = 0x670000;
6435 Opcode_bltz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6437 slotbuf
[0] = 0x660000;
6441 Opcode_call0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6443 slotbuf
[0] = 0x500000;
6447 Opcode_callx0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6449 slotbuf
[0] = 0x30000;
6453 Opcode_extui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6459 Opcode_ill_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6465 Opcode_j_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6467 slotbuf
[0] = 0x600000;
6471 Opcode_jx_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6473 slotbuf
[0] = 0xa0000;
6477 Opcode_l16ui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6479 slotbuf
[0] = 0x200100;
6483 Opcode_l16si_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6485 slotbuf
[0] = 0x200900;
6489 Opcode_l32i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6491 slotbuf
[0] = 0x200200;
6495 Opcode_l32r_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6497 slotbuf
[0] = 0x100000;
6501 Opcode_l8ui_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6503 slotbuf
[0] = 0x200000;
6507 Opcode_loop_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6509 slotbuf
[0] = 0x6d0800;
6513 Opcode_loopnez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6515 slotbuf
[0] = 0x6d0900;
6519 Opcode_loopgtz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6521 slotbuf
[0] = 0x6d0a00;
6525 Opcode_movi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6527 slotbuf
[0] = 0x200a00;
6531 Opcode_moveqz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6537 Opcode_movnez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6543 Opcode_movltz_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6549 Opcode_movgez_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6555 Opcode_neg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6561 Opcode_abs_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6563 slotbuf
[0] = 0x1006;
6567 Opcode_nop_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6569 slotbuf
[0] = 0xf0200;
6573 Opcode_ret_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6575 slotbuf
[0] = 0x20000;
6579 Opcode_s16i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6581 slotbuf
[0] = 0x200500;
6585 Opcode_s32i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6587 slotbuf
[0] = 0x200600;
6591 Opcode_s8i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6593 slotbuf
[0] = 0x200400;
6597 Opcode_ssr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6603 Opcode_ssl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6609 Opcode_ssa8l_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6615 Opcode_ssa8b_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6621 Opcode_ssai_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6627 Opcode_sll_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6633 Opcode_src_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6639 Opcode_srl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6645 Opcode_sra_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6651 Opcode_slli_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6657 Opcode_srai_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6663 Opcode_srli_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6669 Opcode_memw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6671 slotbuf
[0] = 0xc0200;
6675 Opcode_extw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6677 slotbuf
[0] = 0xd0200;
6681 Opcode_isync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6687 Opcode_rsync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6689 slotbuf
[0] = 0x10200;
6693 Opcode_esync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6695 slotbuf
[0] = 0x20200;
6699 Opcode_dsync_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6701 slotbuf
[0] = 0x30200;
6705 Opcode_rsil_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6711 Opcode_rsr_lend_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6717 Opcode_wsr_lend_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6723 Opcode_xsr_lend_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6729 Opcode_rsr_lcount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6735 Opcode_wsr_lcount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6741 Opcode_xsr_lcount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6747 Opcode_rsr_lbeg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6753 Opcode_wsr_lbeg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6759 Opcode_xsr_lbeg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6765 Opcode_rsr_sar_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6771 Opcode_wsr_sar_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6777 Opcode_xsr_sar_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6783 Opcode_rsr_litbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6789 Opcode_wsr_litbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6795 Opcode_xsr_litbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6801 Opcode_rsr_176_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6803 slotbuf
[0] = 0xb030;
6807 Opcode_wsr_176_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6809 slotbuf
[0] = 0xb031;
6813 Opcode_rsr_208_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6815 slotbuf
[0] = 0xd030;
6819 Opcode_rsr_ps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6821 slotbuf
[0] = 0xe630;
6825 Opcode_wsr_ps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6827 slotbuf
[0] = 0xe631;
6831 Opcode_xsr_ps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6833 slotbuf
[0] = 0xe616;
6837 Opcode_rsr_epc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6839 slotbuf
[0] = 0xb130;
6843 Opcode_wsr_epc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6845 slotbuf
[0] = 0xb131;
6849 Opcode_xsr_epc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6851 slotbuf
[0] = 0xb116;
6855 Opcode_rsr_excsave1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6857 slotbuf
[0] = 0xd130;
6861 Opcode_wsr_excsave1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6863 slotbuf
[0] = 0xd131;
6867 Opcode_xsr_excsave1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6869 slotbuf
[0] = 0xd116;
6873 Opcode_rsr_epc2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6875 slotbuf
[0] = 0xb230;
6879 Opcode_wsr_epc2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6881 slotbuf
[0] = 0xb231;
6885 Opcode_xsr_epc2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6887 slotbuf
[0] = 0xb216;
6891 Opcode_rsr_excsave2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6893 slotbuf
[0] = 0xd230;
6897 Opcode_wsr_excsave2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6899 slotbuf
[0] = 0xd231;
6903 Opcode_xsr_excsave2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6905 slotbuf
[0] = 0xd216;
6909 Opcode_rsr_epc3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6911 slotbuf
[0] = 0xb330;
6915 Opcode_wsr_epc3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6917 slotbuf
[0] = 0xb331;
6921 Opcode_xsr_epc3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6923 slotbuf
[0] = 0xb316;
6927 Opcode_rsr_excsave3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6929 slotbuf
[0] = 0xd330;
6933 Opcode_wsr_excsave3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6935 slotbuf
[0] = 0xd331;
6939 Opcode_xsr_excsave3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6941 slotbuf
[0] = 0xd316;
6945 Opcode_rsr_epc4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6947 slotbuf
[0] = 0xb430;
6951 Opcode_wsr_epc4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6953 slotbuf
[0] = 0xb431;
6957 Opcode_xsr_epc4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6959 slotbuf
[0] = 0xb416;
6963 Opcode_rsr_excsave4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6965 slotbuf
[0] = 0xd430;
6969 Opcode_wsr_excsave4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6971 slotbuf
[0] = 0xd431;
6975 Opcode_xsr_excsave4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6977 slotbuf
[0] = 0xd416;
6981 Opcode_rsr_epc5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6983 slotbuf
[0] = 0xb530;
6987 Opcode_wsr_epc5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6989 slotbuf
[0] = 0xb531;
6993 Opcode_xsr_epc5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
6995 slotbuf
[0] = 0xb516;
6999 Opcode_rsr_excsave5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7001 slotbuf
[0] = 0xd530;
7005 Opcode_wsr_excsave5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7007 slotbuf
[0] = 0xd531;
7011 Opcode_xsr_excsave5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7013 slotbuf
[0] = 0xd516;
7017 Opcode_rsr_epc6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7019 slotbuf
[0] = 0xb630;
7023 Opcode_wsr_epc6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7025 slotbuf
[0] = 0xb631;
7029 Opcode_xsr_epc6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7031 slotbuf
[0] = 0xb616;
7035 Opcode_rsr_excsave6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7037 slotbuf
[0] = 0xd630;
7041 Opcode_wsr_excsave6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7043 slotbuf
[0] = 0xd631;
7047 Opcode_xsr_excsave6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7049 slotbuf
[0] = 0xd616;
7053 Opcode_rsr_epc7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7055 slotbuf
[0] = 0xb730;
7059 Opcode_wsr_epc7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7061 slotbuf
[0] = 0xb731;
7065 Opcode_xsr_epc7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7067 slotbuf
[0] = 0xb716;
7071 Opcode_rsr_excsave7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7073 slotbuf
[0] = 0xd730;
7077 Opcode_wsr_excsave7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7079 slotbuf
[0] = 0xd731;
7083 Opcode_xsr_excsave7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7085 slotbuf
[0] = 0xd716;
7089 Opcode_rsr_eps2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7091 slotbuf
[0] = 0xc230;
7095 Opcode_wsr_eps2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7097 slotbuf
[0] = 0xc231;
7101 Opcode_xsr_eps2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7103 slotbuf
[0] = 0xc216;
7107 Opcode_rsr_eps3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7109 slotbuf
[0] = 0xc330;
7113 Opcode_wsr_eps3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7115 slotbuf
[0] = 0xc331;
7119 Opcode_xsr_eps3_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7121 slotbuf
[0] = 0xc316;
7125 Opcode_rsr_eps4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7127 slotbuf
[0] = 0xc430;
7131 Opcode_wsr_eps4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7133 slotbuf
[0] = 0xc431;
7137 Opcode_xsr_eps4_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7139 slotbuf
[0] = 0xc416;
7143 Opcode_rsr_eps5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7145 slotbuf
[0] = 0xc530;
7149 Opcode_wsr_eps5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7151 slotbuf
[0] = 0xc531;
7155 Opcode_xsr_eps5_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7157 slotbuf
[0] = 0xc516;
7161 Opcode_rsr_eps6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7163 slotbuf
[0] = 0xc630;
7167 Opcode_wsr_eps6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7169 slotbuf
[0] = 0xc631;
7173 Opcode_xsr_eps6_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7175 slotbuf
[0] = 0xc616;
7179 Opcode_rsr_eps7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7181 slotbuf
[0] = 0xc730;
7185 Opcode_wsr_eps7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7187 slotbuf
[0] = 0xc731;
7191 Opcode_xsr_eps7_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7193 slotbuf
[0] = 0xc716;
7197 Opcode_rsr_excvaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7199 slotbuf
[0] = 0xee30;
7203 Opcode_wsr_excvaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7205 slotbuf
[0] = 0xee31;
7209 Opcode_xsr_excvaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7211 slotbuf
[0] = 0xee16;
7215 Opcode_rsr_depc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7217 slotbuf
[0] = 0xc030;
7221 Opcode_wsr_depc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7223 slotbuf
[0] = 0xc031;
7227 Opcode_xsr_depc_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7229 slotbuf
[0] = 0xc016;
7233 Opcode_rsr_exccause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7235 slotbuf
[0] = 0xe830;
7239 Opcode_wsr_exccause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7241 slotbuf
[0] = 0xe831;
7245 Opcode_xsr_exccause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7247 slotbuf
[0] = 0xe816;
7251 Opcode_rsr_misc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7253 slotbuf
[0] = 0xf430;
7257 Opcode_wsr_misc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7259 slotbuf
[0] = 0xf431;
7263 Opcode_xsr_misc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7265 slotbuf
[0] = 0xf416;
7269 Opcode_rsr_misc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7271 slotbuf
[0] = 0xf530;
7275 Opcode_wsr_misc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7277 slotbuf
[0] = 0xf531;
7281 Opcode_xsr_misc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7283 slotbuf
[0] = 0xf516;
7287 Opcode_rsr_prid_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7289 slotbuf
[0] = 0xeb30;
7293 Opcode_rsr_vecbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7295 slotbuf
[0] = 0xe730;
7299 Opcode_wsr_vecbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7301 slotbuf
[0] = 0xe731;
7305 Opcode_xsr_vecbase_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7307 slotbuf
[0] = 0xe716;
7311 Opcode_mul16u_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7317 Opcode_mul16s_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7323 Opcode_rfi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7325 slotbuf
[0] = 0x10300;
7329 Opcode_waiti_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7335 Opcode_rsr_interrupt_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7337 slotbuf
[0] = 0xe230;
7341 Opcode_wsr_intset_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7343 slotbuf
[0] = 0xe231;
7347 Opcode_wsr_intclear_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7349 slotbuf
[0] = 0xe331;
7353 Opcode_rsr_intenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7355 slotbuf
[0] = 0xe430;
7359 Opcode_wsr_intenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7361 slotbuf
[0] = 0xe431;
7365 Opcode_xsr_intenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7367 slotbuf
[0] = 0xe416;
7371 Opcode_break_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7377 Opcode_break_n_Slot_inst16b_encode (xtensa_insnbuf slotbuf
)
7379 slotbuf
[0] = 0xd20f;
7383 Opcode_rsr_dbreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7385 slotbuf
[0] = 0x9030;
7389 Opcode_wsr_dbreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7391 slotbuf
[0] = 0x9031;
7395 Opcode_xsr_dbreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7397 slotbuf
[0] = 0x9016;
7401 Opcode_rsr_dbreakc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7403 slotbuf
[0] = 0xa030;
7407 Opcode_wsr_dbreakc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7409 slotbuf
[0] = 0xa031;
7413 Opcode_xsr_dbreakc0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7415 slotbuf
[0] = 0xa016;
7419 Opcode_rsr_dbreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7421 slotbuf
[0] = 0x9130;
7425 Opcode_wsr_dbreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7427 slotbuf
[0] = 0x9131;
7431 Opcode_xsr_dbreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7433 slotbuf
[0] = 0x9116;
7437 Opcode_rsr_dbreakc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7439 slotbuf
[0] = 0xa130;
7443 Opcode_wsr_dbreakc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7445 slotbuf
[0] = 0xa131;
7449 Opcode_xsr_dbreakc1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7451 slotbuf
[0] = 0xa116;
7455 Opcode_rsr_ibreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7457 slotbuf
[0] = 0x8030;
7461 Opcode_wsr_ibreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7463 slotbuf
[0] = 0x8031;
7467 Opcode_xsr_ibreaka0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7469 slotbuf
[0] = 0x8016;
7473 Opcode_rsr_ibreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7475 slotbuf
[0] = 0x8130;
7479 Opcode_wsr_ibreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7481 slotbuf
[0] = 0x8131;
7485 Opcode_xsr_ibreaka1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7487 slotbuf
[0] = 0x8116;
7491 Opcode_rsr_ibreakenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7493 slotbuf
[0] = 0x6030;
7497 Opcode_wsr_ibreakenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7499 slotbuf
[0] = 0x6031;
7503 Opcode_xsr_ibreakenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7505 slotbuf
[0] = 0x6016;
7509 Opcode_rsr_debugcause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7511 slotbuf
[0] = 0xe930;
7515 Opcode_wsr_debugcause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7517 slotbuf
[0] = 0xe931;
7521 Opcode_xsr_debugcause_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7523 slotbuf
[0] = 0xe916;
7527 Opcode_rsr_icount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7529 slotbuf
[0] = 0xec30;
7533 Opcode_wsr_icount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7535 slotbuf
[0] = 0xec31;
7539 Opcode_xsr_icount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7541 slotbuf
[0] = 0xec16;
7545 Opcode_rsr_icountlevel_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7547 slotbuf
[0] = 0xed30;
7551 Opcode_wsr_icountlevel_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7553 slotbuf
[0] = 0xed31;
7557 Opcode_xsr_icountlevel_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7559 slotbuf
[0] = 0xed16;
7563 Opcode_rsr_ddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7565 slotbuf
[0] = 0x6830;
7569 Opcode_wsr_ddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7571 slotbuf
[0] = 0x6831;
7575 Opcode_xsr_ddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7577 slotbuf
[0] = 0x6816;
7581 Opcode_rfdo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7587 Opcode_rfdd_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7589 slotbuf
[0] = 0x10e1f;
7593 Opcode_wsr_mmid_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7595 slotbuf
[0] = 0x5931;
7599 Opcode_rsr_ccount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7601 slotbuf
[0] = 0xea30;
7605 Opcode_wsr_ccount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7607 slotbuf
[0] = 0xea31;
7611 Opcode_xsr_ccount_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7613 slotbuf
[0] = 0xea16;
7617 Opcode_rsr_ccompare0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7619 slotbuf
[0] = 0xf030;
7623 Opcode_wsr_ccompare0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7625 slotbuf
[0] = 0xf031;
7629 Opcode_xsr_ccompare0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7631 slotbuf
[0] = 0xf016;
7635 Opcode_rsr_ccompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7637 slotbuf
[0] = 0xf130;
7641 Opcode_wsr_ccompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7643 slotbuf
[0] = 0xf131;
7647 Opcode_xsr_ccompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7649 slotbuf
[0] = 0xf116;
7653 Opcode_rsr_ccompare2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7655 slotbuf
[0] = 0xf230;
7659 Opcode_wsr_ccompare2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7661 slotbuf
[0] = 0xf231;
7665 Opcode_xsr_ccompare2_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7667 slotbuf
[0] = 0xf216;
7671 Opcode_ipf_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7673 slotbuf
[0] = 0x2c0700;
7677 Opcode_ihi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7679 slotbuf
[0] = 0x2e0700;
7683 Opcode_ipfl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7685 slotbuf
[0] = 0x2d0700;
7689 Opcode_ihu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7691 slotbuf
[0] = 0x2d0720;
7695 Opcode_iiu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7697 slotbuf
[0] = 0x2d0730;
7701 Opcode_iii_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7703 slotbuf
[0] = 0x2f0700;
7707 Opcode_lict_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7713 Opcode_licw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7719 Opcode_sict_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7725 Opcode_sicw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7731 Opcode_dhwb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7733 slotbuf
[0] = 0x240700;
7737 Opcode_dhwbi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7739 slotbuf
[0] = 0x250700;
7743 Opcode_diwb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7745 slotbuf
[0] = 0x280740;
7749 Opcode_diwbi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7751 slotbuf
[0] = 0x280750;
7755 Opcode_dhi_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7757 slotbuf
[0] = 0x260700;
7761 Opcode_dii_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7763 slotbuf
[0] = 0x270700;
7767 Opcode_dpfr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7769 slotbuf
[0] = 0x200700;
7773 Opcode_dpfw_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7775 slotbuf
[0] = 0x210700;
7779 Opcode_dpfro_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7781 slotbuf
[0] = 0x220700;
7785 Opcode_dpfwo_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7787 slotbuf
[0] = 0x230700;
7791 Opcode_dpfl_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7793 slotbuf
[0] = 0x280700;
7797 Opcode_dhu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7799 slotbuf
[0] = 0x280720;
7803 Opcode_diu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7805 slotbuf
[0] = 0x280730;
7809 Opcode_sdct_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7815 Opcode_ldct_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7821 Opcode_wsr_ptevaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7823 slotbuf
[0] = 0x5331;
7827 Opcode_rsr_ptevaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7829 slotbuf
[0] = 0x5330;
7833 Opcode_xsr_ptevaddr_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7835 slotbuf
[0] = 0x5316;
7839 Opcode_rsr_rasid_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7841 slotbuf
[0] = 0x5a30;
7845 Opcode_wsr_rasid_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7847 slotbuf
[0] = 0x5a31;
7851 Opcode_xsr_rasid_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7853 slotbuf
[0] = 0x5a16;
7857 Opcode_rsr_itlbcfg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7859 slotbuf
[0] = 0x5b30;
7863 Opcode_wsr_itlbcfg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7865 slotbuf
[0] = 0x5b31;
7869 Opcode_xsr_itlbcfg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7871 slotbuf
[0] = 0x5b16;
7875 Opcode_rsr_dtlbcfg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7877 slotbuf
[0] = 0x5c30;
7881 Opcode_wsr_dtlbcfg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7883 slotbuf
[0] = 0x5c31;
7887 Opcode_xsr_dtlbcfg_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7889 slotbuf
[0] = 0x5c16;
7893 Opcode_idtlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7899 Opcode_pdtlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7905 Opcode_rdtlb0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7911 Opcode_rdtlb1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7917 Opcode_wdtlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7923 Opcode_iitlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7929 Opcode_pitlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7935 Opcode_ritlb0_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7941 Opcode_ritlb1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7947 Opcode_witlb_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7953 Opcode_ldpte_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7959 Opcode_hwwitlba_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7965 Opcode_hwwdtlba_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7971 Opcode_rsr_cpenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7973 slotbuf
[0] = 0xe030;
7977 Opcode_wsr_cpenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7979 slotbuf
[0] = 0xe031;
7983 Opcode_xsr_cpenable_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7985 slotbuf
[0] = 0xe016;
7989 Opcode_clamps_Slot_inst_encode (xtensa_insnbuf slotbuf
)
7995 Opcode_min_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8001 Opcode_max_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8007 Opcode_minu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8013 Opcode_maxu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8019 Opcode_nsa_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8025 Opcode_nsau_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8031 Opcode_sext_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8037 Opcode_l32ai_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8039 slotbuf
[0] = 0x200b00;
8043 Opcode_s32ri_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8045 slotbuf
[0] = 0x200f00;
8049 Opcode_s32c1i_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8051 slotbuf
[0] = 0x200e00;
8055 Opcode_rsr_scompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8061 Opcode_wsr_scompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8067 Opcode_xsr_scompare1_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8073 Opcode_quou_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8079 Opcode_quos_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8085 Opcode_remu_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8091 Opcode_rems_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8097 Opcode_mull_Slot_inst_encode (xtensa_insnbuf slotbuf
)
8102 xtensa_opcode_encode_fn Opcode_excw_encode_fns
[] = {
8103 Opcode_excw_Slot_inst_encode
, 0, 0
8106 xtensa_opcode_encode_fn Opcode_rfe_encode_fns
[] = {
8107 Opcode_rfe_Slot_inst_encode
, 0, 0
8110 xtensa_opcode_encode_fn Opcode_rfde_encode_fns
[] = {
8111 Opcode_rfde_Slot_inst_encode
, 0, 0
8114 xtensa_opcode_encode_fn Opcode_syscall_encode_fns
[] = {
8115 Opcode_syscall_Slot_inst_encode
, 0, 0
8118 xtensa_opcode_encode_fn Opcode_simcall_encode_fns
[] = {
8119 Opcode_simcall_Slot_inst_encode
, 0, 0
8122 xtensa_opcode_encode_fn Opcode_call12_encode_fns
[] = {
8123 Opcode_call12_Slot_inst_encode
, 0, 0
8126 xtensa_opcode_encode_fn Opcode_call8_encode_fns
[] = {
8127 Opcode_call8_Slot_inst_encode
, 0, 0
8130 xtensa_opcode_encode_fn Opcode_call4_encode_fns
[] = {
8131 Opcode_call4_Slot_inst_encode
, 0, 0
8134 xtensa_opcode_encode_fn Opcode_callx12_encode_fns
[] = {
8135 Opcode_callx12_Slot_inst_encode
, 0, 0
8138 xtensa_opcode_encode_fn Opcode_callx8_encode_fns
[] = {
8139 Opcode_callx8_Slot_inst_encode
, 0, 0
8142 xtensa_opcode_encode_fn Opcode_callx4_encode_fns
[] = {
8143 Opcode_callx4_Slot_inst_encode
, 0, 0
8146 xtensa_opcode_encode_fn Opcode_entry_encode_fns
[] = {
8147 Opcode_entry_Slot_inst_encode
, 0, 0
8150 xtensa_opcode_encode_fn Opcode_movsp_encode_fns
[] = {
8151 Opcode_movsp_Slot_inst_encode
, 0, 0
8154 xtensa_opcode_encode_fn Opcode_rotw_encode_fns
[] = {
8155 Opcode_rotw_Slot_inst_encode
, 0, 0
8158 xtensa_opcode_encode_fn Opcode_retw_encode_fns
[] = {
8159 Opcode_retw_Slot_inst_encode
, 0, 0
8162 xtensa_opcode_encode_fn Opcode_retw_n_encode_fns
[] = {
8163 0, 0, Opcode_retw_n_Slot_inst16b_encode
8166 xtensa_opcode_encode_fn Opcode_rfwo_encode_fns
[] = {
8167 Opcode_rfwo_Slot_inst_encode
, 0, 0
8170 xtensa_opcode_encode_fn Opcode_rfwu_encode_fns
[] = {
8171 Opcode_rfwu_Slot_inst_encode
, 0, 0
8174 xtensa_opcode_encode_fn Opcode_l32e_encode_fns
[] = {
8175 Opcode_l32e_Slot_inst_encode
, 0, 0
8178 xtensa_opcode_encode_fn Opcode_s32e_encode_fns
[] = {
8179 Opcode_s32e_Slot_inst_encode
, 0, 0
8182 xtensa_opcode_encode_fn Opcode_rsr_windowbase_encode_fns
[] = {
8183 Opcode_rsr_windowbase_Slot_inst_encode
, 0, 0
8186 xtensa_opcode_encode_fn Opcode_wsr_windowbase_encode_fns
[] = {
8187 Opcode_wsr_windowbase_Slot_inst_encode
, 0, 0
8190 xtensa_opcode_encode_fn Opcode_xsr_windowbase_encode_fns
[] = {
8191 Opcode_xsr_windowbase_Slot_inst_encode
, 0, 0
8194 xtensa_opcode_encode_fn Opcode_rsr_windowstart_encode_fns
[] = {
8195 Opcode_rsr_windowstart_Slot_inst_encode
, 0, 0
8198 xtensa_opcode_encode_fn Opcode_wsr_windowstart_encode_fns
[] = {
8199 Opcode_wsr_windowstart_Slot_inst_encode
, 0, 0
8202 xtensa_opcode_encode_fn Opcode_xsr_windowstart_encode_fns
[] = {
8203 Opcode_xsr_windowstart_Slot_inst_encode
, 0, 0
8206 xtensa_opcode_encode_fn Opcode_add_n_encode_fns
[] = {
8207 0, Opcode_add_n_Slot_inst16a_encode
, 0
8210 xtensa_opcode_encode_fn Opcode_addi_n_encode_fns
[] = {
8211 0, Opcode_addi_n_Slot_inst16a_encode
, 0
8214 xtensa_opcode_encode_fn Opcode_beqz_n_encode_fns
[] = {
8215 0, 0, Opcode_beqz_n_Slot_inst16b_encode
8218 xtensa_opcode_encode_fn Opcode_bnez_n_encode_fns
[] = {
8219 0, 0, Opcode_bnez_n_Slot_inst16b_encode
8222 xtensa_opcode_encode_fn Opcode_ill_n_encode_fns
[] = {
8223 0, 0, Opcode_ill_n_Slot_inst16b_encode
8226 xtensa_opcode_encode_fn Opcode_l32i_n_encode_fns
[] = {
8227 0, Opcode_l32i_n_Slot_inst16a_encode
, 0
8230 xtensa_opcode_encode_fn Opcode_mov_n_encode_fns
[] = {
8231 0, 0, Opcode_mov_n_Slot_inst16b_encode
8234 xtensa_opcode_encode_fn Opcode_movi_n_encode_fns
[] = {
8235 0, 0, Opcode_movi_n_Slot_inst16b_encode
8238 xtensa_opcode_encode_fn Opcode_nop_n_encode_fns
[] = {
8239 0, 0, Opcode_nop_n_Slot_inst16b_encode
8242 xtensa_opcode_encode_fn Opcode_ret_n_encode_fns
[] = {
8243 0, 0, Opcode_ret_n_Slot_inst16b_encode
8246 xtensa_opcode_encode_fn Opcode_s32i_n_encode_fns
[] = {
8247 0, Opcode_s32i_n_Slot_inst16a_encode
, 0
8250 xtensa_opcode_encode_fn Opcode_rur_threadptr_encode_fns
[] = {
8251 Opcode_rur_threadptr_Slot_inst_encode
, 0, 0
8254 xtensa_opcode_encode_fn Opcode_wur_threadptr_encode_fns
[] = {
8255 Opcode_wur_threadptr_Slot_inst_encode
, 0, 0
8258 xtensa_opcode_encode_fn Opcode_addi_encode_fns
[] = {
8259 Opcode_addi_Slot_inst_encode
, 0, 0
8262 xtensa_opcode_encode_fn Opcode_addmi_encode_fns
[] = {
8263 Opcode_addmi_Slot_inst_encode
, 0, 0
8266 xtensa_opcode_encode_fn Opcode_add_encode_fns
[] = {
8267 Opcode_add_Slot_inst_encode
, 0, 0
8270 xtensa_opcode_encode_fn Opcode_sub_encode_fns
[] = {
8271 Opcode_sub_Slot_inst_encode
, 0, 0
8274 xtensa_opcode_encode_fn Opcode_addx2_encode_fns
[] = {
8275 Opcode_addx2_Slot_inst_encode
, 0, 0
8278 xtensa_opcode_encode_fn Opcode_addx4_encode_fns
[] = {
8279 Opcode_addx4_Slot_inst_encode
, 0, 0
8282 xtensa_opcode_encode_fn Opcode_addx8_encode_fns
[] = {
8283 Opcode_addx8_Slot_inst_encode
, 0, 0
8286 xtensa_opcode_encode_fn Opcode_subx2_encode_fns
[] = {
8287 Opcode_subx2_Slot_inst_encode
, 0, 0
8290 xtensa_opcode_encode_fn Opcode_subx4_encode_fns
[] = {
8291 Opcode_subx4_Slot_inst_encode
, 0, 0
8294 xtensa_opcode_encode_fn Opcode_subx8_encode_fns
[] = {
8295 Opcode_subx8_Slot_inst_encode
, 0, 0
8298 xtensa_opcode_encode_fn Opcode_and_encode_fns
[] = {
8299 Opcode_and_Slot_inst_encode
, 0, 0
8302 xtensa_opcode_encode_fn Opcode_or_encode_fns
[] = {
8303 Opcode_or_Slot_inst_encode
, 0, 0
8306 xtensa_opcode_encode_fn Opcode_xor_encode_fns
[] = {
8307 Opcode_xor_Slot_inst_encode
, 0, 0
8310 xtensa_opcode_encode_fn Opcode_beqi_encode_fns
[] = {
8311 Opcode_beqi_Slot_inst_encode
, 0, 0
8314 xtensa_opcode_encode_fn Opcode_bnei_encode_fns
[] = {
8315 Opcode_bnei_Slot_inst_encode
, 0, 0
8318 xtensa_opcode_encode_fn Opcode_bgei_encode_fns
[] = {
8319 Opcode_bgei_Slot_inst_encode
, 0, 0
8322 xtensa_opcode_encode_fn Opcode_blti_encode_fns
[] = {
8323 Opcode_blti_Slot_inst_encode
, 0, 0
8326 xtensa_opcode_encode_fn Opcode_bbci_encode_fns
[] = {
8327 Opcode_bbci_Slot_inst_encode
, 0, 0
8330 xtensa_opcode_encode_fn Opcode_bbsi_encode_fns
[] = {
8331 Opcode_bbsi_Slot_inst_encode
, 0, 0
8334 xtensa_opcode_encode_fn Opcode_bgeui_encode_fns
[] = {
8335 Opcode_bgeui_Slot_inst_encode
, 0, 0
8338 xtensa_opcode_encode_fn Opcode_bltui_encode_fns
[] = {
8339 Opcode_bltui_Slot_inst_encode
, 0, 0
8342 xtensa_opcode_encode_fn Opcode_beq_encode_fns
[] = {
8343 Opcode_beq_Slot_inst_encode
, 0, 0
8346 xtensa_opcode_encode_fn Opcode_bne_encode_fns
[] = {
8347 Opcode_bne_Slot_inst_encode
, 0, 0
8350 xtensa_opcode_encode_fn Opcode_bge_encode_fns
[] = {
8351 Opcode_bge_Slot_inst_encode
, 0, 0
8354 xtensa_opcode_encode_fn Opcode_blt_encode_fns
[] = {
8355 Opcode_blt_Slot_inst_encode
, 0, 0
8358 xtensa_opcode_encode_fn Opcode_bgeu_encode_fns
[] = {
8359 Opcode_bgeu_Slot_inst_encode
, 0, 0
8362 xtensa_opcode_encode_fn Opcode_bltu_encode_fns
[] = {
8363 Opcode_bltu_Slot_inst_encode
, 0, 0
8366 xtensa_opcode_encode_fn Opcode_bany_encode_fns
[] = {
8367 Opcode_bany_Slot_inst_encode
, 0, 0
8370 xtensa_opcode_encode_fn Opcode_bnone_encode_fns
[] = {
8371 Opcode_bnone_Slot_inst_encode
, 0, 0
8374 xtensa_opcode_encode_fn Opcode_ball_encode_fns
[] = {
8375 Opcode_ball_Slot_inst_encode
, 0, 0
8378 xtensa_opcode_encode_fn Opcode_bnall_encode_fns
[] = {
8379 Opcode_bnall_Slot_inst_encode
, 0, 0
8382 xtensa_opcode_encode_fn Opcode_bbc_encode_fns
[] = {
8383 Opcode_bbc_Slot_inst_encode
, 0, 0
8386 xtensa_opcode_encode_fn Opcode_bbs_encode_fns
[] = {
8387 Opcode_bbs_Slot_inst_encode
, 0, 0
8390 xtensa_opcode_encode_fn Opcode_beqz_encode_fns
[] = {
8391 Opcode_beqz_Slot_inst_encode
, 0, 0
8394 xtensa_opcode_encode_fn Opcode_bnez_encode_fns
[] = {
8395 Opcode_bnez_Slot_inst_encode
, 0, 0
8398 xtensa_opcode_encode_fn Opcode_bgez_encode_fns
[] = {
8399 Opcode_bgez_Slot_inst_encode
, 0, 0
8402 xtensa_opcode_encode_fn Opcode_bltz_encode_fns
[] = {
8403 Opcode_bltz_Slot_inst_encode
, 0, 0
8406 xtensa_opcode_encode_fn Opcode_call0_encode_fns
[] = {
8407 Opcode_call0_Slot_inst_encode
, 0, 0
8410 xtensa_opcode_encode_fn Opcode_callx0_encode_fns
[] = {
8411 Opcode_callx0_Slot_inst_encode
, 0, 0
8414 xtensa_opcode_encode_fn Opcode_extui_encode_fns
[] = {
8415 Opcode_extui_Slot_inst_encode
, 0, 0
8418 xtensa_opcode_encode_fn Opcode_ill_encode_fns
[] = {
8419 Opcode_ill_Slot_inst_encode
, 0, 0
8422 xtensa_opcode_encode_fn Opcode_j_encode_fns
[] = {
8423 Opcode_j_Slot_inst_encode
, 0, 0
8426 xtensa_opcode_encode_fn Opcode_jx_encode_fns
[] = {
8427 Opcode_jx_Slot_inst_encode
, 0, 0
8430 xtensa_opcode_encode_fn Opcode_l16ui_encode_fns
[] = {
8431 Opcode_l16ui_Slot_inst_encode
, 0, 0
8434 xtensa_opcode_encode_fn Opcode_l16si_encode_fns
[] = {
8435 Opcode_l16si_Slot_inst_encode
, 0, 0
8438 xtensa_opcode_encode_fn Opcode_l32i_encode_fns
[] = {
8439 Opcode_l32i_Slot_inst_encode
, 0, 0
8442 xtensa_opcode_encode_fn Opcode_l32r_encode_fns
[] = {
8443 Opcode_l32r_Slot_inst_encode
, 0, 0
8446 xtensa_opcode_encode_fn Opcode_l8ui_encode_fns
[] = {
8447 Opcode_l8ui_Slot_inst_encode
, 0, 0
8450 xtensa_opcode_encode_fn Opcode_loop_encode_fns
[] = {
8451 Opcode_loop_Slot_inst_encode
, 0, 0
8454 xtensa_opcode_encode_fn Opcode_loopnez_encode_fns
[] = {
8455 Opcode_loopnez_Slot_inst_encode
, 0, 0
8458 xtensa_opcode_encode_fn Opcode_loopgtz_encode_fns
[] = {
8459 Opcode_loopgtz_Slot_inst_encode
, 0, 0
8462 xtensa_opcode_encode_fn Opcode_movi_encode_fns
[] = {
8463 Opcode_movi_Slot_inst_encode
, 0, 0
8466 xtensa_opcode_encode_fn Opcode_moveqz_encode_fns
[] = {
8467 Opcode_moveqz_Slot_inst_encode
, 0, 0
8470 xtensa_opcode_encode_fn Opcode_movnez_encode_fns
[] = {
8471 Opcode_movnez_Slot_inst_encode
, 0, 0
8474 xtensa_opcode_encode_fn Opcode_movltz_encode_fns
[] = {
8475 Opcode_movltz_Slot_inst_encode
, 0, 0
8478 xtensa_opcode_encode_fn Opcode_movgez_encode_fns
[] = {
8479 Opcode_movgez_Slot_inst_encode
, 0, 0
8482 xtensa_opcode_encode_fn Opcode_neg_encode_fns
[] = {
8483 Opcode_neg_Slot_inst_encode
, 0, 0
8486 xtensa_opcode_encode_fn Opcode_abs_encode_fns
[] = {
8487 Opcode_abs_Slot_inst_encode
, 0, 0
8490 xtensa_opcode_encode_fn Opcode_nop_encode_fns
[] = {
8491 Opcode_nop_Slot_inst_encode
, 0, 0
8494 xtensa_opcode_encode_fn Opcode_ret_encode_fns
[] = {
8495 Opcode_ret_Slot_inst_encode
, 0, 0
8498 xtensa_opcode_encode_fn Opcode_s16i_encode_fns
[] = {
8499 Opcode_s16i_Slot_inst_encode
, 0, 0
8502 xtensa_opcode_encode_fn Opcode_s32i_encode_fns
[] = {
8503 Opcode_s32i_Slot_inst_encode
, 0, 0
8506 xtensa_opcode_encode_fn Opcode_s8i_encode_fns
[] = {
8507 Opcode_s8i_Slot_inst_encode
, 0, 0
8510 xtensa_opcode_encode_fn Opcode_ssr_encode_fns
[] = {
8511 Opcode_ssr_Slot_inst_encode
, 0, 0
8514 xtensa_opcode_encode_fn Opcode_ssl_encode_fns
[] = {
8515 Opcode_ssl_Slot_inst_encode
, 0, 0
8518 xtensa_opcode_encode_fn Opcode_ssa8l_encode_fns
[] = {
8519 Opcode_ssa8l_Slot_inst_encode
, 0, 0
8522 xtensa_opcode_encode_fn Opcode_ssa8b_encode_fns
[] = {
8523 Opcode_ssa8b_Slot_inst_encode
, 0, 0
8526 xtensa_opcode_encode_fn Opcode_ssai_encode_fns
[] = {
8527 Opcode_ssai_Slot_inst_encode
, 0, 0
8530 xtensa_opcode_encode_fn Opcode_sll_encode_fns
[] = {
8531 Opcode_sll_Slot_inst_encode
, 0, 0
8534 xtensa_opcode_encode_fn Opcode_src_encode_fns
[] = {
8535 Opcode_src_Slot_inst_encode
, 0, 0
8538 xtensa_opcode_encode_fn Opcode_srl_encode_fns
[] = {
8539 Opcode_srl_Slot_inst_encode
, 0, 0
8542 xtensa_opcode_encode_fn Opcode_sra_encode_fns
[] = {
8543 Opcode_sra_Slot_inst_encode
, 0, 0
8546 xtensa_opcode_encode_fn Opcode_slli_encode_fns
[] = {
8547 Opcode_slli_Slot_inst_encode
, 0, 0
8550 xtensa_opcode_encode_fn Opcode_srai_encode_fns
[] = {
8551 Opcode_srai_Slot_inst_encode
, 0, 0
8554 xtensa_opcode_encode_fn Opcode_srli_encode_fns
[] = {
8555 Opcode_srli_Slot_inst_encode
, 0, 0
8558 xtensa_opcode_encode_fn Opcode_memw_encode_fns
[] = {
8559 Opcode_memw_Slot_inst_encode
, 0, 0
8562 xtensa_opcode_encode_fn Opcode_extw_encode_fns
[] = {
8563 Opcode_extw_Slot_inst_encode
, 0, 0
8566 xtensa_opcode_encode_fn Opcode_isync_encode_fns
[] = {
8567 Opcode_isync_Slot_inst_encode
, 0, 0
8570 xtensa_opcode_encode_fn Opcode_rsync_encode_fns
[] = {
8571 Opcode_rsync_Slot_inst_encode
, 0, 0
8574 xtensa_opcode_encode_fn Opcode_esync_encode_fns
[] = {
8575 Opcode_esync_Slot_inst_encode
, 0, 0
8578 xtensa_opcode_encode_fn Opcode_dsync_encode_fns
[] = {
8579 Opcode_dsync_Slot_inst_encode
, 0, 0
8582 xtensa_opcode_encode_fn Opcode_rsil_encode_fns
[] = {
8583 Opcode_rsil_Slot_inst_encode
, 0, 0
8586 xtensa_opcode_encode_fn Opcode_rsr_lend_encode_fns
[] = {
8587 Opcode_rsr_lend_Slot_inst_encode
, 0, 0
8590 xtensa_opcode_encode_fn Opcode_wsr_lend_encode_fns
[] = {
8591 Opcode_wsr_lend_Slot_inst_encode
, 0, 0
8594 xtensa_opcode_encode_fn Opcode_xsr_lend_encode_fns
[] = {
8595 Opcode_xsr_lend_Slot_inst_encode
, 0, 0
8598 xtensa_opcode_encode_fn Opcode_rsr_lcount_encode_fns
[] = {
8599 Opcode_rsr_lcount_Slot_inst_encode
, 0, 0
8602 xtensa_opcode_encode_fn Opcode_wsr_lcount_encode_fns
[] = {
8603 Opcode_wsr_lcount_Slot_inst_encode
, 0, 0
8606 xtensa_opcode_encode_fn Opcode_xsr_lcount_encode_fns
[] = {
8607 Opcode_xsr_lcount_Slot_inst_encode
, 0, 0
8610 xtensa_opcode_encode_fn Opcode_rsr_lbeg_encode_fns
[] = {
8611 Opcode_rsr_lbeg_Slot_inst_encode
, 0, 0
8614 xtensa_opcode_encode_fn Opcode_wsr_lbeg_encode_fns
[] = {
8615 Opcode_wsr_lbeg_Slot_inst_encode
, 0, 0
8618 xtensa_opcode_encode_fn Opcode_xsr_lbeg_encode_fns
[] = {
8619 Opcode_xsr_lbeg_Slot_inst_encode
, 0, 0
8622 xtensa_opcode_encode_fn Opcode_rsr_sar_encode_fns
[] = {
8623 Opcode_rsr_sar_Slot_inst_encode
, 0, 0
8626 xtensa_opcode_encode_fn Opcode_wsr_sar_encode_fns
[] = {
8627 Opcode_wsr_sar_Slot_inst_encode
, 0, 0
8630 xtensa_opcode_encode_fn Opcode_xsr_sar_encode_fns
[] = {
8631 Opcode_xsr_sar_Slot_inst_encode
, 0, 0
8634 xtensa_opcode_encode_fn Opcode_rsr_litbase_encode_fns
[] = {
8635 Opcode_rsr_litbase_Slot_inst_encode
, 0, 0
8638 xtensa_opcode_encode_fn Opcode_wsr_litbase_encode_fns
[] = {
8639 Opcode_wsr_litbase_Slot_inst_encode
, 0, 0
8642 xtensa_opcode_encode_fn Opcode_xsr_litbase_encode_fns
[] = {
8643 Opcode_xsr_litbase_Slot_inst_encode
, 0, 0
8646 xtensa_opcode_encode_fn Opcode_rsr_176_encode_fns
[] = {
8647 Opcode_rsr_176_Slot_inst_encode
, 0, 0
8650 xtensa_opcode_encode_fn Opcode_wsr_176_encode_fns
[] = {
8651 Opcode_wsr_176_Slot_inst_encode
, 0, 0
8654 xtensa_opcode_encode_fn Opcode_rsr_208_encode_fns
[] = {
8655 Opcode_rsr_208_Slot_inst_encode
, 0, 0
8658 xtensa_opcode_encode_fn Opcode_rsr_ps_encode_fns
[] = {
8659 Opcode_rsr_ps_Slot_inst_encode
, 0, 0
8662 xtensa_opcode_encode_fn Opcode_wsr_ps_encode_fns
[] = {
8663 Opcode_wsr_ps_Slot_inst_encode
, 0, 0
8666 xtensa_opcode_encode_fn Opcode_xsr_ps_encode_fns
[] = {
8667 Opcode_xsr_ps_Slot_inst_encode
, 0, 0
8670 xtensa_opcode_encode_fn Opcode_rsr_epc1_encode_fns
[] = {
8671 Opcode_rsr_epc1_Slot_inst_encode
, 0, 0
8674 xtensa_opcode_encode_fn Opcode_wsr_epc1_encode_fns
[] = {
8675 Opcode_wsr_epc1_Slot_inst_encode
, 0, 0
8678 xtensa_opcode_encode_fn Opcode_xsr_epc1_encode_fns
[] = {
8679 Opcode_xsr_epc1_Slot_inst_encode
, 0, 0
8682 xtensa_opcode_encode_fn Opcode_rsr_excsave1_encode_fns
[] = {
8683 Opcode_rsr_excsave1_Slot_inst_encode
, 0, 0
8686 xtensa_opcode_encode_fn Opcode_wsr_excsave1_encode_fns
[] = {
8687 Opcode_wsr_excsave1_Slot_inst_encode
, 0, 0
8690 xtensa_opcode_encode_fn Opcode_xsr_excsave1_encode_fns
[] = {
8691 Opcode_xsr_excsave1_Slot_inst_encode
, 0, 0
8694 xtensa_opcode_encode_fn Opcode_rsr_epc2_encode_fns
[] = {
8695 Opcode_rsr_epc2_Slot_inst_encode
, 0, 0
8698 xtensa_opcode_encode_fn Opcode_wsr_epc2_encode_fns
[] = {
8699 Opcode_wsr_epc2_Slot_inst_encode
, 0, 0
8702 xtensa_opcode_encode_fn Opcode_xsr_epc2_encode_fns
[] = {
8703 Opcode_xsr_epc2_Slot_inst_encode
, 0, 0
8706 xtensa_opcode_encode_fn Opcode_rsr_excsave2_encode_fns
[] = {
8707 Opcode_rsr_excsave2_Slot_inst_encode
, 0, 0
8710 xtensa_opcode_encode_fn Opcode_wsr_excsave2_encode_fns
[] = {
8711 Opcode_wsr_excsave2_Slot_inst_encode
, 0, 0
8714 xtensa_opcode_encode_fn Opcode_xsr_excsave2_encode_fns
[] = {
8715 Opcode_xsr_excsave2_Slot_inst_encode
, 0, 0
8718 xtensa_opcode_encode_fn Opcode_rsr_epc3_encode_fns
[] = {
8719 Opcode_rsr_epc3_Slot_inst_encode
, 0, 0
8722 xtensa_opcode_encode_fn Opcode_wsr_epc3_encode_fns
[] = {
8723 Opcode_wsr_epc3_Slot_inst_encode
, 0, 0
8726 xtensa_opcode_encode_fn Opcode_xsr_epc3_encode_fns
[] = {
8727 Opcode_xsr_epc3_Slot_inst_encode
, 0, 0
8730 xtensa_opcode_encode_fn Opcode_rsr_excsave3_encode_fns
[] = {
8731 Opcode_rsr_excsave3_Slot_inst_encode
, 0, 0
8734 xtensa_opcode_encode_fn Opcode_wsr_excsave3_encode_fns
[] = {
8735 Opcode_wsr_excsave3_Slot_inst_encode
, 0, 0
8738 xtensa_opcode_encode_fn Opcode_xsr_excsave3_encode_fns
[] = {
8739 Opcode_xsr_excsave3_Slot_inst_encode
, 0, 0
8742 xtensa_opcode_encode_fn Opcode_rsr_epc4_encode_fns
[] = {
8743 Opcode_rsr_epc4_Slot_inst_encode
, 0, 0
8746 xtensa_opcode_encode_fn Opcode_wsr_epc4_encode_fns
[] = {
8747 Opcode_wsr_epc4_Slot_inst_encode
, 0, 0
8750 xtensa_opcode_encode_fn Opcode_xsr_epc4_encode_fns
[] = {
8751 Opcode_xsr_epc4_Slot_inst_encode
, 0, 0
8754 xtensa_opcode_encode_fn Opcode_rsr_excsave4_encode_fns
[] = {
8755 Opcode_rsr_excsave4_Slot_inst_encode
, 0, 0
8758 xtensa_opcode_encode_fn Opcode_wsr_excsave4_encode_fns
[] = {
8759 Opcode_wsr_excsave4_Slot_inst_encode
, 0, 0
8762 xtensa_opcode_encode_fn Opcode_xsr_excsave4_encode_fns
[] = {
8763 Opcode_xsr_excsave4_Slot_inst_encode
, 0, 0
8766 xtensa_opcode_encode_fn Opcode_rsr_epc5_encode_fns
[] = {
8767 Opcode_rsr_epc5_Slot_inst_encode
, 0, 0
8770 xtensa_opcode_encode_fn Opcode_wsr_epc5_encode_fns
[] = {
8771 Opcode_wsr_epc5_Slot_inst_encode
, 0, 0
8774 xtensa_opcode_encode_fn Opcode_xsr_epc5_encode_fns
[] = {
8775 Opcode_xsr_epc5_Slot_inst_encode
, 0, 0
8778 xtensa_opcode_encode_fn Opcode_rsr_excsave5_encode_fns
[] = {
8779 Opcode_rsr_excsave5_Slot_inst_encode
, 0, 0
8782 xtensa_opcode_encode_fn Opcode_wsr_excsave5_encode_fns
[] = {
8783 Opcode_wsr_excsave5_Slot_inst_encode
, 0, 0
8786 xtensa_opcode_encode_fn Opcode_xsr_excsave5_encode_fns
[] = {
8787 Opcode_xsr_excsave5_Slot_inst_encode
, 0, 0
8790 xtensa_opcode_encode_fn Opcode_rsr_epc6_encode_fns
[] = {
8791 Opcode_rsr_epc6_Slot_inst_encode
, 0, 0
8794 xtensa_opcode_encode_fn Opcode_wsr_epc6_encode_fns
[] = {
8795 Opcode_wsr_epc6_Slot_inst_encode
, 0, 0
8798 xtensa_opcode_encode_fn Opcode_xsr_epc6_encode_fns
[] = {
8799 Opcode_xsr_epc6_Slot_inst_encode
, 0, 0
8802 xtensa_opcode_encode_fn Opcode_rsr_excsave6_encode_fns
[] = {
8803 Opcode_rsr_excsave6_Slot_inst_encode
, 0, 0
8806 xtensa_opcode_encode_fn Opcode_wsr_excsave6_encode_fns
[] = {
8807 Opcode_wsr_excsave6_Slot_inst_encode
, 0, 0
8810 xtensa_opcode_encode_fn Opcode_xsr_excsave6_encode_fns
[] = {
8811 Opcode_xsr_excsave6_Slot_inst_encode
, 0, 0
8814 xtensa_opcode_encode_fn Opcode_rsr_epc7_encode_fns
[] = {
8815 Opcode_rsr_epc7_Slot_inst_encode
, 0, 0
8818 xtensa_opcode_encode_fn Opcode_wsr_epc7_encode_fns
[] = {
8819 Opcode_wsr_epc7_Slot_inst_encode
, 0, 0
8822 xtensa_opcode_encode_fn Opcode_xsr_epc7_encode_fns
[] = {
8823 Opcode_xsr_epc7_Slot_inst_encode
, 0, 0
8826 xtensa_opcode_encode_fn Opcode_rsr_excsave7_encode_fns
[] = {
8827 Opcode_rsr_excsave7_Slot_inst_encode
, 0, 0
8830 xtensa_opcode_encode_fn Opcode_wsr_excsave7_encode_fns
[] = {
8831 Opcode_wsr_excsave7_Slot_inst_encode
, 0, 0
8834 xtensa_opcode_encode_fn Opcode_xsr_excsave7_encode_fns
[] = {
8835 Opcode_xsr_excsave7_Slot_inst_encode
, 0, 0
8838 xtensa_opcode_encode_fn Opcode_rsr_eps2_encode_fns
[] = {
8839 Opcode_rsr_eps2_Slot_inst_encode
, 0, 0
8842 xtensa_opcode_encode_fn Opcode_wsr_eps2_encode_fns
[] = {
8843 Opcode_wsr_eps2_Slot_inst_encode
, 0, 0
8846 xtensa_opcode_encode_fn Opcode_xsr_eps2_encode_fns
[] = {
8847 Opcode_xsr_eps2_Slot_inst_encode
, 0, 0
8850 xtensa_opcode_encode_fn Opcode_rsr_eps3_encode_fns
[] = {
8851 Opcode_rsr_eps3_Slot_inst_encode
, 0, 0
8854 xtensa_opcode_encode_fn Opcode_wsr_eps3_encode_fns
[] = {
8855 Opcode_wsr_eps3_Slot_inst_encode
, 0, 0
8858 xtensa_opcode_encode_fn Opcode_xsr_eps3_encode_fns
[] = {
8859 Opcode_xsr_eps3_Slot_inst_encode
, 0, 0
8862 xtensa_opcode_encode_fn Opcode_rsr_eps4_encode_fns
[] = {
8863 Opcode_rsr_eps4_Slot_inst_encode
, 0, 0
8866 xtensa_opcode_encode_fn Opcode_wsr_eps4_encode_fns
[] = {
8867 Opcode_wsr_eps4_Slot_inst_encode
, 0, 0
8870 xtensa_opcode_encode_fn Opcode_xsr_eps4_encode_fns
[] = {
8871 Opcode_xsr_eps4_Slot_inst_encode
, 0, 0
8874 xtensa_opcode_encode_fn Opcode_rsr_eps5_encode_fns
[] = {
8875 Opcode_rsr_eps5_Slot_inst_encode
, 0, 0
8878 xtensa_opcode_encode_fn Opcode_wsr_eps5_encode_fns
[] = {
8879 Opcode_wsr_eps5_Slot_inst_encode
, 0, 0
8882 xtensa_opcode_encode_fn Opcode_xsr_eps5_encode_fns
[] = {
8883 Opcode_xsr_eps5_Slot_inst_encode
, 0, 0
8886 xtensa_opcode_encode_fn Opcode_rsr_eps6_encode_fns
[] = {
8887 Opcode_rsr_eps6_Slot_inst_encode
, 0, 0
8890 xtensa_opcode_encode_fn Opcode_wsr_eps6_encode_fns
[] = {
8891 Opcode_wsr_eps6_Slot_inst_encode
, 0, 0
8894 xtensa_opcode_encode_fn Opcode_xsr_eps6_encode_fns
[] = {
8895 Opcode_xsr_eps6_Slot_inst_encode
, 0, 0
8898 xtensa_opcode_encode_fn Opcode_rsr_eps7_encode_fns
[] = {
8899 Opcode_rsr_eps7_Slot_inst_encode
, 0, 0
8902 xtensa_opcode_encode_fn Opcode_wsr_eps7_encode_fns
[] = {
8903 Opcode_wsr_eps7_Slot_inst_encode
, 0, 0
8906 xtensa_opcode_encode_fn Opcode_xsr_eps7_encode_fns
[] = {
8907 Opcode_xsr_eps7_Slot_inst_encode
, 0, 0
8910 xtensa_opcode_encode_fn Opcode_rsr_excvaddr_encode_fns
[] = {
8911 Opcode_rsr_excvaddr_Slot_inst_encode
, 0, 0
8914 xtensa_opcode_encode_fn Opcode_wsr_excvaddr_encode_fns
[] = {
8915 Opcode_wsr_excvaddr_Slot_inst_encode
, 0, 0
8918 xtensa_opcode_encode_fn Opcode_xsr_excvaddr_encode_fns
[] = {
8919 Opcode_xsr_excvaddr_Slot_inst_encode
, 0, 0
8922 xtensa_opcode_encode_fn Opcode_rsr_depc_encode_fns
[] = {
8923 Opcode_rsr_depc_Slot_inst_encode
, 0, 0
8926 xtensa_opcode_encode_fn Opcode_wsr_depc_encode_fns
[] = {
8927 Opcode_wsr_depc_Slot_inst_encode
, 0, 0
8930 xtensa_opcode_encode_fn Opcode_xsr_depc_encode_fns
[] = {
8931 Opcode_xsr_depc_Slot_inst_encode
, 0, 0
8934 xtensa_opcode_encode_fn Opcode_rsr_exccause_encode_fns
[] = {
8935 Opcode_rsr_exccause_Slot_inst_encode
, 0, 0
8938 xtensa_opcode_encode_fn Opcode_wsr_exccause_encode_fns
[] = {
8939 Opcode_wsr_exccause_Slot_inst_encode
, 0, 0
8942 xtensa_opcode_encode_fn Opcode_xsr_exccause_encode_fns
[] = {
8943 Opcode_xsr_exccause_Slot_inst_encode
, 0, 0
8946 xtensa_opcode_encode_fn Opcode_rsr_misc0_encode_fns
[] = {
8947 Opcode_rsr_misc0_Slot_inst_encode
, 0, 0
8950 xtensa_opcode_encode_fn Opcode_wsr_misc0_encode_fns
[] = {
8951 Opcode_wsr_misc0_Slot_inst_encode
, 0, 0
8954 xtensa_opcode_encode_fn Opcode_xsr_misc0_encode_fns
[] = {
8955 Opcode_xsr_misc0_Slot_inst_encode
, 0, 0
8958 xtensa_opcode_encode_fn Opcode_rsr_misc1_encode_fns
[] = {
8959 Opcode_rsr_misc1_Slot_inst_encode
, 0, 0
8962 xtensa_opcode_encode_fn Opcode_wsr_misc1_encode_fns
[] = {
8963 Opcode_wsr_misc1_Slot_inst_encode
, 0, 0
8966 xtensa_opcode_encode_fn Opcode_xsr_misc1_encode_fns
[] = {
8967 Opcode_xsr_misc1_Slot_inst_encode
, 0, 0
8970 xtensa_opcode_encode_fn Opcode_rsr_prid_encode_fns
[] = {
8971 Opcode_rsr_prid_Slot_inst_encode
, 0, 0
8974 xtensa_opcode_encode_fn Opcode_rsr_vecbase_encode_fns
[] = {
8975 Opcode_rsr_vecbase_Slot_inst_encode
, 0, 0
8978 xtensa_opcode_encode_fn Opcode_wsr_vecbase_encode_fns
[] = {
8979 Opcode_wsr_vecbase_Slot_inst_encode
, 0, 0
8982 xtensa_opcode_encode_fn Opcode_xsr_vecbase_encode_fns
[] = {
8983 Opcode_xsr_vecbase_Slot_inst_encode
, 0, 0
8986 xtensa_opcode_encode_fn Opcode_mul16u_encode_fns
[] = {
8987 Opcode_mul16u_Slot_inst_encode
, 0, 0
8990 xtensa_opcode_encode_fn Opcode_mul16s_encode_fns
[] = {
8991 Opcode_mul16s_Slot_inst_encode
, 0, 0
8994 xtensa_opcode_encode_fn Opcode_rfi_encode_fns
[] = {
8995 Opcode_rfi_Slot_inst_encode
, 0, 0
8998 xtensa_opcode_encode_fn Opcode_waiti_encode_fns
[] = {
8999 Opcode_waiti_Slot_inst_encode
, 0, 0
9002 xtensa_opcode_encode_fn Opcode_rsr_interrupt_encode_fns
[] = {
9003 Opcode_rsr_interrupt_Slot_inst_encode
, 0, 0
9006 xtensa_opcode_encode_fn Opcode_wsr_intset_encode_fns
[] = {
9007 Opcode_wsr_intset_Slot_inst_encode
, 0, 0
9010 xtensa_opcode_encode_fn Opcode_wsr_intclear_encode_fns
[] = {
9011 Opcode_wsr_intclear_Slot_inst_encode
, 0, 0
9014 xtensa_opcode_encode_fn Opcode_rsr_intenable_encode_fns
[] = {
9015 Opcode_rsr_intenable_Slot_inst_encode
, 0, 0
9018 xtensa_opcode_encode_fn Opcode_wsr_intenable_encode_fns
[] = {
9019 Opcode_wsr_intenable_Slot_inst_encode
, 0, 0
9022 xtensa_opcode_encode_fn Opcode_xsr_intenable_encode_fns
[] = {
9023 Opcode_xsr_intenable_Slot_inst_encode
, 0, 0
9026 xtensa_opcode_encode_fn Opcode_break_encode_fns
[] = {
9027 Opcode_break_Slot_inst_encode
, 0, 0
9030 xtensa_opcode_encode_fn Opcode_break_n_encode_fns
[] = {
9031 0, 0, Opcode_break_n_Slot_inst16b_encode
9034 xtensa_opcode_encode_fn Opcode_rsr_dbreaka0_encode_fns
[] = {
9035 Opcode_rsr_dbreaka0_Slot_inst_encode
, 0, 0
9038 xtensa_opcode_encode_fn Opcode_wsr_dbreaka0_encode_fns
[] = {
9039 Opcode_wsr_dbreaka0_Slot_inst_encode
, 0, 0
9042 xtensa_opcode_encode_fn Opcode_xsr_dbreaka0_encode_fns
[] = {
9043 Opcode_xsr_dbreaka0_Slot_inst_encode
, 0, 0
9046 xtensa_opcode_encode_fn Opcode_rsr_dbreakc0_encode_fns
[] = {
9047 Opcode_rsr_dbreakc0_Slot_inst_encode
, 0, 0
9050 xtensa_opcode_encode_fn Opcode_wsr_dbreakc0_encode_fns
[] = {
9051 Opcode_wsr_dbreakc0_Slot_inst_encode
, 0, 0
9054 xtensa_opcode_encode_fn Opcode_xsr_dbreakc0_encode_fns
[] = {
9055 Opcode_xsr_dbreakc0_Slot_inst_encode
, 0, 0
9058 xtensa_opcode_encode_fn Opcode_rsr_dbreaka1_encode_fns
[] = {
9059 Opcode_rsr_dbreaka1_Slot_inst_encode
, 0, 0
9062 xtensa_opcode_encode_fn Opcode_wsr_dbreaka1_encode_fns
[] = {
9063 Opcode_wsr_dbreaka1_Slot_inst_encode
, 0, 0
9066 xtensa_opcode_encode_fn Opcode_xsr_dbreaka1_encode_fns
[] = {
9067 Opcode_xsr_dbreaka1_Slot_inst_encode
, 0, 0
9070 xtensa_opcode_encode_fn Opcode_rsr_dbreakc1_encode_fns
[] = {
9071 Opcode_rsr_dbreakc1_Slot_inst_encode
, 0, 0
9074 xtensa_opcode_encode_fn Opcode_wsr_dbreakc1_encode_fns
[] = {
9075 Opcode_wsr_dbreakc1_Slot_inst_encode
, 0, 0
9078 xtensa_opcode_encode_fn Opcode_xsr_dbreakc1_encode_fns
[] = {
9079 Opcode_xsr_dbreakc1_Slot_inst_encode
, 0, 0
9082 xtensa_opcode_encode_fn Opcode_rsr_ibreaka0_encode_fns
[] = {
9083 Opcode_rsr_ibreaka0_Slot_inst_encode
, 0, 0
9086 xtensa_opcode_encode_fn Opcode_wsr_ibreaka0_encode_fns
[] = {
9087 Opcode_wsr_ibreaka0_Slot_inst_encode
, 0, 0
9090 xtensa_opcode_encode_fn Opcode_xsr_ibreaka0_encode_fns
[] = {
9091 Opcode_xsr_ibreaka0_Slot_inst_encode
, 0, 0
9094 xtensa_opcode_encode_fn Opcode_rsr_ibreaka1_encode_fns
[] = {
9095 Opcode_rsr_ibreaka1_Slot_inst_encode
, 0, 0
9098 xtensa_opcode_encode_fn Opcode_wsr_ibreaka1_encode_fns
[] = {
9099 Opcode_wsr_ibreaka1_Slot_inst_encode
, 0, 0
9102 xtensa_opcode_encode_fn Opcode_xsr_ibreaka1_encode_fns
[] = {
9103 Opcode_xsr_ibreaka1_Slot_inst_encode
, 0, 0
9106 xtensa_opcode_encode_fn Opcode_rsr_ibreakenable_encode_fns
[] = {
9107 Opcode_rsr_ibreakenable_Slot_inst_encode
, 0, 0
9110 xtensa_opcode_encode_fn Opcode_wsr_ibreakenable_encode_fns
[] = {
9111 Opcode_wsr_ibreakenable_Slot_inst_encode
, 0, 0
9114 xtensa_opcode_encode_fn Opcode_xsr_ibreakenable_encode_fns
[] = {
9115 Opcode_xsr_ibreakenable_Slot_inst_encode
, 0, 0
9118 xtensa_opcode_encode_fn Opcode_rsr_debugcause_encode_fns
[] = {
9119 Opcode_rsr_debugcause_Slot_inst_encode
, 0, 0
9122 xtensa_opcode_encode_fn Opcode_wsr_debugcause_encode_fns
[] = {
9123 Opcode_wsr_debugcause_Slot_inst_encode
, 0, 0
9126 xtensa_opcode_encode_fn Opcode_xsr_debugcause_encode_fns
[] = {
9127 Opcode_xsr_debugcause_Slot_inst_encode
, 0, 0
9130 xtensa_opcode_encode_fn Opcode_rsr_icount_encode_fns
[] = {
9131 Opcode_rsr_icount_Slot_inst_encode
, 0, 0
9134 xtensa_opcode_encode_fn Opcode_wsr_icount_encode_fns
[] = {
9135 Opcode_wsr_icount_Slot_inst_encode
, 0, 0
9138 xtensa_opcode_encode_fn Opcode_xsr_icount_encode_fns
[] = {
9139 Opcode_xsr_icount_Slot_inst_encode
, 0, 0
9142 xtensa_opcode_encode_fn Opcode_rsr_icountlevel_encode_fns
[] = {
9143 Opcode_rsr_icountlevel_Slot_inst_encode
, 0, 0
9146 xtensa_opcode_encode_fn Opcode_wsr_icountlevel_encode_fns
[] = {
9147 Opcode_wsr_icountlevel_Slot_inst_encode
, 0, 0
9150 xtensa_opcode_encode_fn Opcode_xsr_icountlevel_encode_fns
[] = {
9151 Opcode_xsr_icountlevel_Slot_inst_encode
, 0, 0
9154 xtensa_opcode_encode_fn Opcode_rsr_ddr_encode_fns
[] = {
9155 Opcode_rsr_ddr_Slot_inst_encode
, 0, 0
9158 xtensa_opcode_encode_fn Opcode_wsr_ddr_encode_fns
[] = {
9159 Opcode_wsr_ddr_Slot_inst_encode
, 0, 0
9162 xtensa_opcode_encode_fn Opcode_xsr_ddr_encode_fns
[] = {
9163 Opcode_xsr_ddr_Slot_inst_encode
, 0, 0
9166 xtensa_opcode_encode_fn Opcode_rfdo_encode_fns
[] = {
9167 Opcode_rfdo_Slot_inst_encode
, 0, 0
9170 xtensa_opcode_encode_fn Opcode_rfdd_encode_fns
[] = {
9171 Opcode_rfdd_Slot_inst_encode
, 0, 0
9174 xtensa_opcode_encode_fn Opcode_wsr_mmid_encode_fns
[] = {
9175 Opcode_wsr_mmid_Slot_inst_encode
, 0, 0
9178 xtensa_opcode_encode_fn Opcode_rsr_ccount_encode_fns
[] = {
9179 Opcode_rsr_ccount_Slot_inst_encode
, 0, 0
9182 xtensa_opcode_encode_fn Opcode_wsr_ccount_encode_fns
[] = {
9183 Opcode_wsr_ccount_Slot_inst_encode
, 0, 0
9186 xtensa_opcode_encode_fn Opcode_xsr_ccount_encode_fns
[] = {
9187 Opcode_xsr_ccount_Slot_inst_encode
, 0, 0
9190 xtensa_opcode_encode_fn Opcode_rsr_ccompare0_encode_fns
[] = {
9191 Opcode_rsr_ccompare0_Slot_inst_encode
, 0, 0
9194 xtensa_opcode_encode_fn Opcode_wsr_ccompare0_encode_fns
[] = {
9195 Opcode_wsr_ccompare0_Slot_inst_encode
, 0, 0
9198 xtensa_opcode_encode_fn Opcode_xsr_ccompare0_encode_fns
[] = {
9199 Opcode_xsr_ccompare0_Slot_inst_encode
, 0, 0
9202 xtensa_opcode_encode_fn Opcode_rsr_ccompare1_encode_fns
[] = {
9203 Opcode_rsr_ccompare1_Slot_inst_encode
, 0, 0
9206 xtensa_opcode_encode_fn Opcode_wsr_ccompare1_encode_fns
[] = {
9207 Opcode_wsr_ccompare1_Slot_inst_encode
, 0, 0
9210 xtensa_opcode_encode_fn Opcode_xsr_ccompare1_encode_fns
[] = {
9211 Opcode_xsr_ccompare1_Slot_inst_encode
, 0, 0
9214 xtensa_opcode_encode_fn Opcode_rsr_ccompare2_encode_fns
[] = {
9215 Opcode_rsr_ccompare2_Slot_inst_encode
, 0, 0
9218 xtensa_opcode_encode_fn Opcode_wsr_ccompare2_encode_fns
[] = {
9219 Opcode_wsr_ccompare2_Slot_inst_encode
, 0, 0
9222 xtensa_opcode_encode_fn Opcode_xsr_ccompare2_encode_fns
[] = {
9223 Opcode_xsr_ccompare2_Slot_inst_encode
, 0, 0
9226 xtensa_opcode_encode_fn Opcode_ipf_encode_fns
[] = {
9227 Opcode_ipf_Slot_inst_encode
, 0, 0
9230 xtensa_opcode_encode_fn Opcode_ihi_encode_fns
[] = {
9231 Opcode_ihi_Slot_inst_encode
, 0, 0
9234 xtensa_opcode_encode_fn Opcode_ipfl_encode_fns
[] = {
9235 Opcode_ipfl_Slot_inst_encode
, 0, 0
9238 xtensa_opcode_encode_fn Opcode_ihu_encode_fns
[] = {
9239 Opcode_ihu_Slot_inst_encode
, 0, 0
9242 xtensa_opcode_encode_fn Opcode_iiu_encode_fns
[] = {
9243 Opcode_iiu_Slot_inst_encode
, 0, 0
9246 xtensa_opcode_encode_fn Opcode_iii_encode_fns
[] = {
9247 Opcode_iii_Slot_inst_encode
, 0, 0
9250 xtensa_opcode_encode_fn Opcode_lict_encode_fns
[] = {
9251 Opcode_lict_Slot_inst_encode
, 0, 0
9254 xtensa_opcode_encode_fn Opcode_licw_encode_fns
[] = {
9255 Opcode_licw_Slot_inst_encode
, 0, 0
9258 xtensa_opcode_encode_fn Opcode_sict_encode_fns
[] = {
9259 Opcode_sict_Slot_inst_encode
, 0, 0
9262 xtensa_opcode_encode_fn Opcode_sicw_encode_fns
[] = {
9263 Opcode_sicw_Slot_inst_encode
, 0, 0
9266 xtensa_opcode_encode_fn Opcode_dhwb_encode_fns
[] = {
9267 Opcode_dhwb_Slot_inst_encode
, 0, 0
9270 xtensa_opcode_encode_fn Opcode_dhwbi_encode_fns
[] = {
9271 Opcode_dhwbi_Slot_inst_encode
, 0, 0
9274 xtensa_opcode_encode_fn Opcode_diwb_encode_fns
[] = {
9275 Opcode_diwb_Slot_inst_encode
, 0, 0
9278 xtensa_opcode_encode_fn Opcode_diwbi_encode_fns
[] = {
9279 Opcode_diwbi_Slot_inst_encode
, 0, 0
9282 xtensa_opcode_encode_fn Opcode_dhi_encode_fns
[] = {
9283 Opcode_dhi_Slot_inst_encode
, 0, 0
9286 xtensa_opcode_encode_fn Opcode_dii_encode_fns
[] = {
9287 Opcode_dii_Slot_inst_encode
, 0, 0
9290 xtensa_opcode_encode_fn Opcode_dpfr_encode_fns
[] = {
9291 Opcode_dpfr_Slot_inst_encode
, 0, 0
9294 xtensa_opcode_encode_fn Opcode_dpfw_encode_fns
[] = {
9295 Opcode_dpfw_Slot_inst_encode
, 0, 0
9298 xtensa_opcode_encode_fn Opcode_dpfro_encode_fns
[] = {
9299 Opcode_dpfro_Slot_inst_encode
, 0, 0
9302 xtensa_opcode_encode_fn Opcode_dpfwo_encode_fns
[] = {
9303 Opcode_dpfwo_Slot_inst_encode
, 0, 0
9306 xtensa_opcode_encode_fn Opcode_dpfl_encode_fns
[] = {
9307 Opcode_dpfl_Slot_inst_encode
, 0, 0
9310 xtensa_opcode_encode_fn Opcode_dhu_encode_fns
[] = {
9311 Opcode_dhu_Slot_inst_encode
, 0, 0
9314 xtensa_opcode_encode_fn Opcode_diu_encode_fns
[] = {
9315 Opcode_diu_Slot_inst_encode
, 0, 0
9318 xtensa_opcode_encode_fn Opcode_sdct_encode_fns
[] = {
9319 Opcode_sdct_Slot_inst_encode
, 0, 0
9322 xtensa_opcode_encode_fn Opcode_ldct_encode_fns
[] = {
9323 Opcode_ldct_Slot_inst_encode
, 0, 0
9326 xtensa_opcode_encode_fn Opcode_wsr_ptevaddr_encode_fns
[] = {
9327 Opcode_wsr_ptevaddr_Slot_inst_encode
, 0, 0
9330 xtensa_opcode_encode_fn Opcode_rsr_ptevaddr_encode_fns
[] = {
9331 Opcode_rsr_ptevaddr_Slot_inst_encode
, 0, 0
9334 xtensa_opcode_encode_fn Opcode_xsr_ptevaddr_encode_fns
[] = {
9335 Opcode_xsr_ptevaddr_Slot_inst_encode
, 0, 0
9338 xtensa_opcode_encode_fn Opcode_rsr_rasid_encode_fns
[] = {
9339 Opcode_rsr_rasid_Slot_inst_encode
, 0, 0
9342 xtensa_opcode_encode_fn Opcode_wsr_rasid_encode_fns
[] = {
9343 Opcode_wsr_rasid_Slot_inst_encode
, 0, 0
9346 xtensa_opcode_encode_fn Opcode_xsr_rasid_encode_fns
[] = {
9347 Opcode_xsr_rasid_Slot_inst_encode
, 0, 0
9350 xtensa_opcode_encode_fn Opcode_rsr_itlbcfg_encode_fns
[] = {
9351 Opcode_rsr_itlbcfg_Slot_inst_encode
, 0, 0
9354 xtensa_opcode_encode_fn Opcode_wsr_itlbcfg_encode_fns
[] = {
9355 Opcode_wsr_itlbcfg_Slot_inst_encode
, 0, 0
9358 xtensa_opcode_encode_fn Opcode_xsr_itlbcfg_encode_fns
[] = {
9359 Opcode_xsr_itlbcfg_Slot_inst_encode
, 0, 0
9362 xtensa_opcode_encode_fn Opcode_rsr_dtlbcfg_encode_fns
[] = {
9363 Opcode_rsr_dtlbcfg_Slot_inst_encode
, 0, 0
9366 xtensa_opcode_encode_fn Opcode_wsr_dtlbcfg_encode_fns
[] = {
9367 Opcode_wsr_dtlbcfg_Slot_inst_encode
, 0, 0
9370 xtensa_opcode_encode_fn Opcode_xsr_dtlbcfg_encode_fns
[] = {
9371 Opcode_xsr_dtlbcfg_Slot_inst_encode
, 0, 0
9374 xtensa_opcode_encode_fn Opcode_idtlb_encode_fns
[] = {
9375 Opcode_idtlb_Slot_inst_encode
, 0, 0
9378 xtensa_opcode_encode_fn Opcode_pdtlb_encode_fns
[] = {
9379 Opcode_pdtlb_Slot_inst_encode
, 0, 0
9382 xtensa_opcode_encode_fn Opcode_rdtlb0_encode_fns
[] = {
9383 Opcode_rdtlb0_Slot_inst_encode
, 0, 0
9386 xtensa_opcode_encode_fn Opcode_rdtlb1_encode_fns
[] = {
9387 Opcode_rdtlb1_Slot_inst_encode
, 0, 0
9390 xtensa_opcode_encode_fn Opcode_wdtlb_encode_fns
[] = {
9391 Opcode_wdtlb_Slot_inst_encode
, 0, 0
9394 xtensa_opcode_encode_fn Opcode_iitlb_encode_fns
[] = {
9395 Opcode_iitlb_Slot_inst_encode
, 0, 0
9398 xtensa_opcode_encode_fn Opcode_pitlb_encode_fns
[] = {
9399 Opcode_pitlb_Slot_inst_encode
, 0, 0
9402 xtensa_opcode_encode_fn Opcode_ritlb0_encode_fns
[] = {
9403 Opcode_ritlb0_Slot_inst_encode
, 0, 0
9406 xtensa_opcode_encode_fn Opcode_ritlb1_encode_fns
[] = {
9407 Opcode_ritlb1_Slot_inst_encode
, 0, 0
9410 xtensa_opcode_encode_fn Opcode_witlb_encode_fns
[] = {
9411 Opcode_witlb_Slot_inst_encode
, 0, 0
9414 xtensa_opcode_encode_fn Opcode_ldpte_encode_fns
[] = {
9415 Opcode_ldpte_Slot_inst_encode
, 0, 0
9418 xtensa_opcode_encode_fn Opcode_hwwitlba_encode_fns
[] = {
9419 Opcode_hwwitlba_Slot_inst_encode
, 0, 0
9422 xtensa_opcode_encode_fn Opcode_hwwdtlba_encode_fns
[] = {
9423 Opcode_hwwdtlba_Slot_inst_encode
, 0, 0
9426 xtensa_opcode_encode_fn Opcode_rsr_cpenable_encode_fns
[] = {
9427 Opcode_rsr_cpenable_Slot_inst_encode
, 0, 0
9430 xtensa_opcode_encode_fn Opcode_wsr_cpenable_encode_fns
[] = {
9431 Opcode_wsr_cpenable_Slot_inst_encode
, 0, 0
9434 xtensa_opcode_encode_fn Opcode_xsr_cpenable_encode_fns
[] = {
9435 Opcode_xsr_cpenable_Slot_inst_encode
, 0, 0
9438 xtensa_opcode_encode_fn Opcode_clamps_encode_fns
[] = {
9439 Opcode_clamps_Slot_inst_encode
, 0, 0
9442 xtensa_opcode_encode_fn Opcode_min_encode_fns
[] = {
9443 Opcode_min_Slot_inst_encode
, 0, 0
9446 xtensa_opcode_encode_fn Opcode_max_encode_fns
[] = {
9447 Opcode_max_Slot_inst_encode
, 0, 0
9450 xtensa_opcode_encode_fn Opcode_minu_encode_fns
[] = {
9451 Opcode_minu_Slot_inst_encode
, 0, 0
9454 xtensa_opcode_encode_fn Opcode_maxu_encode_fns
[] = {
9455 Opcode_maxu_Slot_inst_encode
, 0, 0
9458 xtensa_opcode_encode_fn Opcode_nsa_encode_fns
[] = {
9459 Opcode_nsa_Slot_inst_encode
, 0, 0
9462 xtensa_opcode_encode_fn Opcode_nsau_encode_fns
[] = {
9463 Opcode_nsau_Slot_inst_encode
, 0, 0
9466 xtensa_opcode_encode_fn Opcode_sext_encode_fns
[] = {
9467 Opcode_sext_Slot_inst_encode
, 0, 0
9470 xtensa_opcode_encode_fn Opcode_l32ai_encode_fns
[] = {
9471 Opcode_l32ai_Slot_inst_encode
, 0, 0
9474 xtensa_opcode_encode_fn Opcode_s32ri_encode_fns
[] = {
9475 Opcode_s32ri_Slot_inst_encode
, 0, 0
9478 xtensa_opcode_encode_fn Opcode_s32c1i_encode_fns
[] = {
9479 Opcode_s32c1i_Slot_inst_encode
, 0, 0
9482 xtensa_opcode_encode_fn Opcode_rsr_scompare1_encode_fns
[] = {
9483 Opcode_rsr_scompare1_Slot_inst_encode
, 0, 0
9486 xtensa_opcode_encode_fn Opcode_wsr_scompare1_encode_fns
[] = {
9487 Opcode_wsr_scompare1_Slot_inst_encode
, 0, 0
9490 xtensa_opcode_encode_fn Opcode_xsr_scompare1_encode_fns
[] = {
9491 Opcode_xsr_scompare1_Slot_inst_encode
, 0, 0
9494 xtensa_opcode_encode_fn Opcode_quou_encode_fns
[] = {
9495 Opcode_quou_Slot_inst_encode
, 0, 0
9498 xtensa_opcode_encode_fn Opcode_quos_encode_fns
[] = {
9499 Opcode_quos_Slot_inst_encode
, 0, 0
9502 xtensa_opcode_encode_fn Opcode_remu_encode_fns
[] = {
9503 Opcode_remu_Slot_inst_encode
, 0, 0
9506 xtensa_opcode_encode_fn Opcode_rems_encode_fns
[] = {
9507 Opcode_rems_Slot_inst_encode
, 0, 0
9510 xtensa_opcode_encode_fn Opcode_mull_encode_fns
[] = {
9511 Opcode_mull_Slot_inst_encode
, 0, 0
9517 static xtensa_opcode_internal opcodes
[] = {
9518 { "excw", ICLASS_xt_iclass_excw
,
9520 Opcode_excw_encode_fns
, 0, 0 },
9521 { "rfe", ICLASS_xt_iclass_rfe
,
9522 XTENSA_OPCODE_IS_JUMP
,
9523 Opcode_rfe_encode_fns
, 0, 0 },
9524 { "rfde", ICLASS_xt_iclass_rfde
,
9525 XTENSA_OPCODE_IS_JUMP
,
9526 Opcode_rfde_encode_fns
, 0, 0 },
9527 { "syscall", ICLASS_xt_iclass_syscall
,
9529 Opcode_syscall_encode_fns
, 0, 0 },
9530 { "simcall", ICLASS_xt_iclass_simcall
,
9532 Opcode_simcall_encode_fns
, 0, 0 },
9533 { "call12", ICLASS_xt_iclass_call12
,
9534 XTENSA_OPCODE_IS_CALL
,
9535 Opcode_call12_encode_fns
, 0, 0 },
9536 { "call8", ICLASS_xt_iclass_call8
,
9537 XTENSA_OPCODE_IS_CALL
,
9538 Opcode_call8_encode_fns
, 0, 0 },
9539 { "call4", ICLASS_xt_iclass_call4
,
9540 XTENSA_OPCODE_IS_CALL
,
9541 Opcode_call4_encode_fns
, 0, 0 },
9542 { "callx12", ICLASS_xt_iclass_callx12
,
9543 XTENSA_OPCODE_IS_CALL
,
9544 Opcode_callx12_encode_fns
, 0, 0 },
9545 { "callx8", ICLASS_xt_iclass_callx8
,
9546 XTENSA_OPCODE_IS_CALL
,
9547 Opcode_callx8_encode_fns
, 0, 0 },
9548 { "callx4", ICLASS_xt_iclass_callx4
,
9549 XTENSA_OPCODE_IS_CALL
,
9550 Opcode_callx4_encode_fns
, 0, 0 },
9551 { "entry", ICLASS_xt_iclass_entry
,
9553 Opcode_entry_encode_fns
, 0, 0 },
9554 { "movsp", ICLASS_xt_iclass_movsp
,
9556 Opcode_movsp_encode_fns
, 0, 0 },
9557 { "rotw", ICLASS_xt_iclass_rotw
,
9559 Opcode_rotw_encode_fns
, 0, 0 },
9560 { "retw", ICLASS_xt_iclass_retw
,
9561 XTENSA_OPCODE_IS_JUMP
,
9562 Opcode_retw_encode_fns
, 0, 0 },
9563 { "retw.n", ICLASS_xt_iclass_retw
,
9564 XTENSA_OPCODE_IS_JUMP
,
9565 Opcode_retw_n_encode_fns
, 0, 0 },
9566 { "rfwo", ICLASS_xt_iclass_rfwou
,
9567 XTENSA_OPCODE_IS_JUMP
,
9568 Opcode_rfwo_encode_fns
, 0, 0 },
9569 { "rfwu", ICLASS_xt_iclass_rfwou
,
9570 XTENSA_OPCODE_IS_JUMP
,
9571 Opcode_rfwu_encode_fns
, 0, 0 },
9572 { "l32e", ICLASS_xt_iclass_l32e
,
9574 Opcode_l32e_encode_fns
, 0, 0 },
9575 { "s32e", ICLASS_xt_iclass_s32e
,
9577 Opcode_s32e_encode_fns
, 0, 0 },
9578 { "rsr.windowbase", ICLASS_xt_iclass_rsr_windowbase
,
9580 Opcode_rsr_windowbase_encode_fns
, 0, 0 },
9581 { "wsr.windowbase", ICLASS_xt_iclass_wsr_windowbase
,
9583 Opcode_wsr_windowbase_encode_fns
, 0, 0 },
9584 { "xsr.windowbase", ICLASS_xt_iclass_xsr_windowbase
,
9586 Opcode_xsr_windowbase_encode_fns
, 0, 0 },
9587 { "rsr.windowstart", ICLASS_xt_iclass_rsr_windowstart
,
9589 Opcode_rsr_windowstart_encode_fns
, 0, 0 },
9590 { "wsr.windowstart", ICLASS_xt_iclass_wsr_windowstart
,
9592 Opcode_wsr_windowstart_encode_fns
, 0, 0 },
9593 { "xsr.windowstart", ICLASS_xt_iclass_xsr_windowstart
,
9595 Opcode_xsr_windowstart_encode_fns
, 0, 0 },
9596 { "add.n", ICLASS_xt_iclass_add_n
,
9598 Opcode_add_n_encode_fns
, 0, 0 },
9599 { "addi.n", ICLASS_xt_iclass_addi_n
,
9601 Opcode_addi_n_encode_fns
, 0, 0 },
9602 { "beqz.n", ICLASS_xt_iclass_bz6
,
9603 XTENSA_OPCODE_IS_BRANCH
,
9604 Opcode_beqz_n_encode_fns
, 0, 0 },
9605 { "bnez.n", ICLASS_xt_iclass_bz6
,
9606 XTENSA_OPCODE_IS_BRANCH
,
9607 Opcode_bnez_n_encode_fns
, 0, 0 },
9608 { "ill.n", ICLASS_xt_iclass_ill_n
,
9610 Opcode_ill_n_encode_fns
, 0, 0 },
9611 { "l32i.n", ICLASS_xt_iclass_loadi4
,
9613 Opcode_l32i_n_encode_fns
, 0, 0 },
9614 { "mov.n", ICLASS_xt_iclass_mov_n
,
9616 Opcode_mov_n_encode_fns
, 0, 0 },
9617 { "movi.n", ICLASS_xt_iclass_movi_n
,
9619 Opcode_movi_n_encode_fns
, 0, 0 },
9620 { "nop.n", ICLASS_xt_iclass_nopn
,
9622 Opcode_nop_n_encode_fns
, 0, 0 },
9623 { "ret.n", ICLASS_xt_iclass_retn
,
9624 XTENSA_OPCODE_IS_JUMP
,
9625 Opcode_ret_n_encode_fns
, 0, 0 },
9626 { "s32i.n", ICLASS_xt_iclass_storei4
,
9628 Opcode_s32i_n_encode_fns
, 0, 0 },
9629 { "rur.threadptr", ICLASS_rur_threadptr
,
9631 Opcode_rur_threadptr_encode_fns
, 0, 0 },
9632 { "wur.threadptr", ICLASS_wur_threadptr
,
9634 Opcode_wur_threadptr_encode_fns
, 0, 0 },
9635 { "addi", ICLASS_xt_iclass_addi
,
9637 Opcode_addi_encode_fns
, 0, 0 },
9638 { "addmi", ICLASS_xt_iclass_addmi
,
9640 Opcode_addmi_encode_fns
, 0, 0 },
9641 { "add", ICLASS_xt_iclass_addsub
,
9643 Opcode_add_encode_fns
, 0, 0 },
9644 { "sub", ICLASS_xt_iclass_addsub
,
9646 Opcode_sub_encode_fns
, 0, 0 },
9647 { "addx2", ICLASS_xt_iclass_addsub
,
9649 Opcode_addx2_encode_fns
, 0, 0 },
9650 { "addx4", ICLASS_xt_iclass_addsub
,
9652 Opcode_addx4_encode_fns
, 0, 0 },
9653 { "addx8", ICLASS_xt_iclass_addsub
,
9655 Opcode_addx8_encode_fns
, 0, 0 },
9656 { "subx2", ICLASS_xt_iclass_addsub
,
9658 Opcode_subx2_encode_fns
, 0, 0 },
9659 { "subx4", ICLASS_xt_iclass_addsub
,
9661 Opcode_subx4_encode_fns
, 0, 0 },
9662 { "subx8", ICLASS_xt_iclass_addsub
,
9664 Opcode_subx8_encode_fns
, 0, 0 },
9665 { "and", ICLASS_xt_iclass_bit
,
9667 Opcode_and_encode_fns
, 0, 0 },
9668 { "or", ICLASS_xt_iclass_bit
,
9670 Opcode_or_encode_fns
, 0, 0 },
9671 { "xor", ICLASS_xt_iclass_bit
,
9673 Opcode_xor_encode_fns
, 0, 0 },
9674 { "beqi", ICLASS_xt_iclass_bsi8
,
9675 XTENSA_OPCODE_IS_BRANCH
,
9676 Opcode_beqi_encode_fns
, 0, 0 },
9677 { "bnei", ICLASS_xt_iclass_bsi8
,
9678 XTENSA_OPCODE_IS_BRANCH
,
9679 Opcode_bnei_encode_fns
, 0, 0 },
9680 { "bgei", ICLASS_xt_iclass_bsi8
,
9681 XTENSA_OPCODE_IS_BRANCH
,
9682 Opcode_bgei_encode_fns
, 0, 0 },
9683 { "blti", ICLASS_xt_iclass_bsi8
,
9684 XTENSA_OPCODE_IS_BRANCH
,
9685 Opcode_blti_encode_fns
, 0, 0 },
9686 { "bbci", ICLASS_xt_iclass_bsi8b
,
9687 XTENSA_OPCODE_IS_BRANCH
,
9688 Opcode_bbci_encode_fns
, 0, 0 },
9689 { "bbsi", ICLASS_xt_iclass_bsi8b
,
9690 XTENSA_OPCODE_IS_BRANCH
,
9691 Opcode_bbsi_encode_fns
, 0, 0 },
9692 { "bgeui", ICLASS_xt_iclass_bsi8u
,
9693 XTENSA_OPCODE_IS_BRANCH
,
9694 Opcode_bgeui_encode_fns
, 0, 0 },
9695 { "bltui", ICLASS_xt_iclass_bsi8u
,
9696 XTENSA_OPCODE_IS_BRANCH
,
9697 Opcode_bltui_encode_fns
, 0, 0 },
9698 { "beq", ICLASS_xt_iclass_bst8
,
9699 XTENSA_OPCODE_IS_BRANCH
,
9700 Opcode_beq_encode_fns
, 0, 0 },
9701 { "bne", ICLASS_xt_iclass_bst8
,
9702 XTENSA_OPCODE_IS_BRANCH
,
9703 Opcode_bne_encode_fns
, 0, 0 },
9704 { "bge", ICLASS_xt_iclass_bst8
,
9705 XTENSA_OPCODE_IS_BRANCH
,
9706 Opcode_bge_encode_fns
, 0, 0 },
9707 { "blt", ICLASS_xt_iclass_bst8
,
9708 XTENSA_OPCODE_IS_BRANCH
,
9709 Opcode_blt_encode_fns
, 0, 0 },
9710 { "bgeu", ICLASS_xt_iclass_bst8
,
9711 XTENSA_OPCODE_IS_BRANCH
,
9712 Opcode_bgeu_encode_fns
, 0, 0 },
9713 { "bltu", ICLASS_xt_iclass_bst8
,
9714 XTENSA_OPCODE_IS_BRANCH
,
9715 Opcode_bltu_encode_fns
, 0, 0 },
9716 { "bany", ICLASS_xt_iclass_bst8
,
9717 XTENSA_OPCODE_IS_BRANCH
,
9718 Opcode_bany_encode_fns
, 0, 0 },
9719 { "bnone", ICLASS_xt_iclass_bst8
,
9720 XTENSA_OPCODE_IS_BRANCH
,
9721 Opcode_bnone_encode_fns
, 0, 0 },
9722 { "ball", ICLASS_xt_iclass_bst8
,
9723 XTENSA_OPCODE_IS_BRANCH
,
9724 Opcode_ball_encode_fns
, 0, 0 },
9725 { "bnall", ICLASS_xt_iclass_bst8
,
9726 XTENSA_OPCODE_IS_BRANCH
,
9727 Opcode_bnall_encode_fns
, 0, 0 },
9728 { "bbc", ICLASS_xt_iclass_bst8
,
9729 XTENSA_OPCODE_IS_BRANCH
,
9730 Opcode_bbc_encode_fns
, 0, 0 },
9731 { "bbs", ICLASS_xt_iclass_bst8
,
9732 XTENSA_OPCODE_IS_BRANCH
,
9733 Opcode_bbs_encode_fns
, 0, 0 },
9734 { "beqz", ICLASS_xt_iclass_bsz12
,
9735 XTENSA_OPCODE_IS_BRANCH
,
9736 Opcode_beqz_encode_fns
, 0, 0 },
9737 { "bnez", ICLASS_xt_iclass_bsz12
,
9738 XTENSA_OPCODE_IS_BRANCH
,
9739 Opcode_bnez_encode_fns
, 0, 0 },
9740 { "bgez", ICLASS_xt_iclass_bsz12
,
9741 XTENSA_OPCODE_IS_BRANCH
,
9742 Opcode_bgez_encode_fns
, 0, 0 },
9743 { "bltz", ICLASS_xt_iclass_bsz12
,
9744 XTENSA_OPCODE_IS_BRANCH
,
9745 Opcode_bltz_encode_fns
, 0, 0 },
9746 { "call0", ICLASS_xt_iclass_call0
,
9747 XTENSA_OPCODE_IS_CALL
,
9748 Opcode_call0_encode_fns
, 0, 0 },
9749 { "callx0", ICLASS_xt_iclass_callx0
,
9750 XTENSA_OPCODE_IS_CALL
,
9751 Opcode_callx0_encode_fns
, 0, 0 },
9752 { "extui", ICLASS_xt_iclass_exti
,
9754 Opcode_extui_encode_fns
, 0, 0 },
9755 { "ill", ICLASS_xt_iclass_ill
,
9757 Opcode_ill_encode_fns
, 0, 0 },
9758 { "j", ICLASS_xt_iclass_jump
,
9759 XTENSA_OPCODE_IS_JUMP
,
9760 Opcode_j_encode_fns
, 0, 0 },
9761 { "jx", ICLASS_xt_iclass_jumpx
,
9762 XTENSA_OPCODE_IS_JUMP
,
9763 Opcode_jx_encode_fns
, 0, 0 },
9764 { "l16ui", ICLASS_xt_iclass_l16ui
,
9766 Opcode_l16ui_encode_fns
, 0, 0 },
9767 { "l16si", ICLASS_xt_iclass_l16si
,
9769 Opcode_l16si_encode_fns
, 0, 0 },
9770 { "l32i", ICLASS_xt_iclass_l32i
,
9772 Opcode_l32i_encode_fns
, 0, 0 },
9773 { "l32r", ICLASS_xt_iclass_l32r
,
9775 Opcode_l32r_encode_fns
, 0, 0 },
9776 { "l8ui", ICLASS_xt_iclass_l8i
,
9778 Opcode_l8ui_encode_fns
, 0, 0 },
9779 { "loop", ICLASS_xt_iclass_loop
,
9780 XTENSA_OPCODE_IS_LOOP
,
9781 Opcode_loop_encode_fns
, 0, 0 },
9782 { "loopnez", ICLASS_xt_iclass_loopz
,
9783 XTENSA_OPCODE_IS_LOOP
,
9784 Opcode_loopnez_encode_fns
, 0, 0 },
9785 { "loopgtz", ICLASS_xt_iclass_loopz
,
9786 XTENSA_OPCODE_IS_LOOP
,
9787 Opcode_loopgtz_encode_fns
, 0, 0 },
9788 { "movi", ICLASS_xt_iclass_movi
,
9790 Opcode_movi_encode_fns
, 0, 0 },
9791 { "moveqz", ICLASS_xt_iclass_movz
,
9793 Opcode_moveqz_encode_fns
, 0, 0 },
9794 { "movnez", ICLASS_xt_iclass_movz
,
9796 Opcode_movnez_encode_fns
, 0, 0 },
9797 { "movltz", ICLASS_xt_iclass_movz
,
9799 Opcode_movltz_encode_fns
, 0, 0 },
9800 { "movgez", ICLASS_xt_iclass_movz
,
9802 Opcode_movgez_encode_fns
, 0, 0 },
9803 { "neg", ICLASS_xt_iclass_neg
,
9805 Opcode_neg_encode_fns
, 0, 0 },
9806 { "abs", ICLASS_xt_iclass_neg
,
9808 Opcode_abs_encode_fns
, 0, 0 },
9809 { "nop", ICLASS_xt_iclass_nop
,
9811 Opcode_nop_encode_fns
, 0, 0 },
9812 { "ret", ICLASS_xt_iclass_return
,
9813 XTENSA_OPCODE_IS_JUMP
,
9814 Opcode_ret_encode_fns
, 0, 0 },
9815 { "s16i", ICLASS_xt_iclass_s16i
,
9817 Opcode_s16i_encode_fns
, 0, 0 },
9818 { "s32i", ICLASS_xt_iclass_s32i
,
9820 Opcode_s32i_encode_fns
, 0, 0 },
9821 { "s8i", ICLASS_xt_iclass_s8i
,
9823 Opcode_s8i_encode_fns
, 0, 0 },
9824 { "ssr", ICLASS_xt_iclass_sar
,
9826 Opcode_ssr_encode_fns
, 0, 0 },
9827 { "ssl", ICLASS_xt_iclass_sar
,
9829 Opcode_ssl_encode_fns
, 0, 0 },
9830 { "ssa8l", ICLASS_xt_iclass_sar
,
9832 Opcode_ssa8l_encode_fns
, 0, 0 },
9833 { "ssa8b", ICLASS_xt_iclass_sar
,
9835 Opcode_ssa8b_encode_fns
, 0, 0 },
9836 { "ssai", ICLASS_xt_iclass_sari
,
9838 Opcode_ssai_encode_fns
, 0, 0 },
9839 { "sll", ICLASS_xt_iclass_shifts
,
9841 Opcode_sll_encode_fns
, 0, 0 },
9842 { "src", ICLASS_xt_iclass_shiftst
,
9844 Opcode_src_encode_fns
, 0, 0 },
9845 { "srl", ICLASS_xt_iclass_shiftt
,
9847 Opcode_srl_encode_fns
, 0, 0 },
9848 { "sra", ICLASS_xt_iclass_shiftt
,
9850 Opcode_sra_encode_fns
, 0, 0 },
9851 { "slli", ICLASS_xt_iclass_slli
,
9853 Opcode_slli_encode_fns
, 0, 0 },
9854 { "srai", ICLASS_xt_iclass_srai
,
9856 Opcode_srai_encode_fns
, 0, 0 },
9857 { "srli", ICLASS_xt_iclass_srli
,
9859 Opcode_srli_encode_fns
, 0, 0 },
9860 { "memw", ICLASS_xt_iclass_memw
,
9862 Opcode_memw_encode_fns
, 0, 0 },
9863 { "extw", ICLASS_xt_iclass_extw
,
9865 Opcode_extw_encode_fns
, 0, 0 },
9866 { "isync", ICLASS_xt_iclass_isync
,
9868 Opcode_isync_encode_fns
, 0, 0 },
9869 { "rsync", ICLASS_xt_iclass_sync
,
9871 Opcode_rsync_encode_fns
, 0, 0 },
9872 { "esync", ICLASS_xt_iclass_sync
,
9874 Opcode_esync_encode_fns
, 0, 0 },
9875 { "dsync", ICLASS_xt_iclass_sync
,
9877 Opcode_dsync_encode_fns
, 0, 0 },
9878 { "rsil", ICLASS_xt_iclass_rsil
,
9880 Opcode_rsil_encode_fns
, 0, 0 },
9881 { "rsr.lend", ICLASS_xt_iclass_rsr_lend
,
9883 Opcode_rsr_lend_encode_fns
, 0, 0 },
9884 { "wsr.lend", ICLASS_xt_iclass_wsr_lend
,
9886 Opcode_wsr_lend_encode_fns
, 0, 0 },
9887 { "xsr.lend", ICLASS_xt_iclass_xsr_lend
,
9889 Opcode_xsr_lend_encode_fns
, 0, 0 },
9890 { "rsr.lcount", ICLASS_xt_iclass_rsr_lcount
,
9892 Opcode_rsr_lcount_encode_fns
, 0, 0 },
9893 { "wsr.lcount", ICLASS_xt_iclass_wsr_lcount
,
9895 Opcode_wsr_lcount_encode_fns
, 0, 0 },
9896 { "xsr.lcount", ICLASS_xt_iclass_xsr_lcount
,
9898 Opcode_xsr_lcount_encode_fns
, 0, 0 },
9899 { "rsr.lbeg", ICLASS_xt_iclass_rsr_lbeg
,
9901 Opcode_rsr_lbeg_encode_fns
, 0, 0 },
9902 { "wsr.lbeg", ICLASS_xt_iclass_wsr_lbeg
,
9904 Opcode_wsr_lbeg_encode_fns
, 0, 0 },
9905 { "xsr.lbeg", ICLASS_xt_iclass_xsr_lbeg
,
9907 Opcode_xsr_lbeg_encode_fns
, 0, 0 },
9908 { "rsr.sar", ICLASS_xt_iclass_rsr_sar
,
9910 Opcode_rsr_sar_encode_fns
, 0, 0 },
9911 { "wsr.sar", ICLASS_xt_iclass_wsr_sar
,
9913 Opcode_wsr_sar_encode_fns
, 0, 0 },
9914 { "xsr.sar", ICLASS_xt_iclass_xsr_sar
,
9916 Opcode_xsr_sar_encode_fns
, 0, 0 },
9917 { "rsr.litbase", ICLASS_xt_iclass_rsr_litbase
,
9919 Opcode_rsr_litbase_encode_fns
, 0, 0 },
9920 { "wsr.litbase", ICLASS_xt_iclass_wsr_litbase
,
9922 Opcode_wsr_litbase_encode_fns
, 0, 0 },
9923 { "xsr.litbase", ICLASS_xt_iclass_xsr_litbase
,
9925 Opcode_xsr_litbase_encode_fns
, 0, 0 },
9926 { "rsr.176", ICLASS_xt_iclass_rsr_176
,
9928 Opcode_rsr_176_encode_fns
, 0, 0 },
9929 { "wsr.176", ICLASS_xt_iclass_wsr_176
,
9931 Opcode_wsr_176_encode_fns
, 0, 0 },
9932 { "rsr.208", ICLASS_xt_iclass_rsr_208
,
9934 Opcode_rsr_208_encode_fns
, 0, 0 },
9935 { "rsr.ps", ICLASS_xt_iclass_rsr_ps
,
9937 Opcode_rsr_ps_encode_fns
, 0, 0 },
9938 { "wsr.ps", ICLASS_xt_iclass_wsr_ps
,
9940 Opcode_wsr_ps_encode_fns
, 0, 0 },
9941 { "xsr.ps", ICLASS_xt_iclass_xsr_ps
,
9943 Opcode_xsr_ps_encode_fns
, 0, 0 },
9944 { "rsr.epc1", ICLASS_xt_iclass_rsr_epc1
,
9946 Opcode_rsr_epc1_encode_fns
, 0, 0 },
9947 { "wsr.epc1", ICLASS_xt_iclass_wsr_epc1
,
9949 Opcode_wsr_epc1_encode_fns
, 0, 0 },
9950 { "xsr.epc1", ICLASS_xt_iclass_xsr_epc1
,
9952 Opcode_xsr_epc1_encode_fns
, 0, 0 },
9953 { "rsr.excsave1", ICLASS_xt_iclass_rsr_excsave1
,
9955 Opcode_rsr_excsave1_encode_fns
, 0, 0 },
9956 { "wsr.excsave1", ICLASS_xt_iclass_wsr_excsave1
,
9958 Opcode_wsr_excsave1_encode_fns
, 0, 0 },
9959 { "xsr.excsave1", ICLASS_xt_iclass_xsr_excsave1
,
9961 Opcode_xsr_excsave1_encode_fns
, 0, 0 },
9962 { "rsr.epc2", ICLASS_xt_iclass_rsr_epc2
,
9964 Opcode_rsr_epc2_encode_fns
, 0, 0 },
9965 { "wsr.epc2", ICLASS_xt_iclass_wsr_epc2
,
9967 Opcode_wsr_epc2_encode_fns
, 0, 0 },
9968 { "xsr.epc2", ICLASS_xt_iclass_xsr_epc2
,
9970 Opcode_xsr_epc2_encode_fns
, 0, 0 },
9971 { "rsr.excsave2", ICLASS_xt_iclass_rsr_excsave2
,
9973 Opcode_rsr_excsave2_encode_fns
, 0, 0 },
9974 { "wsr.excsave2", ICLASS_xt_iclass_wsr_excsave2
,
9976 Opcode_wsr_excsave2_encode_fns
, 0, 0 },
9977 { "xsr.excsave2", ICLASS_xt_iclass_xsr_excsave2
,
9979 Opcode_xsr_excsave2_encode_fns
, 0, 0 },
9980 { "rsr.epc3", ICLASS_xt_iclass_rsr_epc3
,
9982 Opcode_rsr_epc3_encode_fns
, 0, 0 },
9983 { "wsr.epc3", ICLASS_xt_iclass_wsr_epc3
,
9985 Opcode_wsr_epc3_encode_fns
, 0, 0 },
9986 { "xsr.epc3", ICLASS_xt_iclass_xsr_epc3
,
9988 Opcode_xsr_epc3_encode_fns
, 0, 0 },
9989 { "rsr.excsave3", ICLASS_xt_iclass_rsr_excsave3
,
9991 Opcode_rsr_excsave3_encode_fns
, 0, 0 },
9992 { "wsr.excsave3", ICLASS_xt_iclass_wsr_excsave3
,
9994 Opcode_wsr_excsave3_encode_fns
, 0, 0 },
9995 { "xsr.excsave3", ICLASS_xt_iclass_xsr_excsave3
,
9997 Opcode_xsr_excsave3_encode_fns
, 0, 0 },
9998 { "rsr.epc4", ICLASS_xt_iclass_rsr_epc4
,
10000 Opcode_rsr_epc4_encode_fns
, 0, 0 },
10001 { "wsr.epc4", ICLASS_xt_iclass_wsr_epc4
,
10003 Opcode_wsr_epc4_encode_fns
, 0, 0 },
10004 { "xsr.epc4", ICLASS_xt_iclass_xsr_epc4
,
10006 Opcode_xsr_epc4_encode_fns
, 0, 0 },
10007 { "rsr.excsave4", ICLASS_xt_iclass_rsr_excsave4
,
10009 Opcode_rsr_excsave4_encode_fns
, 0, 0 },
10010 { "wsr.excsave4", ICLASS_xt_iclass_wsr_excsave4
,
10012 Opcode_wsr_excsave4_encode_fns
, 0, 0 },
10013 { "xsr.excsave4", ICLASS_xt_iclass_xsr_excsave4
,
10015 Opcode_xsr_excsave4_encode_fns
, 0, 0 },
10016 { "rsr.epc5", ICLASS_xt_iclass_rsr_epc5
,
10018 Opcode_rsr_epc5_encode_fns
, 0, 0 },
10019 { "wsr.epc5", ICLASS_xt_iclass_wsr_epc5
,
10021 Opcode_wsr_epc5_encode_fns
, 0, 0 },
10022 { "xsr.epc5", ICLASS_xt_iclass_xsr_epc5
,
10024 Opcode_xsr_epc5_encode_fns
, 0, 0 },
10025 { "rsr.excsave5", ICLASS_xt_iclass_rsr_excsave5
,
10027 Opcode_rsr_excsave5_encode_fns
, 0, 0 },
10028 { "wsr.excsave5", ICLASS_xt_iclass_wsr_excsave5
,
10030 Opcode_wsr_excsave5_encode_fns
, 0, 0 },
10031 { "xsr.excsave5", ICLASS_xt_iclass_xsr_excsave5
,
10033 Opcode_xsr_excsave5_encode_fns
, 0, 0 },
10034 { "rsr.epc6", ICLASS_xt_iclass_rsr_epc6
,
10036 Opcode_rsr_epc6_encode_fns
, 0, 0 },
10037 { "wsr.epc6", ICLASS_xt_iclass_wsr_epc6
,
10039 Opcode_wsr_epc6_encode_fns
, 0, 0 },
10040 { "xsr.epc6", ICLASS_xt_iclass_xsr_epc6
,
10042 Opcode_xsr_epc6_encode_fns
, 0, 0 },
10043 { "rsr.excsave6", ICLASS_xt_iclass_rsr_excsave6
,
10045 Opcode_rsr_excsave6_encode_fns
, 0, 0 },
10046 { "wsr.excsave6", ICLASS_xt_iclass_wsr_excsave6
,
10048 Opcode_wsr_excsave6_encode_fns
, 0, 0 },
10049 { "xsr.excsave6", ICLASS_xt_iclass_xsr_excsave6
,
10051 Opcode_xsr_excsave6_encode_fns
, 0, 0 },
10052 { "rsr.epc7", ICLASS_xt_iclass_rsr_epc7
,
10054 Opcode_rsr_epc7_encode_fns
, 0, 0 },
10055 { "wsr.epc7", ICLASS_xt_iclass_wsr_epc7
,
10057 Opcode_wsr_epc7_encode_fns
, 0, 0 },
10058 { "xsr.epc7", ICLASS_xt_iclass_xsr_epc7
,
10060 Opcode_xsr_epc7_encode_fns
, 0, 0 },
10061 { "rsr.excsave7", ICLASS_xt_iclass_rsr_excsave7
,
10063 Opcode_rsr_excsave7_encode_fns
, 0, 0 },
10064 { "wsr.excsave7", ICLASS_xt_iclass_wsr_excsave7
,
10066 Opcode_wsr_excsave7_encode_fns
, 0, 0 },
10067 { "xsr.excsave7", ICLASS_xt_iclass_xsr_excsave7
,
10069 Opcode_xsr_excsave7_encode_fns
, 0, 0 },
10070 { "rsr.eps2", ICLASS_xt_iclass_rsr_eps2
,
10072 Opcode_rsr_eps2_encode_fns
, 0, 0 },
10073 { "wsr.eps2", ICLASS_xt_iclass_wsr_eps2
,
10075 Opcode_wsr_eps2_encode_fns
, 0, 0 },
10076 { "xsr.eps2", ICLASS_xt_iclass_xsr_eps2
,
10078 Opcode_xsr_eps2_encode_fns
, 0, 0 },
10079 { "rsr.eps3", ICLASS_xt_iclass_rsr_eps3
,
10081 Opcode_rsr_eps3_encode_fns
, 0, 0 },
10082 { "wsr.eps3", ICLASS_xt_iclass_wsr_eps3
,
10084 Opcode_wsr_eps3_encode_fns
, 0, 0 },
10085 { "xsr.eps3", ICLASS_xt_iclass_xsr_eps3
,
10087 Opcode_xsr_eps3_encode_fns
, 0, 0 },
10088 { "rsr.eps4", ICLASS_xt_iclass_rsr_eps4
,
10090 Opcode_rsr_eps4_encode_fns
, 0, 0 },
10091 { "wsr.eps4", ICLASS_xt_iclass_wsr_eps4
,
10093 Opcode_wsr_eps4_encode_fns
, 0, 0 },
10094 { "xsr.eps4", ICLASS_xt_iclass_xsr_eps4
,
10096 Opcode_xsr_eps4_encode_fns
, 0, 0 },
10097 { "rsr.eps5", ICLASS_xt_iclass_rsr_eps5
,
10099 Opcode_rsr_eps5_encode_fns
, 0, 0 },
10100 { "wsr.eps5", ICLASS_xt_iclass_wsr_eps5
,
10102 Opcode_wsr_eps5_encode_fns
, 0, 0 },
10103 { "xsr.eps5", ICLASS_xt_iclass_xsr_eps5
,
10105 Opcode_xsr_eps5_encode_fns
, 0, 0 },
10106 { "rsr.eps6", ICLASS_xt_iclass_rsr_eps6
,
10108 Opcode_rsr_eps6_encode_fns
, 0, 0 },
10109 { "wsr.eps6", ICLASS_xt_iclass_wsr_eps6
,
10111 Opcode_wsr_eps6_encode_fns
, 0, 0 },
10112 { "xsr.eps6", ICLASS_xt_iclass_xsr_eps6
,
10114 Opcode_xsr_eps6_encode_fns
, 0, 0 },
10115 { "rsr.eps7", ICLASS_xt_iclass_rsr_eps7
,
10117 Opcode_rsr_eps7_encode_fns
, 0, 0 },
10118 { "wsr.eps7", ICLASS_xt_iclass_wsr_eps7
,
10120 Opcode_wsr_eps7_encode_fns
, 0, 0 },
10121 { "xsr.eps7", ICLASS_xt_iclass_xsr_eps7
,
10123 Opcode_xsr_eps7_encode_fns
, 0, 0 },
10124 { "rsr.excvaddr", ICLASS_xt_iclass_rsr_excvaddr
,
10126 Opcode_rsr_excvaddr_encode_fns
, 0, 0 },
10127 { "wsr.excvaddr", ICLASS_xt_iclass_wsr_excvaddr
,
10129 Opcode_wsr_excvaddr_encode_fns
, 0, 0 },
10130 { "xsr.excvaddr", ICLASS_xt_iclass_xsr_excvaddr
,
10132 Opcode_xsr_excvaddr_encode_fns
, 0, 0 },
10133 { "rsr.depc", ICLASS_xt_iclass_rsr_depc
,
10135 Opcode_rsr_depc_encode_fns
, 0, 0 },
10136 { "wsr.depc", ICLASS_xt_iclass_wsr_depc
,
10138 Opcode_wsr_depc_encode_fns
, 0, 0 },
10139 { "xsr.depc", ICLASS_xt_iclass_xsr_depc
,
10141 Opcode_xsr_depc_encode_fns
, 0, 0 },
10142 { "rsr.exccause", ICLASS_xt_iclass_rsr_exccause
,
10144 Opcode_rsr_exccause_encode_fns
, 0, 0 },
10145 { "wsr.exccause", ICLASS_xt_iclass_wsr_exccause
,
10147 Opcode_wsr_exccause_encode_fns
, 0, 0 },
10148 { "xsr.exccause", ICLASS_xt_iclass_xsr_exccause
,
10150 Opcode_xsr_exccause_encode_fns
, 0, 0 },
10151 { "rsr.misc0", ICLASS_xt_iclass_rsr_misc0
,
10153 Opcode_rsr_misc0_encode_fns
, 0, 0 },
10154 { "wsr.misc0", ICLASS_xt_iclass_wsr_misc0
,
10156 Opcode_wsr_misc0_encode_fns
, 0, 0 },
10157 { "xsr.misc0", ICLASS_xt_iclass_xsr_misc0
,
10159 Opcode_xsr_misc0_encode_fns
, 0, 0 },
10160 { "rsr.misc1", ICLASS_xt_iclass_rsr_misc1
,
10162 Opcode_rsr_misc1_encode_fns
, 0, 0 },
10163 { "wsr.misc1", ICLASS_xt_iclass_wsr_misc1
,
10165 Opcode_wsr_misc1_encode_fns
, 0, 0 },
10166 { "xsr.misc1", ICLASS_xt_iclass_xsr_misc1
,
10168 Opcode_xsr_misc1_encode_fns
, 0, 0 },
10169 { "rsr.prid", ICLASS_xt_iclass_rsr_prid
,
10171 Opcode_rsr_prid_encode_fns
, 0, 0 },
10172 { "rsr.vecbase", ICLASS_xt_iclass_rsr_vecbase
,
10174 Opcode_rsr_vecbase_encode_fns
, 0, 0 },
10175 { "wsr.vecbase", ICLASS_xt_iclass_wsr_vecbase
,
10177 Opcode_wsr_vecbase_encode_fns
, 0, 0 },
10178 { "xsr.vecbase", ICLASS_xt_iclass_xsr_vecbase
,
10180 Opcode_xsr_vecbase_encode_fns
, 0, 0 },
10181 { "mul16u", ICLASS_xt_iclass_mul16
,
10183 Opcode_mul16u_encode_fns
, 0, 0 },
10184 { "mul16s", ICLASS_xt_iclass_mul16
,
10186 Opcode_mul16s_encode_fns
, 0, 0 },
10187 { "rfi", ICLASS_xt_iclass_rfi
,
10188 XTENSA_OPCODE_IS_JUMP
,
10189 Opcode_rfi_encode_fns
, 0, 0 },
10190 { "waiti", ICLASS_xt_iclass_wait
,
10192 Opcode_waiti_encode_fns
, 0, 0 },
10193 { "rsr.interrupt", ICLASS_xt_iclass_rsr_interrupt
,
10195 Opcode_rsr_interrupt_encode_fns
, 0, 0 },
10196 { "wsr.intset", ICLASS_xt_iclass_wsr_intset
,
10198 Opcode_wsr_intset_encode_fns
, 0, 0 },
10199 { "wsr.intclear", ICLASS_xt_iclass_wsr_intclear
,
10201 Opcode_wsr_intclear_encode_fns
, 0, 0 },
10202 { "rsr.intenable", ICLASS_xt_iclass_rsr_intenable
,
10204 Opcode_rsr_intenable_encode_fns
, 0, 0 },
10205 { "wsr.intenable", ICLASS_xt_iclass_wsr_intenable
,
10207 Opcode_wsr_intenable_encode_fns
, 0, 0 },
10208 { "xsr.intenable", ICLASS_xt_iclass_xsr_intenable
,
10210 Opcode_xsr_intenable_encode_fns
, 0, 0 },
10211 { "break", ICLASS_xt_iclass_break
,
10213 Opcode_break_encode_fns
, 0, 0 },
10214 { "break.n", ICLASS_xt_iclass_break_n
,
10216 Opcode_break_n_encode_fns
, 0, 0 },
10217 { "rsr.dbreaka0", ICLASS_xt_iclass_rsr_dbreaka0
,
10219 Opcode_rsr_dbreaka0_encode_fns
, 0, 0 },
10220 { "wsr.dbreaka0", ICLASS_xt_iclass_wsr_dbreaka0
,
10222 Opcode_wsr_dbreaka0_encode_fns
, 0, 0 },
10223 { "xsr.dbreaka0", ICLASS_xt_iclass_xsr_dbreaka0
,
10225 Opcode_xsr_dbreaka0_encode_fns
, 0, 0 },
10226 { "rsr.dbreakc0", ICLASS_xt_iclass_rsr_dbreakc0
,
10228 Opcode_rsr_dbreakc0_encode_fns
, 0, 0 },
10229 { "wsr.dbreakc0", ICLASS_xt_iclass_wsr_dbreakc0
,
10231 Opcode_wsr_dbreakc0_encode_fns
, 0, 0 },
10232 { "xsr.dbreakc0", ICLASS_xt_iclass_xsr_dbreakc0
,
10234 Opcode_xsr_dbreakc0_encode_fns
, 0, 0 },
10235 { "rsr.dbreaka1", ICLASS_xt_iclass_rsr_dbreaka1
,
10237 Opcode_rsr_dbreaka1_encode_fns
, 0, 0 },
10238 { "wsr.dbreaka1", ICLASS_xt_iclass_wsr_dbreaka1
,
10240 Opcode_wsr_dbreaka1_encode_fns
, 0, 0 },
10241 { "xsr.dbreaka1", ICLASS_xt_iclass_xsr_dbreaka1
,
10243 Opcode_xsr_dbreaka1_encode_fns
, 0, 0 },
10244 { "rsr.dbreakc1", ICLASS_xt_iclass_rsr_dbreakc1
,
10246 Opcode_rsr_dbreakc1_encode_fns
, 0, 0 },
10247 { "wsr.dbreakc1", ICLASS_xt_iclass_wsr_dbreakc1
,
10249 Opcode_wsr_dbreakc1_encode_fns
, 0, 0 },
10250 { "xsr.dbreakc1", ICLASS_xt_iclass_xsr_dbreakc1
,
10252 Opcode_xsr_dbreakc1_encode_fns
, 0, 0 },
10253 { "rsr.ibreaka0", ICLASS_xt_iclass_rsr_ibreaka0
,
10255 Opcode_rsr_ibreaka0_encode_fns
, 0, 0 },
10256 { "wsr.ibreaka0", ICLASS_xt_iclass_wsr_ibreaka0
,
10258 Opcode_wsr_ibreaka0_encode_fns
, 0, 0 },
10259 { "xsr.ibreaka0", ICLASS_xt_iclass_xsr_ibreaka0
,
10261 Opcode_xsr_ibreaka0_encode_fns
, 0, 0 },
10262 { "rsr.ibreaka1", ICLASS_xt_iclass_rsr_ibreaka1
,
10264 Opcode_rsr_ibreaka1_encode_fns
, 0, 0 },
10265 { "wsr.ibreaka1", ICLASS_xt_iclass_wsr_ibreaka1
,
10267 Opcode_wsr_ibreaka1_encode_fns
, 0, 0 },
10268 { "xsr.ibreaka1", ICLASS_xt_iclass_xsr_ibreaka1
,
10270 Opcode_xsr_ibreaka1_encode_fns
, 0, 0 },
10271 { "rsr.ibreakenable", ICLASS_xt_iclass_rsr_ibreakenable
,
10273 Opcode_rsr_ibreakenable_encode_fns
, 0, 0 },
10274 { "wsr.ibreakenable", ICLASS_xt_iclass_wsr_ibreakenable
,
10276 Opcode_wsr_ibreakenable_encode_fns
, 0, 0 },
10277 { "xsr.ibreakenable", ICLASS_xt_iclass_xsr_ibreakenable
,
10279 Opcode_xsr_ibreakenable_encode_fns
, 0, 0 },
10280 { "rsr.debugcause", ICLASS_xt_iclass_rsr_debugcause
,
10282 Opcode_rsr_debugcause_encode_fns
, 0, 0 },
10283 { "wsr.debugcause", ICLASS_xt_iclass_wsr_debugcause
,
10285 Opcode_wsr_debugcause_encode_fns
, 0, 0 },
10286 { "xsr.debugcause", ICLASS_xt_iclass_xsr_debugcause
,
10288 Opcode_xsr_debugcause_encode_fns
, 0, 0 },
10289 { "rsr.icount", ICLASS_xt_iclass_rsr_icount
,
10291 Opcode_rsr_icount_encode_fns
, 0, 0 },
10292 { "wsr.icount", ICLASS_xt_iclass_wsr_icount
,
10294 Opcode_wsr_icount_encode_fns
, 0, 0 },
10295 { "xsr.icount", ICLASS_xt_iclass_xsr_icount
,
10297 Opcode_xsr_icount_encode_fns
, 0, 0 },
10298 { "rsr.icountlevel", ICLASS_xt_iclass_rsr_icountlevel
,
10300 Opcode_rsr_icountlevel_encode_fns
, 0, 0 },
10301 { "wsr.icountlevel", ICLASS_xt_iclass_wsr_icountlevel
,
10303 Opcode_wsr_icountlevel_encode_fns
, 0, 0 },
10304 { "xsr.icountlevel", ICLASS_xt_iclass_xsr_icountlevel
,
10306 Opcode_xsr_icountlevel_encode_fns
, 0, 0 },
10307 { "rsr.ddr", ICLASS_xt_iclass_rsr_ddr
,
10309 Opcode_rsr_ddr_encode_fns
, 0, 0 },
10310 { "wsr.ddr", ICLASS_xt_iclass_wsr_ddr
,
10312 Opcode_wsr_ddr_encode_fns
, 0, 0 },
10313 { "xsr.ddr", ICLASS_xt_iclass_xsr_ddr
,
10315 Opcode_xsr_ddr_encode_fns
, 0, 0 },
10316 { "rfdo", ICLASS_xt_iclass_rfdo
,
10317 XTENSA_OPCODE_IS_JUMP
,
10318 Opcode_rfdo_encode_fns
, 0, 0 },
10319 { "rfdd", ICLASS_xt_iclass_rfdd
,
10320 XTENSA_OPCODE_IS_JUMP
,
10321 Opcode_rfdd_encode_fns
, 0, 0 },
10322 { "wsr.mmid", ICLASS_xt_iclass_wsr_mmid
,
10324 Opcode_wsr_mmid_encode_fns
, 0, 0 },
10325 { "rsr.ccount", ICLASS_xt_iclass_rsr_ccount
,
10327 Opcode_rsr_ccount_encode_fns
, 0, 0 },
10328 { "wsr.ccount", ICLASS_xt_iclass_wsr_ccount
,
10330 Opcode_wsr_ccount_encode_fns
, 0, 0 },
10331 { "xsr.ccount", ICLASS_xt_iclass_xsr_ccount
,
10333 Opcode_xsr_ccount_encode_fns
, 0, 0 },
10334 { "rsr.ccompare0", ICLASS_xt_iclass_rsr_ccompare0
,
10336 Opcode_rsr_ccompare0_encode_fns
, 0, 0 },
10337 { "wsr.ccompare0", ICLASS_xt_iclass_wsr_ccompare0
,
10339 Opcode_wsr_ccompare0_encode_fns
, 0, 0 },
10340 { "xsr.ccompare0", ICLASS_xt_iclass_xsr_ccompare0
,
10342 Opcode_xsr_ccompare0_encode_fns
, 0, 0 },
10343 { "rsr.ccompare1", ICLASS_xt_iclass_rsr_ccompare1
,
10345 Opcode_rsr_ccompare1_encode_fns
, 0, 0 },
10346 { "wsr.ccompare1", ICLASS_xt_iclass_wsr_ccompare1
,
10348 Opcode_wsr_ccompare1_encode_fns
, 0, 0 },
10349 { "xsr.ccompare1", ICLASS_xt_iclass_xsr_ccompare1
,
10351 Opcode_xsr_ccompare1_encode_fns
, 0, 0 },
10352 { "rsr.ccompare2", ICLASS_xt_iclass_rsr_ccompare2
,
10354 Opcode_rsr_ccompare2_encode_fns
, 0, 0 },
10355 { "wsr.ccompare2", ICLASS_xt_iclass_wsr_ccompare2
,
10357 Opcode_wsr_ccompare2_encode_fns
, 0, 0 },
10358 { "xsr.ccompare2", ICLASS_xt_iclass_xsr_ccompare2
,
10360 Opcode_xsr_ccompare2_encode_fns
, 0, 0 },
10361 { "ipf", ICLASS_xt_iclass_icache
,
10363 Opcode_ipf_encode_fns
, 0, 0 },
10364 { "ihi", ICLASS_xt_iclass_icache
,
10366 Opcode_ihi_encode_fns
, 0, 0 },
10367 { "ipfl", ICLASS_xt_iclass_icache_lock
,
10369 Opcode_ipfl_encode_fns
, 0, 0 },
10370 { "ihu", ICLASS_xt_iclass_icache_lock
,
10372 Opcode_ihu_encode_fns
, 0, 0 },
10373 { "iiu", ICLASS_xt_iclass_icache_lock
,
10375 Opcode_iiu_encode_fns
, 0, 0 },
10376 { "iii", ICLASS_xt_iclass_icache_inv
,
10378 Opcode_iii_encode_fns
, 0, 0 },
10379 { "lict", ICLASS_xt_iclass_licx
,
10381 Opcode_lict_encode_fns
, 0, 0 },
10382 { "licw", ICLASS_xt_iclass_licx
,
10384 Opcode_licw_encode_fns
, 0, 0 },
10385 { "sict", ICLASS_xt_iclass_sicx
,
10387 Opcode_sict_encode_fns
, 0, 0 },
10388 { "sicw", ICLASS_xt_iclass_sicx
,
10390 Opcode_sicw_encode_fns
, 0, 0 },
10391 { "dhwb", ICLASS_xt_iclass_dcache
,
10393 Opcode_dhwb_encode_fns
, 0, 0 },
10394 { "dhwbi", ICLASS_xt_iclass_dcache
,
10396 Opcode_dhwbi_encode_fns
, 0, 0 },
10397 { "diwb", ICLASS_xt_iclass_dcache_ind
,
10399 Opcode_diwb_encode_fns
, 0, 0 },
10400 { "diwbi", ICLASS_xt_iclass_dcache_ind
,
10402 Opcode_diwbi_encode_fns
, 0, 0 },
10403 { "dhi", ICLASS_xt_iclass_dcache_inv
,
10405 Opcode_dhi_encode_fns
, 0, 0 },
10406 { "dii", ICLASS_xt_iclass_dcache_inv
,
10408 Opcode_dii_encode_fns
, 0, 0 },
10409 { "dpfr", ICLASS_xt_iclass_dpf
,
10411 Opcode_dpfr_encode_fns
, 0, 0 },
10412 { "dpfw", ICLASS_xt_iclass_dpf
,
10414 Opcode_dpfw_encode_fns
, 0, 0 },
10415 { "dpfro", ICLASS_xt_iclass_dpf
,
10417 Opcode_dpfro_encode_fns
, 0, 0 },
10418 { "dpfwo", ICLASS_xt_iclass_dpf
,
10420 Opcode_dpfwo_encode_fns
, 0, 0 },
10421 { "dpfl", ICLASS_xt_iclass_dcache_lock
,
10423 Opcode_dpfl_encode_fns
, 0, 0 },
10424 { "dhu", ICLASS_xt_iclass_dcache_lock
,
10426 Opcode_dhu_encode_fns
, 0, 0 },
10427 { "diu", ICLASS_xt_iclass_dcache_lock
,
10429 Opcode_diu_encode_fns
, 0, 0 },
10430 { "sdct", ICLASS_xt_iclass_sdct
,
10432 Opcode_sdct_encode_fns
, 0, 0 },
10433 { "ldct", ICLASS_xt_iclass_ldct
,
10435 Opcode_ldct_encode_fns
, 0, 0 },
10436 { "wsr.ptevaddr", ICLASS_xt_iclass_wsr_ptevaddr
,
10438 Opcode_wsr_ptevaddr_encode_fns
, 0, 0 },
10439 { "rsr.ptevaddr", ICLASS_xt_iclass_rsr_ptevaddr
,
10441 Opcode_rsr_ptevaddr_encode_fns
, 0, 0 },
10442 { "xsr.ptevaddr", ICLASS_xt_iclass_xsr_ptevaddr
,
10444 Opcode_xsr_ptevaddr_encode_fns
, 0, 0 },
10445 { "rsr.rasid", ICLASS_xt_iclass_rsr_rasid
,
10447 Opcode_rsr_rasid_encode_fns
, 0, 0 },
10448 { "wsr.rasid", ICLASS_xt_iclass_wsr_rasid
,
10450 Opcode_wsr_rasid_encode_fns
, 0, 0 },
10451 { "xsr.rasid", ICLASS_xt_iclass_xsr_rasid
,
10453 Opcode_xsr_rasid_encode_fns
, 0, 0 },
10454 { "rsr.itlbcfg", ICLASS_xt_iclass_rsr_itlbcfg
,
10456 Opcode_rsr_itlbcfg_encode_fns
, 0, 0 },
10457 { "wsr.itlbcfg", ICLASS_xt_iclass_wsr_itlbcfg
,
10459 Opcode_wsr_itlbcfg_encode_fns
, 0, 0 },
10460 { "xsr.itlbcfg", ICLASS_xt_iclass_xsr_itlbcfg
,
10462 Opcode_xsr_itlbcfg_encode_fns
, 0, 0 },
10463 { "rsr.dtlbcfg", ICLASS_xt_iclass_rsr_dtlbcfg
,
10465 Opcode_rsr_dtlbcfg_encode_fns
, 0, 0 },
10466 { "wsr.dtlbcfg", ICLASS_xt_iclass_wsr_dtlbcfg
,
10468 Opcode_wsr_dtlbcfg_encode_fns
, 0, 0 },
10469 { "xsr.dtlbcfg", ICLASS_xt_iclass_xsr_dtlbcfg
,
10471 Opcode_xsr_dtlbcfg_encode_fns
, 0, 0 },
10472 { "idtlb", ICLASS_xt_iclass_idtlb
,
10474 Opcode_idtlb_encode_fns
, 0, 0 },
10475 { "pdtlb", ICLASS_xt_iclass_rdtlb
,
10477 Opcode_pdtlb_encode_fns
, 0, 0 },
10478 { "rdtlb0", ICLASS_xt_iclass_rdtlb
,
10480 Opcode_rdtlb0_encode_fns
, 0, 0 },
10481 { "rdtlb1", ICLASS_xt_iclass_rdtlb
,
10483 Opcode_rdtlb1_encode_fns
, 0, 0 },
10484 { "wdtlb", ICLASS_xt_iclass_wdtlb
,
10486 Opcode_wdtlb_encode_fns
, 0, 0 },
10487 { "iitlb", ICLASS_xt_iclass_iitlb
,
10489 Opcode_iitlb_encode_fns
, 0, 0 },
10490 { "pitlb", ICLASS_xt_iclass_ritlb
,
10492 Opcode_pitlb_encode_fns
, 0, 0 },
10493 { "ritlb0", ICLASS_xt_iclass_ritlb
,
10495 Opcode_ritlb0_encode_fns
, 0, 0 },
10496 { "ritlb1", ICLASS_xt_iclass_ritlb
,
10498 Opcode_ritlb1_encode_fns
, 0, 0 },
10499 { "witlb", ICLASS_xt_iclass_witlb
,
10501 Opcode_witlb_encode_fns
, 0, 0 },
10502 { "ldpte", ICLASS_xt_iclass_ldpte
,
10504 Opcode_ldpte_encode_fns
, 0, 0 },
10505 { "hwwitlba", ICLASS_xt_iclass_hwwitlba
,
10506 XTENSA_OPCODE_IS_BRANCH
,
10507 Opcode_hwwitlba_encode_fns
, 0, 0 },
10508 { "hwwdtlba", ICLASS_xt_iclass_hwwdtlba
,
10510 Opcode_hwwdtlba_encode_fns
, 0, 0 },
10511 { "rsr.cpenable", ICLASS_xt_iclass_rsr_cpenable
,
10513 Opcode_rsr_cpenable_encode_fns
, 0, 0 },
10514 { "wsr.cpenable", ICLASS_xt_iclass_wsr_cpenable
,
10516 Opcode_wsr_cpenable_encode_fns
, 0, 0 },
10517 { "xsr.cpenable", ICLASS_xt_iclass_xsr_cpenable
,
10519 Opcode_xsr_cpenable_encode_fns
, 0, 0 },
10520 { "clamps", ICLASS_xt_iclass_clamp
,
10522 Opcode_clamps_encode_fns
, 0, 0 },
10523 { "min", ICLASS_xt_iclass_minmax
,
10525 Opcode_min_encode_fns
, 0, 0 },
10526 { "max", ICLASS_xt_iclass_minmax
,
10528 Opcode_max_encode_fns
, 0, 0 },
10529 { "minu", ICLASS_xt_iclass_minmax
,
10531 Opcode_minu_encode_fns
, 0, 0 },
10532 { "maxu", ICLASS_xt_iclass_minmax
,
10534 Opcode_maxu_encode_fns
, 0, 0 },
10535 { "nsa", ICLASS_xt_iclass_nsa
,
10537 Opcode_nsa_encode_fns
, 0, 0 },
10538 { "nsau", ICLASS_xt_iclass_nsa
,
10540 Opcode_nsau_encode_fns
, 0, 0 },
10541 { "sext", ICLASS_xt_iclass_sx
,
10543 Opcode_sext_encode_fns
, 0, 0 },
10544 { "l32ai", ICLASS_xt_iclass_l32ai
,
10546 Opcode_l32ai_encode_fns
, 0, 0 },
10547 { "s32ri", ICLASS_xt_iclass_s32ri
,
10549 Opcode_s32ri_encode_fns
, 0, 0 },
10550 { "s32c1i", ICLASS_xt_iclass_s32c1i
,
10552 Opcode_s32c1i_encode_fns
, 0, 0 },
10553 { "rsr.scompare1", ICLASS_xt_iclass_rsr_scompare1
,
10555 Opcode_rsr_scompare1_encode_fns
, 0, 0 },
10556 { "wsr.scompare1", ICLASS_xt_iclass_wsr_scompare1
,
10558 Opcode_wsr_scompare1_encode_fns
, 0, 0 },
10559 { "xsr.scompare1", ICLASS_xt_iclass_xsr_scompare1
,
10561 Opcode_xsr_scompare1_encode_fns
, 0, 0 },
10562 { "quou", ICLASS_xt_iclass_div
,
10564 Opcode_quou_encode_fns
, 0, 0 },
10565 { "quos", ICLASS_xt_iclass_div
,
10567 Opcode_quos_encode_fns
, 0, 0 },
10568 { "remu", ICLASS_xt_iclass_div
,
10570 Opcode_remu_encode_fns
, 0, 0 },
10571 { "rems", ICLASS_xt_iclass_div
,
10573 Opcode_rems_encode_fns
, 0, 0 },
10574 { "mull", ICLASS_xt_mul32
,
10576 Opcode_mull_encode_fns
, 0, 0 }
10579 enum xtensa_opcode_id
{
10600 OPCODE_RSR_WINDOWBASE
,
10601 OPCODE_WSR_WINDOWBASE
,
10602 OPCODE_XSR_WINDOWBASE
,
10603 OPCODE_RSR_WINDOWSTART
,
10604 OPCODE_WSR_WINDOWSTART
,
10605 OPCODE_XSR_WINDOWSTART
,
10617 OPCODE_RUR_THREADPTR
,
10618 OPCODE_WUR_THREADPTR
,
10713 OPCODE_RSR_LITBASE
,
10714 OPCODE_WSR_LITBASE
,
10715 OPCODE_XSR_LITBASE
,
10725 OPCODE_RSR_EXCSAVE1
,
10726 OPCODE_WSR_EXCSAVE1
,
10727 OPCODE_XSR_EXCSAVE1
,
10731 OPCODE_RSR_EXCSAVE2
,
10732 OPCODE_WSR_EXCSAVE2
,
10733 OPCODE_XSR_EXCSAVE2
,
10737 OPCODE_RSR_EXCSAVE3
,
10738 OPCODE_WSR_EXCSAVE3
,
10739 OPCODE_XSR_EXCSAVE3
,
10743 OPCODE_RSR_EXCSAVE4
,
10744 OPCODE_WSR_EXCSAVE4
,
10745 OPCODE_XSR_EXCSAVE4
,
10749 OPCODE_RSR_EXCSAVE5
,
10750 OPCODE_WSR_EXCSAVE5
,
10751 OPCODE_XSR_EXCSAVE5
,
10755 OPCODE_RSR_EXCSAVE6
,
10756 OPCODE_WSR_EXCSAVE6
,
10757 OPCODE_XSR_EXCSAVE6
,
10761 OPCODE_RSR_EXCSAVE7
,
10762 OPCODE_WSR_EXCSAVE7
,
10763 OPCODE_XSR_EXCSAVE7
,
10782 OPCODE_RSR_EXCVADDR
,
10783 OPCODE_WSR_EXCVADDR
,
10784 OPCODE_XSR_EXCVADDR
,
10788 OPCODE_RSR_EXCCAUSE
,
10789 OPCODE_WSR_EXCCAUSE
,
10790 OPCODE_XSR_EXCCAUSE
,
10798 OPCODE_RSR_VECBASE
,
10799 OPCODE_WSR_VECBASE
,
10800 OPCODE_XSR_VECBASE
,
10805 OPCODE_RSR_INTERRUPT
,
10807 OPCODE_WSR_INTCLEAR
,
10808 OPCODE_RSR_INTENABLE
,
10809 OPCODE_WSR_INTENABLE
,
10810 OPCODE_XSR_INTENABLE
,
10813 OPCODE_RSR_DBREAKA0
,
10814 OPCODE_WSR_DBREAKA0
,
10815 OPCODE_XSR_DBREAKA0
,
10816 OPCODE_RSR_DBREAKC0
,
10817 OPCODE_WSR_DBREAKC0
,
10818 OPCODE_XSR_DBREAKC0
,
10819 OPCODE_RSR_DBREAKA1
,
10820 OPCODE_WSR_DBREAKA1
,
10821 OPCODE_XSR_DBREAKA1
,
10822 OPCODE_RSR_DBREAKC1
,
10823 OPCODE_WSR_DBREAKC1
,
10824 OPCODE_XSR_DBREAKC1
,
10825 OPCODE_RSR_IBREAKA0
,
10826 OPCODE_WSR_IBREAKA0
,
10827 OPCODE_XSR_IBREAKA0
,
10828 OPCODE_RSR_IBREAKA1
,
10829 OPCODE_WSR_IBREAKA1
,
10830 OPCODE_XSR_IBREAKA1
,
10831 OPCODE_RSR_IBREAKENABLE
,
10832 OPCODE_WSR_IBREAKENABLE
,
10833 OPCODE_XSR_IBREAKENABLE
,
10834 OPCODE_RSR_DEBUGCAUSE
,
10835 OPCODE_WSR_DEBUGCAUSE
,
10836 OPCODE_XSR_DEBUGCAUSE
,
10840 OPCODE_RSR_ICOUNTLEVEL
,
10841 OPCODE_WSR_ICOUNTLEVEL
,
10842 OPCODE_XSR_ICOUNTLEVEL
,
10852 OPCODE_RSR_CCOMPARE0
,
10853 OPCODE_WSR_CCOMPARE0
,
10854 OPCODE_XSR_CCOMPARE0
,
10855 OPCODE_RSR_CCOMPARE1
,
10856 OPCODE_WSR_CCOMPARE1
,
10857 OPCODE_XSR_CCOMPARE1
,
10858 OPCODE_RSR_CCOMPARE2
,
10859 OPCODE_WSR_CCOMPARE2
,
10860 OPCODE_XSR_CCOMPARE2
,
10886 OPCODE_WSR_PTEVADDR
,
10887 OPCODE_RSR_PTEVADDR
,
10888 OPCODE_XSR_PTEVADDR
,
10892 OPCODE_RSR_ITLBCFG
,
10893 OPCODE_WSR_ITLBCFG
,
10894 OPCODE_XSR_ITLBCFG
,
10895 OPCODE_RSR_DTLBCFG
,
10896 OPCODE_WSR_DTLBCFG
,
10897 OPCODE_XSR_DTLBCFG
,
10911 OPCODE_RSR_CPENABLE
,
10912 OPCODE_WSR_CPENABLE
,
10913 OPCODE_XSR_CPENABLE
,
10925 OPCODE_RSR_SCOMPARE1
,
10926 OPCODE_WSR_SCOMPARE1
,
10927 OPCODE_XSR_SCOMPARE1
,
10936 /* Slot-specific opcode decode functions. */
10939 Slot_inst_decode (const xtensa_insnbuf insn
)
10941 switch (Field_op0_Slot_inst_get (insn
))
10944 switch (Field_op1_Slot_inst_get (insn
))
10947 switch (Field_op2_Slot_inst_get (insn
))
10950 switch (Field_r_Slot_inst_get (insn
))
10953 switch (Field_m_Slot_inst_get (insn
))
10956 if (Field_s_Slot_inst_get (insn
) == 0 &&
10957 Field_n_Slot_inst_get (insn
) == 0)
10961 switch (Field_n_Slot_inst_get (insn
))
10966 return OPCODE_RETW
;
10972 switch (Field_n_Slot_inst_get (insn
))
10975 return OPCODE_CALLX0
;
10977 return OPCODE_CALLX4
;
10979 return OPCODE_CALLX8
;
10981 return OPCODE_CALLX12
;
10987 return OPCODE_MOVSP
;
10989 if (Field_s_Slot_inst_get (insn
) == 0)
10991 switch (Field_t_Slot_inst_get (insn
))
10994 return OPCODE_ISYNC
;
10996 return OPCODE_RSYNC
;
10998 return OPCODE_ESYNC
;
11000 return OPCODE_DSYNC
;
11002 return OPCODE_EXCW
;
11004 return OPCODE_MEMW
;
11006 return OPCODE_EXTW
;
11013 switch (Field_t_Slot_inst_get (insn
))
11016 switch (Field_s_Slot_inst_get (insn
))
11021 return OPCODE_RFDE
;
11023 return OPCODE_RFWO
;
11025 return OPCODE_RFWU
;
11033 return OPCODE_BREAK
;
11035 switch (Field_s_Slot_inst_get (insn
))
11038 if (Field_t_Slot_inst_get (insn
) == 0)
11039 return OPCODE_SYSCALL
;
11042 if (Field_t_Slot_inst_get (insn
) == 0)
11043 return OPCODE_SIMCALL
;
11048 return OPCODE_RSIL
;
11050 if (Field_t_Slot_inst_get (insn
) == 0)
11051 return OPCODE_WAITI
;
11062 switch (Field_r_Slot_inst_get (insn
))
11065 if (Field_t_Slot_inst_get (insn
) == 0)
11069 if (Field_t_Slot_inst_get (insn
) == 0)
11073 if (Field_t_Slot_inst_get (insn
) == 0)
11074 return OPCODE_SSA8L
;
11077 if (Field_t_Slot_inst_get (insn
) == 0)
11078 return OPCODE_SSA8B
;
11081 if (Field_thi3_Slot_inst_get (insn
) == 0)
11082 return OPCODE_SSAI
;
11085 if (Field_s_Slot_inst_get (insn
) == 0)
11086 return OPCODE_ROTW
;
11091 return OPCODE_NSAU
;
11095 switch (Field_r_Slot_inst_get (insn
))
11098 return OPCODE_HWWITLBA
;
11100 return OPCODE_RITLB0
;
11102 if (Field_t_Slot_inst_get (insn
) == 0)
11103 return OPCODE_IITLB
;
11106 return OPCODE_PITLB
;
11108 return OPCODE_WITLB
;
11110 return OPCODE_RITLB1
;
11112 return OPCODE_HWWDTLBA
;
11114 return OPCODE_RDTLB0
;
11116 if (Field_t_Slot_inst_get (insn
) == 0)
11117 return OPCODE_IDTLB
;
11120 return OPCODE_PDTLB
;
11122 return OPCODE_WDTLB
;
11124 return OPCODE_RDTLB1
;
11128 switch (Field_s_Slot_inst_get (insn
))
11139 return OPCODE_ADDX2
;
11141 return OPCODE_ADDX4
;
11143 return OPCODE_ADDX8
;
11147 return OPCODE_SUBX2
;
11149 return OPCODE_SUBX4
;
11151 return OPCODE_SUBX8
;
11155 switch (Field_op2_Slot_inst_get (insn
))
11159 return OPCODE_SLLI
;
11162 return OPCODE_SRAI
;
11164 return OPCODE_SRLI
;
11166 switch (Field_sr_Slot_inst_get (insn
))
11169 return OPCODE_XSR_LBEG
;
11171 return OPCODE_XSR_LEND
;
11173 return OPCODE_XSR_LCOUNT
;
11175 return OPCODE_XSR_SAR
;
11177 return OPCODE_XSR_LITBASE
;
11179 return OPCODE_XSR_SCOMPARE1
;
11181 return OPCODE_XSR_WINDOWBASE
;
11183 return OPCODE_XSR_WINDOWSTART
;
11185 return OPCODE_XSR_PTEVADDR
;
11187 return OPCODE_XSR_RASID
;
11189 return OPCODE_XSR_ITLBCFG
;
11191 return OPCODE_XSR_DTLBCFG
;
11193 return OPCODE_XSR_IBREAKENABLE
;
11195 return OPCODE_XSR_DDR
;
11197 return OPCODE_XSR_IBREAKA0
;
11199 return OPCODE_XSR_IBREAKA1
;
11201 return OPCODE_XSR_DBREAKA0
;
11203 return OPCODE_XSR_DBREAKA1
;
11205 return OPCODE_XSR_DBREAKC0
;
11207 return OPCODE_XSR_DBREAKC1
;
11209 return OPCODE_XSR_EPC1
;
11211 return OPCODE_XSR_EPC2
;
11213 return OPCODE_XSR_EPC3
;
11215 return OPCODE_XSR_EPC4
;
11217 return OPCODE_XSR_EPC5
;
11219 return OPCODE_XSR_EPC6
;
11221 return OPCODE_XSR_EPC7
;
11223 return OPCODE_XSR_DEPC
;
11225 return OPCODE_XSR_EPS2
;
11227 return OPCODE_XSR_EPS3
;
11229 return OPCODE_XSR_EPS4
;
11231 return OPCODE_XSR_EPS5
;
11233 return OPCODE_XSR_EPS6
;
11235 return OPCODE_XSR_EPS7
;
11237 return OPCODE_XSR_EXCSAVE1
;
11239 return OPCODE_XSR_EXCSAVE2
;
11241 return OPCODE_XSR_EXCSAVE3
;
11243 return OPCODE_XSR_EXCSAVE4
;
11245 return OPCODE_XSR_EXCSAVE5
;
11247 return OPCODE_XSR_EXCSAVE6
;
11249 return OPCODE_XSR_EXCSAVE7
;
11251 return OPCODE_XSR_CPENABLE
;
11253 return OPCODE_XSR_INTENABLE
;
11255 return OPCODE_XSR_PS
;
11257 return OPCODE_XSR_VECBASE
;
11259 return OPCODE_XSR_EXCCAUSE
;
11261 return OPCODE_XSR_DEBUGCAUSE
;
11263 return OPCODE_XSR_CCOUNT
;
11265 return OPCODE_XSR_ICOUNT
;
11267 return OPCODE_XSR_ICOUNTLEVEL
;
11269 return OPCODE_XSR_EXCVADDR
;
11271 return OPCODE_XSR_CCOMPARE0
;
11273 return OPCODE_XSR_CCOMPARE1
;
11275 return OPCODE_XSR_CCOMPARE2
;
11277 return OPCODE_XSR_MISC0
;
11279 return OPCODE_XSR_MISC1
;
11285 if (Field_s_Slot_inst_get (insn
) == 0)
11289 if (Field_t_Slot_inst_get (insn
) == 0)
11293 if (Field_s_Slot_inst_get (insn
) == 0)
11297 return OPCODE_MUL16U
;
11299 return OPCODE_MUL16S
;
11301 switch (Field_r_Slot_inst_get (insn
))
11304 return OPCODE_LICT
;
11306 return OPCODE_SICT
;
11308 return OPCODE_LICW
;
11310 return OPCODE_SICW
;
11312 return OPCODE_LDCT
;
11314 return OPCODE_SDCT
;
11316 if (Field_t_Slot_inst_get (insn
) == 0)
11317 return OPCODE_RFDO
;
11318 if (Field_t_Slot_inst_get (insn
) == 1)
11319 return OPCODE_RFDD
;
11322 return OPCODE_LDPTE
;
11328 switch (Field_op2_Slot_inst_get (insn
))
11331 return OPCODE_MULL
;
11333 return OPCODE_QUOU
;
11335 return OPCODE_QUOS
;
11337 return OPCODE_REMU
;
11339 return OPCODE_REMS
;
11343 switch (Field_op2_Slot_inst_get (insn
))
11346 switch (Field_sr_Slot_inst_get (insn
))
11349 return OPCODE_RSR_LBEG
;
11351 return OPCODE_RSR_LEND
;
11353 return OPCODE_RSR_LCOUNT
;
11355 return OPCODE_RSR_SAR
;
11357 return OPCODE_RSR_LITBASE
;
11359 return OPCODE_RSR_SCOMPARE1
;
11361 return OPCODE_RSR_WINDOWBASE
;
11363 return OPCODE_RSR_WINDOWSTART
;
11365 return OPCODE_RSR_PTEVADDR
;
11367 return OPCODE_RSR_RASID
;
11369 return OPCODE_RSR_ITLBCFG
;
11371 return OPCODE_RSR_DTLBCFG
;
11373 return OPCODE_RSR_IBREAKENABLE
;
11375 return OPCODE_RSR_DDR
;
11377 return OPCODE_RSR_IBREAKA0
;
11379 return OPCODE_RSR_IBREAKA1
;
11381 return OPCODE_RSR_DBREAKA0
;
11383 return OPCODE_RSR_DBREAKA1
;
11385 return OPCODE_RSR_DBREAKC0
;
11387 return OPCODE_RSR_DBREAKC1
;
11389 return OPCODE_RSR_176
;
11391 return OPCODE_RSR_EPC1
;
11393 return OPCODE_RSR_EPC2
;
11395 return OPCODE_RSR_EPC3
;
11397 return OPCODE_RSR_EPC4
;
11399 return OPCODE_RSR_EPC5
;
11401 return OPCODE_RSR_EPC6
;
11403 return OPCODE_RSR_EPC7
;
11405 return OPCODE_RSR_DEPC
;
11407 return OPCODE_RSR_EPS2
;
11409 return OPCODE_RSR_EPS3
;
11411 return OPCODE_RSR_EPS4
;
11413 return OPCODE_RSR_EPS5
;
11415 return OPCODE_RSR_EPS6
;
11417 return OPCODE_RSR_EPS7
;
11419 return OPCODE_RSR_208
;
11421 return OPCODE_RSR_EXCSAVE1
;
11423 return OPCODE_RSR_EXCSAVE2
;
11425 return OPCODE_RSR_EXCSAVE3
;
11427 return OPCODE_RSR_EXCSAVE4
;
11429 return OPCODE_RSR_EXCSAVE5
;
11431 return OPCODE_RSR_EXCSAVE6
;
11433 return OPCODE_RSR_EXCSAVE7
;
11435 return OPCODE_RSR_CPENABLE
;
11437 return OPCODE_RSR_INTERRUPT
;
11439 return OPCODE_RSR_INTENABLE
;
11441 return OPCODE_RSR_PS
;
11443 return OPCODE_RSR_VECBASE
;
11445 return OPCODE_RSR_EXCCAUSE
;
11447 return OPCODE_RSR_DEBUGCAUSE
;
11449 return OPCODE_RSR_CCOUNT
;
11451 return OPCODE_RSR_PRID
;
11453 return OPCODE_RSR_ICOUNT
;
11455 return OPCODE_RSR_ICOUNTLEVEL
;
11457 return OPCODE_RSR_EXCVADDR
;
11459 return OPCODE_RSR_CCOMPARE0
;
11461 return OPCODE_RSR_CCOMPARE1
;
11463 return OPCODE_RSR_CCOMPARE2
;
11465 return OPCODE_RSR_MISC0
;
11467 return OPCODE_RSR_MISC1
;
11471 switch (Field_sr_Slot_inst_get (insn
))
11474 return OPCODE_WSR_LBEG
;
11476 return OPCODE_WSR_LEND
;
11478 return OPCODE_WSR_LCOUNT
;
11480 return OPCODE_WSR_SAR
;
11482 return OPCODE_WSR_LITBASE
;
11484 return OPCODE_WSR_SCOMPARE1
;
11486 return OPCODE_WSR_WINDOWBASE
;
11488 return OPCODE_WSR_WINDOWSTART
;
11490 return OPCODE_WSR_PTEVADDR
;
11492 return OPCODE_WSR_MMID
;
11494 return OPCODE_WSR_RASID
;
11496 return OPCODE_WSR_ITLBCFG
;
11498 return OPCODE_WSR_DTLBCFG
;
11500 return OPCODE_WSR_IBREAKENABLE
;
11502 return OPCODE_WSR_DDR
;
11504 return OPCODE_WSR_IBREAKA0
;
11506 return OPCODE_WSR_IBREAKA1
;
11508 return OPCODE_WSR_DBREAKA0
;
11510 return OPCODE_WSR_DBREAKA1
;
11512 return OPCODE_WSR_DBREAKC0
;
11514 return OPCODE_WSR_DBREAKC1
;
11516 return OPCODE_WSR_176
;
11518 return OPCODE_WSR_EPC1
;
11520 return OPCODE_WSR_EPC2
;
11522 return OPCODE_WSR_EPC3
;
11524 return OPCODE_WSR_EPC4
;
11526 return OPCODE_WSR_EPC5
;
11528 return OPCODE_WSR_EPC6
;
11530 return OPCODE_WSR_EPC7
;
11532 return OPCODE_WSR_DEPC
;
11534 return OPCODE_WSR_EPS2
;
11536 return OPCODE_WSR_EPS3
;
11538 return OPCODE_WSR_EPS4
;
11540 return OPCODE_WSR_EPS5
;
11542 return OPCODE_WSR_EPS6
;
11544 return OPCODE_WSR_EPS7
;
11546 return OPCODE_WSR_EXCSAVE1
;
11548 return OPCODE_WSR_EXCSAVE2
;
11550 return OPCODE_WSR_EXCSAVE3
;
11552 return OPCODE_WSR_EXCSAVE4
;
11554 return OPCODE_WSR_EXCSAVE5
;
11556 return OPCODE_WSR_EXCSAVE6
;
11558 return OPCODE_WSR_EXCSAVE7
;
11560 return OPCODE_WSR_CPENABLE
;
11562 return OPCODE_WSR_INTSET
;
11564 return OPCODE_WSR_INTCLEAR
;
11566 return OPCODE_WSR_INTENABLE
;
11568 return OPCODE_WSR_PS
;
11570 return OPCODE_WSR_VECBASE
;
11572 return OPCODE_WSR_EXCCAUSE
;
11574 return OPCODE_WSR_DEBUGCAUSE
;
11576 return OPCODE_WSR_CCOUNT
;
11578 return OPCODE_WSR_ICOUNT
;
11580 return OPCODE_WSR_ICOUNTLEVEL
;
11582 return OPCODE_WSR_EXCVADDR
;
11584 return OPCODE_WSR_CCOMPARE0
;
11586 return OPCODE_WSR_CCOMPARE1
;
11588 return OPCODE_WSR_CCOMPARE2
;
11590 return OPCODE_WSR_MISC0
;
11592 return OPCODE_WSR_MISC1
;
11596 return OPCODE_SEXT
;
11598 return OPCODE_CLAMPS
;
11604 return OPCODE_MINU
;
11606 return OPCODE_MAXU
;
11608 return OPCODE_MOVEQZ
;
11610 return OPCODE_MOVNEZ
;
11612 return OPCODE_MOVLTZ
;
11614 return OPCODE_MOVGEZ
;
11616 if (Field_st_Slot_inst_get (insn
) == 231)
11617 return OPCODE_RUR_THREADPTR
;
11620 if (Field_sr_Slot_inst_get (insn
) == 231)
11621 return OPCODE_WUR_THREADPTR
;
11627 return OPCODE_EXTUI
;
11629 switch (Field_op2_Slot_inst_get (insn
))
11632 return OPCODE_L32E
;
11634 return OPCODE_S32E
;
11640 return OPCODE_L32R
;
11642 switch (Field_r_Slot_inst_get (insn
))
11645 return OPCODE_L8UI
;
11647 return OPCODE_L16UI
;
11649 return OPCODE_L32I
;
11653 return OPCODE_S16I
;
11655 return OPCODE_S32I
;
11657 switch (Field_t_Slot_inst_get (insn
))
11660 return OPCODE_DPFR
;
11662 return OPCODE_DPFW
;
11664 return OPCODE_DPFRO
;
11666 return OPCODE_DPFWO
;
11668 return OPCODE_DHWB
;
11670 return OPCODE_DHWBI
;
11676 switch (Field_op1_Slot_inst_get (insn
))
11679 return OPCODE_DPFL
;
11685 return OPCODE_DIWB
;
11687 return OPCODE_DIWBI
;
11693 switch (Field_op1_Slot_inst_get (insn
))
11696 return OPCODE_IPFL
;
11710 return OPCODE_L16SI
;
11712 return OPCODE_MOVI
;
11714 return OPCODE_L32AI
;
11716 return OPCODE_ADDI
;
11718 return OPCODE_ADDMI
;
11720 return OPCODE_S32C1I
;
11722 return OPCODE_S32RI
;
11726 switch (Field_n_Slot_inst_get (insn
))
11729 return OPCODE_CALL0
;
11731 return OPCODE_CALL4
;
11733 return OPCODE_CALL8
;
11735 return OPCODE_CALL12
;
11739 switch (Field_n_Slot_inst_get (insn
))
11744 switch (Field_m_Slot_inst_get (insn
))
11747 return OPCODE_BEQZ
;
11749 return OPCODE_BNEZ
;
11751 return OPCODE_BLTZ
;
11753 return OPCODE_BGEZ
;
11757 switch (Field_m_Slot_inst_get (insn
))
11760 return OPCODE_BEQI
;
11762 return OPCODE_BNEI
;
11764 return OPCODE_BLTI
;
11766 return OPCODE_BGEI
;
11770 switch (Field_m_Slot_inst_get (insn
))
11773 return OPCODE_ENTRY
;
11775 switch (Field_r_Slot_inst_get (insn
))
11778 return OPCODE_LOOP
;
11780 return OPCODE_LOOPNEZ
;
11782 return OPCODE_LOOPGTZ
;
11786 return OPCODE_BLTUI
;
11788 return OPCODE_BGEUI
;
11794 switch (Field_r_Slot_inst_get (insn
))
11797 return OPCODE_BNONE
;
11803 return OPCODE_BLTU
;
11805 return OPCODE_BALL
;
11810 return OPCODE_BBCI
;
11812 return OPCODE_BANY
;
11818 return OPCODE_BGEU
;
11820 return OPCODE_BNALL
;
11825 return OPCODE_BBSI
;
11833 Slot_inst16b_decode (const xtensa_insnbuf insn
)
11835 switch (Field_op0_Slot_inst16b_get (insn
))
11838 switch (Field_i_Slot_inst16b_get (insn
))
11841 return OPCODE_MOVI_N
;
11843 switch (Field_z_Slot_inst16b_get (insn
))
11846 return OPCODE_BEQZ_N
;
11848 return OPCODE_BNEZ_N
;
11854 switch (Field_r_Slot_inst16b_get (insn
))
11857 return OPCODE_MOV_N
;
11859 switch (Field_t_Slot_inst16b_get (insn
))
11862 return OPCODE_RET_N
;
11864 return OPCODE_RETW_N
;
11866 return OPCODE_BREAK_N
;
11868 if (Field_s_Slot_inst16b_get (insn
) == 0)
11869 return OPCODE_NOP_N
;
11872 if (Field_s_Slot_inst16b_get (insn
) == 0)
11873 return OPCODE_ILL_N
;
11884 Slot_inst16a_decode (const xtensa_insnbuf insn
)
11886 switch (Field_op0_Slot_inst16a_get (insn
))
11889 return OPCODE_L32I_N
;
11891 return OPCODE_S32I_N
;
11893 return OPCODE_ADD_N
;
11895 return OPCODE_ADDI_N
;
11901 /* Instruction slots. */
11904 Slot_x24_Format_inst_0_get (const xtensa_insnbuf insn
,
11905 xtensa_insnbuf slotbuf
)
11907 slotbuf
[0] = (insn
[0] & 0xffffff);
11911 Slot_x24_Format_inst_0_set (xtensa_insnbuf insn
,
11912 const xtensa_insnbuf slotbuf
)
11914 insn
[0] = (insn
[0] & ~0xffffff) | (slotbuf
[0] & 0xffffff);
11918 Slot_x16a_Format_inst16a_0_get (const xtensa_insnbuf insn
,
11919 xtensa_insnbuf slotbuf
)
11921 slotbuf
[0] = ((insn
[0] & 0xffff00) >> 8);
11925 Slot_x16a_Format_inst16a_0_set (xtensa_insnbuf insn
,
11926 const xtensa_insnbuf slotbuf
)
11928 insn
[0] = (insn
[0] & ~0xffff00) | ((slotbuf
[0] & 0xffff) << 8);
11932 Slot_x16b_Format_inst16b_0_get (const xtensa_insnbuf insn
,
11933 xtensa_insnbuf slotbuf
)
11935 slotbuf
[0] = ((insn
[0] & 0xffff00) >> 8);
11939 Slot_x16b_Format_inst16b_0_set (xtensa_insnbuf insn
,
11940 const xtensa_insnbuf slotbuf
)
11942 insn
[0] = (insn
[0] & ~0xffff00) | ((slotbuf
[0] & 0xffff) << 8);
11945 static xtensa_get_field_fn
11946 Slot_inst_get_field_fns
[] = {
11947 Field_t_Slot_inst_get
,
11948 Field_bbi4_Slot_inst_get
,
11949 Field_bbi_Slot_inst_get
,
11950 Field_imm12_Slot_inst_get
,
11951 Field_imm8_Slot_inst_get
,
11952 Field_s_Slot_inst_get
,
11953 Field_imm12b_Slot_inst_get
,
11954 Field_imm16_Slot_inst_get
,
11955 Field_m_Slot_inst_get
,
11956 Field_n_Slot_inst_get
,
11957 Field_offset_Slot_inst_get
,
11958 Field_op0_Slot_inst_get
,
11959 Field_op1_Slot_inst_get
,
11960 Field_op2_Slot_inst_get
,
11961 Field_r_Slot_inst_get
,
11962 Field_sa4_Slot_inst_get
,
11963 Field_sae4_Slot_inst_get
,
11964 Field_sae_Slot_inst_get
,
11965 Field_sal_Slot_inst_get
,
11966 Field_sargt_Slot_inst_get
,
11967 Field_sas4_Slot_inst_get
,
11968 Field_sas_Slot_inst_get
,
11969 Field_sr_Slot_inst_get
,
11970 Field_st_Slot_inst_get
,
11971 Field_thi3_Slot_inst_get
,
11972 Field_imm4_Slot_inst_get
,
11973 Field_mn_Slot_inst_get
,
11982 Field_xt_wbr15_imm_Slot_inst_get
,
11983 Field_xt_wbr18_imm_Slot_inst_get
,
11984 Implicit_Field_ar0_get
,
11985 Implicit_Field_ar4_get
,
11986 Implicit_Field_ar8_get
,
11987 Implicit_Field_ar12_get
11990 static xtensa_set_field_fn
11991 Slot_inst_set_field_fns
[] = {
11992 Field_t_Slot_inst_set
,
11993 Field_bbi4_Slot_inst_set
,
11994 Field_bbi_Slot_inst_set
,
11995 Field_imm12_Slot_inst_set
,
11996 Field_imm8_Slot_inst_set
,
11997 Field_s_Slot_inst_set
,
11998 Field_imm12b_Slot_inst_set
,
11999 Field_imm16_Slot_inst_set
,
12000 Field_m_Slot_inst_set
,
12001 Field_n_Slot_inst_set
,
12002 Field_offset_Slot_inst_set
,
12003 Field_op0_Slot_inst_set
,
12004 Field_op1_Slot_inst_set
,
12005 Field_op2_Slot_inst_set
,
12006 Field_r_Slot_inst_set
,
12007 Field_sa4_Slot_inst_set
,
12008 Field_sae4_Slot_inst_set
,
12009 Field_sae_Slot_inst_set
,
12010 Field_sal_Slot_inst_set
,
12011 Field_sargt_Slot_inst_set
,
12012 Field_sas4_Slot_inst_set
,
12013 Field_sas_Slot_inst_set
,
12014 Field_sr_Slot_inst_set
,
12015 Field_st_Slot_inst_set
,
12016 Field_thi3_Slot_inst_set
,
12017 Field_imm4_Slot_inst_set
,
12018 Field_mn_Slot_inst_set
,
12027 Field_xt_wbr15_imm_Slot_inst_set
,
12028 Field_xt_wbr18_imm_Slot_inst_set
,
12029 Implicit_Field_set
,
12030 Implicit_Field_set
,
12031 Implicit_Field_set
,
12035 static xtensa_get_field_fn
12036 Slot_inst16a_get_field_fns
[] = {
12037 Field_t_Slot_inst16a_get
,
12042 Field_s_Slot_inst16a_get
,
12048 Field_op0_Slot_inst16a_get
,
12051 Field_r_Slot_inst16a_get
,
12059 Field_sr_Slot_inst16a_get
,
12060 Field_st_Slot_inst16a_get
,
12062 Field_imm4_Slot_inst16a_get
,
12064 Field_i_Slot_inst16a_get
,
12065 Field_imm6lo_Slot_inst16a_get
,
12066 Field_imm6hi_Slot_inst16a_get
,
12067 Field_imm7lo_Slot_inst16a_get
,
12068 Field_imm7hi_Slot_inst16a_get
,
12069 Field_z_Slot_inst16a_get
,
12070 Field_imm6_Slot_inst16a_get
,
12071 Field_imm7_Slot_inst16a_get
,
12074 Implicit_Field_ar0_get
,
12075 Implicit_Field_ar4_get
,
12076 Implicit_Field_ar8_get
,
12077 Implicit_Field_ar12_get
12080 static xtensa_set_field_fn
12081 Slot_inst16a_set_field_fns
[] = {
12082 Field_t_Slot_inst16a_set
,
12087 Field_s_Slot_inst16a_set
,
12093 Field_op0_Slot_inst16a_set
,
12096 Field_r_Slot_inst16a_set
,
12104 Field_sr_Slot_inst16a_set
,
12105 Field_st_Slot_inst16a_set
,
12107 Field_imm4_Slot_inst16a_set
,
12109 Field_i_Slot_inst16a_set
,
12110 Field_imm6lo_Slot_inst16a_set
,
12111 Field_imm6hi_Slot_inst16a_set
,
12112 Field_imm7lo_Slot_inst16a_set
,
12113 Field_imm7hi_Slot_inst16a_set
,
12114 Field_z_Slot_inst16a_set
,
12115 Field_imm6_Slot_inst16a_set
,
12116 Field_imm7_Slot_inst16a_set
,
12119 Implicit_Field_set
,
12120 Implicit_Field_set
,
12121 Implicit_Field_set
,
12125 static xtensa_get_field_fn
12126 Slot_inst16b_get_field_fns
[] = {
12127 Field_t_Slot_inst16b_get
,
12132 Field_s_Slot_inst16b_get
,
12138 Field_op0_Slot_inst16b_get
,
12141 Field_r_Slot_inst16b_get
,
12149 Field_sr_Slot_inst16b_get
,
12150 Field_st_Slot_inst16b_get
,
12152 Field_imm4_Slot_inst16b_get
,
12154 Field_i_Slot_inst16b_get
,
12155 Field_imm6lo_Slot_inst16b_get
,
12156 Field_imm6hi_Slot_inst16b_get
,
12157 Field_imm7lo_Slot_inst16b_get
,
12158 Field_imm7hi_Slot_inst16b_get
,
12159 Field_z_Slot_inst16b_get
,
12160 Field_imm6_Slot_inst16b_get
,
12161 Field_imm7_Slot_inst16b_get
,
12164 Implicit_Field_ar0_get
,
12165 Implicit_Field_ar4_get
,
12166 Implicit_Field_ar8_get
,
12167 Implicit_Field_ar12_get
12170 static xtensa_set_field_fn
12171 Slot_inst16b_set_field_fns
[] = {
12172 Field_t_Slot_inst16b_set
,
12177 Field_s_Slot_inst16b_set
,
12183 Field_op0_Slot_inst16b_set
,
12186 Field_r_Slot_inst16b_set
,
12194 Field_sr_Slot_inst16b_set
,
12195 Field_st_Slot_inst16b_set
,
12197 Field_imm4_Slot_inst16b_set
,
12199 Field_i_Slot_inst16b_set
,
12200 Field_imm6lo_Slot_inst16b_set
,
12201 Field_imm6hi_Slot_inst16b_set
,
12202 Field_imm7lo_Slot_inst16b_set
,
12203 Field_imm7hi_Slot_inst16b_set
,
12204 Field_z_Slot_inst16b_set
,
12205 Field_imm6_Slot_inst16b_set
,
12206 Field_imm7_Slot_inst16b_set
,
12209 Implicit_Field_set
,
12210 Implicit_Field_set
,
12211 Implicit_Field_set
,
12215 static xtensa_slot_internal slots
[] = {
12216 { "Inst", "x24", 0,
12217 Slot_x24_Format_inst_0_get
, Slot_x24_Format_inst_0_set
,
12218 Slot_inst_get_field_fns
, Slot_inst_set_field_fns
,
12219 Slot_inst_decode
, "nop" },
12220 { "Inst16a", "x16a", 0,
12221 Slot_x16a_Format_inst16a_0_get
, Slot_x16a_Format_inst16a_0_set
,
12222 Slot_inst16a_get_field_fns
, Slot_inst16a_set_field_fns
,
12223 Slot_inst16a_decode
, "" },
12224 { "Inst16b", "x16b", 0,
12225 Slot_x16b_Format_inst16b_0_get
, Slot_x16b_Format_inst16b_0_set
,
12226 Slot_inst16b_get_field_fns
, Slot_inst16b_set_field_fns
,
12227 Slot_inst16b_decode
, "nop.n" }
12231 /* Instruction formats. */
12234 Format_x24_encode (xtensa_insnbuf insn
)
12240 Format_x16a_encode (xtensa_insnbuf insn
)
12242 insn
[0] = 0x800000;
12246 Format_x16b_encode (xtensa_insnbuf insn
)
12248 insn
[0] = 0xc00000;
12251 static int Format_x24_slots
[] = { 0 };
12253 static int Format_x16a_slots
[] = { 1 };
12255 static int Format_x16b_slots
[] = { 2 };
12257 static xtensa_format_internal formats
[] = {
12258 { "x24", 3, Format_x24_encode
, 1, Format_x24_slots
},
12259 { "x16a", 2, Format_x16a_encode
, 1, Format_x16a_slots
},
12260 { "x16b", 2, Format_x16b_encode
, 1, Format_x16b_slots
}
12265 format_decoder (const xtensa_insnbuf insn
)
12267 if ((insn
[0] & 0x800000) == 0)
12268 return 0; /* x24 */
12269 if ((insn
[0] & 0xc00000) == 0x800000)
12270 return 1; /* x16a */
12271 if ((insn
[0] & 0xe00000) == 0xc00000)
12272 return 2; /* x16b */
12276 static int length_table
[16] = {
12296 length_decoder (const unsigned char *insn
)
12298 int op0
= (insn
[0] >> 4) & 0xf;
12299 return length_table
[op0
];
12303 /* Top-level ISA structure. */
12305 xtensa_isa_internal xtensa_modules
= {
12306 1 /* big-endian */,
12307 3 /* insn_size */, 0,
12308 3, formats
, format_decoder
, length_decoder
,
12310 41 /* num_fields */,
12315 NUM_STATES
, states
, 0,
12316 NUM_SYSREGS
, sysregs
, 0,
12317 { MAX_SPECIAL_REG
, MAX_USER_REG
}, { 0, 0 },