* language.c (language_class_name_from_physname): Rename
[deliverable/binutils-gdb.git] / opcodes / bfin-dis.c
CommitLineData
4b7f6baa 1/* Disassemble ADI Blackfin Instructions.
69b8ea4a
MF
2 Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4b7f6baa 4
9b201bb5
NC
5 This file is part of libopcodes.
6
7 This library is free software; you can redistribute it and/or modify
4b7f6baa 8 it under the terms of the GNU General Public License as published by
9b201bb5
NC
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
4b7f6baa 11
9b201bb5
NC
12 It is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
4b7f6baa
CM
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25
26#include "opcode/bfin.h"
27
4b7f6baa
CM
28#ifndef PRINTF
29#define PRINTF printf
30#endif
31
32#ifndef EXIT
33#define EXIT exit
34#endif
35
36typedef long TIword;
37
b7d48530
NC
38#define HOST_LONG_WORD_SIZE (sizeof (long) * 8)
39#define XFIELD(w,p,s) (((w) & ((1 << (s)) - 1) << (p)) >> (p))
40#define SIGNEXTEND(v, n) ((v << (HOST_LONG_WORD_SIZE - (n))) >> (HOST_LONG_WORD_SIZE - (n)))
41#define MASKBITS(val, bits) (val & ((1 << bits) - 1))
4b7f6baa
CM
42
43#include "dis-asm.h"
b7d48530 44
b21c9cb4
BS
45typedef unsigned int bu32;
46
528c6277
MF
47static char comment = 0;
48static char parallel = 0;
49
4b7f6baa
CM
50typedef enum
51{
52 c_0, c_1, c_4, c_2, c_uimm2, c_uimm3, c_imm3, c_pcrel4,
086134ec
BS
53 c_imm4, c_uimm4s4, c_uimm4s4d, c_uimm4, c_uimm4s2, c_negimm5s4, c_imm5, c_imm5d, c_uimm5, c_imm6,
54 c_imm7, c_imm7d, c_imm8, c_uimm8, c_pcrel8, c_uimm8s4, c_pcrel8s4, c_lppcrel10, c_pcrel10,
55 c_pcrel12, c_imm16s4, c_luimm16, c_imm16, c_imm16d, c_huimm16, c_rimm16, c_imm16s2, c_uimm16s4,
56 c_uimm16s4d, c_uimm16, c_pcrel24, c_uimm32, c_imm32, c_huimm32, c_huimm32e,
4b7f6baa
CM
57} const_forms_t;
58
528c6277 59static const struct
4b7f6baa 60{
528c6277
MF
61 const char *name;
62 const int nbits;
63 const char reloc;
64 const char issigned;
65 const char pcrel;
66 const char scale;
67 const char offset;
68 const char negative;
69 const char positive;
70 const char decimal;
71 const char leading;
72 const char exact;
4b7f6baa
CM
73} constant_formats[] =
74{
086134ec
BS
75 { "0", 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
76 { "1", 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
77 { "4", 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
78 { "2", 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
79 { "uimm2", 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
80 { "uimm3", 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
81 { "imm3", 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
82 { "pcrel4", 4, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0},
83 { "imm4", 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
84 { "uimm4s4", 4, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0},
85 { "uimm4s4d", 4, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0},
86 { "uimm4", 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
87 { "uimm4s2", 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0},
88 { "negimm5s4", 5, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0},
89 { "imm5", 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
90 { "imm5d", 5, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0},
91 { "uimm5", 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
92 { "imm6", 6, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
93 { "imm7", 7, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
94 { "imm7d", 7, 0, 1, 0, 0, 0, 0, 0, 1, 3, 0},
95 { "imm8", 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
96 { "uimm8", 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
97 { "pcrel8", 8, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0},
98 { "uimm8s4", 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0},
99 { "pcrel8s4", 8, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0},
100 { "lppcrel10", 10, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0},
101 { "pcrel10", 10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0},
102 { "pcrel12", 12, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0},
103 { "imm16s4", 16, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0},
104 { "luimm16", 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0},
105 { "imm16", 16, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0},
106 { "imm16d", 16, 0, 1, 0, 0, 0, 0, 0, 1, 3, 0},
107 { "huimm16", 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0},
108 { "rimm16", 16, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0},
109 { "imm16s2", 16, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0},
110 { "uimm16s4", 16, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0},
111 { "uimm16s4d", 16, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0},
112 { "uimm16", 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
113 { "pcrel24", 24, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0},
114 { "uimm32", 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
115 { "imm32", 32, 0, 1, 0, 0, 0, 0, 0, 1, 3, 0},
116 { "huimm32", 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0},
117 { "huimm32e", 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1},
4b7f6baa
CM
118};
119
528c6277
MF
120static const char *
121fmtconst (const_forms_t cf, TIword x, bfd_vma pc, disassemble_info *outf)
4b7f6baa
CM
122{
123 static char buf[60];
124
125 if (constant_formats[cf].reloc)
126 {
127 bfd_vma ea = (((constant_formats[cf].pcrel ? SIGNEXTEND (x, constant_formats[cf].nbits)
128 : x) + constant_formats[cf].offset) << constant_formats[cf].scale);
129 if (constant_formats[cf].pcrel)
130 ea += pc;
131
602427c4
MF
132 /* truncate to 32-bits for proper symbol lookup/matching */
133 ea = (bu32)ea;
7a360e83 134
602427c4
MF
135 if (outf->symbol_at_address_func (ea, outf) || !constant_formats[cf].exact)
136 {
086134ec
BS
137 outf->print_address_func (ea, outf);
138 return "";
602427c4
MF
139 }
140 else
141 {
0af1713e 142 sprintf (buf, "%lx", (unsigned long) x);
086134ec 143 return buf;
602427c4 144 }
4b7f6baa
CM
145 }
146
147 /* Negative constants have an implied sign bit. */
148 if (constant_formats[cf].negative)
149 {
150 int nb = constant_formats[cf].nbits + 1;
b7d48530 151
4b7f6baa
CM
152 x = x | (1 << constant_formats[cf].nbits);
153 x = SIGNEXTEND (x, nb);
154 }
155 else
156 x = constant_formats[cf].issigned ? SIGNEXTEND (x, constant_formats[cf].nbits) : x;
157
158 if (constant_formats[cf].offset)
159 x += constant_formats[cf].offset;
160
161 if (constant_formats[cf].scale)
162 x <<= constant_formats[cf].scale;
163
086134ec
BS
164 if (constant_formats[cf].decimal)
165 {
166 if (constant_formats[cf].leading)
167 {
168 char ps[10];
169 sprintf (ps, "%%%ii", constant_formats[cf].leading);
170 sprintf (buf, ps, x);
171 }
172 else
173 sprintf (buf, "%li", x);
174 }
4b7f6baa 175 else
086134ec
BS
176 {
177 if (constant_formats[cf].issigned && x < 0)
178 sprintf (buf, "-0x%x", abs (x));
179 else
0af1713e 180 sprintf (buf, "0x%lx", (unsigned long) x);
086134ec 181 }
4b7f6baa
CM
182
183 return buf;
184}
185
b21c9cb4
BS
186static bu32
187fmtconst_val (const_forms_t cf, unsigned int x, unsigned int pc)
188{
189 if (0 && constant_formats[cf].reloc)
190 {
191 bu32 ea = (((constant_formats[cf].pcrel
086134ec
BS
192 ? SIGNEXTEND (x, constant_formats[cf].nbits)
193 : x) + constant_formats[cf].offset)
194 << constant_formats[cf].scale);
b21c9cb4 195 if (constant_formats[cf].pcrel)
086134ec 196 ea += pc;
b21c9cb4
BS
197
198 return ea;
199 }
200
201 /* Negative constants have an implied sign bit. */
202 if (constant_formats[cf].negative)
203 {
204 int nb = constant_formats[cf].nbits + 1;
205 x = x | (1 << constant_formats[cf].nbits);
206 x = SIGNEXTEND (x, nb);
207 }
208 else if (constant_formats[cf].issigned)
209 x = SIGNEXTEND (x, constant_formats[cf].nbits);
210
211 x += constant_formats[cf].offset;
212 x <<= constant_formats[cf].scale;
213
214 return x;
215}
216
4b7f6baa
CM
217enum machine_registers
218{
219 REG_RL0, REG_RL1, REG_RL2, REG_RL3, REG_RL4, REG_RL5, REG_RL6, REG_RL7,
220 REG_RH0, REG_RH1, REG_RH2, REG_RH3, REG_RH4, REG_RH5, REG_RH6, REG_RH7,
221 REG_R0, REG_R1, REG_R2, REG_R3, REG_R4, REG_R5, REG_R6, REG_R7,
222 REG_R1_0, REG_R3_2, REG_R5_4, REG_R7_6, REG_P0, REG_P1, REG_P2, REG_P3,
223 REG_P4, REG_P5, REG_SP, REG_FP, REG_A0x, REG_A1x, REG_A0w, REG_A1w,
224 REG_A0, REG_A1, REG_I0, REG_I1, REG_I2, REG_I3, REG_M0, REG_M1,
225 REG_M2, REG_M3, REG_B0, REG_B1, REG_B2, REG_B3, REG_L0, REG_L1,
226 REG_L2, REG_L3,
227 REG_AZ, REG_AN, REG_AC0, REG_AC1, REG_AV0, REG_AV1, REG_AV0S, REG_AV1S,
228 REG_AQ, REG_V, REG_VS,
229 REG_sftreset, REG_omode, REG_excause, REG_emucause, REG_idle_req, REG_hwerrcause, REG_CC, REG_LC0,
43a6aa65 230 REG_LC1, REG_ASTAT, REG_RETS, REG_LT0, REG_LB0, REG_LT1, REG_LB1,
4b7f6baa
CM
231 REG_CYCLES, REG_CYCLES2, REG_USP, REG_SEQSTAT, REG_SYSCFG, REG_RETI, REG_RETX, REG_RETN,
232 REG_RETE, REG_EMUDAT, REG_BR0, REG_BR1, REG_BR2, REG_BR3, REG_BR4, REG_BR5, REG_BR6,
233 REG_BR7, REG_PL0, REG_PL1, REG_PL2, REG_PL3, REG_PL4, REG_PL5, REG_SLP, REG_FLP,
234 REG_PH0, REG_PH1, REG_PH2, REG_PH3, REG_PH4, REG_PH5, REG_SHP, REG_FHP,
235 REG_IL0, REG_IL1, REG_IL2, REG_IL3, REG_ML0, REG_ML1, REG_ML2, REG_ML3,
236 REG_BL0, REG_BL1, REG_BL2, REG_BL3, REG_LL0, REG_LL1, REG_LL2, REG_LL3,
237 REG_IH0, REG_IH1, REG_IH2, REG_IH3, REG_MH0, REG_MH1, REG_MH2, REG_MH3,
238 REG_BH0, REG_BH1, REG_BH2, REG_BH3, REG_LH0, REG_LH1, REG_LH2, REG_LH3,
22215ae0 239 REG_AC0_COPY, REG_V_COPY, REG_RND_MOD,
4b7f6baa
CM
240 REG_LASTREG,
241};
242
243enum reg_class
244{
245 rc_dregs_lo, rc_dregs_hi, rc_dregs, rc_dregs_pair, rc_pregs, rc_spfp, rc_dregs_hilo, rc_accum_ext,
246 rc_accum_word, rc_accum, rc_iregs, rc_mregs, rc_bregs, rc_lregs, rc_dpregs, rc_gregs,
247 rc_regs, rc_statbits, rc_ignore_bits, rc_ccstat, rc_counters, rc_dregs2_sysregs1, rc_open, rc_sysregs2,
248 rc_sysregs3, rc_allregs,
249 LIM_REG_CLASSES
250};
251
69b8ea4a 252static const char * const reg_names[] =
4b7f6baa
CM
253{
254 "R0.L", "R1.L", "R2.L", "R3.L", "R4.L", "R5.L", "R6.L", "R7.L",
255 "R0.H", "R1.H", "R2.H", "R3.H", "R4.H", "R5.H", "R6.H", "R7.H",
256 "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7",
257 "R1:0", "R3:2", "R5:4", "R7:6", "P0", "P1", "P2", "P3",
086134ec 258 "P4", "P5", "SP", "FP", "A0.X", "A1.X", "A0.W", "A1.W",
4b7f6baa
CM
259 "A0", "A1", "I0", "I1", "I2", "I3", "M0", "M1",
260 "M2", "M3", "B0", "B1", "B2", "B3", "L0", "L1",
261 "L2", "L3",
262 "AZ", "AN", "AC0", "AC1", "AV0", "AV1", "AV0S", "AV1S",
263 "AQ", "V", "VS",
264 "sftreset", "omode", "excause", "emucause", "idle_req", "hwerrcause", "CC", "LC0",
43a6aa65 265 "LC1", "ASTAT", "RETS", "LT0", "LB0", "LT1", "LB1",
4b7f6baa
CM
266 "CYCLES", "CYCLES2", "USP", "SEQSTAT", "SYSCFG", "RETI", "RETX", "RETN",
267 "RETE", "EMUDAT",
268 "R0.B", "R1.B", "R2.B", "R3.B", "R4.B", "R5.B", "R6.B", "R7.B",
269 "P0.L", "P1.L", "P2.L", "P3.L", "P4.L", "P5.L", "SP.L", "FP.L",
270 "P0.H", "P1.H", "P2.H", "P3.H", "P4.H", "P5.H", "SP.H", "FP.H",
271 "I0.L", "I1.L", "I2.L", "I3.L", "M0.L", "M1.L", "M2.L", "M3.L",
272 "B0.L", "B1.L", "B2.L", "B3.L", "L0.L", "L1.L", "L2.L", "L3.L",
273 "I0.H", "I1.H", "I2.H", "I3.H", "M0.H", "M1.H", "M2.H", "M3.H",
274 "B0.H", "B1.H", "B2.H", "B3.H", "L0.H", "L1.H", "L2.H", "L3.H",
22215ae0 275 "AC0_COPY", "V_COPY", "RND_MOD",
4b7f6baa
CM
276 "LASTREG",
277 0
278};
279
280#define REGNAME(x) ((x) < REG_LASTREG ? (reg_names[x]) : "...... Illegal register .......")
281
282/* RL(0..7). */
69b8ea4a 283static const enum machine_registers decode_dregs_lo[] =
4b7f6baa
CM
284{
285 REG_RL0, REG_RL1, REG_RL2, REG_RL3, REG_RL4, REG_RL5, REG_RL6, REG_RL7,
286};
287
b7d48530 288#define dregs_lo(x) REGNAME (decode_dregs_lo[(x) & 7])
4b7f6baa
CM
289
290/* RH(0..7). */
69b8ea4a 291static const enum machine_registers decode_dregs_hi[] =
4b7f6baa
CM
292{
293 REG_RH0, REG_RH1, REG_RH2, REG_RH3, REG_RH4, REG_RH5, REG_RH6, REG_RH7,
294};
295
b7d48530 296#define dregs_hi(x) REGNAME (decode_dregs_hi[(x) & 7])
4b7f6baa
CM
297
298/* R(0..7). */
69b8ea4a 299static const enum machine_registers decode_dregs[] =
4b7f6baa
CM
300{
301 REG_R0, REG_R1, REG_R2, REG_R3, REG_R4, REG_R5, REG_R6, REG_R7,
302};
303
b7d48530 304#define dregs(x) REGNAME (decode_dregs[(x) & 7])
4b7f6baa
CM
305
306/* R BYTE(0..7). */
69b8ea4a 307static const enum machine_registers decode_dregs_byte[] =
4b7f6baa
CM
308{
309 REG_BR0, REG_BR1, REG_BR2, REG_BR3, REG_BR4, REG_BR5, REG_BR6, REG_BR7,
310};
311
b7d48530 312#define dregs_byte(x) REGNAME (decode_dregs_byte[(x) & 7])
4b7f6baa
CM
313
314/* P(0..5) SP FP. */
69b8ea4a 315static const enum machine_registers decode_pregs[] =
4b7f6baa
CM
316{
317 REG_P0, REG_P1, REG_P2, REG_P3, REG_P4, REG_P5, REG_SP, REG_FP,
318};
319
b7d48530
NC
320#define pregs(x) REGNAME (decode_pregs[(x) & 7])
321#define spfp(x) REGNAME (decode_spfp[(x) & 1])
602427c4 322#define dregs_hilo(x, i) REGNAME (decode_dregs_hilo[((i) << 3) | (x)])
b7d48530
NC
323#define accum_ext(x) REGNAME (decode_accum_ext[(x) & 1])
324#define accum_word(x) REGNAME (decode_accum_word[(x) & 1])
325#define accum(x) REGNAME (decode_accum[(x) & 1])
4b7f6baa
CM
326
327/* I(0..3). */
69b8ea4a 328static const enum machine_registers decode_iregs[] =
4b7f6baa
CM
329{
330 REG_I0, REG_I1, REG_I2, REG_I3,
331};
332
b7d48530 333#define iregs(x) REGNAME (decode_iregs[(x) & 3])
4b7f6baa
CM
334
335/* M(0..3). */
69b8ea4a 336static const enum machine_registers decode_mregs[] =
4b7f6baa
CM
337{
338 REG_M0, REG_M1, REG_M2, REG_M3,
339};
340
b7d48530
NC
341#define mregs(x) REGNAME (decode_mregs[(x) & 3])
342#define bregs(x) REGNAME (decode_bregs[(x) & 3])
343#define lregs(x) REGNAME (decode_lregs[(x) & 3])
4b7f6baa
CM
344
345/* dregs pregs. */
69b8ea4a 346static const enum machine_registers decode_dpregs[] =
4b7f6baa
CM
347{
348 REG_R0, REG_R1, REG_R2, REG_R3, REG_R4, REG_R5, REG_R6, REG_R7,
349 REG_P0, REG_P1, REG_P2, REG_P3, REG_P4, REG_P5, REG_SP, REG_FP,
350};
351
b7d48530 352#define dpregs(x) REGNAME (decode_dpregs[(x) & 15])
4b7f6baa
CM
353
354/* [dregs pregs]. */
69b8ea4a 355static const enum machine_registers decode_gregs[] =
4b7f6baa
CM
356{
357 REG_R0, REG_R1, REG_R2, REG_R3, REG_R4, REG_R5, REG_R6, REG_R7,
358 REG_P0, REG_P1, REG_P2, REG_P3, REG_P4, REG_P5, REG_SP, REG_FP,
359};
360
602427c4 361#define gregs(x, i) REGNAME (decode_gregs[((i) << 3) | (x)])
4b7f6baa
CM
362
363/* [dregs pregs (iregs mregs) (bregs lregs)]. */
69b8ea4a 364static const enum machine_registers decode_regs[] =
4b7f6baa
CM
365{
366 REG_R0, REG_R1, REG_R2, REG_R3, REG_R4, REG_R5, REG_R6, REG_R7,
367 REG_P0, REG_P1, REG_P2, REG_P3, REG_P4, REG_P5, REG_SP, REG_FP,
368 REG_I0, REG_I1, REG_I2, REG_I3, REG_M0, REG_M1, REG_M2, REG_M3,
369 REG_B0, REG_B1, REG_B2, REG_B3, REG_L0, REG_L1, REG_L2, REG_L3,
370};
371
602427c4 372#define regs(x, i) REGNAME (decode_regs[((i) << 3) | (x)])
4b7f6baa
CM
373
374/* [dregs pregs (iregs mregs) (bregs lregs) Low Half]. */
69b8ea4a 375static const enum machine_registers decode_regs_lo[] =
4b7f6baa
CM
376{
377 REG_RL0, REG_RL1, REG_RL2, REG_RL3, REG_RL4, REG_RL5, REG_RL6, REG_RL7,
378 REG_PL0, REG_PL1, REG_PL2, REG_PL3, REG_PL4, REG_PL5, REG_SLP, REG_FLP,
379 REG_IL0, REG_IL1, REG_IL2, REG_IL3, REG_ML0, REG_ML1, REG_ML2, REG_ML3,
380 REG_BL0, REG_BL1, REG_BL2, REG_BL3, REG_LL0, REG_LL1, REG_LL2, REG_LL3,
381};
382
602427c4
MF
383#define regs_lo(x, i) REGNAME (decode_regs_lo[((i) << 3) | (x)])
384
4b7f6baa 385/* [dregs pregs (iregs mregs) (bregs lregs) High Half]. */
69b8ea4a 386static const enum machine_registers decode_regs_hi[] =
4b7f6baa
CM
387{
388 REG_RH0, REG_RH1, REG_RH2, REG_RH3, REG_RH4, REG_RH5, REG_RH6, REG_RH7,
389 REG_PH0, REG_PH1, REG_PH2, REG_PH3, REG_PH4, REG_PH5, REG_SHP, REG_FHP,
1985c81c 390 REG_IH0, REG_IH1, REG_IH2, REG_IH3, REG_MH0, REG_MH1, REG_MH2, REG_MH3,
4b7f6baa
CM
391 REG_BH0, REG_BH1, REG_BH2, REG_BH3, REG_LH0, REG_LH1, REG_LH2, REG_LH3,
392};
393
602427c4 394#define regs_hi(x, i) REGNAME (decode_regs_hi[((i) << 3) | (x)])
4b7f6baa 395
69b8ea4a 396static const enum machine_registers decode_statbits[] =
4b7f6baa 397{
22215ae0
MF
398 REG_AZ, REG_AN, REG_AC0_COPY, REG_V_COPY,
399 REG_LASTREG, REG_LASTREG, REG_AQ, REG_LASTREG,
400 REG_RND_MOD, REG_LASTREG, REG_LASTREG, REG_LASTREG,
401 REG_AC0, REG_AC1, REG_LASTREG, REG_LASTREG,
402 REG_AV0, REG_AV0S, REG_AV1, REG_AV1S,
403 REG_LASTREG, REG_LASTREG, REG_LASTREG, REG_LASTREG,
404 REG_V, REG_VS, REG_LASTREG, REG_LASTREG,
405 REG_LASTREG, REG_LASTREG, REG_LASTREG, REG_LASTREG,
4b7f6baa
CM
406};
407
ad15c38e 408#define statbits(x) REGNAME (decode_statbits[(x) & 31])
4b7f6baa
CM
409
410/* LC0 LC1. */
69b8ea4a 411static const enum machine_registers decode_counters[] =
4b7f6baa
CM
412{
413 REG_LC0, REG_LC1,
414};
415
b7d48530
NC
416#define counters(x) REGNAME (decode_counters[(x) & 1])
417#define dregs2_sysregs1(x) REGNAME (decode_dregs2_sysregs1[(x) & 7])
4b7f6baa
CM
418
419/* [dregs pregs (iregs mregs) (bregs lregs)
420 dregs2_sysregs1 open sysregs2 sysregs3]. */
69b8ea4a 421static const enum machine_registers decode_allregs[] =
4b7f6baa
CM
422{
423 REG_R0, REG_R1, REG_R2, REG_R3, REG_R4, REG_R5, REG_R6, REG_R7,
424 REG_P0, REG_P1, REG_P2, REG_P3, REG_P4, REG_P5, REG_SP, REG_FP,
425 REG_I0, REG_I1, REG_I2, REG_I3, REG_M0, REG_M1, REG_M2, REG_M3,
426 REG_B0, REG_B1, REG_B2, REG_B3, REG_L0, REG_L1, REG_L2, REG_L3,
43a6aa65 427 REG_A0x, REG_A0w, REG_A1x, REG_A1w, REG_LASTREG, REG_LASTREG, REG_ASTAT, REG_RETS,
4b7f6baa
CM
428 REG_LASTREG, REG_LASTREG, REG_LASTREG, REG_LASTREG, REG_LASTREG, REG_LASTREG, REG_LASTREG, REG_LASTREG,
429 REG_LC0, REG_LT0, REG_LB0, REG_LC1, REG_LT1, REG_LB1, REG_CYCLES, REG_CYCLES2,
c958a8a8
JZ
430 REG_USP, REG_SEQSTAT, REG_SYSCFG, REG_RETI, REG_RETX, REG_RETN, REG_RETE, REG_EMUDAT,
431 REG_LASTREG,
4b7f6baa
CM
432};
433
50e2162a
MF
434#define IS_DREG(g,r) ((g) == 0 && (r) < 8)
435#define IS_PREG(g,r) ((g) == 1 && (r) < 8)
c958a8a8 436#define IS_AREG(g,r) ((g) == 4 && (r) >= 0 && (r) < 4)
50e2162a
MF
437#define IS_GENREG(g,r) ((((g) == 0 || (g) == 1) && (r) < 8) || IS_AREG (g, r))
438#define IS_DAGREG(g,r) (((g) == 2 || (g) == 3) && (r) < 8)
c958a8a8
JZ
439#define IS_SYSREG(g,r) \
440 (((g) == 4 && ((r) == 6 || (r) == 7)) || (g) == 6 || (g) == 7)
50e2162a
MF
441#define IS_RESERVEDREG(g,r) \
442 (((r) > 7) || ((g) == 4 && ((r) == 4 || (r) == 5)) || (g) == 5)
443
444#define allreg(r,g) (!IS_RESERVEDREG (g, r))
445#define mostreg(r,g) (!(IS_DREG (g, r) || IS_PREG (g, r) || IS_RESERVEDREG (g, r)))
c958a8a8 446
602427c4 447#define allregs(x, i) REGNAME (decode_allregs[((i) << 3) | (x)])
b7d48530 448#define uimm16s4(x) fmtconst (c_uimm16s4, x, 0, outf)
086134ec 449#define uimm16s4d(x) fmtconst (c_uimm16s4d, x, 0, outf)
b7d48530
NC
450#define pcrel4(x) fmtconst (c_pcrel4, x, pc, outf)
451#define pcrel8(x) fmtconst (c_pcrel8, x, pc, outf)
452#define pcrel8s4(x) fmtconst (c_pcrel8s4, x, pc, outf)
453#define pcrel10(x) fmtconst (c_pcrel10, x, pc, outf)
454#define pcrel12(x) fmtconst (c_pcrel12, x, pc, outf)
455#define negimm5s4(x) fmtconst (c_negimm5s4, x, 0, outf)
456#define rimm16(x) fmtconst (c_rimm16, x, 0, outf)
457#define huimm16(x) fmtconst (c_huimm16, x, 0, outf)
458#define imm16(x) fmtconst (c_imm16, x, 0, outf)
086134ec 459#define imm16d(x) fmtconst (c_imm16d, x, 0, outf)
b7d48530
NC
460#define uimm2(x) fmtconst (c_uimm2, x, 0, outf)
461#define uimm3(x) fmtconst (c_uimm3, x, 0, outf)
462#define luimm16(x) fmtconst (c_luimm16, x, 0, outf)
463#define uimm4(x) fmtconst (c_uimm4, x, 0, outf)
464#define uimm5(x) fmtconst (c_uimm5, x, 0, outf)
465#define imm16s2(x) fmtconst (c_imm16s2, x, 0, outf)
466#define uimm8(x) fmtconst (c_uimm8, x, 0, outf)
467#define imm16s4(x) fmtconst (c_imm16s4, x, 0, outf)
468#define uimm4s2(x) fmtconst (c_uimm4s2, x, 0, outf)
469#define uimm4s4(x) fmtconst (c_uimm4s4, x, 0, outf)
086134ec 470#define uimm4s4d(x) fmtconst (c_uimm4s4d, x, 0, outf)
b7d48530
NC
471#define lppcrel10(x) fmtconst (c_lppcrel10, x, pc, outf)
472#define imm3(x) fmtconst (c_imm3, x, 0, outf)
473#define imm4(x) fmtconst (c_imm4, x, 0, outf)
474#define uimm8s4(x) fmtconst (c_uimm8s4, x, 0, outf)
475#define imm5(x) fmtconst (c_imm5, x, 0, outf)
086134ec 476#define imm5d(x) fmtconst (c_imm5d, x, 0, outf)
b7d48530
NC
477#define imm6(x) fmtconst (c_imm6, x, 0, outf)
478#define imm7(x) fmtconst (c_imm7, x, 0, outf)
086134ec 479#define imm7d(x) fmtconst (c_imm7d, x, 0, outf)
b7d48530
NC
480#define imm8(x) fmtconst (c_imm8, x, 0, outf)
481#define pcrel24(x) fmtconst (c_pcrel24, x, pc, outf)
482#define uimm16(x) fmtconst (c_uimm16, x, 0, outf)
b21c9cb4 483#define uimm32(x) fmtconst (c_uimm32, x, 0, outf)
086134ec 484#define imm32(x) fmtconst (c_imm32, x, 0, outf)
b21c9cb4 485#define huimm32(x) fmtconst (c_huimm32, x, 0, outf)
086134ec
BS
486#define huimm32e(x) fmtconst (c_huimm32e, x, 0, outf)
487#define imm7_val(x) fmtconst_val (c_imm7, x, 0)
b21c9cb4
BS
488#define imm16_val(x) fmtconst_val (c_uimm16, x, 0)
489#define luimm16_val(x) fmtconst_val (c_luimm16, x, 0)
4b7f6baa
CM
490
491/* (arch.pm)arch_disassembler_functions. */
4b7f6baa 492#ifndef OUTS
4ca47a51 493#define OUTS(p, txt) ((p) ? (((txt)[0]) ? (p->fprintf_func)(p->stream, "%s", txt) :0) :0)
4b7f6baa
CM
494#endif
495
4b7f6baa
CM
496static void
497amod0 (int s0, int x0, disassemble_info *outf)
498{
b7d48530 499 if (s0 == 1 && x0 == 0)
086134ec 500 OUTS (outf, " (S)");
4b7f6baa 501 else if (s0 == 0 && x0 == 1)
086134ec 502 OUTS (outf, " (CO)");
4b7f6baa 503 else if (s0 == 1 && x0 == 1)
086134ec 504 OUTS (outf, " (SCO)");
4b7f6baa
CM
505}
506
507static void
508amod1 (int s0, int x0, disassemble_info *outf)
509{
510 if (s0 == 0 && x0 == 0)
086134ec 511 OUTS (outf, " (NS)");
4b7f6baa 512 else if (s0 == 1 && x0 == 0)
086134ec 513 OUTS (outf, " (S)");
4b7f6baa
CM
514}
515
516static void
517amod0amod2 (int s0, int x0, int aop0, disassemble_info *outf)
518{
b7d48530 519 if (s0 == 1 && x0 == 0 && aop0 == 0)
086134ec 520 OUTS (outf, " (S)");
4b7f6baa 521 else if (s0 == 0 && x0 == 1 && aop0 == 0)
086134ec 522 OUTS (outf, " (CO)");
4b7f6baa 523 else if (s0 == 1 && x0 == 1 && aop0 == 0)
086134ec 524 OUTS (outf, " (SCO)");
4b7f6baa 525 else if (s0 == 0 && x0 == 0 && aop0 == 2)
086134ec 526 OUTS (outf, " (ASR)");
4b7f6baa 527 else if (s0 == 1 && x0 == 0 && aop0 == 2)
086134ec 528 OUTS (outf, " (S, ASR)");
4b7f6baa 529 else if (s0 == 0 && x0 == 1 && aop0 == 2)
086134ec 530 OUTS (outf, " (CO, ASR)");
4b7f6baa 531 else if (s0 == 1 && x0 == 1 && aop0 == 2)
086134ec 532 OUTS (outf, " (SCO, ASR)");
4b7f6baa 533 else if (s0 == 0 && x0 == 0 && aop0 == 3)
086134ec 534 OUTS (outf, " (ASL)");
4b7f6baa 535 else if (s0 == 1 && x0 == 0 && aop0 == 3)
086134ec 536 OUTS (outf, " (S, ASL)");
4b7f6baa 537 else if (s0 == 0 && x0 == 1 && aop0 == 3)
086134ec 538 OUTS (outf, " (CO, ASL)");
4b7f6baa 539 else if (s0 == 1 && x0 == 1 && aop0 == 3)
086134ec 540 OUTS (outf, " (SCO, ASL)");
4b7f6baa
CM
541}
542
543static void
544searchmod (int r0, disassemble_info *outf)
545{
b7d48530
NC
546 if (r0 == 0)
547 OUTS (outf, "GT");
548 else if (r0 == 1)
549 OUTS (outf, "GE");
550 else if (r0 == 2)
551 OUTS (outf, "LT");
552 else if (r0 == 3)
553 OUTS (outf, "LE");
4b7f6baa
CM
554}
555
556static void
557aligndir (int r0, disassemble_info *outf)
558{
b7d48530 559 if (r0 == 1)
086134ec 560 OUTS (outf, " (R)");
4b7f6baa
CM
561}
562
563static int
602427c4 564decode_multfunc (int h0, int h1, int src0, int src1, disassemble_info *outf)
4b7f6baa 565{
528c6277 566 const char *s0, *s1;
4b7f6baa
CM
567
568 if (h0)
569 s0 = dregs_hi (src0);
570 else
571 s0 = dregs_lo (src0);
572
573 if (h1)
574 s1 = dregs_hi (src1);
575 else
576 s1 = dregs_lo (src1);
577
578 OUTS (outf, s0);
579 OUTS (outf, " * ");
580 OUTS (outf, s1);
581 return 0;
582}
583
584static int
602427c4 585decode_macfunc (int which, int op, int h0, int h1, int src0, int src1, disassemble_info *outf)
4b7f6baa 586{
528c6277
MF
587 const char *a;
588 const char *sop = "<unknown op>";
4b7f6baa
CM
589
590 if (which)
086134ec 591 a = "A1";
4b7f6baa 592 else
086134ec 593 a = "A0";
4b7f6baa
CM
594
595 if (op == 3)
596 {
597 OUTS (outf, a);
598 return 0;
599 }
600
601 switch (op)
602 {
086134ec
BS
603 case 0: sop = " = "; break;
604 case 1: sop = " += "; break;
605 case 2: sop = " -= "; break;
b7d48530 606 default: break;
4b7f6baa
CM
607 }
608
609 OUTS (outf, a);
4b7f6baa 610 OUTS (outf, sop);
4b7f6baa
CM
611 decode_multfunc (h0, h1, src0, src1, outf);
612
613 return 0;
614}
615
616static void
617decode_optmode (int mod, int MM, disassemble_info *outf)
618{
619 if (mod == 0 && MM == 0)
620 return;
621
622 OUTS (outf, " (");
623
624 if (MM && !mod)
625 {
626 OUTS (outf, "M)");
627 return;
628 }
629
630 if (MM)
631 OUTS (outf, "M, ");
b7d48530 632
4b7f6baa
CM
633 if (mod == M_S2RND)
634 OUTS (outf, "S2RND");
635 else if (mod == M_T)
636 OUTS (outf, "T");
637 else if (mod == M_W32)
638 OUTS (outf, "W32");
639 else if (mod == M_FU)
640 OUTS (outf, "FU");
641 else if (mod == M_TFU)
642 OUTS (outf, "TFU");
643 else if (mod == M_IS)
644 OUTS (outf, "IS");
645 else if (mod == M_ISS2)
646 OUTS (outf, "ISS2");
647 else if (mod == M_IH)
648 OUTS (outf, "IH");
649 else if (mod == M_IU)
650 OUTS (outf, "IU");
651 else
652 abort ();
653
654 OUTS (outf, ")");
655}
b7d48530 656
e5bc4265 657static struct saved_state
b21c9cb4
BS
658{
659 bu32 dpregs[16], iregs[4], mregs[4], bregs[4], lregs[4];
e5bc4265 660 bu32 ax[2], aw[2];
b21c9cb4 661 bu32 lt[2], lc[2], lb[2];
e5bc4265 662 bu32 rets;
602427c4 663} saved_state;
b21c9cb4
BS
664
665#define DREG(x) (saved_state.dpregs[x])
602427c4 666#define GREG(x, i) DPREG ((x) | ((i) << 3))
b21c9cb4
BS
667#define DPREG(x) (saved_state.dpregs[x])
668#define DREG(x) (saved_state.dpregs[x])
602427c4 669#define PREG(x) (saved_state.dpregs[(x) + 8])
b21c9cb4
BS
670#define SPREG PREG (6)
671#define FPREG PREG (7)
672#define IREG(x) (saved_state.iregs[x])
673#define MREG(x) (saved_state.mregs[x])
674#define BREG(x) (saved_state.bregs[x])
675#define LREG(x) (saved_state.lregs[x])
e5bc4265
MF
676#define AXREG(x) (saved_state.ax[x])
677#define AWREG(x) (saved_state.aw[x])
678#define LCREG(x) (saved_state.lc[x])
679#define LTREG(x) (saved_state.lt[x])
680#define LBREG(x) (saved_state.lb[x])
b21c9cb4 681#define RETSREG (saved_state.rets)
b21c9cb4
BS
682
683static bu32 *
684get_allreg (int grp, int reg)
685{
686 int fullreg = (grp << 3) | reg;
687 /* REG_R0, REG_R1, REG_R2, REG_R3, REG_R4, REG_R5, REG_R6, REG_R7,
688 REG_P0, REG_P1, REG_P2, REG_P3, REG_P4, REG_P5, REG_SP, REG_FP,
689 REG_I0, REG_I1, REG_I2, REG_I3, REG_M0, REG_M1, REG_M2, REG_M3,
690 REG_B0, REG_B1, REG_B2, REG_B3, REG_L0, REG_L1, REG_L2, REG_L3,
691 REG_A0x, REG_A0w, REG_A1x, REG_A1w, , , REG_ASTAT, REG_RETS,
692 , , , , , , , ,
693 REG_LC0, REG_LT0, REG_LB0, REG_LC1, REG_LT1, REG_LB1, REG_CYCLES,
694 REG_CYCLES2,
695 REG_USP, REG_SEQSTAT, REG_SYSCFG, REG_RETI, REG_RETX, REG_RETN, REG_RETE,
696 REG_LASTREG */
697 switch (fullreg >> 2)
698 {
e5bc4265
MF
699 case 0: case 1: return &DREG (reg);
700 case 2: case 3: return &PREG (reg);
701 case 4: return &IREG (reg & 3);
702 case 5: return &MREG (reg & 3);
703 case 6: return &BREG (reg & 3);
704 case 7: return &LREG (reg & 3);
b21c9cb4
BS
705 default:
706 switch (fullreg)
086134ec 707 {
e5bc4265
MF
708 case 32: return &AXREG (0);
709 case 33: return &AWREG (0);
710 case 34: return &AXREG (1);
711 case 35: return &AWREG (1);
712 case 39: return &RETSREG;
713 case 48: return &LCREG (0);
714 case 49: return &LTREG (0);
715 case 50: return &LBREG (0);
716 case 51: return &LCREG (1);
717 case 52: return &LTREG (1);
718 case 53: return &LBREG (1);
086134ec 719 }
b21c9cb4 720 }
e5bc4265 721 abort ();
b21c9cb4
BS
722}
723
4b7f6baa
CM
724static int
725decode_ProgCtrl_0 (TIword iw0, disassemble_info *outf)
726{
b7d48530
NC
727 /* ProgCtrl
728 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
729 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |.prgfunc.......|.poprnd........|
730 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
731 int poprnd = ((iw0 >> ProgCtrl_poprnd_bits) & ProgCtrl_poprnd_mask);
732 int prgfunc = ((iw0 >> ProgCtrl_prgfunc_bits) & ProgCtrl_prgfunc_mask);
733
734 if (prgfunc == 0 && poprnd == 0)
b7d48530 735 OUTS (outf, "NOP");
219b747a
MF
736 else if (parallel)
737 return 0;
4b7f6baa 738 else if (prgfunc == 1 && poprnd == 0)
b7d48530 739 OUTS (outf, "RTS");
4b7f6baa 740 else if (prgfunc == 1 && poprnd == 1)
b7d48530 741 OUTS (outf, "RTI");
4b7f6baa 742 else if (prgfunc == 1 && poprnd == 2)
b7d48530 743 OUTS (outf, "RTX");
4b7f6baa 744 else if (prgfunc == 1 && poprnd == 3)
b7d48530 745 OUTS (outf, "RTN");
4b7f6baa 746 else if (prgfunc == 1 && poprnd == 4)
b7d48530 747 OUTS (outf, "RTE");
4b7f6baa 748 else if (prgfunc == 2 && poprnd == 0)
b7d48530 749 OUTS (outf, "IDLE");
4b7f6baa 750 else if (prgfunc == 2 && poprnd == 3)
b7d48530 751 OUTS (outf, "CSYNC");
4b7f6baa 752 else if (prgfunc == 2 && poprnd == 4)
b7d48530 753 OUTS (outf, "SSYNC");
4b7f6baa 754 else if (prgfunc == 2 && poprnd == 5)
b7d48530 755 OUTS (outf, "EMUEXCPT");
50e2162a 756 else if (prgfunc == 3 && IS_DREG (0, poprnd))
4b7f6baa 757 {
086134ec 758 OUTS (outf, "CLI ");
4b7f6baa 759 OUTS (outf, dregs (poprnd));
4b7f6baa 760 }
50e2162a 761 else if (prgfunc == 4 && IS_DREG (0, poprnd))
4b7f6baa 762 {
086134ec 763 OUTS (outf, "STI ");
4b7f6baa 764 OUTS (outf, dregs (poprnd));
4b7f6baa 765 }
50e2162a 766 else if (prgfunc == 5 && IS_PREG (1, poprnd))
4b7f6baa 767 {
086134ec 768 OUTS (outf, "JUMP (");
4b7f6baa
CM
769 OUTS (outf, pregs (poprnd));
770 OUTS (outf, ")");
4b7f6baa 771 }
50e2162a 772 else if (prgfunc == 6 && IS_PREG (1, poprnd))
4b7f6baa 773 {
086134ec 774 OUTS (outf, "CALL (");
4b7f6baa
CM
775 OUTS (outf, pregs (poprnd));
776 OUTS (outf, ")");
4b7f6baa 777 }
50e2162a 778 else if (prgfunc == 7 && IS_PREG (1, poprnd))
4b7f6baa 779 {
086134ec 780 OUTS (outf, "CALL (PC + ");
4b7f6baa
CM
781 OUTS (outf, pregs (poprnd));
782 OUTS (outf, ")");
4b7f6baa 783 }
50e2162a 784 else if (prgfunc == 8 && IS_PREG (1, poprnd))
4b7f6baa 785 {
086134ec 786 OUTS (outf, "JUMP (PC + ");
4b7f6baa
CM
787 OUTS (outf, pregs (poprnd));
788 OUTS (outf, ")");
4b7f6baa
CM
789 }
790 else if (prgfunc == 9)
791 {
086134ec 792 OUTS (outf, "RAISE ");
4b7f6baa 793 OUTS (outf, uimm4 (poprnd));
4b7f6baa
CM
794 }
795 else if (prgfunc == 10)
796 {
086134ec 797 OUTS (outf, "EXCPT ");
4b7f6baa 798 OUTS (outf, uimm4 (poprnd));
4b7f6baa 799 }
219b747a 800 else if (prgfunc == 11 && IS_PREG (1, poprnd) && poprnd <= 5)
4b7f6baa 801 {
086134ec 802 OUTS (outf, "TESTSET (");
4b7f6baa
CM
803 OUTS (outf, pregs (poprnd));
804 OUTS (outf, ")");
4b7f6baa
CM
805 }
806 else
b7d48530
NC
807 return 0;
808 return 2;
4b7f6baa
CM
809}
810
811static int
812decode_CaCTRL_0 (TIword iw0, disassemble_info *outf)
813{
b7d48530
NC
814 /* CaCTRL
815 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
816 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |.a.|.op....|.reg.......|
817 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
818 int a = ((iw0 >> CaCTRL_a_bits) & CaCTRL_a_mask);
819 int op = ((iw0 >> CaCTRL_op_bits) & CaCTRL_op_mask);
820 int reg = ((iw0 >> CaCTRL_reg_bits) & CaCTRL_reg_mask);
821
219b747a
MF
822 if (parallel)
823 return 0;
824
4b7f6baa
CM
825 if (a == 0 && op == 0)
826 {
4b7f6baa
CM
827 OUTS (outf, "PREFETCH[");
828 OUTS (outf, pregs (reg));
829 OUTS (outf, "]");
4b7f6baa
CM
830 }
831 else if (a == 0 && op == 1)
832 {
4b7f6baa
CM
833 OUTS (outf, "FLUSHINV[");
834 OUTS (outf, pregs (reg));
835 OUTS (outf, "]");
4b7f6baa
CM
836 }
837 else if (a == 0 && op == 2)
838 {
4b7f6baa
CM
839 OUTS (outf, "FLUSH[");
840 OUTS (outf, pregs (reg));
841 OUTS (outf, "]");
4b7f6baa
CM
842 }
843 else if (a == 0 && op == 3)
844 {
4b7f6baa
CM
845 OUTS (outf, "IFLUSH[");
846 OUTS (outf, pregs (reg));
847 OUTS (outf, "]");
4b7f6baa
CM
848 }
849 else if (a == 1 && op == 0)
850 {
4b7f6baa
CM
851 OUTS (outf, "PREFETCH[");
852 OUTS (outf, pregs (reg));
853 OUTS (outf, "++]");
4b7f6baa
CM
854 }
855 else if (a == 1 && op == 1)
856 {
4b7f6baa
CM
857 OUTS (outf, "FLUSHINV[");
858 OUTS (outf, pregs (reg));
859 OUTS (outf, "++]");
4b7f6baa
CM
860 }
861 else if (a == 1 && op == 2)
862 {
4b7f6baa
CM
863 OUTS (outf, "FLUSH[");
864 OUTS (outf, pregs (reg));
865 OUTS (outf, "++]");
4b7f6baa
CM
866 }
867 else if (a == 1 && op == 3)
868 {
4b7f6baa
CM
869 OUTS (outf, "IFLUSH[");
870 OUTS (outf, pregs (reg));
871 OUTS (outf, "++]");
4b7f6baa
CM
872 }
873 else
b7d48530
NC
874 return 0;
875 return 2;
4b7f6baa
CM
876}
877
878static int
879decode_PushPopReg_0 (TIword iw0, disassemble_info *outf)
880{
b7d48530
NC
881 /* PushPopReg
882 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
883 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |.W.|.grp.......|.reg.......|
884 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
885 int W = ((iw0 >> PushPopReg_W_bits) & PushPopReg_W_mask);
886 int grp = ((iw0 >> PushPopReg_grp_bits) & PushPopReg_grp_mask);
887 int reg = ((iw0 >> PushPopReg_reg_bits) & PushPopReg_reg_mask);
888
219b747a
MF
889 if (parallel)
890 return 0;
891
50e2162a 892 if (W == 0 && mostreg (reg, grp))
4b7f6baa 893 {
4b7f6baa
CM
894 OUTS (outf, allregs (reg, grp));
895 OUTS (outf, " = [SP++]");
4b7f6baa 896 }
219b747a 897 else if (W == 1 && allreg (reg, grp) && !(grp == 1 && reg == 6))
4b7f6baa 898 {
4b7f6baa
CM
899 OUTS (outf, "[--SP] = ");
900 OUTS (outf, allregs (reg, grp));
4b7f6baa
CM
901 }
902 else
b7d48530
NC
903 return 0;
904 return 2;
4b7f6baa
CM
905}
906
907static int
908decode_PushPopMultiple_0 (TIword iw0, disassemble_info *outf)
909{
b7d48530
NC
910 /* PushPopMultiple
911 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
912 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |.d.|.p.|.W.|.dr........|.pr........|
913 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
914 int p = ((iw0 >> PushPopMultiple_p_bits) & PushPopMultiple_p_mask);
915 int d = ((iw0 >> PushPopMultiple_d_bits) & PushPopMultiple_d_mask);
916 int W = ((iw0 >> PushPopMultiple_W_bits) & PushPopMultiple_W_mask);
917 int dr = ((iw0 >> PushPopMultiple_dr_bits) & PushPopMultiple_dr_mask);
918 int pr = ((iw0 >> PushPopMultiple_pr_bits) & PushPopMultiple_pr_mask);
4b7f6baa 919
219b747a
MF
920 if (parallel)
921 return 0;
922
775f1cf0
MF
923 if (pr > 5)
924 return 0;
925
4b7f6baa
CM
926 if (W == 1 && d == 1 && p == 1)
927 {
4b7f6baa 928 OUTS (outf, "[--SP] = (R7:");
086134ec 929 OUTS (outf, imm5d (dr));
4b7f6baa 930 OUTS (outf, ", P5:");
086134ec 931 OUTS (outf, imm5d (pr));
4b7f6baa 932 OUTS (outf, ")");
4b7f6baa 933 }
219b747a 934 else if (W == 1 && d == 1 && p == 0 && pr == 0)
4b7f6baa 935 {
4b7f6baa 936 OUTS (outf, "[--SP] = (R7:");
086134ec 937 OUTS (outf, imm5d (dr));
4b7f6baa 938 OUTS (outf, ")");
4b7f6baa 939 }
219b747a 940 else if (W == 1 && d == 0 && p == 1 && dr == 0)
4b7f6baa 941 {
4b7f6baa 942 OUTS (outf, "[--SP] = (P5:");
086134ec 943 OUTS (outf, imm5d (pr));
4b7f6baa 944 OUTS (outf, ")");
4b7f6baa
CM
945 }
946 else if (W == 0 && d == 1 && p == 1)
947 {
4b7f6baa 948 OUTS (outf, "(R7:");
086134ec 949 OUTS (outf, imm5d (dr));
4b7f6baa 950 OUTS (outf, ", P5:");
086134ec 951 OUTS (outf, imm5d (pr));
4b7f6baa 952 OUTS (outf, ") = [SP++]");
4b7f6baa 953 }
219b747a 954 else if (W == 0 && d == 1 && p == 0 && pr == 0)
4b7f6baa 955 {
4b7f6baa 956 OUTS (outf, "(R7:");
086134ec 957 OUTS (outf, imm5d (dr));
4b7f6baa 958 OUTS (outf, ") = [SP++]");
4b7f6baa 959 }
219b747a 960 else if (W == 0 && d == 0 && p == 1 && dr == 0)
4b7f6baa 961 {
4b7f6baa 962 OUTS (outf, "(P5:");
086134ec 963 OUTS (outf, imm5d (pr));
4b7f6baa 964 OUTS (outf, ") = [SP++]");
4b7f6baa
CM
965 }
966 else
b7d48530
NC
967 return 0;
968 return 2;
4b7f6baa
CM
969}
970
971static int
972decode_ccMV_0 (TIword iw0, disassemble_info *outf)
973{
b7d48530
NC
974 /* ccMV
975 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
976 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |.T.|.d.|.s.|.dst.......|.src.......|
977 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
978 int s = ((iw0 >> CCmv_s_bits) & CCmv_s_mask);
979 int d = ((iw0 >> CCmv_d_bits) & CCmv_d_mask);
980 int T = ((iw0 >> CCmv_T_bits) & CCmv_T_mask);
981 int src = ((iw0 >> CCmv_src_bits) & CCmv_src_mask);
982 int dst = ((iw0 >> CCmv_dst_bits) & CCmv_dst_mask);
983
219b747a
MF
984 if (parallel)
985 return 0;
986
4b7f6baa
CM
987 if (T == 1)
988 {
4b7f6baa
CM
989 OUTS (outf, "IF CC ");
990 OUTS (outf, gregs (dst, d));
991 OUTS (outf, " = ");
992 OUTS (outf, gregs (src, s));
4b7f6baa
CM
993 }
994 else if (T == 0)
995 {
086134ec 996 OUTS (outf, "IF !CC ");
4b7f6baa
CM
997 OUTS (outf, gregs (dst, d));
998 OUTS (outf, " = ");
999 OUTS (outf, gregs (src, s));
4b7f6baa
CM
1000 }
1001 else
b7d48530
NC
1002 return 0;
1003 return 2;
4b7f6baa
CM
1004}
1005
1006static int
1007decode_CCflag_0 (TIword iw0, disassemble_info *outf)
1008{
b7d48530
NC
1009 /* CCflag
1010 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1011 | 0 | 0 | 0 | 0 | 1 |.I.|.opc.......|.G.|.y.........|.x.........|
1012 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1013 int x = ((iw0 >> CCflag_x_bits) & CCflag_x_mask);
1014 int y = ((iw0 >> CCflag_y_bits) & CCflag_y_mask);
1015 int I = ((iw0 >> CCflag_I_bits) & CCflag_I_mask);
1016 int G = ((iw0 >> CCflag_G_bits) & CCflag_G_mask);
1017 int opc = ((iw0 >> CCflag_opc_bits) & CCflag_opc_mask);
1018
219b747a
MF
1019 if (parallel)
1020 return 0;
1021
4b7f6baa
CM
1022 if (opc == 0 && I == 0 && G == 0)
1023 {
086134ec 1024 OUTS (outf, "CC = ");
4b7f6baa 1025 OUTS (outf, dregs (x));
086134ec 1026 OUTS (outf, " == ");
4b7f6baa 1027 OUTS (outf, dregs (y));
4b7f6baa
CM
1028 }
1029 else if (opc == 1 && I == 0 && G == 0)
1030 {
086134ec 1031 OUTS (outf, "CC = ");
4b7f6baa 1032 OUTS (outf, dregs (x));
086134ec 1033 OUTS (outf, " < ");
4b7f6baa 1034 OUTS (outf, dregs (y));
4b7f6baa
CM
1035 }
1036 else if (opc == 2 && I == 0 && G == 0)
1037 {
086134ec 1038 OUTS (outf, "CC = ");
4b7f6baa 1039 OUTS (outf, dregs (x));
086134ec 1040 OUTS (outf, " <= ");
4b7f6baa 1041 OUTS (outf, dregs (y));
4b7f6baa
CM
1042 }
1043 else if (opc == 3 && I == 0 && G == 0)
1044 {
086134ec 1045 OUTS (outf, "CC = ");
4b7f6baa 1046 OUTS (outf, dregs (x));
086134ec 1047 OUTS (outf, " < ");
4b7f6baa 1048 OUTS (outf, dregs (y));
086134ec 1049 OUTS (outf, " (IU)");
4b7f6baa
CM
1050 }
1051 else if (opc == 4 && I == 0 && G == 0)
1052 {
086134ec 1053 OUTS (outf, "CC = ");
4b7f6baa 1054 OUTS (outf, dregs (x));
086134ec 1055 OUTS (outf, " <= ");
4b7f6baa 1056 OUTS (outf, dregs (y));
086134ec 1057 OUTS (outf, " (IU)");
4b7f6baa
CM
1058 }
1059 else if (opc == 0 && I == 1 && G == 0)
1060 {
086134ec 1061 OUTS (outf, "CC = ");
4b7f6baa 1062 OUTS (outf, dregs (x));
086134ec 1063 OUTS (outf, " == ");
4b7f6baa 1064 OUTS (outf, imm3 (y));
4b7f6baa
CM
1065 }
1066 else if (opc == 1 && I == 1 && G == 0)
1067 {
086134ec 1068 OUTS (outf, "CC = ");
4b7f6baa 1069 OUTS (outf, dregs (x));
086134ec 1070 OUTS (outf, " < ");
4b7f6baa 1071 OUTS (outf, imm3 (y));
4b7f6baa
CM
1072 }
1073 else if (opc == 2 && I == 1 && G == 0)
1074 {
086134ec 1075 OUTS (outf, "CC = ");
4b7f6baa 1076 OUTS (outf, dregs (x));
086134ec 1077 OUTS (outf, " <= ");
4b7f6baa 1078 OUTS (outf, imm3 (y));
4b7f6baa
CM
1079 }
1080 else if (opc == 3 && I == 1 && G == 0)
1081 {
086134ec 1082 OUTS (outf, "CC = ");
4b7f6baa 1083 OUTS (outf, dregs (x));
086134ec 1084 OUTS (outf, " < ");
4b7f6baa 1085 OUTS (outf, uimm3 (y));
086134ec 1086 OUTS (outf, " (IU)");
4b7f6baa
CM
1087 }
1088 else if (opc == 4 && I == 1 && G == 0)
1089 {
086134ec 1090 OUTS (outf, "CC = ");
4b7f6baa 1091 OUTS (outf, dregs (x));
086134ec 1092 OUTS (outf, " <= ");
4b7f6baa 1093 OUTS (outf, uimm3 (y));
086134ec 1094 OUTS (outf, " (IU)");
4b7f6baa
CM
1095 }
1096 else if (opc == 0 && I == 0 && G == 1)
1097 {
086134ec 1098 OUTS (outf, "CC = ");
4b7f6baa 1099 OUTS (outf, pregs (x));
086134ec 1100 OUTS (outf, " == ");
4b7f6baa 1101 OUTS (outf, pregs (y));
4b7f6baa
CM
1102 }
1103 else if (opc == 1 && I == 0 && G == 1)
1104 {
086134ec 1105 OUTS (outf, "CC = ");
4b7f6baa 1106 OUTS (outf, pregs (x));
086134ec 1107 OUTS (outf, " < ");
4b7f6baa 1108 OUTS (outf, pregs (y));
4b7f6baa
CM
1109 }
1110 else if (opc == 2 && I == 0 && G == 1)
1111 {
086134ec 1112 OUTS (outf, "CC = ");
4b7f6baa 1113 OUTS (outf, pregs (x));
086134ec 1114 OUTS (outf, " <= ");
4b7f6baa 1115 OUTS (outf, pregs (y));
4b7f6baa
CM
1116 }
1117 else if (opc == 3 && I == 0 && G == 1)
1118 {
086134ec 1119 OUTS (outf, "CC = ");
4b7f6baa 1120 OUTS (outf, pregs (x));
086134ec 1121 OUTS (outf, " < ");
4b7f6baa 1122 OUTS (outf, pregs (y));
086134ec 1123 OUTS (outf, " (IU)");
4b7f6baa
CM
1124 }
1125 else if (opc == 4 && I == 0 && G == 1)
1126 {
086134ec 1127 OUTS (outf, "CC = ");
4b7f6baa 1128 OUTS (outf, pregs (x));
086134ec 1129 OUTS (outf, " <= ");
4b7f6baa 1130 OUTS (outf, pregs (y));
086134ec 1131 OUTS (outf, " (IU)");
4b7f6baa
CM
1132 }
1133 else if (opc == 0 && I == 1 && G == 1)
1134 {
086134ec 1135 OUTS (outf, "CC = ");
4b7f6baa 1136 OUTS (outf, pregs (x));
086134ec 1137 OUTS (outf, " == ");
4b7f6baa 1138 OUTS (outf, imm3 (y));
4b7f6baa
CM
1139 }
1140 else if (opc == 1 && I == 1 && G == 1)
1141 {
086134ec 1142 OUTS (outf, "CC = ");
4b7f6baa 1143 OUTS (outf, pregs (x));
086134ec 1144 OUTS (outf, " < ");
4b7f6baa 1145 OUTS (outf, imm3 (y));
4b7f6baa
CM
1146 }
1147 else if (opc == 2 && I == 1 && G == 1)
1148 {
086134ec 1149 OUTS (outf, "CC = ");
4b7f6baa 1150 OUTS (outf, pregs (x));
086134ec 1151 OUTS (outf, " <= ");
4b7f6baa 1152 OUTS (outf, imm3 (y));
4b7f6baa
CM
1153 }
1154 else if (opc == 3 && I == 1 && G == 1)
1155 {
086134ec 1156 OUTS (outf, "CC = ");
4b7f6baa 1157 OUTS (outf, pregs (x));
086134ec 1158 OUTS (outf, " < ");
4b7f6baa 1159 OUTS (outf, uimm3 (y));
086134ec 1160 OUTS (outf, " (IU)");
4b7f6baa
CM
1161 }
1162 else if (opc == 4 && I == 1 && G == 1)
1163 {
086134ec 1164 OUTS (outf, "CC = ");
4b7f6baa 1165 OUTS (outf, pregs (x));
086134ec 1166 OUTS (outf, " <= ");
4b7f6baa 1167 OUTS (outf, uimm3 (y));
086134ec 1168 OUTS (outf, " (IU)");
4b7f6baa 1169 }
219b747a 1170 else if (opc == 5 && I == 0 && G == 0 && x == 0 && y == 0)
086134ec 1171 OUTS (outf, "CC = A0 == A1");
b7d48530 1172
219b747a 1173 else if (opc == 6 && I == 0 && G == 0 && x == 0 && y == 0)
086134ec 1174 OUTS (outf, "CC = A0 < A1");
b7d48530 1175
219b747a 1176 else if (opc == 7 && I == 0 && G == 0 && x == 0 && y == 0)
086134ec 1177 OUTS (outf, "CC = A0 <= A1");
b7d48530 1178
4b7f6baa 1179 else
b7d48530
NC
1180 return 0;
1181 return 2;
4b7f6baa
CM
1182}
1183
1184static int
1185decode_CC2dreg_0 (TIword iw0, disassemble_info *outf)
1186{
b7d48530
NC
1187 /* CC2dreg
1188 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1189 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |.op....|.reg.......|
1190 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1191 int op = ((iw0 >> CC2dreg_op_bits) & CC2dreg_op_mask);
1192 int reg = ((iw0 >> CC2dreg_reg_bits) & CC2dreg_reg_mask);
1193
219b747a
MF
1194 if (parallel)
1195 return 0;
1196
4b7f6baa
CM
1197 if (op == 0)
1198 {
4b7f6baa 1199 OUTS (outf, dregs (reg));
086134ec 1200 OUTS (outf, " = CC");
4b7f6baa
CM
1201 }
1202 else if (op == 1)
1203 {
086134ec 1204 OUTS (outf, "CC = ");
4b7f6baa 1205 OUTS (outf, dregs (reg));
4b7f6baa 1206 }
50e2162a 1207 else if (op == 3 && reg == 0)
086134ec 1208 OUTS (outf, "CC = !CC");
4b7f6baa 1209 else
b7d48530
NC
1210 return 0;
1211
1212 return 2;
4b7f6baa
CM
1213}
1214
1215static int
1216decode_CC2stat_0 (TIword iw0, disassemble_info *outf)
1217{
b7d48530
NC
1218 /* CC2stat
1219 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1220 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 |.D.|.op....|.cbit..............|
1221 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1222 int D = ((iw0 >> CC2stat_D_bits) & CC2stat_D_mask);
1223 int op = ((iw0 >> CC2stat_op_bits) & CC2stat_op_mask);
1224 int cbit = ((iw0 >> CC2stat_cbit_bits) & CC2stat_cbit_mask);
1225
b2459327 1226 const char *bitname = statbits (cbit);
219b747a
MF
1227
1228 if (parallel)
1229 return 0;
1230
b2459327
MF
1231 if (decode_statbits[cbit] == REG_LASTREG)
1232 {
1233 /* All ASTAT bits except CC may be operated on in hardware, but may
1234 not have a dedicated insn, so still decode "valid" insns. */
1235 static char bitnames[64];
1236 if (cbit != 5)
1237 sprintf (bitnames, "ASTAT[%i /* unused bit */]", cbit);
1238 else
219b747a
MF
1239 return 0;
1240
b2459327
MF
1241 bitname = bitnames;
1242 }
1243
4b7f6baa
CM
1244 if (op == 0 && D == 0)
1245 {
4b7f6baa 1246 OUTS (outf, "CC = ");
b2459327 1247 OUTS (outf, bitname);
4b7f6baa
CM
1248 }
1249 else if (op == 1 && D == 0)
1250 {
086134ec 1251 OUTS (outf, "CC |= ");
b2459327 1252 OUTS (outf, bitname);
4b7f6baa
CM
1253 }
1254 else if (op == 2 && D == 0)
1255 {
086134ec 1256 OUTS (outf, "CC &= ");
b2459327 1257 OUTS (outf, bitname);
4b7f6baa
CM
1258 }
1259 else if (op == 3 && D == 0)
1260 {
086134ec 1261 OUTS (outf, "CC ^= ");
b2459327 1262 OUTS (outf, bitname);
4b7f6baa
CM
1263 }
1264 else if (op == 0 && D == 1)
1265 {
b2459327 1266 OUTS (outf, bitname);
086134ec 1267 OUTS (outf, " = CC");
4b7f6baa
CM
1268 }
1269 else if (op == 1 && D == 1)
1270 {
b2459327 1271 OUTS (outf, bitname);
086134ec 1272 OUTS (outf, " |= CC");
4b7f6baa
CM
1273 }
1274 else if (op == 2 && D == 1)
1275 {
b2459327 1276 OUTS (outf, bitname);
086134ec 1277 OUTS (outf, " &= CC");
4b7f6baa
CM
1278 }
1279 else if (op == 3 && D == 1)
1280 {
b2459327 1281 OUTS (outf, bitname);
086134ec 1282 OUTS (outf, " ^= CC");
4b7f6baa
CM
1283 }
1284 else
b7d48530
NC
1285 return 0;
1286
1287 return 2;
4b7f6baa
CM
1288}
1289
1290static int
1291decode_BRCC_0 (TIword iw0, bfd_vma pc, disassemble_info *outf)
1292{
b7d48530
NC
1293 /* BRCC
1294 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1295 | 0 | 0 | 0 | 1 |.T.|.B.|.offset................................|
1296 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1297 int B = ((iw0 >> BRCC_B_bits) & BRCC_B_mask);
1298 int T = ((iw0 >> BRCC_T_bits) & BRCC_T_mask);
1299 int offset = ((iw0 >> BRCC_offset_bits) & BRCC_offset_mask);
1300
219b747a
MF
1301 if (parallel)
1302 return 0;
1303
4b7f6baa
CM
1304 if (T == 1 && B == 1)
1305 {
086134ec 1306 OUTS (outf, "IF CC JUMP 0x");
4b7f6baa 1307 OUTS (outf, pcrel10 (offset));
086134ec 1308 OUTS (outf, " (BP)");
4b7f6baa
CM
1309 }
1310 else if (T == 0 && B == 1)
1311 {
086134ec 1312 OUTS (outf, "IF !CC JUMP 0x");
4b7f6baa 1313 OUTS (outf, pcrel10 (offset));
086134ec 1314 OUTS (outf, " (BP)");
4b7f6baa
CM
1315 }
1316 else if (T == 1)
1317 {
086134ec 1318 OUTS (outf, "IF CC JUMP 0x");
4b7f6baa 1319 OUTS (outf, pcrel10 (offset));
4b7f6baa
CM
1320 }
1321 else if (T == 0)
1322 {
086134ec 1323 OUTS (outf, "IF !CC JUMP 0x");
4b7f6baa 1324 OUTS (outf, pcrel10 (offset));
4b7f6baa
CM
1325 }
1326 else
b7d48530
NC
1327 return 0;
1328
1329 return 2;
4b7f6baa
CM
1330}
1331
1332static int
1333decode_UJUMP_0 (TIword iw0, bfd_vma pc, disassemble_info *outf)
1334{
b7d48530
NC
1335 /* UJUMP
1336 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1337 | 0 | 0 | 1 | 0 |.offset........................................|
1338 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1339 int offset = ((iw0 >> UJump_offset_bits) & UJump_offset_mask);
1340
219b747a
MF
1341 if (parallel)
1342 return 0;
1343
086134ec 1344 OUTS (outf, "JUMP.S 0x");
4b7f6baa 1345 OUTS (outf, pcrel12 (offset));
b7d48530 1346 return 2;
4b7f6baa
CM
1347}
1348
1349static int
1350decode_REGMV_0 (TIword iw0, disassemble_info *outf)
1351{
b7d48530
NC
1352 /* REGMV
1353 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1354 | 0 | 0 | 1 | 1 |.gd........|.gs........|.dst.......|.src.......|
1355 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1356 int gs = ((iw0 >> RegMv_gs_bits) & RegMv_gs_mask);
1357 int gd = ((iw0 >> RegMv_gd_bits) & RegMv_gd_mask);
1358 int src = ((iw0 >> RegMv_src_bits) & RegMv_src_mask);
1359 int dst = ((iw0 >> RegMv_dst_bits) & RegMv_dst_mask);
1360
602427c4 1361 /* Reserved slots cannot be a src/dst. */
35fc57f3
MF
1362 if (IS_RESERVEDREG (gs, src) || IS_RESERVEDREG (gd, dst))
1363 goto invalid_move;
1364
1365 /* Standard register moves */
1366 if ((gs < 2) || /* Dregs/Pregs as source */
1367 (gd < 2) || /* Dregs/Pregs as dest */
1368 (gs == 4 && src < 4) || /* Accumulators as source */
1369 (gd == 4 && dst < 4 && (gs < 4)) || /* Accumulators as dest */
1370 (gs == 7 && src == 7 && !(gd == 4 && dst < 4)) || /* EMUDAT as src */
1371 (gd == 7 && dst == 7)) /* EMUDAT as dest */
1372 goto valid_move;
1373
1374 /* dareg = dareg (IMBL) */
1375 if (gs < 4 && gd < 4)
1376 goto valid_move;
1377
1378 /* USP can be src to sysregs, but not dagregs. */
1379 if ((gs == 7 && src == 0) && (gd >= 4))
1380 goto valid_move;
1381
1382 /* USP can move between genregs (only check Accumulators). */
1383 if (((gs == 7 && src == 0) && (gd == 4 && dst < 4)) ||
1384 ((gd == 7 && dst == 0) && (gs == 4 && src < 4)))
1385 goto valid_move;
1386
1387 /* Still here ? Invalid reg pair. */
1388 invalid_move:
1389 return 0;
c958a8a8 1390
35fc57f3 1391 valid_move:
4b7f6baa 1392 OUTS (outf, allregs (dst, gd));
086134ec 1393 OUTS (outf, " = ");
4b7f6baa 1394 OUTS (outf, allregs (src, gs));
b7d48530 1395 return 2;
4b7f6baa
CM
1396}
1397
1398static int
1399decode_ALU2op_0 (TIword iw0, disassemble_info *outf)
1400{
b7d48530
NC
1401 /* ALU2op
1402 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1403 | 0 | 1 | 0 | 0 | 0 | 0 |.opc...........|.src.......|.dst.......|
1404 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1405 int src = ((iw0 >> ALU2op_src_bits) & ALU2op_src_mask);
1406 int opc = ((iw0 >> ALU2op_opc_bits) & ALU2op_opc_mask);
1407 int dst = ((iw0 >> ALU2op_dst_bits) & ALU2op_dst_mask);
1408
1409 if (opc == 0)
1410 {
4b7f6baa 1411 OUTS (outf, dregs (dst));
086134ec 1412 OUTS (outf, " >>>= ");
4b7f6baa 1413 OUTS (outf, dregs (src));
4b7f6baa
CM
1414 }
1415 else if (opc == 1)
1416 {
4b7f6baa 1417 OUTS (outf, dregs (dst));
086134ec 1418 OUTS (outf, " >>= ");
4b7f6baa 1419 OUTS (outf, dregs (src));
4b7f6baa
CM
1420 }
1421 else if (opc == 2)
1422 {
4b7f6baa 1423 OUTS (outf, dregs (dst));
086134ec 1424 OUTS (outf, " <<= ");
4b7f6baa 1425 OUTS (outf, dregs (src));
4b7f6baa
CM
1426 }
1427 else if (opc == 3)
1428 {
4b7f6baa 1429 OUTS (outf, dregs (dst));
086134ec 1430 OUTS (outf, " *= ");
4b7f6baa 1431 OUTS (outf, dregs (src));
4b7f6baa
CM
1432 }
1433 else if (opc == 4)
1434 {
4b7f6baa 1435 OUTS (outf, dregs (dst));
086134ec 1436 OUTS (outf, " = (");
4b7f6baa 1437 OUTS (outf, dregs (dst));
086134ec 1438 OUTS (outf, " + ");
4b7f6baa 1439 OUTS (outf, dregs (src));
086134ec 1440 OUTS (outf, ") << 0x1");
4b7f6baa
CM
1441 }
1442 else if (opc == 5)
1443 {
4b7f6baa 1444 OUTS (outf, dregs (dst));
086134ec 1445 OUTS (outf, " = (");
4b7f6baa 1446 OUTS (outf, dregs (dst));
086134ec 1447 OUTS (outf, " + ");
4b7f6baa 1448 OUTS (outf, dregs (src));
086134ec 1449 OUTS (outf, ") << 0x2");
4b7f6baa
CM
1450 }
1451 else if (opc == 8)
1452 {
086134ec 1453 OUTS (outf, "DIVQ (");
4b7f6baa 1454 OUTS (outf, dregs (dst));
086134ec 1455 OUTS (outf, ", ");
4b7f6baa
CM
1456 OUTS (outf, dregs (src));
1457 OUTS (outf, ")");
4b7f6baa
CM
1458 }
1459 else if (opc == 9)
1460 {
086134ec 1461 OUTS (outf, "DIVS (");
4b7f6baa 1462 OUTS (outf, dregs (dst));
086134ec 1463 OUTS (outf, ", ");
4b7f6baa
CM
1464 OUTS (outf, dregs (src));
1465 OUTS (outf, ")");
4b7f6baa
CM
1466 }
1467 else if (opc == 10)
1468 {
4b7f6baa 1469 OUTS (outf, dregs (dst));
086134ec 1470 OUTS (outf, " = ");
4b7f6baa 1471 OUTS (outf, dregs_lo (src));
086134ec 1472 OUTS (outf, " (X)");
4b7f6baa
CM
1473 }
1474 else if (opc == 11)
1475 {
4b7f6baa 1476 OUTS (outf, dregs (dst));
086134ec 1477 OUTS (outf, " = ");
4b7f6baa 1478 OUTS (outf, dregs_lo (src));
086134ec 1479 OUTS (outf, " (Z)");
4b7f6baa
CM
1480 }
1481 else if (opc == 12)
1482 {
4b7f6baa 1483 OUTS (outf, dregs (dst));
086134ec 1484 OUTS (outf, " = ");
4b7f6baa 1485 OUTS (outf, dregs_byte (src));
086134ec 1486 OUTS (outf, " (X)");
4b7f6baa
CM
1487 }
1488 else if (opc == 13)
1489 {
4b7f6baa 1490 OUTS (outf, dregs (dst));
086134ec 1491 OUTS (outf, " = ");
4b7f6baa 1492 OUTS (outf, dregs_byte (src));
086134ec 1493 OUTS (outf, " (Z)");
4b7f6baa
CM
1494 }
1495 else if (opc == 14)
1496 {
4b7f6baa 1497 OUTS (outf, dregs (dst));
086134ec 1498 OUTS (outf, " = -");
4b7f6baa 1499 OUTS (outf, dregs (src));
4b7f6baa
CM
1500 }
1501 else if (opc == 15)
1502 {
4b7f6baa 1503 OUTS (outf, dregs (dst));
086134ec 1504 OUTS (outf, " =~ ");
4b7f6baa 1505 OUTS (outf, dregs (src));
4b7f6baa
CM
1506 }
1507 else
b7d48530
NC
1508 return 0;
1509
1510 return 2;
4b7f6baa
CM
1511}
1512
1513static int
1514decode_PTR2op_0 (TIword iw0, disassemble_info *outf)
1515{
b7d48530
NC
1516 /* PTR2op
1517 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1518 | 0 | 1 | 0 | 0 | 0 | 1 | 0 |.opc.......|.src.......|.dst.......|
1519 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1520 int src = ((iw0 >> PTR2op_src_bits) & PTR2op_dst_mask);
1521 int opc = ((iw0 >> PTR2op_opc_bits) & PTR2op_opc_mask);
1522 int dst = ((iw0 >> PTR2op_dst_bits) & PTR2op_dst_mask);
1523
1524 if (opc == 0)
1525 {
4b7f6baa 1526 OUTS (outf, pregs (dst));
086134ec 1527 OUTS (outf, " -= ");
4b7f6baa 1528 OUTS (outf, pregs (src));
4b7f6baa
CM
1529 }
1530 else if (opc == 1)
1531 {
4b7f6baa 1532 OUTS (outf, pregs (dst));
086134ec 1533 OUTS (outf, " = ");
4b7f6baa 1534 OUTS (outf, pregs (src));
086134ec 1535 OUTS (outf, " << 0x2");
4b7f6baa
CM
1536 }
1537 else if (opc == 3)
1538 {
4b7f6baa 1539 OUTS (outf, pregs (dst));
086134ec 1540 OUTS (outf, " = ");
4b7f6baa 1541 OUTS (outf, pregs (src));
086134ec 1542 OUTS (outf, " >> 0x2");
4b7f6baa
CM
1543 }
1544 else if (opc == 4)
1545 {
4b7f6baa 1546 OUTS (outf, pregs (dst));
086134ec 1547 OUTS (outf, " = ");
4b7f6baa 1548 OUTS (outf, pregs (src));
086134ec 1549 OUTS (outf, " >> 0x1");
4b7f6baa
CM
1550 }
1551 else if (opc == 5)
1552 {
4b7f6baa 1553 OUTS (outf, pregs (dst));
086134ec 1554 OUTS (outf, " += ");
4b7f6baa 1555 OUTS (outf, pregs (src));
086134ec 1556 OUTS (outf, " (BREV)");
4b7f6baa
CM
1557 }
1558 else if (opc == 6)
1559 {
4b7f6baa 1560 OUTS (outf, pregs (dst));
086134ec 1561 OUTS (outf, " = (");
4b7f6baa 1562 OUTS (outf, pregs (dst));
086134ec 1563 OUTS (outf, " + ");
4b7f6baa 1564 OUTS (outf, pregs (src));
086134ec 1565 OUTS (outf, ") << 0x1");
4b7f6baa
CM
1566 }
1567 else if (opc == 7)
1568 {
4b7f6baa 1569 OUTS (outf, pregs (dst));
086134ec 1570 OUTS (outf, " = (");
4b7f6baa 1571 OUTS (outf, pregs (dst));
086134ec 1572 OUTS (outf, " + ");
4b7f6baa 1573 OUTS (outf, pregs (src));
086134ec 1574 OUTS (outf, ") << 0x2");
4b7f6baa
CM
1575 }
1576 else
b7d48530
NC
1577 return 0;
1578
1579 return 2;
4b7f6baa
CM
1580}
1581
1582static int
1583decode_LOGI2op_0 (TIword iw0, disassemble_info *outf)
1584{
b7d48530
NC
1585 /* LOGI2op
1586 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1587 | 0 | 1 | 0 | 0 | 1 |.opc.......|.src...............|.dst.......|
1588 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1589 int src = ((iw0 >> LOGI2op_src_bits) & LOGI2op_src_mask);
1590 int opc = ((iw0 >> LOGI2op_opc_bits) & LOGI2op_opc_mask);
1591 int dst = ((iw0 >> LOGI2op_dst_bits) & LOGI2op_dst_mask);
1592
219b747a
MF
1593 if (parallel)
1594 return 0;
1595
4b7f6baa
CM
1596 if (opc == 0)
1597 {
086134ec 1598 OUTS (outf, "CC = !BITTST (");
4b7f6baa 1599 OUTS (outf, dregs (dst));
086134ec 1600 OUTS (outf, ", ");
4b7f6baa 1601 OUTS (outf, uimm5 (src));
086134ec
BS
1602 OUTS (outf, ");\t\t/* bit");
1603 OUTS (outf, imm7d (src));
1604 OUTS (outf, " */");
1605 comment = 1;
4b7f6baa
CM
1606 }
1607 else if (opc == 1)
1608 {
4b7f6baa
CM
1609 OUTS (outf, "CC = BITTST (");
1610 OUTS (outf, dregs (dst));
086134ec 1611 OUTS (outf, ", ");
4b7f6baa 1612 OUTS (outf, uimm5 (src));
086134ec
BS
1613 OUTS (outf, ");\t\t/* bit");
1614 OUTS (outf, imm7d (src));
1615 OUTS (outf, " */");
1616 comment = 1;
4b7f6baa
CM
1617 }
1618 else if (opc == 2)
1619 {
4b7f6baa
CM
1620 OUTS (outf, "BITSET (");
1621 OUTS (outf, dregs (dst));
086134ec 1622 OUTS (outf, ", ");
4b7f6baa 1623 OUTS (outf, uimm5 (src));
086134ec
BS
1624 OUTS (outf, ");\t\t/* bit");
1625 OUTS (outf, imm7d (src));
1626 OUTS (outf, " */");
1627 comment = 1;
4b7f6baa
CM
1628 }
1629 else if (opc == 3)
1630 {
4b7f6baa
CM
1631 OUTS (outf, "BITTGL (");
1632 OUTS (outf, dregs (dst));
086134ec 1633 OUTS (outf, ", ");
4b7f6baa 1634 OUTS (outf, uimm5 (src));
086134ec
BS
1635 OUTS (outf, ");\t\t/* bit");
1636 OUTS (outf, imm7d (src));
1637 OUTS (outf, " */");
1638 comment = 1;
4b7f6baa
CM
1639 }
1640 else if (opc == 4)
1641 {
4b7f6baa
CM
1642 OUTS (outf, "BITCLR (");
1643 OUTS (outf, dregs (dst));
086134ec 1644 OUTS (outf, ", ");
4b7f6baa 1645 OUTS (outf, uimm5 (src));
086134ec
BS
1646 OUTS (outf, ");\t\t/* bit");
1647 OUTS (outf, imm7d (src));
1648 OUTS (outf, " */");
1649 comment = 1;
4b7f6baa
CM
1650 }
1651 else if (opc == 5)
1652 {
4b7f6baa 1653 OUTS (outf, dregs (dst));
086134ec 1654 OUTS (outf, " >>>= ");
4b7f6baa 1655 OUTS (outf, uimm5 (src));
4b7f6baa
CM
1656 }
1657 else if (opc == 6)
1658 {
4b7f6baa 1659 OUTS (outf, dregs (dst));
086134ec 1660 OUTS (outf, " >>= ");
4b7f6baa 1661 OUTS (outf, uimm5 (src));
4b7f6baa
CM
1662 }
1663 else if (opc == 7)
1664 {
4b7f6baa 1665 OUTS (outf, dregs (dst));
086134ec 1666 OUTS (outf, " <<= ");
4b7f6baa 1667 OUTS (outf, uimm5 (src));
4b7f6baa
CM
1668 }
1669 else
b7d48530
NC
1670 return 0;
1671
1672 return 2;
4b7f6baa
CM
1673}
1674
1675static int
1676decode_COMP3op_0 (TIword iw0, disassemble_info *outf)
1677{
b7d48530
NC
1678 /* COMP3op
1679 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1680 | 0 | 1 | 0 | 1 |.opc.......|.dst.......|.src1......|.src0......|
1681 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1682 int opc = ((iw0 >> COMP3op_opc_bits) & COMP3op_opc_mask);
1683 int dst = ((iw0 >> COMP3op_dst_bits) & COMP3op_dst_mask);
1684 int src0 = ((iw0 >> COMP3op_src0_bits) & COMP3op_src0_mask);
1685 int src1 = ((iw0 >> COMP3op_src1_bits) & COMP3op_src1_mask);
1686
1687 if (opc == 5 && src1 == src0)
1688 {
4b7f6baa 1689 OUTS (outf, pregs (dst));
086134ec 1690 OUTS (outf, " = ");
4b7f6baa 1691 OUTS (outf, pregs (src0));
086134ec 1692 OUTS (outf, " << 0x1");
4b7f6baa
CM
1693 }
1694 else if (opc == 1)
1695 {
4b7f6baa 1696 OUTS (outf, dregs (dst));
086134ec 1697 OUTS (outf, " = ");
4b7f6baa 1698 OUTS (outf, dregs (src0));
086134ec 1699 OUTS (outf, " - ");
4b7f6baa 1700 OUTS (outf, dregs (src1));
4b7f6baa
CM
1701 }
1702 else if (opc == 2)
1703 {
4b7f6baa 1704 OUTS (outf, dregs (dst));
086134ec 1705 OUTS (outf, " = ");
4b7f6baa 1706 OUTS (outf, dregs (src0));
086134ec 1707 OUTS (outf, " & ");
4b7f6baa 1708 OUTS (outf, dregs (src1));
4b7f6baa
CM
1709 }
1710 else if (opc == 3)
1711 {
4b7f6baa 1712 OUTS (outf, dregs (dst));
086134ec 1713 OUTS (outf, " = ");
4b7f6baa 1714 OUTS (outf, dregs (src0));
086134ec 1715 OUTS (outf, " | ");
4b7f6baa 1716 OUTS (outf, dregs (src1));
4b7f6baa
CM
1717 }
1718 else if (opc == 4)
1719 {
4b7f6baa 1720 OUTS (outf, dregs (dst));
086134ec 1721 OUTS (outf, " = ");
4b7f6baa 1722 OUTS (outf, dregs (src0));
086134ec 1723 OUTS (outf, " ^ ");
4b7f6baa 1724 OUTS (outf, dregs (src1));
4b7f6baa
CM
1725 }
1726 else if (opc == 5)
1727 {
4b7f6baa 1728 OUTS (outf, pregs (dst));
086134ec 1729 OUTS (outf, " = ");
4b7f6baa 1730 OUTS (outf, pregs (src0));
086134ec 1731 OUTS (outf, " + ");
4b7f6baa 1732 OUTS (outf, pregs (src1));
4b7f6baa
CM
1733 }
1734 else if (opc == 6)
1735 {
4b7f6baa 1736 OUTS (outf, pregs (dst));
086134ec 1737 OUTS (outf, " = ");
4b7f6baa 1738 OUTS (outf, pregs (src0));
086134ec 1739 OUTS (outf, " + (");
4b7f6baa 1740 OUTS (outf, pregs (src1));
086134ec 1741 OUTS (outf, " << 0x1)");
4b7f6baa
CM
1742 }
1743 else if (opc == 7)
1744 {
4b7f6baa 1745 OUTS (outf, pregs (dst));
086134ec 1746 OUTS (outf, " = ");
4b7f6baa 1747 OUTS (outf, pregs (src0));
086134ec 1748 OUTS (outf, " + (");
4b7f6baa 1749 OUTS (outf, pregs (src1));
086134ec 1750 OUTS (outf, " << 0x2)");
4b7f6baa
CM
1751 }
1752 else if (opc == 0)
1753 {
4b7f6baa 1754 OUTS (outf, dregs (dst));
086134ec 1755 OUTS (outf, " = ");
4b7f6baa 1756 OUTS (outf, dregs (src0));
086134ec 1757 OUTS (outf, " + ");
4b7f6baa 1758 OUTS (outf, dregs (src1));
4b7f6baa
CM
1759 }
1760 else
b7d48530
NC
1761 return 0;
1762
1763 return 2;
4b7f6baa
CM
1764}
1765
1766static int
1767decode_COMPI2opD_0 (TIword iw0, disassemble_info *outf)
1768{
b7d48530
NC
1769 /* COMPI2opD
1770 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1771 | 0 | 1 | 1 | 0 | 0 |.op|..src......................|.dst.......|
1772 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1773 int op = ((iw0 >> COMPI2opD_op_bits) & COMPI2opD_op_mask);
1774 int dst = ((iw0 >> COMPI2opD_dst_bits) & COMPI2opD_dst_mask);
1775 int src = ((iw0 >> COMPI2opD_src_bits) & COMPI2opD_src_mask);
1776
086134ec
BS
1777 bu32 *pval = get_allreg (0, dst);
1778
219b747a
MF
1779 if (parallel)
1780 return 0;
1781
086134ec
BS
1782 /* Since we don't have 32-bit immediate loads, we allow the disassembler
1783 to combine them, so it prints out the right values.
1784 Here we keep track of the registers. */
1785 if (op == 0)
1786 {
1787 *pval = imm7_val (src);
1788 if (src & 0x40)
1789 *pval |= 0xFFFFFF80;
1790 else
1791 *pval &= 0x7F;
1792 }
1793
4b7f6baa
CM
1794 if (op == 0)
1795 {
4b7f6baa 1796 OUTS (outf, dregs (dst));
086134ec 1797 OUTS (outf, " = ");
4b7f6baa 1798 OUTS (outf, imm7 (src));
086134ec
BS
1799 OUTS (outf, " (X);\t\t/*\t\t");
1800 OUTS (outf, dregs (dst));
1801 OUTS (outf, "=");
1802 OUTS (outf, uimm32 (*pval));
1803 OUTS (outf, "(");
1804 OUTS (outf, imm32 (*pval));
1805 OUTS (outf, ") */");
1806 comment = 1;
4b7f6baa
CM
1807 }
1808 else if (op == 1)
1809 {
4b7f6baa 1810 OUTS (outf, dregs (dst));
086134ec 1811 OUTS (outf, " += ");
4b7f6baa 1812 OUTS (outf, imm7 (src));
086134ec
BS
1813 OUTS (outf, ";\t\t/* (");
1814 OUTS (outf, imm7d (src));
1815 OUTS (outf, ") */");
1816 comment = 1;
4b7f6baa
CM
1817 }
1818 else
b7d48530
NC
1819 return 0;
1820
1821 return 2;
4b7f6baa
CM
1822}
1823
1824static int
1825decode_COMPI2opP_0 (TIword iw0, disassemble_info *outf)
1826{
b7d48530
NC
1827 /* COMPI2opP
1828 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1829 | 0 | 1 | 1 | 0 | 1 |.op|.src.......................|.dst.......|
1830 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1831 int op = ((iw0 >> COMPI2opP_op_bits) & COMPI2opP_op_mask);
1832 int src = ((iw0 >> COMPI2opP_src_bits) & COMPI2opP_src_mask);
1833 int dst = ((iw0 >> COMPI2opP_dst_bits) & COMPI2opP_dst_mask);
1834
086134ec
BS
1835 bu32 *pval = get_allreg (1, dst);
1836
219b747a
MF
1837 if (parallel)
1838 return 0;
1839
086134ec
BS
1840 if (op == 0)
1841 {
1842 *pval = imm7_val (src);
1843 if (src & 0x40)
1844 *pval |= 0xFFFFFF80;
1845 else
1846 *pval &= 0x7F;
1847 }
1848
4b7f6baa
CM
1849 if (op == 0)
1850 {
4b7f6baa 1851 OUTS (outf, pregs (dst));
086134ec 1852 OUTS (outf, " = ");
4b7f6baa 1853 OUTS (outf, imm7 (src));
086134ec
BS
1854 OUTS (outf, " (X);\t\t/*\t\t");
1855 OUTS (outf, pregs (dst));
1856 OUTS (outf, "=");
1857 OUTS (outf, uimm32 (*pval));
1858 OUTS (outf, "(");
1859 OUTS (outf, imm32 (*pval));
1860 OUTS (outf, ") */");
1861 comment = 1;
4b7f6baa
CM
1862 }
1863 else if (op == 1)
1864 {
4b7f6baa 1865 OUTS (outf, pregs (dst));
086134ec 1866 OUTS (outf, " += ");
4b7f6baa 1867 OUTS (outf, imm7 (src));
086134ec
BS
1868 OUTS (outf, ";\t\t/* (");
1869 OUTS (outf, imm7d (src));
1870 OUTS (outf, ") */");
1871 comment = 1;
4b7f6baa
CM
1872 }
1873 else
b7d48530
NC
1874 return 0;
1875
1876 return 2;
4b7f6baa
CM
1877}
1878
1879static int
1880decode_LDSTpmod_0 (TIword iw0, disassemble_info *outf)
1881{
b7d48530
NC
1882 /* LDSTpmod
1883 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
1884 | 1 | 0 | 0 | 0 |.W.|.aop...|.reg.......|.idx.......|.ptr.......|
1885 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
1886 int W = ((iw0 >> LDSTpmod_W_bits) & LDSTpmod_W_mask);
1887 int aop = ((iw0 >> LDSTpmod_aop_bits) & LDSTpmod_aop_mask);
1888 int idx = ((iw0 >> LDSTpmod_idx_bits) & LDSTpmod_idx_mask);
1889 int ptr = ((iw0 >> LDSTpmod_ptr_bits) & LDSTpmod_ptr_mask);
1890 int reg = ((iw0 >> LDSTpmod_reg_bits) & LDSTpmod_reg_mask);
1891
1892 if (aop == 1 && W == 0 && idx == ptr)
1893 {
4b7f6baa 1894 OUTS (outf, dregs_lo (reg));
086134ec 1895 OUTS (outf, " = W[");
4b7f6baa
CM
1896 OUTS (outf, pregs (ptr));
1897 OUTS (outf, "]");
4b7f6baa
CM
1898 }
1899 else if (aop == 2 && W == 0 && idx == ptr)
1900 {
4b7f6baa 1901 OUTS (outf, dregs_hi (reg));
086134ec 1902 OUTS (outf, " = W[");
4b7f6baa
CM
1903 OUTS (outf, pregs (ptr));
1904 OUTS (outf, "]");
4b7f6baa
CM
1905 }
1906 else if (aop == 1 && W == 1 && idx == ptr)
1907 {
4b7f6baa
CM
1908 OUTS (outf, "W[");
1909 OUTS (outf, pregs (ptr));
086134ec 1910 OUTS (outf, "] = ");
4b7f6baa 1911 OUTS (outf, dregs_lo (reg));
4b7f6baa
CM
1912 }
1913 else if (aop == 2 && W == 1 && idx == ptr)
1914 {
4b7f6baa
CM
1915 OUTS (outf, "W[");
1916 OUTS (outf, pregs (ptr));
086134ec 1917 OUTS (outf, "] = ");
4b7f6baa 1918 OUTS (outf, dregs_hi (reg));
4b7f6baa
CM
1919 }
1920 else if (aop == 0 && W == 0)
1921 {
4b7f6baa 1922 OUTS (outf, dregs (reg));
086134ec 1923 OUTS (outf, " = [");
4b7f6baa 1924 OUTS (outf, pregs (ptr));
086134ec 1925 OUTS (outf, " ++ ");
4b7f6baa
CM
1926 OUTS (outf, pregs (idx));
1927 OUTS (outf, "]");
4b7f6baa
CM
1928 }
1929 else if (aop == 1 && W == 0)
1930 {
4b7f6baa 1931 OUTS (outf, dregs_lo (reg));
086134ec 1932 OUTS (outf, " = W[");
4b7f6baa 1933 OUTS (outf, pregs (ptr));
086134ec 1934 OUTS (outf, " ++ ");
4b7f6baa
CM
1935 OUTS (outf, pregs (idx));
1936 OUTS (outf, "]");
4b7f6baa
CM
1937 }
1938 else if (aop == 2 && W == 0)
1939 {
4b7f6baa 1940 OUTS (outf, dregs_hi (reg));
086134ec 1941 OUTS (outf, " = W[");
4b7f6baa 1942 OUTS (outf, pregs (ptr));
086134ec 1943 OUTS (outf, " ++ ");
4b7f6baa
CM
1944 OUTS (outf, pregs (idx));
1945 OUTS (outf, "]");
4b7f6baa
CM
1946 }
1947 else if (aop == 3 && W == 0)
1948 {
4b7f6baa 1949 OUTS (outf, dregs (reg));
086134ec 1950 OUTS (outf, " = W[");
4b7f6baa 1951 OUTS (outf, pregs (ptr));
086134ec 1952 OUTS (outf, " ++ ");
4b7f6baa
CM
1953 OUTS (outf, pregs (idx));
1954 OUTS (outf, "] (Z)");
4b7f6baa
CM
1955 }
1956 else if (aop == 3 && W == 1)
1957 {
4b7f6baa 1958 OUTS (outf, dregs (reg));
086134ec 1959 OUTS (outf, " = W[");
4b7f6baa 1960 OUTS (outf, pregs (ptr));
086134ec 1961 OUTS (outf, " ++ ");
4b7f6baa 1962 OUTS (outf, pregs (idx));
086134ec 1963 OUTS (outf, "] (X)");
4b7f6baa
CM
1964 }
1965 else if (aop == 0 && W == 1)
1966 {
4b7f6baa
CM
1967 OUTS (outf, "[");
1968 OUTS (outf, pregs (ptr));
086134ec 1969 OUTS (outf, " ++ ");
4b7f6baa 1970 OUTS (outf, pregs (idx));
086134ec 1971 OUTS (outf, "] = ");
4b7f6baa 1972 OUTS (outf, dregs (reg));
4b7f6baa
CM
1973 }
1974 else if (aop == 1 && W == 1)
1975 {
4b7f6baa
CM
1976 OUTS (outf, "W[");
1977 OUTS (outf, pregs (ptr));
086134ec 1978 OUTS (outf, " ++ ");
4b7f6baa 1979 OUTS (outf, pregs (idx));
086134ec 1980 OUTS (outf, "] = ");
4b7f6baa 1981 OUTS (outf, dregs_lo (reg));
4b7f6baa
CM
1982 }
1983 else if (aop == 2 && W == 1)
1984 {
4b7f6baa
CM
1985 OUTS (outf, "W[");
1986 OUTS (outf, pregs (ptr));
086134ec 1987 OUTS (outf, " ++ ");
4b7f6baa 1988 OUTS (outf, pregs (idx));
086134ec 1989 OUTS (outf, "] = ");
4b7f6baa 1990 OUTS (outf, dregs_hi (reg));
4b7f6baa
CM
1991 }
1992 else
b7d48530
NC
1993 return 0;
1994
1995 return 2;
4b7f6baa
CM
1996}
1997
1998static int
1999decode_dagMODim_0 (TIword iw0, disassemble_info *outf)
2000{
b7d48530
NC
2001 /* dagMODim
2002 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2003 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 |.br| 1 | 1 |.op|.m.....|.i.....|
2004 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2005 int i = ((iw0 >> DagMODim_i_bits) & DagMODim_i_mask);
2006 int m = ((iw0 >> DagMODim_m_bits) & DagMODim_m_mask);
2007 int br = ((iw0 >> DagMODim_br_bits) & DagMODim_br_mask);
2008 int op = ((iw0 >> DagMODim_op_bits) & DagMODim_op_mask);
2009
2010 if (op == 0 && br == 1)
2011 {
4b7f6baa 2012 OUTS (outf, iregs (i));
086134ec 2013 OUTS (outf, " += ");
4b7f6baa 2014 OUTS (outf, mregs (m));
086134ec 2015 OUTS (outf, " (BREV)");
4b7f6baa
CM
2016 }
2017 else if (op == 0)
2018 {
4b7f6baa 2019 OUTS (outf, iregs (i));
086134ec 2020 OUTS (outf, " += ");
4b7f6baa 2021 OUTS (outf, mregs (m));
4b7f6baa 2022 }
219b747a 2023 else if (op == 1 && br == 0)
4b7f6baa 2024 {
4b7f6baa 2025 OUTS (outf, iregs (i));
086134ec 2026 OUTS (outf, " -= ");
4b7f6baa 2027 OUTS (outf, mregs (m));
4b7f6baa
CM
2028 }
2029 else
b7d48530
NC
2030 return 0;
2031
2032 return 2;
4b7f6baa
CM
2033}
2034
2035static int
2036decode_dagMODik_0 (TIword iw0, disassemble_info *outf)
2037{
b7d48530
NC
2038 /* dagMODik
2039 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2040 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 |.op....|.i.....|
2041 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2042 int i = ((iw0 >> DagMODik_i_bits) & DagMODik_i_mask);
2043 int op = ((iw0 >> DagMODik_op_bits) & DagMODik_op_mask);
2044
2045 if (op == 0)
2046 {
4b7f6baa 2047 OUTS (outf, iregs (i));
086134ec 2048 OUTS (outf, " += 0x2");
4b7f6baa
CM
2049 }
2050 else if (op == 1)
2051 {
4b7f6baa 2052 OUTS (outf, iregs (i));
086134ec 2053 OUTS (outf, " -= 0x2");
4b7f6baa
CM
2054 }
2055 else if (op == 2)
2056 {
4b7f6baa 2057 OUTS (outf, iregs (i));
086134ec 2058 OUTS (outf, " += 0x4");
4b7f6baa
CM
2059 }
2060 else if (op == 3)
2061 {
4b7f6baa 2062 OUTS (outf, iregs (i));
086134ec 2063 OUTS (outf, " -= 0x4");
4b7f6baa
CM
2064 }
2065 else
b7d48530
NC
2066 return 0;
2067
602427c4
MF
2068 if (! parallel)
2069 {
2070 OUTS (outf, ";\t\t/* ( ");
2071 if (op == 0 || op == 1)
2072 OUTS (outf, "2");
2073 else if (op == 2 || op == 3)
086134ec 2074 OUTS (outf, "4");
602427c4
MF
2075 OUTS (outf, ") */");
2076 comment = 1;
2077 }
086134ec 2078
b7d48530 2079 return 2;
4b7f6baa
CM
2080}
2081
2082static int
2083decode_dspLDST_0 (TIword iw0, disassemble_info *outf)
2084{
b7d48530
NC
2085 /* dspLDST
2086 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2087 | 1 | 0 | 0 | 1 | 1 | 1 |.W.|.aop...|.m.....|.i.....|.reg.......|
2088 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2089 int i = ((iw0 >> DspLDST_i_bits) & DspLDST_i_mask);
2090 int m = ((iw0 >> DspLDST_m_bits) & DspLDST_m_mask);
2091 int W = ((iw0 >> DspLDST_W_bits) & DspLDST_W_mask);
2092 int aop = ((iw0 >> DspLDST_aop_bits) & DspLDST_aop_mask);
2093 int reg = ((iw0 >> DspLDST_reg_bits) & DspLDST_reg_mask);
2094
2095 if (aop == 0 && W == 0 && m == 0)
2096 {
4b7f6baa 2097 OUTS (outf, dregs (reg));
086134ec 2098 OUTS (outf, " = [");
4b7f6baa
CM
2099 OUTS (outf, iregs (i));
2100 OUTS (outf, "++]");
4b7f6baa
CM
2101 }
2102 else if (aop == 0 && W == 0 && m == 1)
2103 {
4b7f6baa 2104 OUTS (outf, dregs_lo (reg));
086134ec 2105 OUTS (outf, " = W[");
4b7f6baa
CM
2106 OUTS (outf, iregs (i));
2107 OUTS (outf, "++]");
4b7f6baa
CM
2108 }
2109 else if (aop == 0 && W == 0 && m == 2)
2110 {
4b7f6baa 2111 OUTS (outf, dregs_hi (reg));
086134ec 2112 OUTS (outf, " = W[");
4b7f6baa
CM
2113 OUTS (outf, iregs (i));
2114 OUTS (outf, "++]");
4b7f6baa
CM
2115 }
2116 else if (aop == 1 && W == 0 && m == 0)
2117 {
4b7f6baa 2118 OUTS (outf, dregs (reg));
086134ec 2119 OUTS (outf, " = [");
4b7f6baa
CM
2120 OUTS (outf, iregs (i));
2121 OUTS (outf, "--]");
4b7f6baa
CM
2122 }
2123 else if (aop == 1 && W == 0 && m == 1)
2124 {
4b7f6baa 2125 OUTS (outf, dregs_lo (reg));
086134ec 2126 OUTS (outf, " = W[");
4b7f6baa
CM
2127 OUTS (outf, iregs (i));
2128 OUTS (outf, "--]");
4b7f6baa
CM
2129 }
2130 else if (aop == 1 && W == 0 && m == 2)
2131 {
4b7f6baa 2132 OUTS (outf, dregs_hi (reg));
086134ec 2133 OUTS (outf, " = W[");
4b7f6baa
CM
2134 OUTS (outf, iregs (i));
2135 OUTS (outf, "--]");
4b7f6baa
CM
2136 }
2137 else if (aop == 2 && W == 0 && m == 0)
2138 {
4b7f6baa 2139 OUTS (outf, dregs (reg));
086134ec 2140 OUTS (outf, " = [");
4b7f6baa
CM
2141 OUTS (outf, iregs (i));
2142 OUTS (outf, "]");
4b7f6baa
CM
2143 }
2144 else if (aop == 2 && W == 0 && m == 1)
2145 {
4b7f6baa 2146 OUTS (outf, dregs_lo (reg));
086134ec 2147 OUTS (outf, " = W[");
4b7f6baa
CM
2148 OUTS (outf, iregs (i));
2149 OUTS (outf, "]");
4b7f6baa
CM
2150 }
2151 else if (aop == 2 && W == 0 && m == 2)
2152 {
4b7f6baa 2153 OUTS (outf, dregs_hi (reg));
086134ec 2154 OUTS (outf, " = W[");
4b7f6baa
CM
2155 OUTS (outf, iregs (i));
2156 OUTS (outf, "]");
4b7f6baa
CM
2157 }
2158 else if (aop == 0 && W == 1 && m == 0)
2159 {
4b7f6baa
CM
2160 OUTS (outf, "[");
2161 OUTS (outf, iregs (i));
086134ec 2162 OUTS (outf, "++] = ");
4b7f6baa 2163 OUTS (outf, dregs (reg));
4b7f6baa
CM
2164 }
2165 else if (aop == 0 && W == 1 && m == 1)
2166 {
4b7f6baa
CM
2167 OUTS (outf, "W[");
2168 OUTS (outf, iregs (i));
086134ec 2169 OUTS (outf, "++] = ");
4b7f6baa 2170 OUTS (outf, dregs_lo (reg));
4b7f6baa
CM
2171 }
2172 else if (aop == 0 && W == 1 && m == 2)
2173 {
4b7f6baa
CM
2174 OUTS (outf, "W[");
2175 OUTS (outf, iregs (i));
086134ec 2176 OUTS (outf, "++] = ");
4b7f6baa 2177 OUTS (outf, dregs_hi (reg));
4b7f6baa
CM
2178 }
2179 else if (aop == 1 && W == 1 && m == 0)
2180 {
4b7f6baa
CM
2181 OUTS (outf, "[");
2182 OUTS (outf, iregs (i));
086134ec 2183 OUTS (outf, "--] = ");
4b7f6baa 2184 OUTS (outf, dregs (reg));
4b7f6baa
CM
2185 }
2186 else if (aop == 1 && W == 1 && m == 1)
2187 {
4b7f6baa
CM
2188 OUTS (outf, "W[");
2189 OUTS (outf, iregs (i));
086134ec 2190 OUTS (outf, "--] = ");
4b7f6baa 2191 OUTS (outf, dregs_lo (reg));
4b7f6baa
CM
2192 }
2193 else if (aop == 1 && W == 1 && m == 2)
2194 {
4b7f6baa
CM
2195 OUTS (outf, "W[");
2196 OUTS (outf, iregs (i));
086134ec 2197 OUTS (outf, "--] = ");
4b7f6baa 2198 OUTS (outf, dregs_hi (reg));
4b7f6baa
CM
2199 }
2200 else if (aop == 2 && W == 1 && m == 0)
2201 {
4b7f6baa
CM
2202 OUTS (outf, "[");
2203 OUTS (outf, iregs (i));
086134ec 2204 OUTS (outf, "] = ");
4b7f6baa 2205 OUTS (outf, dregs (reg));
4b7f6baa
CM
2206 }
2207 else if (aop == 2 && W == 1 && m == 1)
2208 {
4b7f6baa
CM
2209 OUTS (outf, "W[");
2210 OUTS (outf, iregs (i));
086134ec 2211 OUTS (outf, "] = ");
4b7f6baa 2212 OUTS (outf, dregs_lo (reg));
4b7f6baa
CM
2213 }
2214 else if (aop == 2 && W == 1 && m == 2)
2215 {
4b7f6baa
CM
2216 OUTS (outf, "W[");
2217 OUTS (outf, iregs (i));
086134ec 2218 OUTS (outf, "] = ");
4b7f6baa 2219 OUTS (outf, dregs_hi (reg));
4b7f6baa
CM
2220 }
2221 else if (aop == 3 && W == 0)
2222 {
4b7f6baa 2223 OUTS (outf, dregs (reg));
086134ec 2224 OUTS (outf, " = [");
4b7f6baa 2225 OUTS (outf, iregs (i));
086134ec 2226 OUTS (outf, " ++ ");
4b7f6baa
CM
2227 OUTS (outf, mregs (m));
2228 OUTS (outf, "]");
4b7f6baa
CM
2229 }
2230 else if (aop == 3 && W == 1)
2231 {
4b7f6baa
CM
2232 OUTS (outf, "[");
2233 OUTS (outf, iregs (i));
086134ec 2234 OUTS (outf, " ++ ");
4b7f6baa 2235 OUTS (outf, mregs (m));
086134ec 2236 OUTS (outf, "] = ");
4b7f6baa 2237 OUTS (outf, dregs (reg));
4b7f6baa
CM
2238 }
2239 else
b7d48530
NC
2240 return 0;
2241
2242 return 2;
4b7f6baa
CM
2243}
2244
2245static int
2246decode_LDST_0 (TIword iw0, disassemble_info *outf)
2247{
b7d48530
NC
2248 /* LDST
2249 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2250 | 1 | 0 | 0 | 1 |.sz....|.W.|.aop...|.Z.|.ptr.......|.reg.......|
2251 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2252 int Z = ((iw0 >> LDST_Z_bits) & LDST_Z_mask);
2253 int W = ((iw0 >> LDST_W_bits) & LDST_W_mask);
2254 int sz = ((iw0 >> LDST_sz_bits) & LDST_sz_mask);
2255 int aop = ((iw0 >> LDST_aop_bits) & LDST_aop_mask);
2256 int reg = ((iw0 >> LDST_reg_bits) & LDST_reg_mask);
2257 int ptr = ((iw0 >> LDST_ptr_bits) & LDST_ptr_mask);
2258
2259 if (aop == 0 && sz == 0 && Z == 0 && W == 0)
2260 {
4b7f6baa 2261 OUTS (outf, dregs (reg));
086134ec 2262 OUTS (outf, " = [");
4b7f6baa
CM
2263 OUTS (outf, pregs (ptr));
2264 OUTS (outf, "++]");
4b7f6baa 2265 }
219b747a 2266 else if (aop == 0 && sz == 0 && Z == 1 && W == 0 && reg != ptr)
4b7f6baa 2267 {
4b7f6baa 2268 OUTS (outf, pregs (reg));
086134ec 2269 OUTS (outf, " = [");
4b7f6baa
CM
2270 OUTS (outf, pregs (ptr));
2271 OUTS (outf, "++]");
4b7f6baa
CM
2272 }
2273 else if (aop == 0 && sz == 1 && Z == 0 && W == 0)
2274 {
4b7f6baa 2275 OUTS (outf, dregs (reg));
086134ec 2276 OUTS (outf, " = W[");
4b7f6baa
CM
2277 OUTS (outf, pregs (ptr));
2278 OUTS (outf, "++] (Z)");
4b7f6baa
CM
2279 }
2280 else if (aop == 0 && sz == 1 && Z == 1 && W == 0)
2281 {
4b7f6baa 2282 OUTS (outf, dregs (reg));
086134ec 2283 OUTS (outf, " = W[");
4b7f6baa 2284 OUTS (outf, pregs (ptr));
086134ec 2285 OUTS (outf, "++] (X)");
4b7f6baa
CM
2286 }
2287 else if (aop == 0 && sz == 2 && Z == 0 && W == 0)
2288 {
4b7f6baa 2289 OUTS (outf, dregs (reg));
086134ec 2290 OUTS (outf, " = B[");
4b7f6baa
CM
2291 OUTS (outf, pregs (ptr));
2292 OUTS (outf, "++] (Z)");
4b7f6baa
CM
2293 }
2294 else if (aop == 0 && sz == 2 && Z == 1 && W == 0)
2295 {
4b7f6baa 2296 OUTS (outf, dregs (reg));
086134ec 2297 OUTS (outf, " = B[");
4b7f6baa 2298 OUTS (outf, pregs (ptr));
086134ec 2299 OUTS (outf, "++] (X)");
4b7f6baa
CM
2300 }
2301 else if (aop == 1 && sz == 0 && Z == 0 && W == 0)
2302 {
4b7f6baa 2303 OUTS (outf, dregs (reg));
086134ec 2304 OUTS (outf, " = [");
4b7f6baa
CM
2305 OUTS (outf, pregs (ptr));
2306 OUTS (outf, "--]");
4b7f6baa 2307 }
219b747a 2308 else if (aop == 1 && sz == 0 && Z == 1 && W == 0 && reg != ptr)
4b7f6baa 2309 {
4b7f6baa 2310 OUTS (outf, pregs (reg));
086134ec 2311 OUTS (outf, " = [");
4b7f6baa
CM
2312 OUTS (outf, pregs (ptr));
2313 OUTS (outf, "--]");
4b7f6baa
CM
2314 }
2315 else if (aop == 1 && sz == 1 && Z == 0 && W == 0)
2316 {
4b7f6baa 2317 OUTS (outf, dregs (reg));
086134ec 2318 OUTS (outf, " = W[");
4b7f6baa
CM
2319 OUTS (outf, pregs (ptr));
2320 OUTS (outf, "--] (Z)");
4b7f6baa
CM
2321 }
2322 else if (aop == 1 && sz == 1 && Z == 1 && W == 0)
2323 {
4b7f6baa 2324 OUTS (outf, dregs (reg));
086134ec 2325 OUTS (outf, " = W[");
4b7f6baa 2326 OUTS (outf, pregs (ptr));
086134ec 2327 OUTS (outf, "--] (X)");
4b7f6baa
CM
2328 }
2329 else if (aop == 1 && sz == 2 && Z == 0 && W == 0)
2330 {
4b7f6baa 2331 OUTS (outf, dregs (reg));
086134ec 2332 OUTS (outf, " = B[");
4b7f6baa
CM
2333 OUTS (outf, pregs (ptr));
2334 OUTS (outf, "--] (Z)");
4b7f6baa
CM
2335 }
2336 else if (aop == 1 && sz == 2 && Z == 1 && W == 0)
2337 {
4b7f6baa 2338 OUTS (outf, dregs (reg));
086134ec 2339 OUTS (outf, " = B[");
4b7f6baa 2340 OUTS (outf, pregs (ptr));
086134ec 2341 OUTS (outf, "--] (X)");
4b7f6baa
CM
2342 }
2343 else if (aop == 2 && sz == 0 && Z == 0 && W == 0)
2344 {
4b7f6baa 2345 OUTS (outf, dregs (reg));
086134ec 2346 OUTS (outf, " = [");
4b7f6baa
CM
2347 OUTS (outf, pregs (ptr));
2348 OUTS (outf, "]");
4b7f6baa
CM
2349 }
2350 else if (aop == 2 && sz == 0 && Z == 1 && W == 0)
2351 {
4b7f6baa 2352 OUTS (outf, pregs (reg));
086134ec 2353 OUTS (outf, " = [");
4b7f6baa
CM
2354 OUTS (outf, pregs (ptr));
2355 OUTS (outf, "]");
4b7f6baa
CM
2356 }
2357 else if (aop == 2 && sz == 1 && Z == 0 && W == 0)
2358 {
4b7f6baa 2359 OUTS (outf, dregs (reg));
086134ec 2360 OUTS (outf, " = W[");
4b7f6baa
CM
2361 OUTS (outf, pregs (ptr));
2362 OUTS (outf, "] (Z)");
4b7f6baa
CM
2363 }
2364 else if (aop == 2 && sz == 1 && Z == 1 && W == 0)
2365 {
4b7f6baa 2366 OUTS (outf, dregs (reg));
086134ec 2367 OUTS (outf, " = W[");
4b7f6baa 2368 OUTS (outf, pregs (ptr));
086134ec 2369 OUTS (outf, "] (X)");
4b7f6baa
CM
2370 }
2371 else if (aop == 2 && sz == 2 && Z == 0 && W == 0)
2372 {
4b7f6baa 2373 OUTS (outf, dregs (reg));
086134ec 2374 OUTS (outf, " = B[");
4b7f6baa
CM
2375 OUTS (outf, pregs (ptr));
2376 OUTS (outf, "] (Z)");
4b7f6baa
CM
2377 }
2378 else if (aop == 2 && sz == 2 && Z == 1 && W == 0)
2379 {
4b7f6baa 2380 OUTS (outf, dregs (reg));
086134ec 2381 OUTS (outf, " = B[");
4b7f6baa 2382 OUTS (outf, pregs (ptr));
086134ec 2383 OUTS (outf, "] (X)");
4b7f6baa
CM
2384 }
2385 else if (aop == 0 && sz == 0 && Z == 0 && W == 1)
2386 {
4b7f6baa
CM
2387 OUTS (outf, "[");
2388 OUTS (outf, pregs (ptr));
086134ec 2389 OUTS (outf, "++] = ");
4b7f6baa 2390 OUTS (outf, dregs (reg));
4b7f6baa
CM
2391 }
2392 else if (aop == 0 && sz == 0 && Z == 1 && W == 1)
2393 {
4b7f6baa
CM
2394 OUTS (outf, "[");
2395 OUTS (outf, pregs (ptr));
086134ec 2396 OUTS (outf, "++] = ");
4b7f6baa 2397 OUTS (outf, pregs (reg));
4b7f6baa
CM
2398 }
2399 else if (aop == 0 && sz == 1 && Z == 0 && W == 1)
2400 {
4b7f6baa
CM
2401 OUTS (outf, "W[");
2402 OUTS (outf, pregs (ptr));
086134ec 2403 OUTS (outf, "++] = ");
4b7f6baa 2404 OUTS (outf, dregs (reg));
4b7f6baa
CM
2405 }
2406 else if (aop == 0 && sz == 2 && Z == 0 && W == 1)
2407 {
4b7f6baa
CM
2408 OUTS (outf, "B[");
2409 OUTS (outf, pregs (ptr));
086134ec 2410 OUTS (outf, "++] = ");
4b7f6baa 2411 OUTS (outf, dregs (reg));
4b7f6baa
CM
2412 }
2413 else if (aop == 1 && sz == 0 && Z == 0 && W == 1)
2414 {
4b7f6baa
CM
2415 OUTS (outf, "[");
2416 OUTS (outf, pregs (ptr));
086134ec 2417 OUTS (outf, "--] = ");
4b7f6baa 2418 OUTS (outf, dregs (reg));
4b7f6baa
CM
2419 }
2420 else if (aop == 1 && sz == 0 && Z == 1 && W == 1)
2421 {
4b7f6baa
CM
2422 OUTS (outf, "[");
2423 OUTS (outf, pregs (ptr));
086134ec 2424 OUTS (outf, "--] = ");
4b7f6baa 2425 OUTS (outf, pregs (reg));
4b7f6baa
CM
2426 }
2427 else if (aop == 1 && sz == 1 && Z == 0 && W == 1)
2428 {
4b7f6baa
CM
2429 OUTS (outf, "W[");
2430 OUTS (outf, pregs (ptr));
086134ec 2431 OUTS (outf, "--] = ");
4b7f6baa 2432 OUTS (outf, dregs (reg));
4b7f6baa
CM
2433 }
2434 else if (aop == 1 && sz == 2 && Z == 0 && W == 1)
2435 {
4b7f6baa
CM
2436 OUTS (outf, "B[");
2437 OUTS (outf, pregs (ptr));
086134ec 2438 OUTS (outf, "--] = ");
4b7f6baa 2439 OUTS (outf, dregs (reg));
4b7f6baa
CM
2440 }
2441 else if (aop == 2 && sz == 0 && Z == 0 && W == 1)
2442 {
4b7f6baa
CM
2443 OUTS (outf, "[");
2444 OUTS (outf, pregs (ptr));
086134ec 2445 OUTS (outf, "] = ");
4b7f6baa 2446 OUTS (outf, dregs (reg));
4b7f6baa
CM
2447 }
2448 else if (aop == 2 && sz == 0 && Z == 1 && W == 1)
2449 {
4b7f6baa
CM
2450 OUTS (outf, "[");
2451 OUTS (outf, pregs (ptr));
086134ec 2452 OUTS (outf, "] = ");
4b7f6baa 2453 OUTS (outf, pregs (reg));
4b7f6baa
CM
2454 }
2455 else if (aop == 2 && sz == 1 && Z == 0 && W == 1)
2456 {
4b7f6baa
CM
2457 OUTS (outf, "W[");
2458 OUTS (outf, pregs (ptr));
086134ec 2459 OUTS (outf, "] = ");
4b7f6baa 2460 OUTS (outf, dregs (reg));
4b7f6baa
CM
2461 }
2462 else if (aop == 2 && sz == 2 && Z == 0 && W == 1)
2463 {
4b7f6baa
CM
2464 OUTS (outf, "B[");
2465 OUTS (outf, pregs (ptr));
086134ec 2466 OUTS (outf, "] = ");
4b7f6baa 2467 OUTS (outf, dregs (reg));
4b7f6baa
CM
2468 }
2469 else
b7d48530
NC
2470 return 0;
2471
2472 return 2;
4b7f6baa
CM
2473}
2474
2475static int
2476decode_LDSTiiFP_0 (TIword iw0, disassemble_info *outf)
2477{
b7d48530
NC
2478 /* LDSTiiFP
2479 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2480 | 1 | 0 | 1 | 1 | 1 | 0 |.W.|.offset............|.reg...........|
2481 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2482 int reg = ((iw0 >> LDSTiiFP_reg_bits) & LDSTiiFP_reg_mask);
2483 int offset = ((iw0 >> LDSTiiFP_offset_bits) & LDSTiiFP_offset_mask);
2484 int W = ((iw0 >> LDSTiiFP_W_bits) & LDSTiiFP_W_mask);
2485
2486 if (W == 0)
2487 {
4b7f6baa 2488 OUTS (outf, dpregs (reg));
086134ec 2489 OUTS (outf, " = [FP ");
4b7f6baa
CM
2490 OUTS (outf, negimm5s4 (offset));
2491 OUTS (outf, "]");
4b7f6baa
CM
2492 }
2493 else if (W == 1)
2494 {
086134ec 2495 OUTS (outf, "[FP ");
4b7f6baa 2496 OUTS (outf, negimm5s4 (offset));
086134ec 2497 OUTS (outf, "] = ");
4b7f6baa 2498 OUTS (outf, dpregs (reg));
4b7f6baa
CM
2499 }
2500 else
b7d48530
NC
2501 return 0;
2502
2503 return 2;
4b7f6baa
CM
2504}
2505
2506static int
2507decode_LDSTii_0 (TIword iw0, disassemble_info *outf)
2508{
b7d48530
NC
2509 /* LDSTii
2510 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2511 | 1 | 0 | 1 |.W.|.op....|.offset........|.ptr.......|.reg.......|
2512 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2513 int reg = ((iw0 >> LDSTii_reg_bit) & LDSTii_reg_mask);
2514 int ptr = ((iw0 >> LDSTii_ptr_bit) & LDSTii_ptr_mask);
2515 int offset = ((iw0 >> LDSTii_offset_bit) & LDSTii_offset_mask);
2516 int op = ((iw0 >> LDSTii_op_bit) & LDSTii_op_mask);
2517 int W = ((iw0 >> LDSTii_W_bit) & LDSTii_W_mask);
2518
2519 if (W == 0 && op == 0)
2520 {
4b7f6baa 2521 OUTS (outf, dregs (reg));
086134ec 2522 OUTS (outf, " = [");
4b7f6baa 2523 OUTS (outf, pregs (ptr));
086134ec 2524 OUTS (outf, " + ");
4b7f6baa
CM
2525 OUTS (outf, uimm4s4 (offset));
2526 OUTS (outf, "]");
4b7f6baa
CM
2527 }
2528 else if (W == 0 && op == 1)
2529 {
4b7f6baa 2530 OUTS (outf, dregs (reg));
086134ec 2531 OUTS (outf, " = W[");
4b7f6baa 2532 OUTS (outf, pregs (ptr));
086134ec 2533 OUTS (outf, " + ");
4b7f6baa
CM
2534 OUTS (outf, uimm4s2 (offset));
2535 OUTS (outf, "] (Z)");
4b7f6baa
CM
2536 }
2537 else if (W == 0 && op == 2)
2538 {
4b7f6baa 2539 OUTS (outf, dregs (reg));
086134ec 2540 OUTS (outf, " = W[");
4b7f6baa 2541 OUTS (outf, pregs (ptr));
086134ec 2542 OUTS (outf, " + ");
4b7f6baa 2543 OUTS (outf, uimm4s2 (offset));
086134ec 2544 OUTS (outf, "] (X)");
4b7f6baa
CM
2545 }
2546 else if (W == 0 && op == 3)
2547 {
4b7f6baa 2548 OUTS (outf, pregs (reg));
086134ec 2549 OUTS (outf, " = [");
4b7f6baa 2550 OUTS (outf, pregs (ptr));
086134ec 2551 OUTS (outf, " + ");
4b7f6baa
CM
2552 OUTS (outf, uimm4s4 (offset));
2553 OUTS (outf, "]");
4b7f6baa
CM
2554 }
2555 else if (W == 1 && op == 0)
2556 {
4b7f6baa
CM
2557 OUTS (outf, "[");
2558 OUTS (outf, pregs (ptr));
086134ec 2559 OUTS (outf, " + ");
4b7f6baa 2560 OUTS (outf, uimm4s4 (offset));
086134ec 2561 OUTS (outf, "] = ");
4b7f6baa 2562 OUTS (outf, dregs (reg));
4b7f6baa
CM
2563 }
2564 else if (W == 1 && op == 1)
2565 {
086134ec 2566 OUTS (outf, "W[");
4b7f6baa 2567 OUTS (outf, pregs (ptr));
086134ec 2568 OUTS (outf, " + ");
4b7f6baa 2569 OUTS (outf, uimm4s2 (offset));
086134ec 2570 OUTS (outf, "] = ");
4b7f6baa 2571 OUTS (outf, dregs (reg));
4b7f6baa
CM
2572 }
2573 else if (W == 1 && op == 3)
2574 {
4b7f6baa
CM
2575 OUTS (outf, "[");
2576 OUTS (outf, pregs (ptr));
086134ec 2577 OUTS (outf, " + ");
4b7f6baa 2578 OUTS (outf, uimm4s4 (offset));
086134ec 2579 OUTS (outf, "] = ");
4b7f6baa 2580 OUTS (outf, pregs (reg));
4b7f6baa
CM
2581 }
2582 else
b7d48530
NC
2583 return 0;
2584
2585 return 2;
4b7f6baa
CM
2586}
2587
2588static int
2589decode_LoopSetup_0 (TIword iw0, TIword iw1, bfd_vma pc, disassemble_info *outf)
2590{
b7d48530
NC
2591 /* LoopSetup
2592 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2593 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 |.rop...|.c.|.soffset.......|
2594 |.reg...........| - | - |.eoffset...............................|
2595 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2596 int c = ((iw0 >> (LoopSetup_c_bits - 16)) & LoopSetup_c_mask);
2597 int reg = ((iw1 >> LoopSetup_reg_bits) & LoopSetup_reg_mask);
2598 int rop = ((iw0 >> (LoopSetup_rop_bits - 16)) & LoopSetup_rop_mask);
2599 int soffset = ((iw0 >> (LoopSetup_soffset_bits - 16)) & LoopSetup_soffset_mask);
2600 int eoffset = ((iw1 >> LoopSetup_eoffset_bits) & LoopSetup_eoffset_mask);
2601
219b747a
MF
2602 if (parallel)
2603 return 0;
2604
298c1ec2
MF
2605 if (reg > 7)
2606 return 0;
2607
4b7f6baa
CM
2608 if (rop == 0)
2609 {
4b7f6baa 2610 OUTS (outf, "LSETUP");
086134ec 2611 OUTS (outf, "(0x");
4b7f6baa 2612 OUTS (outf, pcrel4 (soffset));
086134ec 2613 OUTS (outf, ", 0x");
4b7f6baa 2614 OUTS (outf, lppcrel10 (eoffset));
086134ec 2615 OUTS (outf, ") ");
4b7f6baa 2616 OUTS (outf, counters (c));
4b7f6baa
CM
2617 }
2618 else if (rop == 1)
2619 {
4b7f6baa 2620 OUTS (outf, "LSETUP");
086134ec 2621 OUTS (outf, "(0x");
4b7f6baa 2622 OUTS (outf, pcrel4 (soffset));
086134ec 2623 OUTS (outf, ", 0x");
4b7f6baa 2624 OUTS (outf, lppcrel10 (eoffset));
086134ec 2625 OUTS (outf, ") ");
4b7f6baa 2626 OUTS (outf, counters (c));
086134ec 2627 OUTS (outf, " = ");
4b7f6baa 2628 OUTS (outf, pregs (reg));
4b7f6baa
CM
2629 }
2630 else if (rop == 3)
2631 {
4b7f6baa 2632 OUTS (outf, "LSETUP");
086134ec 2633 OUTS (outf, "(0x");
4b7f6baa 2634 OUTS (outf, pcrel4 (soffset));
086134ec 2635 OUTS (outf, ", 0x");
4b7f6baa 2636 OUTS (outf, lppcrel10 (eoffset));
086134ec 2637 OUTS (outf, ") ");
4b7f6baa 2638 OUTS (outf, counters (c));
086134ec 2639 OUTS (outf, " = ");
4b7f6baa 2640 OUTS (outf, pregs (reg));
086134ec 2641 OUTS (outf, " >> 0x1");
4b7f6baa
CM
2642 }
2643 else
b7d48530
NC
2644 return 0;
2645
2646 return 4;
4b7f6baa
CM
2647}
2648
2649static int
2650decode_LDIMMhalf_0 (TIword iw0, TIword iw1, disassemble_info *outf)
2651{
b7d48530
NC
2652 /* LDIMMhalf
2653 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2654 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 |.Z.|.H.|.S.|.grp...|.reg.......|
2655 |.hword.........................................................|
2656 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2657 int H = ((iw0 >> (LDIMMhalf_H_bits - 16)) & LDIMMhalf_H_mask);
2658 int Z = ((iw0 >> (LDIMMhalf_Z_bits - 16)) & LDIMMhalf_Z_mask);
2659 int S = ((iw0 >> (LDIMMhalf_S_bits - 16)) & LDIMMhalf_S_mask);
2660 int reg = ((iw0 >> (LDIMMhalf_reg_bits - 16)) & LDIMMhalf_reg_mask);
2661 int grp = ((iw0 >> (LDIMMhalf_grp_bits - 16)) & LDIMMhalf_grp_mask);
2662 int hword = ((iw1 >> LDIMMhalf_hword_bits) & LDIMMhalf_hword_mask);
2663
b21c9cb4
BS
2664 bu32 *pval = get_allreg (grp, reg);
2665
219b747a
MF
2666 if (parallel)
2667 return 0;
2668
b21c9cb4
BS
2669 /* Since we don't have 32-bit immediate loads, we allow the disassembler
2670 to combine them, so it prints out the right values.
2671 Here we keep track of the registers. */
2672 if (H == 0 && S == 1 && Z == 0)
2673 {
2674 /* regs = imm16 (x) */
2675 *pval = imm16_val (hword);
086134ec
BS
2676 if (hword & 0x8000)
2677 *pval |= 0xFFFF0000;
2678 else
2679 *pval &= 0xFFFF;
b21c9cb4
BS
2680 }
2681 else if (H == 0 && S == 0 && Z == 1)
2682 {
2683 /* regs = luimm16 (Z) */
2684 *pval = luimm16_val (hword);
086134ec 2685 *pval &= 0xFFFF;
b21c9cb4
BS
2686 }
2687 else if (H == 0 && S == 0 && Z == 0)
2688 {
2689 /* regs_lo = luimm16 */
2690 *pval &= 0xFFFF0000;
2691 *pval |= luimm16_val (hword);
2692 }
2693 else if (H == 1 && S == 0 && Z == 0)
2694 {
2695 /* regs_hi = huimm16 */
2696 *pval &= 0xFFFF;
2697 *pval |= luimm16_val (hword) << 16;
2698 }
2699
2700 /* Here we do the disassembly */
4b7f6baa
CM
2701 if (grp == 0 && H == 0 && S == 0 && Z == 0)
2702 {
4b7f6baa 2703 OUTS (outf, dregs_lo (reg));
086134ec
BS
2704 OUTS (outf, " = ");
2705 OUTS (outf, uimm16 (hword));
4b7f6baa
CM
2706 }
2707 else if (grp == 0 && H == 1 && S == 0 && Z == 0)
2708 {
4b7f6baa 2709 OUTS (outf, dregs_hi (reg));
086134ec
BS
2710 OUTS (outf, " = ");
2711 OUTS (outf, uimm16 (hword));
4b7f6baa
CM
2712 }
2713 else if (grp == 0 && H == 0 && S == 1 && Z == 0)
2714 {
4b7f6baa 2715 OUTS (outf, dregs (reg));
086134ec 2716 OUTS (outf, " = ");
4b7f6baa
CM
2717 OUTS (outf, imm16 (hword));
2718 OUTS (outf, " (X)");
4b7f6baa
CM
2719 }
2720 else if (H == 0 && S == 1 && Z == 0)
602427c4 2721 {
4b7f6baa 2722 OUTS (outf, regs (reg, grp));
086134ec 2723 OUTS (outf, " = ");
4b7f6baa
CM
2724 OUTS (outf, imm16 (hword));
2725 OUTS (outf, " (X)");
4b7f6baa
CM
2726 }
2727 else if (H == 0 && S == 0 && Z == 1)
2728 {
4b7f6baa 2729 OUTS (outf, regs (reg, grp));
086134ec
BS
2730 OUTS (outf, " = ");
2731 OUTS (outf, uimm16 (hword));
2732 OUTS (outf, " (Z)");
4b7f6baa
CM
2733 }
2734 else if (H == 0 && S == 0 && Z == 0)
2735 {
4b7f6baa 2736 OUTS (outf, regs_lo (reg, grp));
086134ec 2737 OUTS (outf, " = ");
b21c9cb4 2738 OUTS (outf, uimm16 (hword));
4b7f6baa
CM
2739 }
2740 else if (H == 1 && S == 0 && Z == 0)
2741 {
4b7f6baa 2742 OUTS (outf, regs_hi (reg, grp));
086134ec 2743 OUTS (outf, " = ");
b21c9cb4 2744 OUTS (outf, uimm16 (hword));
4b7f6baa
CM
2745 }
2746 else
b7d48530
NC
2747 return 0;
2748
b21c9cb4 2749 /* And we print out the 32-bit value if it is a pointer. */
086134ec 2750 if (S == 0 && Z == 0)
b21c9cb4 2751 {
086134ec
BS
2752 OUTS (outf, ";\t\t/* (");
2753 OUTS (outf, imm16d (hword));
2754 OUTS (outf, ")\t");
2755
b21c9cb4 2756 /* If it is an MMR, don't print the symbol. */
086134ec
BS
2757 if (*pval < 0xFFC00000 && grp == 1)
2758 {
2759 OUTS (outf, regs (reg, grp));
2760 OUTS (outf, "=0x");
2761 OUTS (outf, huimm32e (*pval));
2762 }
b21c9cb4 2763 else
086134ec
BS
2764 {
2765 OUTS (outf, regs (reg, grp));
2766 OUTS (outf, "=0x");
2767 OUTS (outf, huimm32e (*pval));
2768 OUTS (outf, "(");
2769 OUTS (outf, imm32 (*pval));
2770 OUTS (outf, ")");
2771 }
b21c9cb4
BS
2772
2773 OUTS (outf, " */");
086134ec
BS
2774 comment = 1;
2775 }
2776 if (S == 1 || Z == 1)
2777 {
602427c4
MF
2778 OUTS (outf, ";\t\t/*\t\t");
2779 OUTS (outf, regs (reg, grp));
2780 OUTS (outf, "=0x");
2781 OUTS (outf, huimm32e (*pval));
2782 OUTS (outf, "(");
2783 OUTS (outf, imm32 (*pval));
2784 OUTS (outf, ") */");
2785 comment = 1;
b21c9cb4 2786 }
b7d48530 2787 return 4;
4b7f6baa
CM
2788}
2789
2790static int
2791decode_CALLa_0 (TIword iw0, TIword iw1, bfd_vma pc, disassemble_info *outf)
2792{
b7d48530
NC
2793 /* CALLa
2794 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2795 | 1 | 1 | 1 | 0 | 0 | 0 | 1 |.S.|.msw...........................|
2796 |.lsw...........................................................|
2797 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2798 int S = ((iw0 >> (CALLa_S_bits - 16)) & CALLa_S_mask);
2799 int lsw = ((iw1 >> 0) & 0xffff);
2800 int msw = ((iw0 >> 0) & 0xff);
2801
219b747a
MF
2802 if (parallel)
2803 return 0;
2804
4b7f6baa 2805 if (S == 1)
086134ec 2806 OUTS (outf, "CALL 0x");
4b7f6baa 2807 else if (S == 0)
086134ec 2808 OUTS (outf, "JUMP.L 0x");
4b7f6baa 2809 else
b7d48530
NC
2810 return 0;
2811
2812 OUTS (outf, pcrel24 (((msw) << 16) | (lsw)));
2813 return 4;
4b7f6baa
CM
2814}
2815
2816static int
2817decode_LDSTidxI_0 (TIword iw0, TIword iw1, disassemble_info *outf)
2818{
b7d48530
NC
2819 /* LDSTidxI
2820 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2821 | 1 | 1 | 1 | 0 | 0 | 1 |.W.|.Z.|.sz....|.ptr.......|.reg.......|
2822 |.offset........................................................|
2823 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2824 int Z = ((iw0 >> (LDSTidxI_Z_bits - 16)) & LDSTidxI_Z_mask);
2825 int W = ((iw0 >> (LDSTidxI_W_bits - 16)) & LDSTidxI_W_mask);
2826 int sz = ((iw0 >> (LDSTidxI_sz_bits - 16)) & LDSTidxI_sz_mask);
2827 int reg = ((iw0 >> (LDSTidxI_reg_bits - 16)) & LDSTidxI_reg_mask);
2828 int ptr = ((iw0 >> (LDSTidxI_ptr_bits - 16)) & LDSTidxI_ptr_mask);
2829 int offset = ((iw1 >> LDSTidxI_offset_bits) & LDSTidxI_offset_mask);
2830
2831 if (W == 0 && sz == 0 && Z == 0)
2832 {
4b7f6baa 2833 OUTS (outf, dregs (reg));
086134ec 2834 OUTS (outf, " = [");
4b7f6baa 2835 OUTS (outf, pregs (ptr));
086134ec 2836 OUTS (outf, " + ");
4b7f6baa
CM
2837 OUTS (outf, imm16s4 (offset));
2838 OUTS (outf, "]");
4b7f6baa
CM
2839 }
2840 else if (W == 0 && sz == 0 && Z == 1)
2841 {
4b7f6baa 2842 OUTS (outf, pregs (reg));
086134ec 2843 OUTS (outf, " = [");
4b7f6baa 2844 OUTS (outf, pregs (ptr));
086134ec 2845 OUTS (outf, " + ");
4b7f6baa
CM
2846 OUTS (outf, imm16s4 (offset));
2847 OUTS (outf, "]");
4b7f6baa
CM
2848 }
2849 else if (W == 0 && sz == 1 && Z == 0)
2850 {
4b7f6baa 2851 OUTS (outf, dregs (reg));
086134ec 2852 OUTS (outf, " = W[");
4b7f6baa 2853 OUTS (outf, pregs (ptr));
086134ec 2854 OUTS (outf, " + ");
4b7f6baa
CM
2855 OUTS (outf, imm16s2 (offset));
2856 OUTS (outf, "] (Z)");
4b7f6baa
CM
2857 }
2858 else if (W == 0 && sz == 1 && Z == 1)
2859 {
4b7f6baa 2860 OUTS (outf, dregs (reg));
086134ec 2861 OUTS (outf, " = W[");
4b7f6baa 2862 OUTS (outf, pregs (ptr));
086134ec 2863 OUTS (outf, " + ");
4b7f6baa 2864 OUTS (outf, imm16s2 (offset));
086134ec 2865 OUTS (outf, "] (X)");
4b7f6baa
CM
2866 }
2867 else if (W == 0 && sz == 2 && Z == 0)
2868 {
4b7f6baa 2869 OUTS (outf, dregs (reg));
086134ec 2870 OUTS (outf, " = B[");
4b7f6baa 2871 OUTS (outf, pregs (ptr));
086134ec 2872 OUTS (outf, " + ");
4b7f6baa
CM
2873 OUTS (outf, imm16 (offset));
2874 OUTS (outf, "] (Z)");
4b7f6baa
CM
2875 }
2876 else if (W == 0 && sz == 2 && Z == 1)
2877 {
4b7f6baa 2878 OUTS (outf, dregs (reg));
086134ec 2879 OUTS (outf, " = B[");
4b7f6baa 2880 OUTS (outf, pregs (ptr));
086134ec 2881 OUTS (outf, " + ");
4b7f6baa 2882 OUTS (outf, imm16 (offset));
086134ec 2883 OUTS (outf, "] (X)");
4b7f6baa
CM
2884 }
2885 else if (W == 1 && sz == 0 && Z == 0)
2886 {
4b7f6baa
CM
2887 OUTS (outf, "[");
2888 OUTS (outf, pregs (ptr));
086134ec 2889 OUTS (outf, " + ");
4b7f6baa 2890 OUTS (outf, imm16s4 (offset));
086134ec 2891 OUTS (outf, "] = ");
4b7f6baa 2892 OUTS (outf, dregs (reg));
4b7f6baa
CM
2893 }
2894 else if (W == 1 && sz == 0 && Z == 1)
2895 {
4b7f6baa
CM
2896 OUTS (outf, "[");
2897 OUTS (outf, pregs (ptr));
086134ec 2898 OUTS (outf, " + ");
4b7f6baa 2899 OUTS (outf, imm16s4 (offset));
086134ec 2900 OUTS (outf, "] = ");
4b7f6baa 2901 OUTS (outf, pregs (reg));
4b7f6baa
CM
2902 }
2903 else if (W == 1 && sz == 1 && Z == 0)
2904 {
4b7f6baa
CM
2905 OUTS (outf, "W[");
2906 OUTS (outf, pregs (ptr));
086134ec 2907 OUTS (outf, " + ");
4b7f6baa 2908 OUTS (outf, imm16s2 (offset));
086134ec 2909 OUTS (outf, "] = ");
4b7f6baa 2910 OUTS (outf, dregs (reg));
4b7f6baa
CM
2911 }
2912 else if (W == 1 && sz == 2 && Z == 0)
2913 {
4b7f6baa
CM
2914 OUTS (outf, "B[");
2915 OUTS (outf, pregs (ptr));
086134ec 2916 OUTS (outf, " + ");
4b7f6baa 2917 OUTS (outf, imm16 (offset));
086134ec 2918 OUTS (outf, "] = ");
4b7f6baa 2919 OUTS (outf, dregs (reg));
4b7f6baa
CM
2920 }
2921 else
b7d48530
NC
2922 return 0;
2923
2924 return 4;
4b7f6baa
CM
2925}
2926
2927static int
2928decode_linkage_0 (TIword iw0, TIword iw1, disassemble_info *outf)
2929{
b7d48530
NC
2930 /* linkage
2931 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2932 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |.R.|
2933 |.framesize.....................................................|
2934 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
2935 int R = ((iw0 >> (Linkage_R_bits - 16)) & Linkage_R_mask);
2936 int framesize = ((iw1 >> Linkage_framesize_bits) & Linkage_framesize_mask);
2937
219b747a
MF
2938 if (parallel)
2939 return 0;
2940
4b7f6baa
CM
2941 if (R == 0)
2942 {
4b7f6baa
CM
2943 OUTS (outf, "LINK ");
2944 OUTS (outf, uimm16s4 (framesize));
086134ec
BS
2945 OUTS (outf, ";\t\t/* (");
2946 OUTS (outf, uimm16s4d (framesize));
2947 OUTS (outf, ") */");
2948 comment = 1;
4b7f6baa
CM
2949 }
2950 else if (R == 1)
b7d48530 2951 OUTS (outf, "UNLINK");
4b7f6baa 2952 else
b7d48530
NC
2953 return 0;
2954
2955 return 4;
4b7f6baa
CM
2956}
2957
2958static int
2959decode_dsp32mac_0 (TIword iw0, TIword iw1, disassemble_info *outf)
2960{
b7d48530
NC
2961 /* dsp32mac
2962 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
2963 | 1 | 1 | 0 | 0 |.M.| 0 | 0 |.mmod..........|.MM|.P.|.w1|.op1...|
2964 |.h01|.h11|.w0|.op0...|.h00|.h10|.dst.......|.src0......|.src1..|
2965 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
2966 int op1 = ((iw0 >> (DSP32Mac_op1_bits - 16)) & DSP32Mac_op1_mask);
2967 int w1 = ((iw0 >> (DSP32Mac_w1_bits - 16)) & DSP32Mac_w1_mask);
2968 int P = ((iw0 >> (DSP32Mac_p_bits - 16)) & DSP32Mac_p_mask);
2969 int MM = ((iw0 >> (DSP32Mac_MM_bits - 16)) & DSP32Mac_MM_mask);
4b7f6baa 2970 int mmod = ((iw0 >> (DSP32Mac_mmod_bits - 16)) & DSP32Mac_mmod_mask);
b7d48530 2971 int w0 = ((iw1 >> DSP32Mac_w0_bits) & DSP32Mac_w0_mask);
4b7f6baa
CM
2972 int src0 = ((iw1 >> DSP32Mac_src0_bits) & DSP32Mac_src0_mask);
2973 int src1 = ((iw1 >> DSP32Mac_src1_bits) & DSP32Mac_src1_mask);
b7d48530
NC
2974 int dst = ((iw1 >> DSP32Mac_dst_bits) & DSP32Mac_dst_mask);
2975 int h10 = ((iw1 >> DSP32Mac_h10_bits) & DSP32Mac_h10_mask);
2976 int h00 = ((iw1 >> DSP32Mac_h00_bits) & DSP32Mac_h00_mask);
2977 int op0 = ((iw1 >> DSP32Mac_op0_bits) & DSP32Mac_op0_mask);
2978 int h11 = ((iw1 >> DSP32Mac_h11_bits) & DSP32Mac_h11_mask);
2979 int h01 = ((iw1 >> DSP32Mac_h01_bits) & DSP32Mac_h01_mask);
4b7f6baa
CM
2980
2981 if (w0 == 0 && w1 == 0 && op1 == 3 && op0 == 3)
2982 return 0;
2983
2984 if (op1 == 3 && MM)
2985 return 0;
2986
2987 if ((w1 || w0) && mmod == M_W32)
2988 return 0;
2989
ee171c8f 2990 if (((1 << mmod) & (P ? 0x131b : 0x1b5f)) == 0)
4b7f6baa
CM
2991 return 0;
2992
2993 if (w1 == 1 || op1 != 3)
2994 {
2995 if (w1)
2996 OUTS (outf, P ? dregs (dst + 1) : dregs_hi (dst));
2997
2998 if (op1 == 3)
2999 OUTS (outf, " = A1");
3000 else
3001 {
3002 if (w1)
3003 OUTS (outf, " = (");
3004 decode_macfunc (1, op1, h01, h11, src0, src1, outf);
3005 if (w1)
3006 OUTS (outf, ")");
3007 }
3008
3009 if (w0 == 1 || op0 != 3)
3010 {
3011 if (MM)
3012 OUTS (outf, " (M)");
3013 MM = 0;
3014 OUTS (outf, ", ");
3015 }
3016 }
3017
3018 if (w0 == 1 || op0 != 3)
3019 {
3020 if (w0)
3021 OUTS (outf, P ? dregs (dst) : dregs_lo (dst));
3022
3023 if (op0 == 3)
3024 OUTS (outf, " = A0");
3025 else
3026 {
3027 if (w0)
3028 OUTS (outf, " = (");
3029 decode_macfunc (0, op0, h00, h10, src0, src1, outf);
3030 if (w0)
3031 OUTS (outf, ")");
3032 }
3033 }
3034
3035 decode_optmode (mmod, MM, outf);
3036
3037 return 4;
3038}
3039
3040static int
3041decode_dsp32mult_0 (TIword iw0, TIword iw1, disassemble_info *outf)
3042{
b7d48530
NC
3043 /* dsp32mult
3044 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
3045 | 1 | 1 | 0 | 0 |.M.| 0 | 1 |.mmod..........|.MM|.P.|.w1|.op1...|
3046 |.h01|.h11|.w0|.op0...|.h00|.h10|.dst.......|.src0......|.src1..|
3047 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
3048 int w1 = ((iw0 >> (DSP32Mac_w1_bits - 16)) & DSP32Mac_w1_mask);
3049 int P = ((iw0 >> (DSP32Mac_p_bits - 16)) & DSP32Mac_p_mask);
3050 int MM = ((iw0 >> (DSP32Mac_MM_bits - 16)) & DSP32Mac_MM_mask);
4b7f6baa 3051 int mmod = ((iw0 >> (DSP32Mac_mmod_bits - 16)) & DSP32Mac_mmod_mask);
b7d48530 3052 int w0 = ((iw1 >> DSP32Mac_w0_bits) & DSP32Mac_w0_mask);
4b7f6baa
CM
3053 int src0 = ((iw1 >> DSP32Mac_src0_bits) & DSP32Mac_src0_mask);
3054 int src1 = ((iw1 >> DSP32Mac_src1_bits) & DSP32Mac_src1_mask);
b7d48530
NC
3055 int dst = ((iw1 >> DSP32Mac_dst_bits) & DSP32Mac_dst_mask);
3056 int h10 = ((iw1 >> DSP32Mac_h10_bits) & DSP32Mac_h10_mask);
3057 int h00 = ((iw1 >> DSP32Mac_h00_bits) & DSP32Mac_h00_mask);
3058 int h11 = ((iw1 >> DSP32Mac_h11_bits) & DSP32Mac_h11_mask);
3059 int h01 = ((iw1 >> DSP32Mac_h01_bits) & DSP32Mac_h01_mask);
4b7f6baa
CM
3060
3061 if (w1 == 0 && w0 == 0)
3062 return 0;
b7d48530 3063
4b7f6baa
CM
3064 if (((1 << mmod) & (P ? 0x313 : 0x1b57)) == 0)
3065 return 0;
b7d48530 3066
4b7f6baa
CM
3067 if (w1)
3068 {
4db66394 3069 OUTS (outf, P ? dregs (dst + 1) : dregs_hi (dst));
4b7f6baa
CM
3070 OUTS (outf, " = ");
3071 decode_multfunc (h01, h11, src0, src1, outf);
3072
3073 if (w0)
3074 {
3075 if (MM)
3076 OUTS (outf, " (M)");
3077 MM = 0;
3078 OUTS (outf, ", ");
3079 }
3080 }
3081
3082 if (w0)
3083 {
4db66394 3084 OUTS (outf, P ? dregs (dst) : dregs_lo (dst));
4b7f6baa
CM
3085 OUTS (outf, " = ");
3086 decode_multfunc (h00, h10, src0, src1, outf);
3087 }
3088
3089 decode_optmode (mmod, MM, outf);
3090 return 4;
3091}
3092
3093static int
3094decode_dsp32alu_0 (TIword iw0, TIword iw1, disassemble_info *outf)
3095{
b7d48530
NC
3096 /* dsp32alu
3097 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
3098 | 1 | 1 | 0 | 0 |.M.| 1 | 0 | - | - | - |.HL|.aopcde............|
3099 |.aop...|.s.|.x.|.dst0......|.dst1......|.src0......|.src1......|
3100 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
3101 int s = ((iw1 >> DSP32Alu_s_bits) & DSP32Alu_s_mask);
3102 int x = ((iw1 >> DSP32Alu_x_bits) & DSP32Alu_x_mask);
3103 int aop = ((iw1 >> DSP32Alu_aop_bits) & DSP32Alu_aop_mask);
3104 int src0 = ((iw1 >> DSP32Alu_src0_bits) & DSP32Alu_src0_mask);
3105 int src1 = ((iw1 >> DSP32Alu_src1_bits) & DSP32Alu_src1_mask);
3106 int dst0 = ((iw1 >> DSP32Alu_dst0_bits) & DSP32Alu_dst0_mask);
3107 int dst1 = ((iw1 >> DSP32Alu_dst1_bits) & DSP32Alu_dst1_mask);
3108 int HL = ((iw0 >> (DSP32Alu_HL_bits - 16)) & DSP32Alu_HL_mask);
3109 int aopcde = ((iw0 >> (DSP32Alu_aopcde_bits - 16)) & DSP32Alu_aopcde_mask);
3110
3111 if (aop == 0 && aopcde == 9 && HL == 0 && s == 0)
3112 {
086134ec 3113 OUTS (outf, "A0.L = ");
4b7f6baa 3114 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3115 }
3116 else if (aop == 2 && aopcde == 9 && HL == 1 && s == 0)
3117 {
086134ec 3118 OUTS (outf, "A1.H = ");
4b7f6baa 3119 OUTS (outf, dregs_hi (src0));
4b7f6baa
CM
3120 }
3121 else if (aop == 2 && aopcde == 9 && HL == 0 && s == 0)
3122 {
086134ec 3123 OUTS (outf, "A1.L = ");
4b7f6baa 3124 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3125 }
3126 else if (aop == 0 && aopcde == 9 && HL == 1 && s == 0)
3127 {
086134ec 3128 OUTS (outf, "A0.H = ");
4b7f6baa 3129 OUTS (outf, dregs_hi (src0));
4b7f6baa
CM
3130 }
3131 else if (x == 1 && HL == 1 && aop == 3 && aopcde == 5)
3132 {
4b7f6baa 3133 OUTS (outf, dregs_hi (dst0));
086134ec 3134 OUTS (outf, " = ");
4b7f6baa 3135 OUTS (outf, dregs (src0));
086134ec 3136 OUTS (outf, " - ");
4b7f6baa 3137 OUTS (outf, dregs (src1));
086134ec 3138 OUTS (outf, " (RND20)");
4b7f6baa
CM
3139 }
3140 else if (x == 1 && HL == 1 && aop == 2 && aopcde == 5)
3141 {
4b7f6baa 3142 OUTS (outf, dregs_hi (dst0));
086134ec 3143 OUTS (outf, " = ");
4b7f6baa 3144 OUTS (outf, dregs (src0));
086134ec 3145 OUTS (outf, " + ");
4b7f6baa 3146 OUTS (outf, dregs (src1));
086134ec 3147 OUTS (outf, " (RND20)");
4b7f6baa
CM
3148 }
3149 else if (x == 0 && HL == 0 && aop == 1 && aopcde == 5)
3150 {
4b7f6baa 3151 OUTS (outf, dregs_lo (dst0));
086134ec 3152 OUTS (outf, " = ");
4b7f6baa 3153 OUTS (outf, dregs (src0));
086134ec 3154 OUTS (outf, " - ");
4b7f6baa 3155 OUTS (outf, dregs (src1));
086134ec 3156 OUTS (outf, " (RND12)");
4b7f6baa
CM
3157 }
3158 else if (x == 0 && HL == 0 && aop == 0 && aopcde == 5)
3159 {
4b7f6baa 3160 OUTS (outf, dregs_lo (dst0));
086134ec 3161 OUTS (outf, " = ");
4b7f6baa 3162 OUTS (outf, dregs (src0));
086134ec 3163 OUTS (outf, " + ");
4b7f6baa 3164 OUTS (outf, dregs (src1));
086134ec 3165 OUTS (outf, " (RND12)");
4b7f6baa
CM
3166 }
3167 else if (x == 1 && HL == 0 && aop == 3 && aopcde == 5)
3168 {
4b7f6baa 3169 OUTS (outf, dregs_lo (dst0));
086134ec 3170 OUTS (outf, " = ");
4b7f6baa 3171 OUTS (outf, dregs (src0));
086134ec 3172 OUTS (outf, " - ");
4b7f6baa 3173 OUTS (outf, dregs (src1));
086134ec 3174 OUTS (outf, " (RND20)");
4b7f6baa
CM
3175 }
3176 else if (x == 0 && HL == 1 && aop == 0 && aopcde == 5)
3177 {
4b7f6baa 3178 OUTS (outf, dregs_hi (dst0));
086134ec 3179 OUTS (outf, " = ");
4b7f6baa 3180 OUTS (outf, dregs (src0));
086134ec 3181 OUTS (outf, " + ");
4b7f6baa 3182 OUTS (outf, dregs (src1));
086134ec 3183 OUTS (outf, " (RND12)");
4b7f6baa
CM
3184 }
3185 else if (x == 1 && HL == 0 && aop == 2 && aopcde == 5)
3186 {
4b7f6baa 3187 OUTS (outf, dregs_lo (dst0));
086134ec 3188 OUTS (outf, " = ");
4b7f6baa 3189 OUTS (outf, dregs (src0));
086134ec 3190 OUTS (outf, " + ");
4b7f6baa 3191 OUTS (outf, dregs (src1));
086134ec 3192 OUTS (outf, " (RND20)");
4b7f6baa
CM
3193 }
3194 else if (x == 0 && HL == 1 && aop == 1 && aopcde == 5)
3195 {
4b7f6baa 3196 OUTS (outf, dregs_hi (dst0));
086134ec 3197 OUTS (outf, " = ");
4b7f6baa 3198 OUTS (outf, dregs (src0));
086134ec 3199 OUTS (outf, " - ");
4b7f6baa 3200 OUTS (outf, dregs (src1));
086134ec 3201 OUTS (outf, " (RND12)");
4b7f6baa
CM
3202 }
3203 else if (HL == 1 && aop == 0 && aopcde == 2)
3204 {
4b7f6baa 3205 OUTS (outf, dregs_hi (dst0));
086134ec 3206 OUTS (outf, " = ");
4b7f6baa 3207 OUTS (outf, dregs_lo (src0));
086134ec 3208 OUTS (outf, " + ");
4b7f6baa 3209 OUTS (outf, dregs_lo (src1));
4b7f6baa 3210 amod1 (s, x, outf);
4b7f6baa
CM
3211 }
3212 else if (HL == 1 && aop == 1 && aopcde == 2)
3213 {
4b7f6baa 3214 OUTS (outf, dregs_hi (dst0));
086134ec 3215 OUTS (outf, " = ");
4b7f6baa 3216 OUTS (outf, dregs_lo (src0));
086134ec 3217 OUTS (outf, " + ");
4b7f6baa 3218 OUTS (outf, dregs_hi (src1));
4b7f6baa 3219 amod1 (s, x, outf);
4b7f6baa
CM
3220 }
3221 else if (HL == 1 && aop == 2 && aopcde == 2)
3222 {
4b7f6baa 3223 OUTS (outf, dregs_hi (dst0));
086134ec 3224 OUTS (outf, " = ");
4b7f6baa 3225 OUTS (outf, dregs_hi (src0));
086134ec 3226 OUTS (outf, " + ");
4b7f6baa 3227 OUTS (outf, dregs_lo (src1));
4b7f6baa 3228 amod1 (s, x, outf);
4b7f6baa
CM
3229 }
3230 else if (HL == 1 && aop == 3 && aopcde == 2)
3231 {
4b7f6baa 3232 OUTS (outf, dregs_hi (dst0));
086134ec 3233 OUTS (outf, " = ");
4b7f6baa 3234 OUTS (outf, dregs_hi (src0));
086134ec 3235 OUTS (outf, " + ");
4b7f6baa 3236 OUTS (outf, dregs_hi (src1));
4b7f6baa 3237 amod1 (s, x, outf);
4b7f6baa
CM
3238 }
3239 else if (HL == 0 && aop == 0 && aopcde == 3)
3240 {
4b7f6baa 3241 OUTS (outf, dregs_lo (dst0));
086134ec 3242 OUTS (outf, " = ");
4b7f6baa 3243 OUTS (outf, dregs_lo (src0));
086134ec 3244 OUTS (outf, " - ");
4b7f6baa 3245 OUTS (outf, dregs_lo (src1));
4b7f6baa 3246 amod1 (s, x, outf);
4b7f6baa
CM
3247 }
3248 else if (HL == 0 && aop == 1 && aopcde == 3)
3249 {
4b7f6baa 3250 OUTS (outf, dregs_lo (dst0));
086134ec 3251 OUTS (outf, " = ");
4b7f6baa 3252 OUTS (outf, dregs_lo (src0));
086134ec 3253 OUTS (outf, " - ");
4b7f6baa 3254 OUTS (outf, dregs_hi (src1));
4b7f6baa 3255 amod1 (s, x, outf);
4b7f6baa
CM
3256 }
3257 else if (HL == 0 && aop == 3 && aopcde == 2)
3258 {
4b7f6baa 3259 OUTS (outf, dregs_lo (dst0));
086134ec 3260 OUTS (outf, " = ");
4b7f6baa 3261 OUTS (outf, dregs_hi (src0));
086134ec 3262 OUTS (outf, " + ");
4b7f6baa 3263 OUTS (outf, dregs_hi (src1));
4b7f6baa 3264 amod1 (s, x, outf);
4b7f6baa
CM
3265 }
3266 else if (HL == 1 && aop == 0 && aopcde == 3)
3267 {
4b7f6baa 3268 OUTS (outf, dregs_hi (dst0));
086134ec 3269 OUTS (outf, " = ");
4b7f6baa 3270 OUTS (outf, dregs_lo (src0));
086134ec 3271 OUTS (outf, " - ");
4b7f6baa 3272 OUTS (outf, dregs_lo (src1));
4b7f6baa 3273 amod1 (s, x, outf);
4b7f6baa
CM
3274 }
3275 else if (HL == 1 && aop == 1 && aopcde == 3)
3276 {
4b7f6baa 3277 OUTS (outf, dregs_hi (dst0));
086134ec 3278 OUTS (outf, " = ");
4b7f6baa 3279 OUTS (outf, dregs_lo (src0));
086134ec 3280 OUTS (outf, " - ");
4b7f6baa 3281 OUTS (outf, dregs_hi (src1));
4b7f6baa 3282 amod1 (s, x, outf);
4b7f6baa
CM
3283 }
3284 else if (HL == 1 && aop == 2 && aopcde == 3)
3285 {
4b7f6baa 3286 OUTS (outf, dregs_hi (dst0));
086134ec 3287 OUTS (outf, " = ");
4b7f6baa 3288 OUTS (outf, dregs_hi (src0));
086134ec 3289 OUTS (outf, " - ");
4b7f6baa 3290 OUTS (outf, dregs_lo (src1));
4b7f6baa 3291 amod1 (s, x, outf);
4b7f6baa
CM
3292 }
3293 else if (HL == 1 && aop == 3 && aopcde == 3)
3294 {
4b7f6baa 3295 OUTS (outf, dregs_hi (dst0));
086134ec 3296 OUTS (outf, " = ");
4b7f6baa 3297 OUTS (outf, dregs_hi (src0));
086134ec 3298 OUTS (outf, " - ");
4b7f6baa 3299 OUTS (outf, dregs_hi (src1));
4b7f6baa 3300 amod1 (s, x, outf);
4b7f6baa
CM
3301 }
3302 else if (HL == 0 && aop == 2 && aopcde == 2)
3303 {
4b7f6baa 3304 OUTS (outf, dregs_lo (dst0));
086134ec 3305 OUTS (outf, " = ");
4b7f6baa 3306 OUTS (outf, dregs_hi (src0));
086134ec 3307 OUTS (outf, " + ");
4b7f6baa 3308 OUTS (outf, dregs_lo (src1));
4b7f6baa 3309 amod1 (s, x, outf);
4b7f6baa
CM
3310 }
3311 else if (HL == 0 && aop == 1 && aopcde == 2)
3312 {
4b7f6baa 3313 OUTS (outf, dregs_lo (dst0));
086134ec 3314 OUTS (outf, " = ");
4b7f6baa 3315 OUTS (outf, dregs_lo (src0));
086134ec 3316 OUTS (outf, " + ");
4b7f6baa 3317 OUTS (outf, dregs_hi (src1));
4b7f6baa 3318 amod1 (s, x, outf);
4b7f6baa
CM
3319 }
3320 else if (HL == 0 && aop == 2 && aopcde == 3)
3321 {
4b7f6baa 3322 OUTS (outf, dregs_lo (dst0));
086134ec 3323 OUTS (outf, " = ");
4b7f6baa 3324 OUTS (outf, dregs_hi (src0));
086134ec 3325 OUTS (outf, " - ");
4b7f6baa 3326 OUTS (outf, dregs_lo (src1));
4b7f6baa 3327 amod1 (s, x, outf);
4b7f6baa
CM
3328 }
3329 else if (HL == 0 && aop == 3 && aopcde == 3)
3330 {
4b7f6baa 3331 OUTS (outf, dregs_lo (dst0));
086134ec 3332 OUTS (outf, " = ");
4b7f6baa 3333 OUTS (outf, dregs_hi (src0));
086134ec 3334 OUTS (outf, " - ");
4b7f6baa 3335 OUTS (outf, dregs_hi (src1));
4b7f6baa 3336 amod1 (s, x, outf);
4b7f6baa
CM
3337 }
3338 else if (HL == 0 && aop == 0 && aopcde == 2)
3339 {
4b7f6baa 3340 OUTS (outf, dregs_lo (dst0));
086134ec 3341 OUTS (outf, " = ");
4b7f6baa 3342 OUTS (outf, dregs_lo (src0));
086134ec 3343 OUTS (outf, " + ");
4b7f6baa 3344 OUTS (outf, dregs_lo (src1));
4b7f6baa 3345 amod1 (s, x, outf);
4b7f6baa
CM
3346 }
3347 else if (aop == 0 && aopcde == 9 && s == 1)
3348 {
086134ec 3349 OUTS (outf, "A0 = ");
4b7f6baa 3350 OUTS (outf, dregs (src0));
4b7f6baa
CM
3351 }
3352 else if (aop == 3 && aopcde == 11 && s == 0)
086134ec 3353 OUTS (outf, "A0 -= A1");
b7d48530 3354
4b7f6baa 3355 else if (aop == 3 && aopcde == 11 && s == 1)
086134ec 3356 OUTS (outf, "A0 -= A1 (W32)");
b7d48530 3357
4b7f6baa
CM
3358 else if (aop == 1 && aopcde == 22 && HL == 1)
3359 {
4b7f6baa 3360 OUTS (outf, dregs (dst0));
086134ec 3361 OUTS (outf, " = BYTEOP2P (");
4b7f6baa
CM
3362 OUTS (outf, dregs (src0 + 1));
3363 OUTS (outf, ":");
086134ec
BS
3364 OUTS (outf, imm5d (src0));
3365 OUTS (outf, ", ");
4b7f6baa
CM
3366 OUTS (outf, dregs (src1 + 1));
3367 OUTS (outf, ":");
086134ec
BS
3368 OUTS (outf, imm5d (src1));
3369 OUTS (outf, ") (TH");
4b7f6baa
CM
3370 if (s == 1)
3371 OUTS (outf, ", R)");
3372 else
3373 OUTS (outf, ")");
4b7f6baa
CM
3374 }
3375 else if (aop == 1 && aopcde == 22 && HL == 0)
3376 {
4b7f6baa 3377 OUTS (outf, dregs (dst0));
086134ec 3378 OUTS (outf, " = BYTEOP2P (");
4b7f6baa
CM
3379 OUTS (outf, dregs (src0 + 1));
3380 OUTS (outf, ":");
086134ec
BS
3381 OUTS (outf, imm5d (src0));
3382 OUTS (outf, ", ");
4b7f6baa
CM
3383 OUTS (outf, dregs (src1 + 1));
3384 OUTS (outf, ":");
086134ec
BS
3385 OUTS (outf, imm5d (src1));
3386 OUTS (outf, ") (TL");
4b7f6baa
CM
3387 if (s == 1)
3388 OUTS (outf, ", R)");
3389 else
3390 OUTS (outf, ")");
4b7f6baa
CM
3391 }
3392 else if (aop == 0 && aopcde == 22 && HL == 1)
3393 {
4b7f6baa 3394 OUTS (outf, dregs (dst0));
086134ec 3395 OUTS (outf, " = BYTEOP2P (");
4b7f6baa
CM
3396 OUTS (outf, dregs (src0 + 1));
3397 OUTS (outf, ":");
086134ec
BS
3398 OUTS (outf, imm5d (src0));
3399 OUTS (outf, ", ");
4b7f6baa
CM
3400 OUTS (outf, dregs (src1 + 1));
3401 OUTS (outf, ":");
086134ec
BS
3402 OUTS (outf, imm5d (src1));
3403 OUTS (outf, ") (RNDH");
4b7f6baa
CM
3404 if (s == 1)
3405 OUTS (outf, ", R)");
3406 else
3407 OUTS (outf, ")");
4b7f6baa
CM
3408 }
3409 else if (aop == 0 && aopcde == 22 && HL == 0)
3410 {
4b7f6baa 3411 OUTS (outf, dregs (dst0));
086134ec 3412 OUTS (outf, " = BYTEOP2P (");
4b7f6baa
CM
3413 OUTS (outf, dregs (src0 + 1));
3414 OUTS (outf, ":");
086134ec
BS
3415 OUTS (outf, imm5d (src0));
3416 OUTS (outf, ", ");
4b7f6baa
CM
3417 OUTS (outf, dregs (src1 + 1));
3418 OUTS (outf, ":");
086134ec
BS
3419 OUTS (outf, imm5d (src1));
3420 OUTS (outf, ") (RNDL");
4b7f6baa
CM
3421 if (s == 1)
3422 OUTS (outf, ", R)");
3423 else
3424 OUTS (outf, ")");
4b7f6baa
CM
3425 }
3426 else if (aop == 0 && s == 0 && aopcde == 8)
086134ec 3427 OUTS (outf, "A0 = 0");
b7d48530 3428
4b7f6baa 3429 else if (aop == 0 && s == 1 && aopcde == 8)
086134ec 3430 OUTS (outf, "A0 = A0 (S)");
b7d48530 3431
4b7f6baa 3432 else if (aop == 1 && s == 0 && aopcde == 8)
086134ec 3433 OUTS (outf, "A1 = 0");
b7d48530 3434
4b7f6baa 3435 else if (aop == 1 && s == 1 && aopcde == 8)
086134ec 3436 OUTS (outf, "A1 = A1 (S)");
b7d48530 3437
4b7f6baa 3438 else if (aop == 2 && s == 0 && aopcde == 8)
086134ec 3439 OUTS (outf, "A1 = A0 = 0");
b7d48530 3440
4b7f6baa 3441 else if (aop == 2 && s == 1 && aopcde == 8)
086134ec 3442 OUTS (outf, "A1 = A1 (S), A0 = A0 (S)");
b7d48530 3443
4b7f6baa 3444 else if (aop == 3 && s == 0 && aopcde == 8)
086134ec 3445 OUTS (outf, "A0 = A1");
b7d48530 3446
4b7f6baa 3447 else if (aop == 3 && s == 1 && aopcde == 8)
086134ec 3448 OUTS (outf, "A1 = A0");
b7d48530 3449
4b7f6baa
CM
3450 else if (aop == 1 && aopcde == 9 && s == 0)
3451 {
086134ec 3452 OUTS (outf, "A0.X = ");
4b7f6baa 3453 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3454 }
3455 else if (aop == 1 && HL == 0 && aopcde == 11)
3456 {
4b7f6baa 3457 OUTS (outf, dregs_lo (dst0));
086134ec 3458 OUTS (outf, " = (A0 += A1)");
4b7f6baa
CM
3459 }
3460 else if (aop == 3 && HL == 0 && aopcde == 16)
13c02f06 3461 OUTS (outf, "A1 = ABS A1, A0 = ABS A0");
b7d48530 3462
4b7f6baa
CM
3463 else if (aop == 0 && aopcde == 23 && HL == 1)
3464 {
4b7f6baa 3465 OUTS (outf, dregs (dst0));
086134ec 3466 OUTS (outf, " = BYTEOP3P (");
4b7f6baa
CM
3467 OUTS (outf, dregs (src0 + 1));
3468 OUTS (outf, ":");
086134ec
BS
3469 OUTS (outf, imm5d (src0));
3470 OUTS (outf, ", ");
4b7f6baa
CM
3471 OUTS (outf, dregs (src1 + 1));
3472 OUTS (outf, ":");
086134ec
BS
3473 OUTS (outf, imm5d (src1));
3474 OUTS (outf, ") (HI");
4b7f6baa
CM
3475 if (s == 1)
3476 OUTS (outf, ", R)");
3477 else
3478 OUTS (outf, ")");
4b7f6baa
CM
3479 }
3480 else if (aop == 3 && aopcde == 9 && s == 0)
3481 {
086134ec 3482 OUTS (outf, "A1.X = ");
4b7f6baa 3483 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3484 }
3485 else if (aop == 1 && HL == 1 && aopcde == 16)
086134ec 3486 OUTS (outf, "A1 = ABS A1");
b7d48530 3487
4b7f6baa 3488 else if (aop == 0 && HL == 1 && aopcde == 16)
086134ec 3489 OUTS (outf, "A1 = ABS A0");
b7d48530 3490
4b7f6baa
CM
3491 else if (aop == 2 && aopcde == 9 && s == 1)
3492 {
086134ec 3493 OUTS (outf, "A1 = ");
4b7f6baa 3494 OUTS (outf, dregs (src0));
4b7f6baa
CM
3495 }
3496 else if (HL == 0 && aop == 3 && aopcde == 12)
3497 {
4b7f6baa 3498 OUTS (outf, dregs_lo (dst0));
086134ec 3499 OUTS (outf, " = ");
4b7f6baa 3500 OUTS (outf, dregs (src0));
086134ec 3501 OUTS (outf, " (RND)");
4b7f6baa
CM
3502 }
3503 else if (aop == 1 && HL == 0 && aopcde == 16)
086134ec 3504 OUTS (outf, "A0 = ABS A1");
b7d48530 3505
4b7f6baa 3506 else if (aop == 0 && HL == 0 && aopcde == 16)
086134ec 3507 OUTS (outf, "A0 = ABS A0");
b7d48530 3508
4b7f6baa
CM
3509 else if (aop == 3 && HL == 0 && aopcde == 15)
3510 {
4b7f6baa 3511 OUTS (outf, dregs (dst0));
086134ec 3512 OUTS (outf, " = -");
4b7f6baa 3513 OUTS (outf, dregs (src0));
086134ec 3514 OUTS (outf, " (V)");
4b7f6baa
CM
3515 }
3516 else if (aop == 3 && s == 1 && HL == 0 && aopcde == 7)
3517 {
4b7f6baa 3518 OUTS (outf, dregs (dst0));
086134ec 3519 OUTS (outf, " = -");
4b7f6baa 3520 OUTS (outf, dregs (src0));
086134ec 3521 OUTS (outf, " (S)");
4b7f6baa
CM
3522 }
3523 else if (aop == 3 && s == 0 && HL == 0 && aopcde == 7)
3524 {
4b7f6baa 3525 OUTS (outf, dregs (dst0));
086134ec 3526 OUTS (outf, " = -");
4b7f6baa 3527 OUTS (outf, dregs (src0));
086134ec 3528 OUTS (outf, " (NS)");
4b7f6baa
CM
3529 }
3530 else if (aop == 1 && HL == 1 && aopcde == 11)
3531 {
4b7f6baa 3532 OUTS (outf, dregs_hi (dst0));
086134ec 3533 OUTS (outf, " = (A0 += A1)");
4b7f6baa
CM
3534 }
3535 else if (aop == 2 && aopcde == 11 && s == 0)
086134ec 3536 OUTS (outf, "A0 += A1");
b7d48530 3537
4b7f6baa 3538 else if (aop == 2 && aopcde == 11 && s == 1)
086134ec 3539 OUTS (outf, "A0 += A1 (W32)");
b7d48530 3540
4b7f6baa 3541 else if (aop == 3 && HL == 0 && aopcde == 14)
086134ec 3542 OUTS (outf, "A1 = -A1, A0 = -A0");
b7d48530 3543
4b7f6baa
CM
3544 else if (HL == 1 && aop == 3 && aopcde == 12)
3545 {
4b7f6baa 3546 OUTS (outf, dregs_hi (dst0));
086134ec 3547 OUTS (outf, " = ");
4b7f6baa 3548 OUTS (outf, dregs (src0));
086134ec 3549 OUTS (outf, " (RND)");
4b7f6baa
CM
3550 }
3551 else if (aop == 0 && aopcde == 23 && HL == 0)
3552 {
4b7f6baa 3553 OUTS (outf, dregs (dst0));
086134ec 3554 OUTS (outf, " = BYTEOP3P (");
4b7f6baa
CM
3555 OUTS (outf, dregs (src0 + 1));
3556 OUTS (outf, ":");
086134ec
BS
3557 OUTS (outf, imm5d (src0));
3558 OUTS (outf, ", ");
4b7f6baa
CM
3559 OUTS (outf, dregs (src1 + 1));
3560 OUTS (outf, ":");
086134ec
BS
3561 OUTS (outf, imm5d (src1));
3562 OUTS (outf, ") (LO");
4b7f6baa
CM
3563 if (s == 1)
3564 OUTS (outf, ", R)");
3565 else
3566 OUTS (outf, ")");
4b7f6baa
CM
3567 }
3568 else if (aop == 0 && HL == 0 && aopcde == 14)
086134ec 3569 OUTS (outf, "A0 = -A0");
b7d48530 3570
4b7f6baa 3571 else if (aop == 1 && HL == 0 && aopcde == 14)
086134ec 3572 OUTS (outf, "A0 = -A1");
b7d48530 3573
4b7f6baa 3574 else if (aop == 0 && HL == 1 && aopcde == 14)
086134ec 3575 OUTS (outf, "A1 = -A0");
b7d48530 3576
4b7f6baa 3577 else if (aop == 1 && HL == 1 && aopcde == 14)
086134ec 3578 OUTS (outf, "A1 = -A1");
b7d48530 3579
4b7f6baa
CM
3580 else if (aop == 0 && aopcde == 12)
3581 {
4b7f6baa 3582 OUTS (outf, dregs_hi (dst0));
086134ec 3583 OUTS (outf, " = ");
4b7f6baa 3584 OUTS (outf, dregs_lo (dst0));
086134ec 3585 OUTS (outf, " = SIGN (");
4b7f6baa 3586 OUTS (outf, dregs_hi (src0));
086134ec 3587 OUTS (outf, ") * ");
4b7f6baa 3588 OUTS (outf, dregs_hi (src1));
086134ec 3589 OUTS (outf, " + SIGN (");
4b7f6baa 3590 OUTS (outf, dregs_lo (src0));
086134ec 3591 OUTS (outf, ") * ");
4b7f6baa 3592 OUTS (outf, dregs_lo (src1));
4b7f6baa
CM
3593 }
3594 else if (aop == 2 && aopcde == 0)
3595 {
4b7f6baa 3596 OUTS (outf, dregs (dst0));
086134ec 3597 OUTS (outf, " = ");
4b7f6baa 3598 OUTS (outf, dregs (src0));
086134ec 3599 OUTS (outf, " -|+ ");
4b7f6baa 3600 OUTS (outf, dregs (src1));
4b7f6baa 3601 amod0 (s, x, outf);
4b7f6baa
CM
3602 }
3603 else if (aop == 1 && aopcde == 12)
3604 {
4b7f6baa 3605 OUTS (outf, dregs (dst1));
086134ec 3606 OUTS (outf, " = A1.L + A1.H, ");
4b7f6baa 3607 OUTS (outf, dregs (dst0));
086134ec 3608 OUTS (outf, " = A0.L + A0.H");
4b7f6baa
CM
3609 }
3610 else if (aop == 2 && aopcde == 4)
3611 {
4b7f6baa 3612 OUTS (outf, dregs (dst1));
086134ec 3613 OUTS (outf, " = ");
4b7f6baa 3614 OUTS (outf, dregs (src0));
086134ec 3615 OUTS (outf, " + ");
4b7f6baa 3616 OUTS (outf, dregs (src1));
086134ec 3617 OUTS (outf, ", ");
4b7f6baa 3618 OUTS (outf, dregs (dst0));
086134ec 3619 OUTS (outf, " = ");
4b7f6baa 3620 OUTS (outf, dregs (src0));
086134ec 3621 OUTS (outf, " - ");
4b7f6baa 3622 OUTS (outf, dregs (src1));
4b7f6baa 3623 amod1 (s, x, outf);
4b7f6baa
CM
3624 }
3625 else if (HL == 0 && aopcde == 1)
3626 {
4b7f6baa 3627 OUTS (outf, dregs (dst1));
086134ec 3628 OUTS (outf, " = ");
4b7f6baa 3629 OUTS (outf, dregs (src0));
086134ec 3630 OUTS (outf, " +|+ ");
4b7f6baa 3631 OUTS (outf, dregs (src1));
086134ec 3632 OUTS (outf, ", ");
4b7f6baa 3633 OUTS (outf, dregs (dst0));
086134ec 3634 OUTS (outf, " = ");
4b7f6baa 3635 OUTS (outf, dregs (src0));
086134ec 3636 OUTS (outf, " -|- ");
4b7f6baa
CM
3637 OUTS (outf, dregs (src1));
3638 amod0amod2 (s, x, aop, outf);
4b7f6baa
CM
3639 }
3640 else if (aop == 0 && aopcde == 11)
3641 {
4b7f6baa 3642 OUTS (outf, dregs (dst0));
086134ec 3643 OUTS (outf, " = (A0 += A1)");
4b7f6baa
CM
3644 }
3645 else if (aop == 0 && aopcde == 10)
3646 {
4b7f6baa 3647 OUTS (outf, dregs_lo (dst0));
086134ec 3648 OUTS (outf, " = A0.X");
4b7f6baa
CM
3649 }
3650 else if (aop == 1 && aopcde == 10)
3651 {
4b7f6baa 3652 OUTS (outf, dregs_lo (dst0));
086134ec 3653 OUTS (outf, " = A1.X");
4b7f6baa
CM
3654 }
3655 else if (aop == 1 && aopcde == 0)
3656 {
4b7f6baa 3657 OUTS (outf, dregs (dst0));
086134ec 3658 OUTS (outf, " = ");
4b7f6baa 3659 OUTS (outf, dregs (src0));
086134ec 3660 OUTS (outf, " +|- ");
4b7f6baa 3661 OUTS (outf, dregs (src1));
4b7f6baa 3662 amod0 (s, x, outf);
4b7f6baa
CM
3663 }
3664 else if (aop == 3 && aopcde == 0)
3665 {
4b7f6baa 3666 OUTS (outf, dregs (dst0));
086134ec 3667 OUTS (outf, " = ");
4b7f6baa 3668 OUTS (outf, dregs (src0));
086134ec 3669 OUTS (outf, " -|- ");
4b7f6baa 3670 OUTS (outf, dregs (src1));
4b7f6baa 3671 amod0 (s, x, outf);
4b7f6baa
CM
3672 }
3673 else if (aop == 1 && aopcde == 4)
3674 {
4b7f6baa 3675 OUTS (outf, dregs (dst0));
086134ec 3676 OUTS (outf, " = ");
4b7f6baa 3677 OUTS (outf, dregs (src0));
086134ec 3678 OUTS (outf, " - ");
4b7f6baa 3679 OUTS (outf, dregs (src1));
4b7f6baa 3680 amod1 (s, x, outf);
4b7f6baa
CM
3681 }
3682 else if (aop == 0 && aopcde == 17)
3683 {
4b7f6baa 3684 OUTS (outf, dregs (dst1));
086134ec 3685 OUTS (outf, " = A1 + A0, ");
4b7f6baa 3686 OUTS (outf, dregs (dst0));
086134ec 3687 OUTS (outf, " = A1 - A0");
4b7f6baa 3688 amod1 (s, x, outf);
4b7f6baa
CM
3689 }
3690 else if (aop == 1 && aopcde == 17)
3691 {
4b7f6baa 3692 OUTS (outf, dregs (dst1));
086134ec 3693 OUTS (outf, " = A0 + A1, ");
4b7f6baa 3694 OUTS (outf, dregs (dst0));
086134ec 3695 OUTS (outf, " = A0 - A1");
4b7f6baa 3696 amod1 (s, x, outf);
4b7f6baa
CM
3697 }
3698 else if (aop == 0 && aopcde == 18)
3699 {
086134ec 3700 OUTS (outf, "SAA (");
4b7f6baa
CM
3701 OUTS (outf, dregs (src0 + 1));
3702 OUTS (outf, ":");
086134ec
BS
3703 OUTS (outf, imm5d (src0));
3704 OUTS (outf, ", ");
4b7f6baa
CM
3705 OUTS (outf, dregs (src1 + 1));
3706 OUTS (outf, ":");
086134ec
BS
3707 OUTS (outf, imm5d (src1));
3708 OUTS (outf, ")");
4b7f6baa 3709 aligndir (s, outf);
4b7f6baa
CM
3710 }
3711 else if (aop == 3 && aopcde == 18)
b7d48530
NC
3712 OUTS (outf, "DISALGNEXCPT");
3713
4b7f6baa
CM
3714 else if (aop == 0 && aopcde == 20)
3715 {
4b7f6baa 3716 OUTS (outf, dregs (dst0));
086134ec 3717 OUTS (outf, " = BYTEOP1P (");
4b7f6baa
CM
3718 OUTS (outf, dregs (src0 + 1));
3719 OUTS (outf, ":");
086134ec
BS
3720 OUTS (outf, imm5d (src0));
3721 OUTS (outf, ", ");
4b7f6baa
CM
3722 OUTS (outf, dregs (src1 + 1));
3723 OUTS (outf, ":");
086134ec 3724 OUTS (outf, imm5d (src1));
4b7f6baa
CM
3725 OUTS (outf, ")");
3726 aligndir (s, outf);
4b7f6baa
CM
3727 }
3728 else if (aop == 1 && aopcde == 20)
3729 {
4b7f6baa 3730 OUTS (outf, dregs (dst0));
086134ec 3731 OUTS (outf, " = BYTEOP1P (");
4b7f6baa
CM
3732 OUTS (outf, dregs (src0 + 1));
3733 OUTS (outf, ":");
086134ec
BS
3734 OUTS (outf, imm5d (src0));
3735 OUTS (outf, ", ");
4b7f6baa
CM
3736 OUTS (outf, dregs (src1 + 1));
3737 OUTS (outf, ":");
086134ec
BS
3738 OUTS (outf, imm5d (src1));
3739 OUTS (outf, ") (T");
4b7f6baa
CM
3740 if (s == 1)
3741 OUTS (outf, ", R)");
3742 else
3743 OUTS (outf, ")");
4b7f6baa
CM
3744 }
3745 else if (aop == 0 && aopcde == 21)
3746 {
4b7f6baa
CM
3747 OUTS (outf, "(");
3748 OUTS (outf, dregs (dst1));
086134ec 3749 OUTS (outf, ", ");
4b7f6baa 3750 OUTS (outf, dregs (dst0));
086134ec 3751 OUTS (outf, ") = BYTEOP16P (");
4b7f6baa
CM
3752 OUTS (outf, dregs (src0 + 1));
3753 OUTS (outf, ":");
086134ec
BS
3754 OUTS (outf, imm5d (src0));
3755 OUTS (outf, ", ");
4b7f6baa
CM
3756 OUTS (outf, dregs (src1 + 1));
3757 OUTS (outf, ":");
086134ec
BS
3758 OUTS (outf, imm5d (src1));
3759 OUTS (outf, ")");
4b7f6baa 3760 aligndir (s, outf);
4b7f6baa
CM
3761 }
3762 else if (aop == 1 && aopcde == 21)
3763 {
4b7f6baa
CM
3764 OUTS (outf, "(");
3765 OUTS (outf, dregs (dst1));
086134ec 3766 OUTS (outf, ", ");
4b7f6baa 3767 OUTS (outf, dregs (dst0));
086134ec 3768 OUTS (outf, ") = BYTEOP16M (");
4b7f6baa
CM
3769 OUTS (outf, dregs (src0 + 1));
3770 OUTS (outf, ":");
086134ec
BS
3771 OUTS (outf, imm5d (src0));
3772 OUTS (outf, ", ");
4b7f6baa
CM
3773 OUTS (outf, dregs (src1 + 1));
3774 OUTS (outf, ":");
086134ec
BS
3775 OUTS (outf, imm5d (src1));
3776 OUTS (outf, ")");
4b7f6baa 3777 aligndir (s, outf);
4b7f6baa
CM
3778 }
3779 else if (aop == 2 && aopcde == 7)
3780 {
4b7f6baa 3781 OUTS (outf, dregs (dst0));
086134ec 3782 OUTS (outf, " = ABS ");
4b7f6baa 3783 OUTS (outf, dregs (src0));
4b7f6baa
CM
3784 }
3785 else if (aop == 1 && aopcde == 7)
3786 {
4b7f6baa 3787 OUTS (outf, dregs (dst0));
086134ec 3788 OUTS (outf, " = MIN (");
4b7f6baa 3789 OUTS (outf, dregs (src0));
086134ec 3790 OUTS (outf, ", ");
4b7f6baa
CM
3791 OUTS (outf, dregs (src1));
3792 OUTS (outf, ")");
4b7f6baa
CM
3793 }
3794 else if (aop == 0 && aopcde == 7)
3795 {
4b7f6baa 3796 OUTS (outf, dregs (dst0));
086134ec 3797 OUTS (outf, " = MAX (");
4b7f6baa 3798 OUTS (outf, dregs (src0));
086134ec 3799 OUTS (outf, ", ");
4b7f6baa
CM
3800 OUTS (outf, dregs (src1));
3801 OUTS (outf, ")");
4b7f6baa
CM
3802 }
3803 else if (aop == 2 && aopcde == 6)
3804 {
4b7f6baa 3805 OUTS (outf, dregs (dst0));
086134ec 3806 OUTS (outf, " = ABS ");
4b7f6baa 3807 OUTS (outf, dregs (src0));
086134ec 3808 OUTS (outf, " (V)");
4b7f6baa
CM
3809 }
3810 else if (aop == 1 && aopcde == 6)
3811 {
4b7f6baa 3812 OUTS (outf, dregs (dst0));
086134ec 3813 OUTS (outf, " = MIN (");
4b7f6baa 3814 OUTS (outf, dregs (src0));
086134ec 3815 OUTS (outf, ", ");
4b7f6baa 3816 OUTS (outf, dregs (src1));
086134ec 3817 OUTS (outf, ") (V)");
4b7f6baa
CM
3818 }
3819 else if (aop == 0 && aopcde == 6)
3820 {
4b7f6baa 3821 OUTS (outf, dregs (dst0));
086134ec 3822 OUTS (outf, " = MAX (");
4b7f6baa 3823 OUTS (outf, dregs (src0));
086134ec 3824 OUTS (outf, ", ");
4b7f6baa 3825 OUTS (outf, dregs (src1));
086134ec 3826 OUTS (outf, ") (V)");
4b7f6baa
CM
3827 }
3828 else if (HL == 1 && aopcde == 1)
3829 {
4b7f6baa 3830 OUTS (outf, dregs (dst1));
086134ec 3831 OUTS (outf, " = ");
4b7f6baa 3832 OUTS (outf, dregs (src0));
086134ec 3833 OUTS (outf, " +|- ");
4b7f6baa 3834 OUTS (outf, dregs (src1));
086134ec 3835 OUTS (outf, ", ");
4b7f6baa 3836 OUTS (outf, dregs (dst0));
086134ec 3837 OUTS (outf, " = ");
4b7f6baa 3838 OUTS (outf, dregs (src0));
086134ec 3839 OUTS (outf, " -|+ ");
4b7f6baa
CM
3840 OUTS (outf, dregs (src1));
3841 amod0amod2 (s, x, aop, outf);
4b7f6baa
CM
3842 }
3843 else if (aop == 0 && aopcde == 4)
3844 {
4b7f6baa 3845 OUTS (outf, dregs (dst0));
086134ec 3846 OUTS (outf, " = ");
4b7f6baa 3847 OUTS (outf, dregs (src0));
086134ec 3848 OUTS (outf, " + ");
4b7f6baa 3849 OUTS (outf, dregs (src1));
4b7f6baa 3850 amod1 (s, x, outf);
4b7f6baa
CM
3851 }
3852 else if (aop == 0 && aopcde == 0)
3853 {
4b7f6baa 3854 OUTS (outf, dregs (dst0));
086134ec 3855 OUTS (outf, " = ");
4b7f6baa 3856 OUTS (outf, dregs (src0));
086134ec 3857 OUTS (outf, " +|+ ");
4b7f6baa 3858 OUTS (outf, dregs (src1));
4b7f6baa 3859 amod0 (s, x, outf);
4b7f6baa
CM
3860 }
3861 else if (aop == 0 && aopcde == 24)
3862 {
4b7f6baa 3863 OUTS (outf, dregs (dst0));
086134ec 3864 OUTS (outf, " = BYTEPACK (");
4b7f6baa 3865 OUTS (outf, dregs (src0));
086134ec 3866 OUTS (outf, ", ");
4b7f6baa
CM
3867 OUTS (outf, dregs (src1));
3868 OUTS (outf, ")");
4b7f6baa
CM
3869 }
3870 else if (aop == 1 && aopcde == 24)
3871 {
4b7f6baa
CM
3872 OUTS (outf, "(");
3873 OUTS (outf, dregs (dst1));
086134ec 3874 OUTS (outf, ", ");
4b7f6baa
CM
3875 OUTS (outf, dregs (dst0));
3876 OUTS (outf, ") = BYTEUNPACK ");
3877 OUTS (outf, dregs (src0 + 1));
3878 OUTS (outf, ":");
086134ec 3879 OUTS (outf, imm5d (src0));
4b7f6baa 3880 aligndir (s, outf);
4b7f6baa
CM
3881 }
3882 else if (aopcde == 13)
3883 {
4b7f6baa
CM
3884 OUTS (outf, "(");
3885 OUTS (outf, dregs (dst1));
086134ec 3886 OUTS (outf, ", ");
4b7f6baa
CM
3887 OUTS (outf, dregs (dst0));
3888 OUTS (outf, ") = SEARCH ");
3889 OUTS (outf, dregs (src0));
086134ec 3890 OUTS (outf, " (");
4b7f6baa
CM
3891 searchmod (aop, outf);
3892 OUTS (outf, ")");
4b7f6baa
CM
3893 }
3894 else
b7d48530
NC
3895 return 0;
3896
3897 return 4;
4b7f6baa
CM
3898}
3899
3900static int
3901decode_dsp32shift_0 (TIword iw0, TIword iw1, disassemble_info *outf)
3902{
b7d48530
NC
3903 /* dsp32shift
3904 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
3905 | 1 | 1 | 0 | 0 |.M.| 1 | 1 | 0 | 0 | - | - |.sopcde............|
3906 |.sop...|.HLs...|.dst0......| - | - | - |.src0......|.src1......|
3907 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
3908 int HLs = ((iw1 >> DSP32Shift_HLs_bits) & DSP32Shift_HLs_mask);
3909 int sop = ((iw1 >> DSP32Shift_sop_bits) & DSP32Shift_sop_mask);
3910 int src0 = ((iw1 >> DSP32Shift_src0_bits) & DSP32Shift_src0_mask);
3911 int src1 = ((iw1 >> DSP32Shift_src1_bits) & DSP32Shift_src1_mask);
3912 int dst0 = ((iw1 >> DSP32Shift_dst0_bits) & DSP32Shift_dst0_mask);
3913 int sopcde = ((iw0 >> (DSP32Shift_sopcde_bits - 16)) & DSP32Shift_sopcde_mask);
3914 const char *acc01 = (HLs & 1) == 0 ? "A0" : "A1";
3915
4b7f6baa
CM
3916 if (HLs == 0 && sop == 0 && sopcde == 0)
3917 {
4b7f6baa 3918 OUTS (outf, dregs_lo (dst0));
086134ec 3919 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3920 OUTS (outf, dregs_lo (src1));
3921 OUTS (outf, " BY ");
3922 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3923 }
3924 else if (HLs == 1 && sop == 0 && sopcde == 0)
3925 {
4b7f6baa 3926 OUTS (outf, dregs_lo (dst0));
086134ec 3927 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3928 OUTS (outf, dregs_hi (src1));
3929 OUTS (outf, " BY ");
3930 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3931 }
3932 else if (HLs == 2 && sop == 0 && sopcde == 0)
3933 {
4b7f6baa 3934 OUTS (outf, dregs_hi (dst0));
086134ec 3935 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3936 OUTS (outf, dregs_lo (src1));
3937 OUTS (outf, " BY ");
3938 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3939 }
3940 else if (HLs == 3 && sop == 0 && sopcde == 0)
3941 {
4b7f6baa 3942 OUTS (outf, dregs_hi (dst0));
086134ec 3943 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3944 OUTS (outf, dregs_hi (src1));
3945 OUTS (outf, " BY ");
3946 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3947 }
3948 else if (HLs == 0 && sop == 1 && sopcde == 0)
3949 {
4b7f6baa 3950 OUTS (outf, dregs_lo (dst0));
086134ec 3951 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3952 OUTS (outf, dregs_lo (src1));
3953 OUTS (outf, " BY ");
3954 OUTS (outf, dregs_lo (src0));
086134ec 3955 OUTS (outf, " (S)");
4b7f6baa
CM
3956 }
3957 else if (HLs == 1 && sop == 1 && sopcde == 0)
3958 {
4b7f6baa 3959 OUTS (outf, dregs_lo (dst0));
086134ec 3960 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3961 OUTS (outf, dregs_hi (src1));
3962 OUTS (outf, " BY ");
3963 OUTS (outf, dregs_lo (src0));
086134ec 3964 OUTS (outf, " (S)");
4b7f6baa
CM
3965 }
3966 else if (HLs == 2 && sop == 1 && sopcde == 0)
3967 {
4b7f6baa 3968 OUTS (outf, dregs_hi (dst0));
086134ec 3969 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3970 OUTS (outf, dregs_lo (src1));
3971 OUTS (outf, " BY ");
3972 OUTS (outf, dregs_lo (src0));
086134ec 3973 OUTS (outf, " (S)");
4b7f6baa
CM
3974 }
3975 else if (HLs == 3 && sop == 1 && sopcde == 0)
3976 {
4b7f6baa 3977 OUTS (outf, dregs_hi (dst0));
086134ec 3978 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3979 OUTS (outf, dregs_hi (src1));
3980 OUTS (outf, " BY ");
3981 OUTS (outf, dregs_lo (src0));
086134ec 3982 OUTS (outf, " (S)");
4b7f6baa
CM
3983 }
3984 else if (sop == 2 && sopcde == 0)
3985 {
4b7f6baa 3986 OUTS (outf, (HLs & 2) == 0 ? dregs_lo (dst0) : dregs_hi (dst0));
086134ec 3987 OUTS (outf, " = LSHIFT ");
4b7f6baa
CM
3988 OUTS (outf, (HLs & 1) == 0 ? dregs_lo (src1) : dregs_hi (src1));
3989 OUTS (outf, " BY ");
3990 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3991 }
3992 else if (sop == 0 && sopcde == 3)
3993 {
4b7f6baa 3994 OUTS (outf, acc01);
086134ec 3995 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
3996 OUTS (outf, acc01);
3997 OUTS (outf, " BY ");
3998 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
3999 }
4000 else if (sop == 1 && sopcde == 3)
4001 {
4b7f6baa 4002 OUTS (outf, acc01);
086134ec 4003 OUTS (outf, " = LSHIFT ");
4b7f6baa
CM
4004 OUTS (outf, acc01);
4005 OUTS (outf, " BY ");
4006 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
4007 }
4008 else if (sop == 2 && sopcde == 3)
4009 {
4b7f6baa 4010 OUTS (outf, acc01);
086134ec 4011 OUTS (outf, " = ROT ");
4b7f6baa
CM
4012 OUTS (outf, acc01);
4013 OUTS (outf, " BY ");
4014 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
4015 }
4016 else if (sop == 3 && sopcde == 3)
4017 {
4b7f6baa 4018 OUTS (outf, dregs (dst0));
086134ec 4019 OUTS (outf, " = ROT ");
4b7f6baa
CM
4020 OUTS (outf, dregs (src1));
4021 OUTS (outf, " BY ");
4022 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
4023 }
4024 else if (sop == 1 && sopcde == 1)
4025 {
4b7f6baa 4026 OUTS (outf, dregs (dst0));
086134ec 4027 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
4028 OUTS (outf, dregs (src1));
4029 OUTS (outf, " BY ");
4030 OUTS (outf, dregs_lo (src0));
086134ec 4031 OUTS (outf, " (V, S)");
4b7f6baa
CM
4032 }
4033 else if (sop == 0 && sopcde == 1)
4034 {
4b7f6baa 4035 OUTS (outf, dregs (dst0));
086134ec 4036 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
4037 OUTS (outf, dregs (src1));
4038 OUTS (outf, " BY ");
4039 OUTS (outf, dregs_lo (src0));
086134ec 4040 OUTS (outf, " (V)");
4b7f6baa
CM
4041 }
4042 else if (sop == 0 && sopcde == 2)
4043 {
4b7f6baa 4044 OUTS (outf, dregs (dst0));
086134ec 4045 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
4046 OUTS (outf, dregs (src1));
4047 OUTS (outf, " BY ");
4048 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
4049 }
4050 else if (sop == 1 && sopcde == 2)
4051 {
4b7f6baa 4052 OUTS (outf, dregs (dst0));
086134ec 4053 OUTS (outf, " = ASHIFT ");
4b7f6baa
CM
4054 OUTS (outf, dregs (src1));
4055 OUTS (outf, " BY ");
4056 OUTS (outf, dregs_lo (src0));
086134ec 4057 OUTS (outf, " (S)");
4b7f6baa
CM
4058 }
4059 else if (sop == 2 && sopcde == 2)
4060 {
4b7f6baa 4061 OUTS (outf, dregs (dst0));
59a82d23 4062 OUTS (outf, " = LSHIFT ");
4b7f6baa
CM
4063 OUTS (outf, dregs (src1));
4064 OUTS (outf, " BY ");
4065 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
4066 }
4067 else if (sop == 3 && sopcde == 2)
4068 {
4b7f6baa 4069 OUTS (outf, dregs (dst0));
086134ec 4070 OUTS (outf, " = ROT ");
4b7f6baa
CM
4071 OUTS (outf, dregs (src1));
4072 OUTS (outf, " BY ");
4073 OUTS (outf, dregs_lo (src0));
4b7f6baa
CM
4074 }
4075 else if (sop == 2 && sopcde == 1)
4076 {
4b7f6baa 4077 OUTS (outf, dregs (dst0));
59a82d23 4078 OUTS (outf, " = LSHIFT ");
4b7f6baa
CM
4079 OUTS (outf, dregs (src1));
4080 OUTS (outf, " BY ");
4081 OUTS (outf, dregs_lo (src0));
086134ec 4082 OUTS (outf, " (V)");
4b7f6baa
CM
4083 }
4084 else if (sop == 0 && sopcde == 4)
4085 {
4b7f6baa 4086 OUTS (outf, dregs (dst0));
086134ec 4087 OUTS (outf, " = PACK (");
4b7f6baa 4088 OUTS (outf, dregs_lo (src1));
086134ec 4089 OUTS (outf, ", ");
4b7f6baa
CM
4090 OUTS (outf, dregs_lo (src0));
4091 OUTS (outf, ")");
4b7f6baa
CM
4092 }
4093 else if (sop == 1 && sopcde == 4)
4094 {
4b7f6baa 4095 OUTS (outf, dregs (dst0));
086134ec 4096 OUTS (outf, " = PACK (");
4b7f6baa 4097 OUTS (outf, dregs_lo (src1));
086134ec 4098 OUTS (outf, ", ");
4b7f6baa
CM
4099 OUTS (outf, dregs_hi (src0));
4100 OUTS (outf, ")");
4b7f6baa
CM
4101 }
4102 else if (sop == 2 && sopcde == 4)
4103 {
4b7f6baa 4104 OUTS (outf, dregs (dst0));
086134ec 4105 OUTS (outf, " = PACK (");
4b7f6baa 4106 OUTS (outf, dregs_hi (src1));
086134ec 4107 OUTS (outf, ", ");
4b7f6baa
CM
4108 OUTS (outf, dregs_lo (src0));
4109 OUTS (outf, ")");
4b7f6baa
CM
4110 }
4111 else if (sop == 3 && sopcde == 4)
4112 {
4b7f6baa 4113 OUTS (outf, dregs (dst0));
086134ec 4114 OUTS (outf, " = PACK (");
4b7f6baa 4115 OUTS (outf, dregs_hi (src1));
086134ec 4116 OUTS (outf, ", ");
4b7f6baa
CM
4117 OUTS (outf, dregs_hi (src0));
4118 OUTS (outf, ")");
4b7f6baa
CM
4119 }
4120 else if (sop == 0 && sopcde == 5)
4121 {
4b7f6baa 4122 OUTS (outf, dregs_lo (dst0));
086134ec 4123 OUTS (outf, " = SIGNBITS ");
4b7f6baa 4124 OUTS (outf, dregs (src1));
4b7f6baa
CM
4125 }
4126 else if (sop == 1 && sopcde == 5)
4127 {
4b7f6baa 4128 OUTS (outf, dregs_lo (dst0));
086134ec 4129 OUTS (outf, " = SIGNBITS ");
4b7f6baa 4130 OUTS (outf, dregs_lo (src1));
4b7f6baa
CM
4131 }
4132 else if (sop == 2 && sopcde == 5)
4133 {
4b7f6baa 4134 OUTS (outf, dregs_lo (dst0));
086134ec 4135 OUTS (outf, " = SIGNBITS ");
4b7f6baa 4136 OUTS (outf, dregs_hi (src1));
4b7f6baa
CM
4137 }
4138 else if (sop == 0 && sopcde == 6)
4139 {
4b7f6baa 4140 OUTS (outf, dregs_lo (dst0));
086134ec 4141 OUTS (outf, " = SIGNBITS A0");
4b7f6baa
CM
4142 }
4143 else if (sop == 1 && sopcde == 6)
4144 {
4b7f6baa 4145 OUTS (outf, dregs_lo (dst0));
086134ec 4146 OUTS (outf, " = SIGNBITS A1");
4b7f6baa
CM
4147 }
4148 else if (sop == 3 && sopcde == 6)
4149 {
4b7f6baa 4150 OUTS (outf, dregs_lo (dst0));
086134ec 4151 OUTS (outf, " = ONES ");
4b7f6baa 4152 OUTS (outf, dregs (src1));
4b7f6baa
CM
4153 }
4154 else if (sop == 0 && sopcde == 7)
4155 {
4b7f6baa 4156 OUTS (outf, dregs_lo (dst0));
086134ec 4157 OUTS (outf, " = EXPADJ (");
4b7f6baa 4158 OUTS (outf, dregs (src1));
086134ec 4159 OUTS (outf, ", ");
4b7f6baa
CM
4160 OUTS (outf, dregs_lo (src0));
4161 OUTS (outf, ")");
4b7f6baa
CM
4162 }
4163 else if (sop == 1 && sopcde == 7)
4164 {
4b7f6baa 4165 OUTS (outf, dregs_lo (dst0));
086134ec 4166 OUTS (outf, " = EXPADJ (");
4b7f6baa 4167 OUTS (outf, dregs (src1));
086134ec 4168 OUTS (outf, ", ");
4b7f6baa
CM
4169 OUTS (outf, dregs_lo (src0));
4170 OUTS (outf, ") (V)");
4b7f6baa
CM
4171 }
4172 else if (sop == 2 && sopcde == 7)
4173 {
4b7f6baa 4174 OUTS (outf, dregs_lo (dst0));
086134ec 4175 OUTS (outf, " = EXPADJ (");
4b7f6baa 4176 OUTS (outf, dregs_lo (src1));
086134ec 4177 OUTS (outf, ", ");
4b7f6baa
CM
4178 OUTS (outf, dregs_lo (src0));
4179 OUTS (outf, ")");
4b7f6baa
CM
4180 }
4181 else if (sop == 3 && sopcde == 7)
4182 {
4b7f6baa 4183 OUTS (outf, dregs_lo (dst0));
086134ec 4184 OUTS (outf, " = EXPADJ (");
4b7f6baa 4185 OUTS (outf, dregs_hi (src1));
086134ec 4186 OUTS (outf, ", ");
4b7f6baa
CM
4187 OUTS (outf, dregs_lo (src0));
4188 OUTS (outf, ")");
4b7f6baa
CM
4189 }
4190 else if (sop == 0 && sopcde == 8)
4191 {
4b7f6baa
CM
4192 OUTS (outf, "BITMUX (");
4193 OUTS (outf, dregs (src0));
086134ec 4194 OUTS (outf, ", ");
4b7f6baa 4195 OUTS (outf, dregs (src1));
086134ec 4196 OUTS (outf, ", A0) (ASR)");
4b7f6baa
CM
4197 }
4198 else if (sop == 1 && sopcde == 8)
4199 {
4b7f6baa
CM
4200 OUTS (outf, "BITMUX (");
4201 OUTS (outf, dregs (src0));
086134ec 4202 OUTS (outf, ", ");
4b7f6baa 4203 OUTS (outf, dregs (src1));
086134ec 4204 OUTS (outf, ", A0) (ASL)");
4b7f6baa
CM
4205 }
4206 else if (sop == 0 && sopcde == 9)
4207 {
4b7f6baa 4208 OUTS (outf, dregs_lo (dst0));
086134ec 4209 OUTS (outf, " = VIT_MAX (");
4b7f6baa
CM
4210 OUTS (outf, dregs (src1));
4211 OUTS (outf, ") (ASL)");
4b7f6baa
CM
4212 }
4213 else if (sop == 1 && sopcde == 9)
4214 {
4b7f6baa 4215 OUTS (outf, dregs_lo (dst0));
086134ec 4216 OUTS (outf, " = VIT_MAX (");
4b7f6baa
CM
4217 OUTS (outf, dregs (src1));
4218 OUTS (outf, ") (ASR)");
4b7f6baa
CM
4219 }
4220 else if (sop == 2 && sopcde == 9)
4221 {
4b7f6baa 4222 OUTS (outf, dregs (dst0));
086134ec 4223 OUTS (outf, " = VIT_MAX (");
4b7f6baa 4224 OUTS (outf, dregs (src1));
086134ec 4225 OUTS (outf, ", ");
4b7f6baa 4226 OUTS (outf, dregs (src0));
086134ec 4227 OUTS (outf, ") (ASL)");
4b7f6baa
CM
4228 }
4229 else if (sop == 3 && sopcde == 9)
4230 {
4b7f6baa 4231 OUTS (outf, dregs (dst0));
086134ec 4232 OUTS (outf, " = VIT_MAX (");
4b7f6baa 4233 OUTS (outf, dregs (src1));
086134ec 4234 OUTS (outf, ", ");
4b7f6baa 4235 OUTS (outf, dregs (src0));
086134ec 4236 OUTS (outf, ") (ASR)");
4b7f6baa
CM
4237 }
4238 else if (sop == 0 && sopcde == 10)
4239 {
4b7f6baa 4240 OUTS (outf, dregs (dst0));
086134ec 4241 OUTS (outf, " = EXTRACT (");
4b7f6baa 4242 OUTS (outf, dregs (src1));
086134ec 4243 OUTS (outf, ", ");
4b7f6baa
CM
4244 OUTS (outf, dregs_lo (src0));
4245 OUTS (outf, ") (Z)");
4b7f6baa
CM
4246 }
4247 else if (sop == 1 && sopcde == 10)
4248 {
4b7f6baa 4249 OUTS (outf, dregs (dst0));
086134ec 4250 OUTS (outf, " = EXTRACT (");
4b7f6baa 4251 OUTS (outf, dregs (src1));
086134ec 4252 OUTS (outf, ", ");
4b7f6baa 4253 OUTS (outf, dregs_lo (src0));
086134ec 4254 OUTS (outf, ") (X)");
4b7f6baa
CM
4255 }
4256 else if (sop == 2 && sopcde == 10)
4257 {
4b7f6baa 4258 OUTS (outf, dregs (dst0));
086134ec 4259 OUTS (outf, " = DEPOSIT (");
4b7f6baa 4260 OUTS (outf, dregs (src1));
086134ec 4261 OUTS (outf, ", ");
4b7f6baa
CM
4262 OUTS (outf, dregs (src0));
4263 OUTS (outf, ")");
4b7f6baa
CM
4264 }
4265 else if (sop == 3 && sopcde == 10)
4266 {
4b7f6baa 4267 OUTS (outf, dregs (dst0));
086134ec 4268 OUTS (outf, " = DEPOSIT (");
4b7f6baa 4269 OUTS (outf, dregs (src1));
086134ec 4270 OUTS (outf, ", ");
4b7f6baa 4271 OUTS (outf, dregs (src0));
086134ec 4272 OUTS (outf, ") (X)");
4b7f6baa
CM
4273 }
4274 else if (sop == 0 && sopcde == 11)
4275 {
4b7f6baa 4276 OUTS (outf, dregs_lo (dst0));
086134ec 4277 OUTS (outf, " = CC = BXORSHIFT (A0, ");
4b7f6baa
CM
4278 OUTS (outf, dregs (src0));
4279 OUTS (outf, ")");
4b7f6baa
CM
4280 }
4281 else if (sop == 1 && sopcde == 11)
4282 {
4b7f6baa 4283 OUTS (outf, dregs_lo (dst0));
086134ec 4284 OUTS (outf, " = CC = BXOR (A0, ");
4b7f6baa
CM
4285 OUTS (outf, dregs (src0));
4286 OUTS (outf, ")");
4b7f6baa
CM
4287 }
4288 else if (sop == 0 && sopcde == 12)
086134ec 4289 OUTS (outf, "A0 = BXORSHIFT (A0, A1, CC)");
b7d48530 4290
4b7f6baa
CM
4291 else if (sop == 1 && sopcde == 12)
4292 {
4b7f6baa 4293 OUTS (outf, dregs_lo (dst0));
086134ec 4294 OUTS (outf, " = CC = BXOR (A0, A1, CC)");
4b7f6baa
CM
4295 }
4296 else if (sop == 0 && sopcde == 13)
4297 {
4b7f6baa 4298 OUTS (outf, dregs (dst0));
086134ec 4299 OUTS (outf, " = ALIGN8 (");
4b7f6baa 4300 OUTS (outf, dregs (src1));
086134ec 4301 OUTS (outf, ", ");
4b7f6baa
CM
4302 OUTS (outf, dregs (src0));
4303 OUTS (outf, ")");
4b7f6baa
CM
4304 }
4305 else if (sop == 1 && sopcde == 13)
4306 {
4b7f6baa 4307 OUTS (outf, dregs (dst0));
086134ec 4308 OUTS (outf, " = ALIGN16 (");
4b7f6baa 4309 OUTS (outf, dregs (src1));
086134ec 4310 OUTS (outf, ", ");
4b7f6baa
CM
4311 OUTS (outf, dregs (src0));
4312 OUTS (outf, ")");
4b7f6baa
CM
4313 }
4314 else if (sop == 2 && sopcde == 13)
4315 {
4b7f6baa 4316 OUTS (outf, dregs (dst0));
086134ec 4317 OUTS (outf, " = ALIGN24 (");
4b7f6baa 4318 OUTS (outf, dregs (src1));
086134ec 4319 OUTS (outf, ", ");
4b7f6baa
CM
4320 OUTS (outf, dregs (src0));
4321 OUTS (outf, ")");
4b7f6baa
CM
4322 }
4323 else
b7d48530
NC
4324 return 0;
4325
4326 return 4;
4b7f6baa
CM
4327}
4328
4329static int
4330decode_dsp32shiftimm_0 (TIword iw0, TIword iw1, disassemble_info *outf)
4331{
b7d48530
NC
4332 /* dsp32shiftimm
4333 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
4334 | 1 | 1 | 0 | 0 |.M.| 1 | 1 | 0 | 1 | - | - |.sopcde............|
4335 |.sop...|.HLs...|.dst0......|.immag.................|.src1......|
4336 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4337 int src1 = ((iw1 >> DSP32ShiftImm_src1_bits) & DSP32ShiftImm_src1_mask);
4338 int sop = ((iw1 >> DSP32ShiftImm_sop_bits) & DSP32ShiftImm_sop_mask);
4339 int bit8 = ((iw1 >> 8) & 0x1);
4340 int immag = ((iw1 >> DSP32ShiftImm_immag_bits) & DSP32ShiftImm_immag_mask);
4b7f6baa 4341 int newimmag = (-(iw1 >> DSP32ShiftImm_immag_bits) & DSP32ShiftImm_immag_mask);
b7d48530
NC
4342 int dst0 = ((iw1 >> DSP32ShiftImm_dst0_bits) & DSP32ShiftImm_dst0_mask);
4343 int sopcde = ((iw0 >> (DSP32ShiftImm_sopcde_bits - 16)) & DSP32ShiftImm_sopcde_mask);
4344 int HLs = ((iw1 >> DSP32ShiftImm_HLs_bits) & DSP32ShiftImm_HLs_mask);
4b7f6baa 4345
331f1cbe 4346 if (sop == 0 && sopcde == 0)
4b7f6baa 4347 {
331f1cbe
BS
4348 OUTS (outf, (HLs & 2) ? dregs_hi (dst0) : dregs_lo (dst0));
4349 OUTS (outf, " = ");
4350 OUTS (outf, (HLs & 1) ? dregs_hi (src1) : dregs_lo (src1));
4351 OUTS (outf, " >>> ");
4b7f6baa 4352 OUTS (outf, uimm4 (newimmag));
4b7f6baa 4353 }
331f1cbe 4354 else if (sop == 1 && sopcde == 0 && bit8 == 0)
4b7f6baa 4355 {
331f1cbe
BS
4356 OUTS (outf, (HLs & 2) ? dregs_hi (dst0) : dregs_lo (dst0));
4357 OUTS (outf, " = ");
4358 OUTS (outf, (HLs & 1) ? dregs_hi (src1) : dregs_lo (src1));
4359 OUTS (outf, " << ");
4b7f6baa 4360 OUTS (outf, uimm4 (immag));
331f1cbe 4361 OUTS (outf, " (S)");
4b7f6baa 4362 }
331f1cbe 4363 else if (sop == 1 && sopcde == 0 && bit8 == 1)
4b7f6baa 4364 {
331f1cbe
BS
4365 OUTS (outf, (HLs & 2) ? dregs_hi (dst0) : dregs_lo (dst0));
4366 OUTS (outf, " = ");
4367 OUTS (outf, (HLs & 1) ? dregs_hi (src1) : dregs_lo (src1));
4368 OUTS (outf, " >>> ");
4b7f6baa 4369 OUTS (outf, uimm4 (newimmag));
331f1cbe 4370 OUTS (outf, " (S)");
4b7f6baa 4371 }
331f1cbe 4372 else if (sop == 2 && sopcde == 0 && bit8 == 0)
4b7f6baa 4373 {
331f1cbe
BS
4374 OUTS (outf, (HLs & 2) ? dregs_hi (dst0) : dregs_lo (dst0));
4375 OUTS (outf, " = ");
4376 OUTS (outf, (HLs & 1) ? dregs_hi (src1) : dregs_lo (src1));
4377 OUTS (outf, " << ");
4b7f6baa 4378 OUTS (outf, uimm4 (immag));
4b7f6baa 4379 }
331f1cbe 4380 else if (sop == 2 && sopcde == 0 && bit8 == 1)
4b7f6baa 4381 {
331f1cbe
BS
4382 OUTS (outf, (HLs & 2) ? dregs_hi (dst0) : dregs_lo (dst0));
4383 OUTS (outf, " = ");
4384 OUTS (outf, (HLs & 1) ? dregs_hi (src1) : dregs_lo (src1));
4385 OUTS (outf, " >> ");
4b7f6baa 4386 OUTS (outf, uimm4 (newimmag));
4b7f6baa 4387 }
4b7f6baa
CM
4388 else if (sop == 2 && sopcde == 3 && HLs == 1)
4389 {
086134ec 4390 OUTS (outf, "A1 = ROT A1 BY ");
4b7f6baa 4391 OUTS (outf, imm6 (immag));
4b7f6baa
CM
4392 }
4393 else if (sop == 0 && sopcde == 3 && HLs == 0 && bit8 == 0)
4394 {
086134ec 4395 OUTS (outf, "A0 = A0 << ");
4b7f6baa 4396 OUTS (outf, uimm5 (immag));
4b7f6baa
CM
4397 }
4398 else if (sop == 0 && sopcde == 3 && HLs == 0 && bit8 == 1)
4399 {
086134ec 4400 OUTS (outf, "A0 = A0 >>> ");
4b7f6baa 4401 OUTS (outf, uimm5 (newimmag));
4b7f6baa
CM
4402 }
4403 else if (sop == 0 && sopcde == 3 && HLs == 1 && bit8 == 0)
4404 {
086134ec 4405 OUTS (outf, "A1 = A1 << ");
4b7f6baa 4406 OUTS (outf, uimm5 (immag));
4b7f6baa
CM
4407 }
4408 else if (sop == 0 && sopcde == 3 && HLs == 1 && bit8 == 1)
4409 {
086134ec 4410 OUTS (outf, "A1 = A1 >>> ");
4b7f6baa 4411 OUTS (outf, uimm5 (newimmag));
4b7f6baa
CM
4412 }
4413 else if (sop == 1 && sopcde == 3 && HLs == 0)
4414 {
086134ec 4415 OUTS (outf, "A0 = A0 >> ");
4b7f6baa 4416 OUTS (outf, uimm5 (newimmag));
4b7f6baa
CM
4417 }
4418 else if (sop == 1 && sopcde == 3 && HLs == 1)
4419 {
086134ec 4420 OUTS (outf, "A1 = A1 >> ");
4b7f6baa 4421 OUTS (outf, uimm5 (newimmag));
4b7f6baa
CM
4422 }
4423 else if (sop == 2 && sopcde == 3 && HLs == 0)
4424 {
086134ec 4425 OUTS (outf, "A0 = ROT A0 BY ");
4b7f6baa 4426 OUTS (outf, imm6 (immag));
4b7f6baa
CM
4427 }
4428 else if (sop == 1 && sopcde == 1 && bit8 == 0)
4429 {
4b7f6baa 4430 OUTS (outf, dregs (dst0));
086134ec 4431 OUTS (outf, " = ");
4b7f6baa 4432 OUTS (outf, dregs (src1));
086134ec 4433 OUTS (outf, " << ");
4b7f6baa
CM
4434 OUTS (outf, uimm5 (immag));
4435 OUTS (outf, " (V, S)");
4b7f6baa
CM
4436 }
4437 else if (sop == 1 && sopcde == 1 && bit8 == 1)
4438 {
4b7f6baa 4439 OUTS (outf, dregs (dst0));
086134ec 4440 OUTS (outf, " = ");
4b7f6baa 4441 OUTS (outf, dregs (src1));
086134ec 4442 OUTS (outf, " >>> ");
4b7f6baa 4443 OUTS (outf, imm5 (-immag));
0b7691fd 4444 OUTS (outf, " (V, S)");
4b7f6baa
CM
4445 }
4446 else if (sop == 2 && sopcde == 1 && bit8 == 1)
4447 {
4b7f6baa 4448 OUTS (outf, dregs (dst0));
086134ec 4449 OUTS (outf, " = ");
4b7f6baa
CM
4450 OUTS (outf, dregs (src1));
4451 OUTS (outf, " >> ");
4452 OUTS (outf, uimm5 (newimmag));
4453 OUTS (outf, " (V)");
4b7f6baa
CM
4454 }
4455 else if (sop == 2 && sopcde == 1 && bit8 == 0)
4456 {
4b7f6baa 4457 OUTS (outf, dregs (dst0));
086134ec 4458 OUTS (outf, " = ");
4b7f6baa 4459 OUTS (outf, dregs (src1));
086134ec 4460 OUTS (outf, " << ");
4b7f6baa
CM
4461 OUTS (outf, imm5 (immag));
4462 OUTS (outf, " (V)");
4b7f6baa
CM
4463 }
4464 else if (sop == 0 && sopcde == 1)
4465 {
4b7f6baa 4466 OUTS (outf, dregs (dst0));
086134ec 4467 OUTS (outf, " = ");
4b7f6baa 4468 OUTS (outf, dregs (src1));
086134ec 4469 OUTS (outf, " >>> ");
4b7f6baa
CM
4470 OUTS (outf, uimm5 (newimmag));
4471 OUTS (outf, " (V)");
4b7f6baa
CM
4472 }
4473 else if (sop == 1 && sopcde == 2)
4474 {
4b7f6baa 4475 OUTS (outf, dregs (dst0));
086134ec 4476 OUTS (outf, " = ");
4b7f6baa 4477 OUTS (outf, dregs (src1));
086134ec 4478 OUTS (outf, " << ");
4b7f6baa 4479 OUTS (outf, uimm5 (immag));
086134ec 4480 OUTS (outf, " (S)");
4b7f6baa
CM
4481 }
4482 else if (sop == 2 && sopcde == 2 && bit8 == 1)
4483 {
4b7f6baa 4484 OUTS (outf, dregs (dst0));
086134ec 4485 OUTS (outf, " = ");
4b7f6baa 4486 OUTS (outf, dregs (src1));
086134ec 4487 OUTS (outf, " >> ");
4b7f6baa 4488 OUTS (outf, uimm5 (newimmag));
4b7f6baa
CM
4489 }
4490 else if (sop == 2 && sopcde == 2 && bit8 == 0)
4491 {
4b7f6baa 4492 OUTS (outf, dregs (dst0));
086134ec 4493 OUTS (outf, " = ");
4b7f6baa 4494 OUTS (outf, dregs (src1));
086134ec 4495 OUTS (outf, " << ");
4b7f6baa 4496 OUTS (outf, uimm5 (immag));
4b7f6baa
CM
4497 }
4498 else if (sop == 3 && sopcde == 2)
4499 {
4b7f6baa 4500 OUTS (outf, dregs (dst0));
086134ec 4501 OUTS (outf, " = ROT ");
4b7f6baa
CM
4502 OUTS (outf, dregs (src1));
4503 OUTS (outf, " BY ");
4504 OUTS (outf, imm6 (immag));
4b7f6baa
CM
4505 }
4506 else if (sop == 0 && sopcde == 2)
4507 {
4b7f6baa 4508 OUTS (outf, dregs (dst0));
086134ec 4509 OUTS (outf, " = ");
4b7f6baa 4510 OUTS (outf, dregs (src1));
086134ec 4511 OUTS (outf, " >>> ");
4b7f6baa 4512 OUTS (outf, uimm5 (newimmag));
4b7f6baa
CM
4513 }
4514 else
b7d48530
NC
4515 return 0;
4516
4517 return 4;
4b7f6baa
CM
4518}
4519
4520static int
4521decode_pseudoDEBUG_0 (TIword iw0, disassemble_info *outf)
4522{
b7d48530
NC
4523 /* pseudoDEBUG
4524 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
4525 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 0 |.fn....|.grp.......|.reg.......|
4526 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa
CM
4527 int fn = ((iw0 >> PseudoDbg_fn_bits) & PseudoDbg_fn_mask);
4528 int grp = ((iw0 >> PseudoDbg_grp_bits) & PseudoDbg_grp_mask);
4529 int reg = ((iw0 >> PseudoDbg_reg_bits) & PseudoDbg_reg_mask);
4530
219b747a
MF
4531 if (parallel)
4532 return 0;
4533
4b7f6baa 4534 if (reg == 0 && fn == 3)
b7d48530
NC
4535 OUTS (outf, "DBG A0");
4536
4b7f6baa 4537 else if (reg == 1 && fn == 3)
b7d48530
NC
4538 OUTS (outf, "DBG A1");
4539
4b7f6baa 4540 else if (reg == 3 && fn == 3)
b7d48530
NC
4541 OUTS (outf, "ABORT");
4542
4b7f6baa 4543 else if (reg == 4 && fn == 3)
b7d48530
NC
4544 OUTS (outf, "HLT");
4545
4b7f6baa 4546 else if (reg == 5 && fn == 3)
b7d48530
NC
4547 OUTS (outf, "DBGHALT");
4548
4b7f6baa
CM
4549 else if (reg == 6 && fn == 3)
4550 {
086134ec 4551 OUTS (outf, "DBGCMPLX (");
4b7f6baa
CM
4552 OUTS (outf, dregs (grp));
4553 OUTS (outf, ")");
4b7f6baa
CM
4554 }
4555 else if (reg == 7 && fn == 3)
b7d48530
NC
4556 OUTS (outf, "DBG");
4557
4b7f6baa
CM
4558 else if (grp == 0 && fn == 2)
4559 {
73a63ccf 4560 OUTS (outf, "OUTC ");
4b7f6baa 4561 OUTS (outf, dregs (reg));
4b7f6baa
CM
4562 }
4563 else if (fn == 0)
4564 {
a01eda85 4565 OUTS (outf, "DBG ");
4b7f6baa 4566 OUTS (outf, allregs (reg, grp));
4b7f6baa
CM
4567 }
4568 else if (fn == 1)
4569 {
9805c0a5 4570 OUTS (outf, "PRNT ");
4b7f6baa 4571 OUTS (outf, allregs (reg, grp));
4b7f6baa
CM
4572 }
4573 else
b7d48530
NC
4574 return 0;
4575
4576 return 2;
4b7f6baa
CM
4577}
4578
73a63ccf
MF
4579static int
4580decode_pseudoOChar_0 (TIword iw0, disassemble_info *outf)
4581{
4582 /* psedoOChar
4583 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
4584 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 1 |.ch............................|
4585 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4586 int ch = ((iw0 >> PseudoChr_ch_bits) & PseudoChr_ch_mask);
4587
219b747a
MF
4588 if (parallel)
4589 return 0;
4590
73a63ccf
MF
4591 OUTS (outf, "OUTC ");
4592 OUTS (outf, uimm8 (ch));
4593
4594 return 2;
4595}
4596
4b7f6baa
CM
4597static int
4598decode_pseudodbg_assert_0 (TIword iw0, TIword iw1, disassemble_info *outf)
4599{
b7d48530
NC
4600 /* pseudodbg_assert
4601 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+
66a6900a 4602 | 1 | 1 | 1 | 1 | 0 | - | - | - | dbgop |.grp.......|.regtest...|
b7d48530
NC
4603 |.expected......................................................|
4604 +---+---+---+---|---+---+---+---|---+---+---+---|---+---+---+---+ */
4b7f6baa 4605 int expected = ((iw1 >> PseudoDbg_Assert_expected_bits) & PseudoDbg_Assert_expected_mask);
b7d48530 4606 int dbgop = ((iw0 >> (PseudoDbg_Assert_dbgop_bits - 16)) & PseudoDbg_Assert_dbgop_mask);
66a6900a 4607 int grp = ((iw0 >> (PseudoDbg_Assert_grp_bits - 16)) & PseudoDbg_Assert_grp_mask);
b7d48530 4608 int regtest = ((iw0 >> (PseudoDbg_Assert_regtest_bits - 16)) & PseudoDbg_Assert_regtest_mask);
4b7f6baa 4609
219b747a
MF
4610 if (parallel)
4611 return 0;
4612
4b7f6baa
CM
4613 if (dbgop == 0)
4614 {
086134ec 4615 OUTS (outf, "DBGA (");
66a6900a 4616 OUTS (outf, regs_lo (regtest, grp));
086134ec 4617 OUTS (outf, ", ");
4b7f6baa
CM
4618 OUTS (outf, uimm16 (expected));
4619 OUTS (outf, ")");
4b7f6baa
CM
4620 }
4621 else if (dbgop == 1)
4622 {
086134ec 4623 OUTS (outf, "DBGA (");
66a6900a 4624 OUTS (outf, regs_hi (regtest, grp));
086134ec 4625 OUTS (outf, ", ");
4b7f6baa
CM
4626 OUTS (outf, uimm16 (expected));
4627 OUTS (outf, ")");
4b7f6baa
CM
4628 }
4629 else if (dbgop == 2)
4630 {
086134ec 4631 OUTS (outf, "DBGAL (");
66a6900a 4632 OUTS (outf, allregs (regtest, grp));
086134ec 4633 OUTS (outf, ", ");
4b7f6baa
CM
4634 OUTS (outf, uimm16 (expected));
4635 OUTS (outf, ")");
4b7f6baa
CM
4636 }
4637 else if (dbgop == 3)
4638 {
086134ec 4639 OUTS (outf, "DBGAH (");
66a6900a 4640 OUTS (outf, allregs (regtest, grp));
086134ec 4641 OUTS (outf, ", ");
4b7f6baa
CM
4642 OUTS (outf, uimm16 (expected));
4643 OUTS (outf, ")");
4b7f6baa
CM
4644 }
4645 else
b7d48530
NC
4646 return 0;
4647 return 4;
4b7f6baa
CM
4648}
4649
ad15c38e 4650static int
4b7f6baa
CM
4651_print_insn_bfin (bfd_vma pc, disassemble_info *outf)
4652{
4b7f6baa
CM
4653 bfd_byte buf[4];
4654 TIword iw0;
4655 TIword iw1;
4656 int status;
b7d48530
NC
4657 int rv = 0;
4658
4b7f6baa 4659 status = (*outf->read_memory_func) (pc & ~0x1, buf, 2, outf);
c7e2358a
AM
4660 /* FIXME */
4661 (void) status;
4b7f6baa 4662 status = (*outf->read_memory_func) ((pc + 2) & ~0x1, buf + 2, 2, outf);
c7e2358a
AM
4663 /* FIXME */
4664 (void) status;
4b7f6baa
CM
4665
4666 iw0 = bfd_getl16 (buf);
4667 iw1 = bfd_getl16 (buf + 2);
4668
4669 if ((iw0 & 0xf7ff) == 0xc003 && iw1 == 0x1800)
4670 {
219b747a
MF
4671 if (parallel)
4672 {
602427c4
MF
4673 OUTS (outf, "ILLEGAL");
4674 return 0;
219b747a 4675 }
086134ec 4676 OUTS (outf, "MNOP");
4b7f6baa
CM
4677 return 4;
4678 }
4679 else if ((iw0 & 0xff00) == 0x0000)
b7d48530 4680 rv = decode_ProgCtrl_0 (iw0, outf);
4b7f6baa 4681 else if ((iw0 & 0xffc0) == 0x0240)
b7d48530 4682 rv = decode_CaCTRL_0 (iw0, outf);
4b7f6baa 4683 else if ((iw0 & 0xff80) == 0x0100)
b7d48530 4684 rv = decode_PushPopReg_0 (iw0, outf);
4b7f6baa 4685 else if ((iw0 & 0xfe00) == 0x0400)
b7d48530 4686 rv = decode_PushPopMultiple_0 (iw0, outf);
4b7f6baa 4687 else if ((iw0 & 0xfe00) == 0x0600)
b7d48530 4688 rv = decode_ccMV_0 (iw0, outf);
4b7f6baa 4689 else if ((iw0 & 0xf800) == 0x0800)
b7d48530 4690 rv = decode_CCflag_0 (iw0, outf);
4b7f6baa 4691 else if ((iw0 & 0xffe0) == 0x0200)
b7d48530 4692 rv = decode_CC2dreg_0 (iw0, outf);
4b7f6baa 4693 else if ((iw0 & 0xff00) == 0x0300)
b7d48530 4694 rv = decode_CC2stat_0 (iw0, outf);
4b7f6baa 4695 else if ((iw0 & 0xf000) == 0x1000)
b7d48530 4696 rv = decode_BRCC_0 (iw0, pc, outf);
4b7f6baa 4697 else if ((iw0 & 0xf000) == 0x2000)
b7d48530 4698 rv = decode_UJUMP_0 (iw0, pc, outf);
4b7f6baa 4699 else if ((iw0 & 0xf000) == 0x3000)
b7d48530 4700 rv = decode_REGMV_0 (iw0, outf);
4b7f6baa 4701 else if ((iw0 & 0xfc00) == 0x4000)
b7d48530 4702 rv = decode_ALU2op_0 (iw0, outf);
4b7f6baa 4703 else if ((iw0 & 0xfe00) == 0x4400)
b7d48530 4704 rv = decode_PTR2op_0 (iw0, outf);
4b7f6baa 4705 else if ((iw0 & 0xf800) == 0x4800)
b7d48530 4706 rv = decode_LOGI2op_0 (iw0, outf);
4b7f6baa 4707 else if ((iw0 & 0xf000) == 0x5000)
b7d48530 4708 rv = decode_COMP3op_0 (iw0, outf);
4b7f6baa 4709 else if ((iw0 & 0xf800) == 0x6000)
b7d48530 4710 rv = decode_COMPI2opD_0 (iw0, outf);
4b7f6baa 4711 else if ((iw0 & 0xf800) == 0x6800)
b7d48530 4712 rv = decode_COMPI2opP_0 (iw0, outf);
4b7f6baa 4713 else if ((iw0 & 0xf000) == 0x8000)
b7d48530 4714 rv = decode_LDSTpmod_0 (iw0, outf);
4b7f6baa 4715 else if ((iw0 & 0xff60) == 0x9e60)
b7d48530 4716 rv = decode_dagMODim_0 (iw0, outf);
4b7f6baa 4717 else if ((iw0 & 0xfff0) == 0x9f60)
b7d48530 4718 rv = decode_dagMODik_0 (iw0, outf);
4b7f6baa 4719 else if ((iw0 & 0xfc00) == 0x9c00)
b7d48530 4720 rv = decode_dspLDST_0 (iw0, outf);
4b7f6baa 4721 else if ((iw0 & 0xf000) == 0x9000)
b7d48530 4722 rv = decode_LDST_0 (iw0, outf);
4b7f6baa 4723 else if ((iw0 & 0xfc00) == 0xb800)
b7d48530 4724 rv = decode_LDSTiiFP_0 (iw0, outf);
4b7f6baa 4725 else if ((iw0 & 0xe000) == 0xA000)
b7d48530 4726 rv = decode_LDSTii_0 (iw0, outf);
4b7f6baa 4727 else if ((iw0 & 0xff80) == 0xe080 && (iw1 & 0x0C00) == 0x0000)
b7d48530 4728 rv = decode_LoopSetup_0 (iw0, iw1, pc, outf);
4b7f6baa 4729 else if ((iw0 & 0xff00) == 0xe100 && (iw1 & 0x0000) == 0x0000)
b7d48530 4730 rv = decode_LDIMMhalf_0 (iw0, iw1, outf);
4b7f6baa 4731 else if ((iw0 & 0xfe00) == 0xe200 && (iw1 & 0x0000) == 0x0000)
b7d48530 4732 rv = decode_CALLa_0 (iw0, iw1, pc, outf);
4b7f6baa 4733 else if ((iw0 & 0xfc00) == 0xe400 && (iw1 & 0x0000) == 0x0000)
b7d48530 4734 rv = decode_LDSTidxI_0 (iw0, iw1, outf);
4b7f6baa 4735 else if ((iw0 & 0xfffe) == 0xe800 && (iw1 & 0x0000) == 0x0000)
b7d48530 4736 rv = decode_linkage_0 (iw0, iw1, outf);
4b7f6baa 4737 else if ((iw0 & 0xf600) == 0xc000 && (iw1 & 0x0000) == 0x0000)
b7d48530 4738 rv = decode_dsp32mac_0 (iw0, iw1, outf);
4b7f6baa 4739 else if ((iw0 & 0xf600) == 0xc200 && (iw1 & 0x0000) == 0x0000)
b7d48530 4740 rv = decode_dsp32mult_0 (iw0, iw1, outf);
4b7f6baa 4741 else if ((iw0 & 0xf7c0) == 0xc400 && (iw1 & 0x0000) == 0x0000)
b7d48530 4742 rv = decode_dsp32alu_0 (iw0, iw1, outf);
4b7f6baa 4743 else if ((iw0 & 0xf780) == 0xc600 && (iw1 & 0x01c0) == 0x0000)
b7d48530 4744 rv = decode_dsp32shift_0 (iw0, iw1, outf);
4b7f6baa 4745 else if ((iw0 & 0xf780) == 0xc680 && (iw1 & 0x0000) == 0x0000)
b7d48530 4746 rv = decode_dsp32shiftimm_0 (iw0, iw1, outf);
4b7f6baa 4747 else if ((iw0 & 0xff00) == 0xf800)
b7d48530 4748 rv = decode_pseudoDEBUG_0 (iw0, outf);
4b7f6baa 4749 else if ((iw0 & 0xFF00) == 0xF900)
73a63ccf 4750 rv = decode_pseudoOChar_0 (iw0, outf);
66a6900a 4751 else if ((iw0 & 0xFF00) == 0xf000 && (iw1 & 0x0000) == 0x0000)
b7d48530 4752 rv = decode_pseudodbg_assert_0 (iw0, iw1, outf);
4b7f6baa 4753
219b747a
MF
4754 if (rv == 0)
4755 OUTS (outf, "ILLEGAL");
4756
b7d48530 4757 return rv;
4b7f6baa
CM
4758}
4759
4b7f6baa
CM
4760int
4761print_insn_bfin (bfd_vma pc, disassemble_info *outf)
4762{
471e4e36
JZ
4763 bfd_byte buf[2];
4764 unsigned short iw0;
4765 int status;
4b7f6baa 4766 int count = 0;
471e4e36
JZ
4767
4768 status = (*outf->read_memory_func) (pc & ~0x01, buf, 2, outf);
c7e2358a
AM
4769 /* FIXME */
4770 (void) status;
471e4e36 4771 iw0 = bfd_getl16 (buf);
4b7f6baa
CM
4772
4773 count += _print_insn_bfin (pc, outf);
471e4e36 4774
4b7f6baa 4775 /* Proper display of multiple issue instructions. */
471e4e36 4776
219b747a 4777 if (count == 4 && (iw0 & 0xc000) == 0xc000 && (iw0 & BIT_MULTI_INS)
b7d48530 4778 && ((iw0 & 0xe800) != 0xe800 /* Not Linkage. */ ))
4b7f6baa 4779 {
219b747a
MF
4780 int legal = 1;
4781 int len;
4782
086134ec 4783 parallel = 1;
4b7f6baa 4784 outf->fprintf_func (outf->stream, " || ");
219b747a 4785 len = _print_insn_bfin (pc + 4, outf);
4b7f6baa 4786 outf->fprintf_func (outf->stream, " || ");
219b747a 4787 if (len != 2)
602427c4 4788 legal = 0;
219b747a
MF
4789 len = _print_insn_bfin (pc + 6, outf);
4790 if (len != 2)
4791 legal = 0;
4792
4793 if (legal)
4794 count = 8;
4795 else
4796 {
4797 outf->fprintf_func (outf->stream, ";\t\t/* ILLEGAL PARALLEL INSTRUCTION */");
4798 comment = 1;
4799 count = 0;
4800 }
086134ec 4801 parallel = 0;
4b7f6baa 4802 }
219b747a 4803
086134ec
BS
4804 if (!comment)
4805 outf->fprintf_func (outf->stream, ";");
4806
219b747a
MF
4807 if (count == 0)
4808 return 2;
4809
086134ec
BS
4810 comment = 0;
4811
4b7f6baa
CM
4812 return count;
4813}
This page took 0.677915 seconds and 4 git commands to generate.