2 * MIPS32 emulation for qemu: main translation routines.
4 * Copyright (c) 2004-2005 Jocelyn Mayer
5 * Copyright (c) 2006 Marius Groeger (FPU operations)
6 * Copyright (c) 2006 Thiemo Seufer (MIPS32R2 support)
7 * Copyright (c) 2009 CodeSourcery (MIPS16 and microMIPS support)
8 * Copyright (c) 2012 Jia Liu & Dongxue Zhang (MIPS ASE DSP support)
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #include "disas/disas.h"
27 #include "exec/cpu_ldst.h"
29 #include "exec/helper-proto.h"
30 #include "exec/helper-gen.h"
31 #include "sysemu/kvm.h"
33 #include "trace-tcg.h"
36 #define MIPS_DEBUG_DISAS 0
37 //#define MIPS_DEBUG_SIGN_EXTENSIONS
39 /* MIPS major opcodes */
40 #define MASK_OP_MAJOR(op) (op & (0x3F << 26))
43 /* indirect opcode tables */
44 OPC_SPECIAL
= (0x00 << 26),
45 OPC_REGIMM
= (0x01 << 26),
46 OPC_CP0
= (0x10 << 26),
47 OPC_CP1
= (0x11 << 26),
48 OPC_CP2
= (0x12 << 26),
49 OPC_CP3
= (0x13 << 26),
50 OPC_SPECIAL2
= (0x1C << 26),
51 OPC_SPECIAL3
= (0x1F << 26),
52 /* arithmetic with immediate */
53 OPC_ADDI
= (0x08 << 26),
54 OPC_ADDIU
= (0x09 << 26),
55 OPC_SLTI
= (0x0A << 26),
56 OPC_SLTIU
= (0x0B << 26),
57 /* logic with immediate */
58 OPC_ANDI
= (0x0C << 26),
59 OPC_ORI
= (0x0D << 26),
60 OPC_XORI
= (0x0E << 26),
61 OPC_LUI
= (0x0F << 26),
62 /* arithmetic with immediate */
63 OPC_DADDI
= (0x18 << 26),
64 OPC_DADDIU
= (0x19 << 26),
65 /* Jump and branches */
67 OPC_JAL
= (0x03 << 26),
68 OPC_BEQ
= (0x04 << 26), /* Unconditional if rs = rt = 0 (B) */
69 OPC_BEQL
= (0x14 << 26),
70 OPC_BNE
= (0x05 << 26),
71 OPC_BNEL
= (0x15 << 26),
72 OPC_BLEZ
= (0x06 << 26),
73 OPC_BLEZL
= (0x16 << 26),
74 OPC_BGTZ
= (0x07 << 26),
75 OPC_BGTZL
= (0x17 << 26),
76 OPC_JALX
= (0x1D << 26),
77 OPC_DAUI
= (0x1D << 26),
79 OPC_LDL
= (0x1A << 26),
80 OPC_LDR
= (0x1B << 26),
81 OPC_LB
= (0x20 << 26),
82 OPC_LH
= (0x21 << 26),
83 OPC_LWL
= (0x22 << 26),
84 OPC_LW
= (0x23 << 26),
85 OPC_LWPC
= OPC_LW
| 0x5,
86 OPC_LBU
= (0x24 << 26),
87 OPC_LHU
= (0x25 << 26),
88 OPC_LWR
= (0x26 << 26),
89 OPC_LWU
= (0x27 << 26),
90 OPC_SB
= (0x28 << 26),
91 OPC_SH
= (0x29 << 26),
92 OPC_SWL
= (0x2A << 26),
93 OPC_SW
= (0x2B << 26),
94 OPC_SDL
= (0x2C << 26),
95 OPC_SDR
= (0x2D << 26),
96 OPC_SWR
= (0x2E << 26),
97 OPC_LL
= (0x30 << 26),
98 OPC_LLD
= (0x34 << 26),
99 OPC_LD
= (0x37 << 26),
100 OPC_LDPC
= OPC_LD
| 0x5,
101 OPC_SC
= (0x38 << 26),
102 OPC_SCD
= (0x3C << 26),
103 OPC_SD
= (0x3F << 26),
104 /* Floating point load/store */
105 OPC_LWC1
= (0x31 << 26),
106 OPC_LWC2
= (0x32 << 26),
107 OPC_LDC1
= (0x35 << 26),
108 OPC_LDC2
= (0x36 << 26),
109 OPC_SWC1
= (0x39 << 26),
110 OPC_SWC2
= (0x3A << 26),
111 OPC_SDC1
= (0x3D << 26),
112 OPC_SDC2
= (0x3E << 26),
113 /* Compact Branches */
114 OPC_BLEZALC
= (0x06 << 26),
115 OPC_BGEZALC
= (0x06 << 26),
116 OPC_BGEUC
= (0x06 << 26),
117 OPC_BGTZALC
= (0x07 << 26),
118 OPC_BLTZALC
= (0x07 << 26),
119 OPC_BLTUC
= (0x07 << 26),
120 OPC_BOVC
= (0x08 << 26),
121 OPC_BEQZALC
= (0x08 << 26),
122 OPC_BEQC
= (0x08 << 26),
123 OPC_BLEZC
= (0x16 << 26),
124 OPC_BGEZC
= (0x16 << 26),
125 OPC_BGEC
= (0x16 << 26),
126 OPC_BGTZC
= (0x17 << 26),
127 OPC_BLTZC
= (0x17 << 26),
128 OPC_BLTC
= (0x17 << 26),
129 OPC_BNVC
= (0x18 << 26),
130 OPC_BNEZALC
= (0x18 << 26),
131 OPC_BNEC
= (0x18 << 26),
132 OPC_BC
= (0x32 << 26),
133 OPC_BEQZC
= (0x36 << 26),
134 OPC_JIC
= (0x36 << 26),
135 OPC_BALC
= (0x3A << 26),
136 OPC_BNEZC
= (0x3E << 26),
137 OPC_JIALC
= (0x3E << 26),
138 /* MDMX ASE specific */
139 OPC_MDMX
= (0x1E << 26),
140 /* MSA ASE, same as MDMX */
142 /* Cache and prefetch */
143 OPC_CACHE
= (0x2F << 26),
144 OPC_PREF
= (0x33 << 26),
145 /* PC-relative address computation / loads */
146 OPC_PCREL
= (0x3B << 26),
149 /* PC-relative address computation / loads */
150 #define MASK_OPC_PCREL_TOP2BITS(op) (MASK_OP_MAJOR(op) | (op & (3 << 19)))
151 #define MASK_OPC_PCREL_TOP5BITS(op) (MASK_OP_MAJOR(op) | (op & (0x1f << 16)))
153 /* Instructions determined by bits 19 and 20 */
154 OPC_ADDIUPC
= OPC_PCREL
| (0 << 19),
155 R6_OPC_LWPC
= OPC_PCREL
| (1 << 19),
156 OPC_LWUPC
= OPC_PCREL
| (2 << 19),
158 /* Instructions determined by bits 16 ... 20 */
159 OPC_AUIPC
= OPC_PCREL
| (0x1e << 16),
160 OPC_ALUIPC
= OPC_PCREL
| (0x1f << 16),
163 R6_OPC_LDPC
= OPC_PCREL
| (6 << 18),
166 /* MIPS special opcodes */
167 #define MASK_SPECIAL(op) MASK_OP_MAJOR(op) | (op & 0x3F)
171 OPC_SLL
= 0x00 | OPC_SPECIAL
,
172 /* NOP is SLL r0, r0, 0 */
173 /* SSNOP is SLL r0, r0, 1 */
174 /* EHB is SLL r0, r0, 3 */
175 OPC_SRL
= 0x02 | OPC_SPECIAL
, /* also ROTR */
176 OPC_ROTR
= OPC_SRL
| (1 << 21),
177 OPC_SRA
= 0x03 | OPC_SPECIAL
,
178 OPC_SLLV
= 0x04 | OPC_SPECIAL
,
179 OPC_SRLV
= 0x06 | OPC_SPECIAL
, /* also ROTRV */
180 OPC_ROTRV
= OPC_SRLV
| (1 << 6),
181 OPC_SRAV
= 0x07 | OPC_SPECIAL
,
182 OPC_DSLLV
= 0x14 | OPC_SPECIAL
,
183 OPC_DSRLV
= 0x16 | OPC_SPECIAL
, /* also DROTRV */
184 OPC_DROTRV
= OPC_DSRLV
| (1 << 6),
185 OPC_DSRAV
= 0x17 | OPC_SPECIAL
,
186 OPC_DSLL
= 0x38 | OPC_SPECIAL
,
187 OPC_DSRL
= 0x3A | OPC_SPECIAL
, /* also DROTR */
188 OPC_DROTR
= OPC_DSRL
| (1 << 21),
189 OPC_DSRA
= 0x3B | OPC_SPECIAL
,
190 OPC_DSLL32
= 0x3C | OPC_SPECIAL
,
191 OPC_DSRL32
= 0x3E | OPC_SPECIAL
, /* also DROTR32 */
192 OPC_DROTR32
= OPC_DSRL32
| (1 << 21),
193 OPC_DSRA32
= 0x3F | OPC_SPECIAL
,
194 /* Multiplication / division */
195 OPC_MULT
= 0x18 | OPC_SPECIAL
,
196 OPC_MULTU
= 0x19 | OPC_SPECIAL
,
197 OPC_DIV
= 0x1A | OPC_SPECIAL
,
198 OPC_DIVU
= 0x1B | OPC_SPECIAL
,
199 OPC_DMULT
= 0x1C | OPC_SPECIAL
,
200 OPC_DMULTU
= 0x1D | OPC_SPECIAL
,
201 OPC_DDIV
= 0x1E | OPC_SPECIAL
,
202 OPC_DDIVU
= 0x1F | OPC_SPECIAL
,
204 /* 2 registers arithmetic / logic */
205 OPC_ADD
= 0x20 | OPC_SPECIAL
,
206 OPC_ADDU
= 0x21 | OPC_SPECIAL
,
207 OPC_SUB
= 0x22 | OPC_SPECIAL
,
208 OPC_SUBU
= 0x23 | OPC_SPECIAL
,
209 OPC_AND
= 0x24 | OPC_SPECIAL
,
210 OPC_OR
= 0x25 | OPC_SPECIAL
,
211 OPC_XOR
= 0x26 | OPC_SPECIAL
,
212 OPC_NOR
= 0x27 | OPC_SPECIAL
,
213 OPC_SLT
= 0x2A | OPC_SPECIAL
,
214 OPC_SLTU
= 0x2B | OPC_SPECIAL
,
215 OPC_DADD
= 0x2C | OPC_SPECIAL
,
216 OPC_DADDU
= 0x2D | OPC_SPECIAL
,
217 OPC_DSUB
= 0x2E | OPC_SPECIAL
,
218 OPC_DSUBU
= 0x2F | OPC_SPECIAL
,
220 OPC_JR
= 0x08 | OPC_SPECIAL
, /* Also JR.HB */
221 OPC_JALR
= 0x09 | OPC_SPECIAL
, /* Also JALR.HB */
223 OPC_TGE
= 0x30 | OPC_SPECIAL
,
224 OPC_TGEU
= 0x31 | OPC_SPECIAL
,
225 OPC_TLT
= 0x32 | OPC_SPECIAL
,
226 OPC_TLTU
= 0x33 | OPC_SPECIAL
,
227 OPC_TEQ
= 0x34 | OPC_SPECIAL
,
228 OPC_TNE
= 0x36 | OPC_SPECIAL
,
229 /* HI / LO registers load & stores */
230 OPC_MFHI
= 0x10 | OPC_SPECIAL
,
231 OPC_MTHI
= 0x11 | OPC_SPECIAL
,
232 OPC_MFLO
= 0x12 | OPC_SPECIAL
,
233 OPC_MTLO
= 0x13 | OPC_SPECIAL
,
234 /* Conditional moves */
235 OPC_MOVZ
= 0x0A | OPC_SPECIAL
,
236 OPC_MOVN
= 0x0B | OPC_SPECIAL
,
238 OPC_SELEQZ
= 0x35 | OPC_SPECIAL
,
239 OPC_SELNEZ
= 0x37 | OPC_SPECIAL
,
241 OPC_MOVCI
= 0x01 | OPC_SPECIAL
,
244 OPC_PMON
= 0x05 | OPC_SPECIAL
, /* unofficial */
245 OPC_SYSCALL
= 0x0C | OPC_SPECIAL
,
246 OPC_BREAK
= 0x0D | OPC_SPECIAL
,
247 OPC_SPIM
= 0x0E | OPC_SPECIAL
, /* unofficial */
248 OPC_SYNC
= 0x0F | OPC_SPECIAL
,
250 OPC_SPECIAL28_RESERVED
= 0x28 | OPC_SPECIAL
,
251 OPC_SPECIAL29_RESERVED
= 0x29 | OPC_SPECIAL
,
252 OPC_SPECIAL39_RESERVED
= 0x39 | OPC_SPECIAL
,
253 OPC_SPECIAL3D_RESERVED
= 0x3D | OPC_SPECIAL
,
256 /* R6 Multiply and Divide instructions have the same Opcode
257 and function field as legacy OPC_MULT[U]/OPC_DIV[U] */
258 #define MASK_R6_MULDIV(op) (MASK_SPECIAL(op) | (op & (0x7ff)))
261 R6_OPC_MUL
= OPC_MULT
| (2 << 6),
262 R6_OPC_MUH
= OPC_MULT
| (3 << 6),
263 R6_OPC_MULU
= OPC_MULTU
| (2 << 6),
264 R6_OPC_MUHU
= OPC_MULTU
| (3 << 6),
265 R6_OPC_DIV
= OPC_DIV
| (2 << 6),
266 R6_OPC_MOD
= OPC_DIV
| (3 << 6),
267 R6_OPC_DIVU
= OPC_DIVU
| (2 << 6),
268 R6_OPC_MODU
= OPC_DIVU
| (3 << 6),
270 R6_OPC_DMUL
= OPC_DMULT
| (2 << 6),
271 R6_OPC_DMUH
= OPC_DMULT
| (3 << 6),
272 R6_OPC_DMULU
= OPC_DMULTU
| (2 << 6),
273 R6_OPC_DMUHU
= OPC_DMULTU
| (3 << 6),
274 R6_OPC_DDIV
= OPC_DDIV
| (2 << 6),
275 R6_OPC_DMOD
= OPC_DDIV
| (3 << 6),
276 R6_OPC_DDIVU
= OPC_DDIVU
| (2 << 6),
277 R6_OPC_DMODU
= OPC_DDIVU
| (3 << 6),
279 R6_OPC_CLZ
= 0x10 | OPC_SPECIAL
,
280 R6_OPC_CLO
= 0x11 | OPC_SPECIAL
,
281 R6_OPC_DCLZ
= 0x12 | OPC_SPECIAL
,
282 R6_OPC_DCLO
= 0x13 | OPC_SPECIAL
,
283 R6_OPC_SDBBP
= 0x0e | OPC_SPECIAL
,
285 OPC_LSA
= 0x05 | OPC_SPECIAL
,
286 OPC_DLSA
= 0x15 | OPC_SPECIAL
,
289 /* Multiplication variants of the vr54xx. */
290 #define MASK_MUL_VR54XX(op) MASK_SPECIAL(op) | (op & (0x1F << 6))
293 OPC_VR54XX_MULS
= (0x03 << 6) | OPC_MULT
,
294 OPC_VR54XX_MULSU
= (0x03 << 6) | OPC_MULTU
,
295 OPC_VR54XX_MACC
= (0x05 << 6) | OPC_MULT
,
296 OPC_VR54XX_MACCU
= (0x05 << 6) | OPC_MULTU
,
297 OPC_VR54XX_MSAC
= (0x07 << 6) | OPC_MULT
,
298 OPC_VR54XX_MSACU
= (0x07 << 6) | OPC_MULTU
,
299 OPC_VR54XX_MULHI
= (0x09 << 6) | OPC_MULT
,
300 OPC_VR54XX_MULHIU
= (0x09 << 6) | OPC_MULTU
,
301 OPC_VR54XX_MULSHI
= (0x0B << 6) | OPC_MULT
,
302 OPC_VR54XX_MULSHIU
= (0x0B << 6) | OPC_MULTU
,
303 OPC_VR54XX_MACCHI
= (0x0D << 6) | OPC_MULT
,
304 OPC_VR54XX_MACCHIU
= (0x0D << 6) | OPC_MULTU
,
305 OPC_VR54XX_MSACHI
= (0x0F << 6) | OPC_MULT
,
306 OPC_VR54XX_MSACHIU
= (0x0F << 6) | OPC_MULTU
,
309 /* REGIMM (rt field) opcodes */
310 #define MASK_REGIMM(op) MASK_OP_MAJOR(op) | (op & (0x1F << 16))
313 OPC_BLTZ
= (0x00 << 16) | OPC_REGIMM
,
314 OPC_BLTZL
= (0x02 << 16) | OPC_REGIMM
,
315 OPC_BGEZ
= (0x01 << 16) | OPC_REGIMM
,
316 OPC_BGEZL
= (0x03 << 16) | OPC_REGIMM
,
317 OPC_BLTZAL
= (0x10 << 16) | OPC_REGIMM
,
318 OPC_BLTZALL
= (0x12 << 16) | OPC_REGIMM
,
319 OPC_BGEZAL
= (0x11 << 16) | OPC_REGIMM
,
320 OPC_BGEZALL
= (0x13 << 16) | OPC_REGIMM
,
321 OPC_TGEI
= (0x08 << 16) | OPC_REGIMM
,
322 OPC_TGEIU
= (0x09 << 16) | OPC_REGIMM
,
323 OPC_TLTI
= (0x0A << 16) | OPC_REGIMM
,
324 OPC_TLTIU
= (0x0B << 16) | OPC_REGIMM
,
325 OPC_TEQI
= (0x0C << 16) | OPC_REGIMM
,
326 OPC_TNEI
= (0x0E << 16) | OPC_REGIMM
,
327 OPC_SYNCI
= (0x1F << 16) | OPC_REGIMM
,
329 OPC_DAHI
= (0x06 << 16) | OPC_REGIMM
,
330 OPC_DATI
= (0x1e << 16) | OPC_REGIMM
,
333 /* Special2 opcodes */
334 #define MASK_SPECIAL2(op) MASK_OP_MAJOR(op) | (op & 0x3F)
337 /* Multiply & xxx operations */
338 OPC_MADD
= 0x00 | OPC_SPECIAL2
,
339 OPC_MADDU
= 0x01 | OPC_SPECIAL2
,
340 OPC_MUL
= 0x02 | OPC_SPECIAL2
,
341 OPC_MSUB
= 0x04 | OPC_SPECIAL2
,
342 OPC_MSUBU
= 0x05 | OPC_SPECIAL2
,
344 OPC_MULT_G_2F
= 0x10 | OPC_SPECIAL2
,
345 OPC_DMULT_G_2F
= 0x11 | OPC_SPECIAL2
,
346 OPC_MULTU_G_2F
= 0x12 | OPC_SPECIAL2
,
347 OPC_DMULTU_G_2F
= 0x13 | OPC_SPECIAL2
,
348 OPC_DIV_G_2F
= 0x14 | OPC_SPECIAL2
,
349 OPC_DDIV_G_2F
= 0x15 | OPC_SPECIAL2
,
350 OPC_DIVU_G_2F
= 0x16 | OPC_SPECIAL2
,
351 OPC_DDIVU_G_2F
= 0x17 | OPC_SPECIAL2
,
352 OPC_MOD_G_2F
= 0x1c | OPC_SPECIAL2
,
353 OPC_DMOD_G_2F
= 0x1d | OPC_SPECIAL2
,
354 OPC_MODU_G_2F
= 0x1e | OPC_SPECIAL2
,
355 OPC_DMODU_G_2F
= 0x1f | OPC_SPECIAL2
,
357 OPC_CLZ
= 0x20 | OPC_SPECIAL2
,
358 OPC_CLO
= 0x21 | OPC_SPECIAL2
,
359 OPC_DCLZ
= 0x24 | OPC_SPECIAL2
,
360 OPC_DCLO
= 0x25 | OPC_SPECIAL2
,
362 OPC_SDBBP
= 0x3F | OPC_SPECIAL2
,
365 /* Special3 opcodes */
366 #define MASK_SPECIAL3(op) MASK_OP_MAJOR(op) | (op & 0x3F)
369 OPC_EXT
= 0x00 | OPC_SPECIAL3
,
370 OPC_DEXTM
= 0x01 | OPC_SPECIAL3
,
371 OPC_DEXTU
= 0x02 | OPC_SPECIAL3
,
372 OPC_DEXT
= 0x03 | OPC_SPECIAL3
,
373 OPC_INS
= 0x04 | OPC_SPECIAL3
,
374 OPC_DINSM
= 0x05 | OPC_SPECIAL3
,
375 OPC_DINSU
= 0x06 | OPC_SPECIAL3
,
376 OPC_DINS
= 0x07 | OPC_SPECIAL3
,
377 OPC_FORK
= 0x08 | OPC_SPECIAL3
,
378 OPC_YIELD
= 0x09 | OPC_SPECIAL3
,
379 OPC_BSHFL
= 0x20 | OPC_SPECIAL3
,
380 OPC_DBSHFL
= 0x24 | OPC_SPECIAL3
,
381 OPC_RDHWR
= 0x3B | OPC_SPECIAL3
,
384 OPC_MULT_G_2E
= 0x18 | OPC_SPECIAL3
,
385 OPC_MULTU_G_2E
= 0x19 | OPC_SPECIAL3
,
386 OPC_DIV_G_2E
= 0x1A | OPC_SPECIAL3
,
387 OPC_DIVU_G_2E
= 0x1B | OPC_SPECIAL3
,
388 OPC_DMULT_G_2E
= 0x1C | OPC_SPECIAL3
,
389 OPC_DMULTU_G_2E
= 0x1D | OPC_SPECIAL3
,
390 OPC_DDIV_G_2E
= 0x1E | OPC_SPECIAL3
,
391 OPC_DDIVU_G_2E
= 0x1F | OPC_SPECIAL3
,
392 OPC_MOD_G_2E
= 0x22 | OPC_SPECIAL3
,
393 OPC_MODU_G_2E
= 0x23 | OPC_SPECIAL3
,
394 OPC_DMOD_G_2E
= 0x26 | OPC_SPECIAL3
,
395 OPC_DMODU_G_2E
= 0x27 | OPC_SPECIAL3
,
398 OPC_LX_DSP
= 0x0A | OPC_SPECIAL3
,
399 /* MIPS DSP Arithmetic */
400 OPC_ADDU_QB_DSP
= 0x10 | OPC_SPECIAL3
,
401 OPC_ADDU_OB_DSP
= 0x14 | OPC_SPECIAL3
,
402 OPC_ABSQ_S_PH_DSP
= 0x12 | OPC_SPECIAL3
,
403 OPC_ABSQ_S_QH_DSP
= 0x16 | OPC_SPECIAL3
,
404 /* OPC_ADDUH_QB_DSP is same as OPC_MULT_G_2E. */
405 /* OPC_ADDUH_QB_DSP = 0x18 | OPC_SPECIAL3, */
406 OPC_CMPU_EQ_QB_DSP
= 0x11 | OPC_SPECIAL3
,
407 OPC_CMPU_EQ_OB_DSP
= 0x15 | OPC_SPECIAL3
,
408 /* MIPS DSP GPR-Based Shift Sub-class */
409 OPC_SHLL_QB_DSP
= 0x13 | OPC_SPECIAL3
,
410 OPC_SHLL_OB_DSP
= 0x17 | OPC_SPECIAL3
,
411 /* MIPS DSP Multiply Sub-class insns */
412 /* OPC_MUL_PH_DSP is same as OPC_ADDUH_QB_DSP. */
413 /* OPC_MUL_PH_DSP = 0x18 | OPC_SPECIAL3, */
414 OPC_DPA_W_PH_DSP
= 0x30 | OPC_SPECIAL3
,
415 OPC_DPAQ_W_QH_DSP
= 0x34 | OPC_SPECIAL3
,
416 /* DSP Bit/Manipulation Sub-class */
417 OPC_INSV_DSP
= 0x0C | OPC_SPECIAL3
,
418 OPC_DINSV_DSP
= 0x0D | OPC_SPECIAL3
,
419 /* MIPS DSP Append Sub-class */
420 OPC_APPEND_DSP
= 0x31 | OPC_SPECIAL3
,
421 OPC_DAPPEND_DSP
= 0x35 | OPC_SPECIAL3
,
422 /* MIPS DSP Accumulator and DSPControl Access Sub-class */
423 OPC_EXTR_W_DSP
= 0x38 | OPC_SPECIAL3
,
424 OPC_DEXTR_W_DSP
= 0x3C | OPC_SPECIAL3
,
427 R6_OPC_PREF
= 0x35 | OPC_SPECIAL3
,
428 R6_OPC_CACHE
= 0x25 | OPC_SPECIAL3
,
429 R6_OPC_LL
= 0x36 | OPC_SPECIAL3
,
430 R6_OPC_SC
= 0x26 | OPC_SPECIAL3
,
431 R6_OPC_LLD
= 0x37 | OPC_SPECIAL3
,
432 R6_OPC_SCD
= 0x27 | OPC_SPECIAL3
,
436 #define MASK_BSHFL(op) MASK_SPECIAL3(op) | (op & (0x1F << 6))
439 OPC_WSBH
= (0x02 << 6) | OPC_BSHFL
,
440 OPC_SEB
= (0x10 << 6) | OPC_BSHFL
,
441 OPC_SEH
= (0x18 << 6) | OPC_BSHFL
,
442 OPC_ALIGN
= (0x08 << 6) | OPC_BSHFL
, /* 010.bp */
443 OPC_ALIGN_END
= (0x0B << 6) | OPC_BSHFL
, /* 010.00 to 010.11 */
444 OPC_BITSWAP
= (0x00 << 6) | OPC_BSHFL
/* 00000 */
448 #define MASK_DBSHFL(op) MASK_SPECIAL3(op) | (op & (0x1F << 6))
451 OPC_DSBH
= (0x02 << 6) | OPC_DBSHFL
,
452 OPC_DSHD
= (0x05 << 6) | OPC_DBSHFL
,
453 OPC_DALIGN
= (0x08 << 6) | OPC_DBSHFL
, /* 01.bp */
454 OPC_DALIGN_END
= (0x0F << 6) | OPC_DBSHFL
, /* 01.000 to 01.111 */
455 OPC_DBITSWAP
= (0x00 << 6) | OPC_DBSHFL
, /* 00000 */
458 /* MIPS DSP REGIMM opcodes */
460 OPC_BPOSGE32
= (0x1C << 16) | OPC_REGIMM
,
461 OPC_BPOSGE64
= (0x1D << 16) | OPC_REGIMM
,
464 #define MASK_LX(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
467 OPC_LBUX
= (0x06 << 6) | OPC_LX_DSP
,
468 OPC_LHX
= (0x04 << 6) | OPC_LX_DSP
,
469 OPC_LWX
= (0x00 << 6) | OPC_LX_DSP
,
470 OPC_LDX
= (0x08 << 6) | OPC_LX_DSP
,
473 #define MASK_ADDU_QB(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
475 /* MIPS DSP Arithmetic Sub-class */
476 OPC_ADDQ_PH
= (0x0A << 6) | OPC_ADDU_QB_DSP
,
477 OPC_ADDQ_S_PH
= (0x0E << 6) | OPC_ADDU_QB_DSP
,
478 OPC_ADDQ_S_W
= (0x16 << 6) | OPC_ADDU_QB_DSP
,
479 OPC_ADDU_QB
= (0x00 << 6) | OPC_ADDU_QB_DSP
,
480 OPC_ADDU_S_QB
= (0x04 << 6) | OPC_ADDU_QB_DSP
,
481 OPC_ADDU_PH
= (0x08 << 6) | OPC_ADDU_QB_DSP
,
482 OPC_ADDU_S_PH
= (0x0C << 6) | OPC_ADDU_QB_DSP
,
483 OPC_SUBQ_PH
= (0x0B << 6) | OPC_ADDU_QB_DSP
,
484 OPC_SUBQ_S_PH
= (0x0F << 6) | OPC_ADDU_QB_DSP
,
485 OPC_SUBQ_S_W
= (0x17 << 6) | OPC_ADDU_QB_DSP
,
486 OPC_SUBU_QB
= (0x01 << 6) | OPC_ADDU_QB_DSP
,
487 OPC_SUBU_S_QB
= (0x05 << 6) | OPC_ADDU_QB_DSP
,
488 OPC_SUBU_PH
= (0x09 << 6) | OPC_ADDU_QB_DSP
,
489 OPC_SUBU_S_PH
= (0x0D << 6) | OPC_ADDU_QB_DSP
,
490 OPC_ADDSC
= (0x10 << 6) | OPC_ADDU_QB_DSP
,
491 OPC_ADDWC
= (0x11 << 6) | OPC_ADDU_QB_DSP
,
492 OPC_MODSUB
= (0x12 << 6) | OPC_ADDU_QB_DSP
,
493 OPC_RADDU_W_QB
= (0x14 << 6) | OPC_ADDU_QB_DSP
,
494 /* MIPS DSP Multiply Sub-class insns */
495 OPC_MULEU_S_PH_QBL
= (0x06 << 6) | OPC_ADDU_QB_DSP
,
496 OPC_MULEU_S_PH_QBR
= (0x07 << 6) | OPC_ADDU_QB_DSP
,
497 OPC_MULQ_RS_PH
= (0x1F << 6) | OPC_ADDU_QB_DSP
,
498 OPC_MULEQ_S_W_PHL
= (0x1C << 6) | OPC_ADDU_QB_DSP
,
499 OPC_MULEQ_S_W_PHR
= (0x1D << 6) | OPC_ADDU_QB_DSP
,
500 OPC_MULQ_S_PH
= (0x1E << 6) | OPC_ADDU_QB_DSP
,
503 #define OPC_ADDUH_QB_DSP OPC_MULT_G_2E
504 #define MASK_ADDUH_QB(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
506 /* MIPS DSP Arithmetic Sub-class */
507 OPC_ADDUH_QB
= (0x00 << 6) | OPC_ADDUH_QB_DSP
,
508 OPC_ADDUH_R_QB
= (0x02 << 6) | OPC_ADDUH_QB_DSP
,
509 OPC_ADDQH_PH
= (0x08 << 6) | OPC_ADDUH_QB_DSP
,
510 OPC_ADDQH_R_PH
= (0x0A << 6) | OPC_ADDUH_QB_DSP
,
511 OPC_ADDQH_W
= (0x10 << 6) | OPC_ADDUH_QB_DSP
,
512 OPC_ADDQH_R_W
= (0x12 << 6) | OPC_ADDUH_QB_DSP
,
513 OPC_SUBUH_QB
= (0x01 << 6) | OPC_ADDUH_QB_DSP
,
514 OPC_SUBUH_R_QB
= (0x03 << 6) | OPC_ADDUH_QB_DSP
,
515 OPC_SUBQH_PH
= (0x09 << 6) | OPC_ADDUH_QB_DSP
,
516 OPC_SUBQH_R_PH
= (0x0B << 6) | OPC_ADDUH_QB_DSP
,
517 OPC_SUBQH_W
= (0x11 << 6) | OPC_ADDUH_QB_DSP
,
518 OPC_SUBQH_R_W
= (0x13 << 6) | OPC_ADDUH_QB_DSP
,
519 /* MIPS DSP Multiply Sub-class insns */
520 OPC_MUL_PH
= (0x0C << 6) | OPC_ADDUH_QB_DSP
,
521 OPC_MUL_S_PH
= (0x0E << 6) | OPC_ADDUH_QB_DSP
,
522 OPC_MULQ_S_W
= (0x16 << 6) | OPC_ADDUH_QB_DSP
,
523 OPC_MULQ_RS_W
= (0x17 << 6) | OPC_ADDUH_QB_DSP
,
526 #define MASK_ABSQ_S_PH(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
528 /* MIPS DSP Arithmetic Sub-class */
529 OPC_ABSQ_S_QB
= (0x01 << 6) | OPC_ABSQ_S_PH_DSP
,
530 OPC_ABSQ_S_PH
= (0x09 << 6) | OPC_ABSQ_S_PH_DSP
,
531 OPC_ABSQ_S_W
= (0x11 << 6) | OPC_ABSQ_S_PH_DSP
,
532 OPC_PRECEQ_W_PHL
= (0x0C << 6) | OPC_ABSQ_S_PH_DSP
,
533 OPC_PRECEQ_W_PHR
= (0x0D << 6) | OPC_ABSQ_S_PH_DSP
,
534 OPC_PRECEQU_PH_QBL
= (0x04 << 6) | OPC_ABSQ_S_PH_DSP
,
535 OPC_PRECEQU_PH_QBR
= (0x05 << 6) | OPC_ABSQ_S_PH_DSP
,
536 OPC_PRECEQU_PH_QBLA
= (0x06 << 6) | OPC_ABSQ_S_PH_DSP
,
537 OPC_PRECEQU_PH_QBRA
= (0x07 << 6) | OPC_ABSQ_S_PH_DSP
,
538 OPC_PRECEU_PH_QBL
= (0x1C << 6) | OPC_ABSQ_S_PH_DSP
,
539 OPC_PRECEU_PH_QBR
= (0x1D << 6) | OPC_ABSQ_S_PH_DSP
,
540 OPC_PRECEU_PH_QBLA
= (0x1E << 6) | OPC_ABSQ_S_PH_DSP
,
541 OPC_PRECEU_PH_QBRA
= (0x1F << 6) | OPC_ABSQ_S_PH_DSP
,
542 /* DSP Bit/Manipulation Sub-class */
543 OPC_BITREV
= (0x1B << 6) | OPC_ABSQ_S_PH_DSP
,
544 OPC_REPL_QB
= (0x02 << 6) | OPC_ABSQ_S_PH_DSP
,
545 OPC_REPLV_QB
= (0x03 << 6) | OPC_ABSQ_S_PH_DSP
,
546 OPC_REPL_PH
= (0x0A << 6) | OPC_ABSQ_S_PH_DSP
,
547 OPC_REPLV_PH
= (0x0B << 6) | OPC_ABSQ_S_PH_DSP
,
550 #define MASK_CMPU_EQ_QB(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
552 /* MIPS DSP Arithmetic Sub-class */
553 OPC_PRECR_QB_PH
= (0x0D << 6) | OPC_CMPU_EQ_QB_DSP
,
554 OPC_PRECRQ_QB_PH
= (0x0C << 6) | OPC_CMPU_EQ_QB_DSP
,
555 OPC_PRECR_SRA_PH_W
= (0x1E << 6) | OPC_CMPU_EQ_QB_DSP
,
556 OPC_PRECR_SRA_R_PH_W
= (0x1F << 6) | OPC_CMPU_EQ_QB_DSP
,
557 OPC_PRECRQ_PH_W
= (0x14 << 6) | OPC_CMPU_EQ_QB_DSP
,
558 OPC_PRECRQ_RS_PH_W
= (0x15 << 6) | OPC_CMPU_EQ_QB_DSP
,
559 OPC_PRECRQU_S_QB_PH
= (0x0F << 6) | OPC_CMPU_EQ_QB_DSP
,
560 /* DSP Compare-Pick Sub-class */
561 OPC_CMPU_EQ_QB
= (0x00 << 6) | OPC_CMPU_EQ_QB_DSP
,
562 OPC_CMPU_LT_QB
= (0x01 << 6) | OPC_CMPU_EQ_QB_DSP
,
563 OPC_CMPU_LE_QB
= (0x02 << 6) | OPC_CMPU_EQ_QB_DSP
,
564 OPC_CMPGU_EQ_QB
= (0x04 << 6) | OPC_CMPU_EQ_QB_DSP
,
565 OPC_CMPGU_LT_QB
= (0x05 << 6) | OPC_CMPU_EQ_QB_DSP
,
566 OPC_CMPGU_LE_QB
= (0x06 << 6) | OPC_CMPU_EQ_QB_DSP
,
567 OPC_CMPGDU_EQ_QB
= (0x18 << 6) | OPC_CMPU_EQ_QB_DSP
,
568 OPC_CMPGDU_LT_QB
= (0x19 << 6) | OPC_CMPU_EQ_QB_DSP
,
569 OPC_CMPGDU_LE_QB
= (0x1A << 6) | OPC_CMPU_EQ_QB_DSP
,
570 OPC_CMP_EQ_PH
= (0x08 << 6) | OPC_CMPU_EQ_QB_DSP
,
571 OPC_CMP_LT_PH
= (0x09 << 6) | OPC_CMPU_EQ_QB_DSP
,
572 OPC_CMP_LE_PH
= (0x0A << 6) | OPC_CMPU_EQ_QB_DSP
,
573 OPC_PICK_QB
= (0x03 << 6) | OPC_CMPU_EQ_QB_DSP
,
574 OPC_PICK_PH
= (0x0B << 6) | OPC_CMPU_EQ_QB_DSP
,
575 OPC_PACKRL_PH
= (0x0E << 6) | OPC_CMPU_EQ_QB_DSP
,
578 #define MASK_SHLL_QB(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
580 /* MIPS DSP GPR-Based Shift Sub-class */
581 OPC_SHLL_QB
= (0x00 << 6) | OPC_SHLL_QB_DSP
,
582 OPC_SHLLV_QB
= (0x02 << 6) | OPC_SHLL_QB_DSP
,
583 OPC_SHLL_PH
= (0x08 << 6) | OPC_SHLL_QB_DSP
,
584 OPC_SHLLV_PH
= (0x0A << 6) | OPC_SHLL_QB_DSP
,
585 OPC_SHLL_S_PH
= (0x0C << 6) | OPC_SHLL_QB_DSP
,
586 OPC_SHLLV_S_PH
= (0x0E << 6) | OPC_SHLL_QB_DSP
,
587 OPC_SHLL_S_W
= (0x14 << 6) | OPC_SHLL_QB_DSP
,
588 OPC_SHLLV_S_W
= (0x16 << 6) | OPC_SHLL_QB_DSP
,
589 OPC_SHRL_QB
= (0x01 << 6) | OPC_SHLL_QB_DSP
,
590 OPC_SHRLV_QB
= (0x03 << 6) | OPC_SHLL_QB_DSP
,
591 OPC_SHRL_PH
= (0x19 << 6) | OPC_SHLL_QB_DSP
,
592 OPC_SHRLV_PH
= (0x1B << 6) | OPC_SHLL_QB_DSP
,
593 OPC_SHRA_QB
= (0x04 << 6) | OPC_SHLL_QB_DSP
,
594 OPC_SHRA_R_QB
= (0x05 << 6) | OPC_SHLL_QB_DSP
,
595 OPC_SHRAV_QB
= (0x06 << 6) | OPC_SHLL_QB_DSP
,
596 OPC_SHRAV_R_QB
= (0x07 << 6) | OPC_SHLL_QB_DSP
,
597 OPC_SHRA_PH
= (0x09 << 6) | OPC_SHLL_QB_DSP
,
598 OPC_SHRAV_PH
= (0x0B << 6) | OPC_SHLL_QB_DSP
,
599 OPC_SHRA_R_PH
= (0x0D << 6) | OPC_SHLL_QB_DSP
,
600 OPC_SHRAV_R_PH
= (0x0F << 6) | OPC_SHLL_QB_DSP
,
601 OPC_SHRA_R_W
= (0x15 << 6) | OPC_SHLL_QB_DSP
,
602 OPC_SHRAV_R_W
= (0x17 << 6) | OPC_SHLL_QB_DSP
,
605 #define MASK_DPA_W_PH(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
607 /* MIPS DSP Multiply Sub-class insns */
608 OPC_DPAU_H_QBL
= (0x03 << 6) | OPC_DPA_W_PH_DSP
,
609 OPC_DPAU_H_QBR
= (0x07 << 6) | OPC_DPA_W_PH_DSP
,
610 OPC_DPSU_H_QBL
= (0x0B << 6) | OPC_DPA_W_PH_DSP
,
611 OPC_DPSU_H_QBR
= (0x0F << 6) | OPC_DPA_W_PH_DSP
,
612 OPC_DPA_W_PH
= (0x00 << 6) | OPC_DPA_W_PH_DSP
,
613 OPC_DPAX_W_PH
= (0x08 << 6) | OPC_DPA_W_PH_DSP
,
614 OPC_DPAQ_S_W_PH
= (0x04 << 6) | OPC_DPA_W_PH_DSP
,
615 OPC_DPAQX_S_W_PH
= (0x18 << 6) | OPC_DPA_W_PH_DSP
,
616 OPC_DPAQX_SA_W_PH
= (0x1A << 6) | OPC_DPA_W_PH_DSP
,
617 OPC_DPS_W_PH
= (0x01 << 6) | OPC_DPA_W_PH_DSP
,
618 OPC_DPSX_W_PH
= (0x09 << 6) | OPC_DPA_W_PH_DSP
,
619 OPC_DPSQ_S_W_PH
= (0x05 << 6) | OPC_DPA_W_PH_DSP
,
620 OPC_DPSQX_S_W_PH
= (0x19 << 6) | OPC_DPA_W_PH_DSP
,
621 OPC_DPSQX_SA_W_PH
= (0x1B << 6) | OPC_DPA_W_PH_DSP
,
622 OPC_MULSAQ_S_W_PH
= (0x06 << 6) | OPC_DPA_W_PH_DSP
,
623 OPC_DPAQ_SA_L_W
= (0x0C << 6) | OPC_DPA_W_PH_DSP
,
624 OPC_DPSQ_SA_L_W
= (0x0D << 6) | OPC_DPA_W_PH_DSP
,
625 OPC_MAQ_S_W_PHL
= (0x14 << 6) | OPC_DPA_W_PH_DSP
,
626 OPC_MAQ_S_W_PHR
= (0x16 << 6) | OPC_DPA_W_PH_DSP
,
627 OPC_MAQ_SA_W_PHL
= (0x10 << 6) | OPC_DPA_W_PH_DSP
,
628 OPC_MAQ_SA_W_PHR
= (0x12 << 6) | OPC_DPA_W_PH_DSP
,
629 OPC_MULSA_W_PH
= (0x02 << 6) | OPC_DPA_W_PH_DSP
,
632 #define MASK_INSV(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
634 /* DSP Bit/Manipulation Sub-class */
635 OPC_INSV
= (0x00 << 6) | OPC_INSV_DSP
,
638 #define MASK_APPEND(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
640 /* MIPS DSP Append Sub-class */
641 OPC_APPEND
= (0x00 << 6) | OPC_APPEND_DSP
,
642 OPC_PREPEND
= (0x01 << 6) | OPC_APPEND_DSP
,
643 OPC_BALIGN
= (0x10 << 6) | OPC_APPEND_DSP
,
646 #define MASK_EXTR_W(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
648 /* MIPS DSP Accumulator and DSPControl Access Sub-class */
649 OPC_EXTR_W
= (0x00 << 6) | OPC_EXTR_W_DSP
,
650 OPC_EXTR_R_W
= (0x04 << 6) | OPC_EXTR_W_DSP
,
651 OPC_EXTR_RS_W
= (0x06 << 6) | OPC_EXTR_W_DSP
,
652 OPC_EXTR_S_H
= (0x0E << 6) | OPC_EXTR_W_DSP
,
653 OPC_EXTRV_S_H
= (0x0F << 6) | OPC_EXTR_W_DSP
,
654 OPC_EXTRV_W
= (0x01 << 6) | OPC_EXTR_W_DSP
,
655 OPC_EXTRV_R_W
= (0x05 << 6) | OPC_EXTR_W_DSP
,
656 OPC_EXTRV_RS_W
= (0x07 << 6) | OPC_EXTR_W_DSP
,
657 OPC_EXTP
= (0x02 << 6) | OPC_EXTR_W_DSP
,
658 OPC_EXTPV
= (0x03 << 6) | OPC_EXTR_W_DSP
,
659 OPC_EXTPDP
= (0x0A << 6) | OPC_EXTR_W_DSP
,
660 OPC_EXTPDPV
= (0x0B << 6) | OPC_EXTR_W_DSP
,
661 OPC_SHILO
= (0x1A << 6) | OPC_EXTR_W_DSP
,
662 OPC_SHILOV
= (0x1B << 6) | OPC_EXTR_W_DSP
,
663 OPC_MTHLIP
= (0x1F << 6) | OPC_EXTR_W_DSP
,
664 OPC_WRDSP
= (0x13 << 6) | OPC_EXTR_W_DSP
,
665 OPC_RDDSP
= (0x12 << 6) | OPC_EXTR_W_DSP
,
668 #define MASK_ABSQ_S_QH(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
670 /* MIPS DSP Arithmetic Sub-class */
671 OPC_PRECEQ_L_PWL
= (0x14 << 6) | OPC_ABSQ_S_QH_DSP
,
672 OPC_PRECEQ_L_PWR
= (0x15 << 6) | OPC_ABSQ_S_QH_DSP
,
673 OPC_PRECEQ_PW_QHL
= (0x0C << 6) | OPC_ABSQ_S_QH_DSP
,
674 OPC_PRECEQ_PW_QHR
= (0x0D << 6) | OPC_ABSQ_S_QH_DSP
,
675 OPC_PRECEQ_PW_QHLA
= (0x0E << 6) | OPC_ABSQ_S_QH_DSP
,
676 OPC_PRECEQ_PW_QHRA
= (0x0F << 6) | OPC_ABSQ_S_QH_DSP
,
677 OPC_PRECEQU_QH_OBL
= (0x04 << 6) | OPC_ABSQ_S_QH_DSP
,
678 OPC_PRECEQU_QH_OBR
= (0x05 << 6) | OPC_ABSQ_S_QH_DSP
,
679 OPC_PRECEQU_QH_OBLA
= (0x06 << 6) | OPC_ABSQ_S_QH_DSP
,
680 OPC_PRECEQU_QH_OBRA
= (0x07 << 6) | OPC_ABSQ_S_QH_DSP
,
681 OPC_PRECEU_QH_OBL
= (0x1C << 6) | OPC_ABSQ_S_QH_DSP
,
682 OPC_PRECEU_QH_OBR
= (0x1D << 6) | OPC_ABSQ_S_QH_DSP
,
683 OPC_PRECEU_QH_OBLA
= (0x1E << 6) | OPC_ABSQ_S_QH_DSP
,
684 OPC_PRECEU_QH_OBRA
= (0x1F << 6) | OPC_ABSQ_S_QH_DSP
,
685 OPC_ABSQ_S_OB
= (0x01 << 6) | OPC_ABSQ_S_QH_DSP
,
686 OPC_ABSQ_S_PW
= (0x11 << 6) | OPC_ABSQ_S_QH_DSP
,
687 OPC_ABSQ_S_QH
= (0x09 << 6) | OPC_ABSQ_S_QH_DSP
,
688 /* DSP Bit/Manipulation Sub-class */
689 OPC_REPL_OB
= (0x02 << 6) | OPC_ABSQ_S_QH_DSP
,
690 OPC_REPL_PW
= (0x12 << 6) | OPC_ABSQ_S_QH_DSP
,
691 OPC_REPL_QH
= (0x0A << 6) | OPC_ABSQ_S_QH_DSP
,
692 OPC_REPLV_OB
= (0x03 << 6) | OPC_ABSQ_S_QH_DSP
,
693 OPC_REPLV_PW
= (0x13 << 6) | OPC_ABSQ_S_QH_DSP
,
694 OPC_REPLV_QH
= (0x0B << 6) | OPC_ABSQ_S_QH_DSP
,
697 #define MASK_ADDU_OB(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
699 /* MIPS DSP Multiply Sub-class insns */
700 OPC_MULEQ_S_PW_QHL
= (0x1C << 6) | OPC_ADDU_OB_DSP
,
701 OPC_MULEQ_S_PW_QHR
= (0x1D << 6) | OPC_ADDU_OB_DSP
,
702 OPC_MULEU_S_QH_OBL
= (0x06 << 6) | OPC_ADDU_OB_DSP
,
703 OPC_MULEU_S_QH_OBR
= (0x07 << 6) | OPC_ADDU_OB_DSP
,
704 OPC_MULQ_RS_QH
= (0x1F << 6) | OPC_ADDU_OB_DSP
,
705 /* MIPS DSP Arithmetic Sub-class */
706 OPC_RADDU_L_OB
= (0x14 << 6) | OPC_ADDU_OB_DSP
,
707 OPC_SUBQ_PW
= (0x13 << 6) | OPC_ADDU_OB_DSP
,
708 OPC_SUBQ_S_PW
= (0x17 << 6) | OPC_ADDU_OB_DSP
,
709 OPC_SUBQ_QH
= (0x0B << 6) | OPC_ADDU_OB_DSP
,
710 OPC_SUBQ_S_QH
= (0x0F << 6) | OPC_ADDU_OB_DSP
,
711 OPC_SUBU_OB
= (0x01 << 6) | OPC_ADDU_OB_DSP
,
712 OPC_SUBU_S_OB
= (0x05 << 6) | OPC_ADDU_OB_DSP
,
713 OPC_SUBU_QH
= (0x09 << 6) | OPC_ADDU_OB_DSP
,
714 OPC_SUBU_S_QH
= (0x0D << 6) | OPC_ADDU_OB_DSP
,
715 OPC_SUBUH_OB
= (0x19 << 6) | OPC_ADDU_OB_DSP
,
716 OPC_SUBUH_R_OB
= (0x1B << 6) | OPC_ADDU_OB_DSP
,
717 OPC_ADDQ_PW
= (0x12 << 6) | OPC_ADDU_OB_DSP
,
718 OPC_ADDQ_S_PW
= (0x16 << 6) | OPC_ADDU_OB_DSP
,
719 OPC_ADDQ_QH
= (0x0A << 6) | OPC_ADDU_OB_DSP
,
720 OPC_ADDQ_S_QH
= (0x0E << 6) | OPC_ADDU_OB_DSP
,
721 OPC_ADDU_OB
= (0x00 << 6) | OPC_ADDU_OB_DSP
,
722 OPC_ADDU_S_OB
= (0x04 << 6) | OPC_ADDU_OB_DSP
,
723 OPC_ADDU_QH
= (0x08 << 6) | OPC_ADDU_OB_DSP
,
724 OPC_ADDU_S_QH
= (0x0C << 6) | OPC_ADDU_OB_DSP
,
725 OPC_ADDUH_OB
= (0x18 << 6) | OPC_ADDU_OB_DSP
,
726 OPC_ADDUH_R_OB
= (0x1A << 6) | OPC_ADDU_OB_DSP
,
729 #define MASK_CMPU_EQ_OB(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
731 /* DSP Compare-Pick Sub-class */
732 OPC_CMP_EQ_PW
= (0x10 << 6) | OPC_CMPU_EQ_OB_DSP
,
733 OPC_CMP_LT_PW
= (0x11 << 6) | OPC_CMPU_EQ_OB_DSP
,
734 OPC_CMP_LE_PW
= (0x12 << 6) | OPC_CMPU_EQ_OB_DSP
,
735 OPC_CMP_EQ_QH
= (0x08 << 6) | OPC_CMPU_EQ_OB_DSP
,
736 OPC_CMP_LT_QH
= (0x09 << 6) | OPC_CMPU_EQ_OB_DSP
,
737 OPC_CMP_LE_QH
= (0x0A << 6) | OPC_CMPU_EQ_OB_DSP
,
738 OPC_CMPGDU_EQ_OB
= (0x18 << 6) | OPC_CMPU_EQ_OB_DSP
,
739 OPC_CMPGDU_LT_OB
= (0x19 << 6) | OPC_CMPU_EQ_OB_DSP
,
740 OPC_CMPGDU_LE_OB
= (0x1A << 6) | OPC_CMPU_EQ_OB_DSP
,
741 OPC_CMPGU_EQ_OB
= (0x04 << 6) | OPC_CMPU_EQ_OB_DSP
,
742 OPC_CMPGU_LT_OB
= (0x05 << 6) | OPC_CMPU_EQ_OB_DSP
,
743 OPC_CMPGU_LE_OB
= (0x06 << 6) | OPC_CMPU_EQ_OB_DSP
,
744 OPC_CMPU_EQ_OB
= (0x00 << 6) | OPC_CMPU_EQ_OB_DSP
,
745 OPC_CMPU_LT_OB
= (0x01 << 6) | OPC_CMPU_EQ_OB_DSP
,
746 OPC_CMPU_LE_OB
= (0x02 << 6) | OPC_CMPU_EQ_OB_DSP
,
747 OPC_PACKRL_PW
= (0x0E << 6) | OPC_CMPU_EQ_OB_DSP
,
748 OPC_PICK_OB
= (0x03 << 6) | OPC_CMPU_EQ_OB_DSP
,
749 OPC_PICK_PW
= (0x13 << 6) | OPC_CMPU_EQ_OB_DSP
,
750 OPC_PICK_QH
= (0x0B << 6) | OPC_CMPU_EQ_OB_DSP
,
751 /* MIPS DSP Arithmetic Sub-class */
752 OPC_PRECR_OB_QH
= (0x0D << 6) | OPC_CMPU_EQ_OB_DSP
,
753 OPC_PRECR_SRA_QH_PW
= (0x1E << 6) | OPC_CMPU_EQ_OB_DSP
,
754 OPC_PRECR_SRA_R_QH_PW
= (0x1F << 6) | OPC_CMPU_EQ_OB_DSP
,
755 OPC_PRECRQ_OB_QH
= (0x0C << 6) | OPC_CMPU_EQ_OB_DSP
,
756 OPC_PRECRQ_PW_L
= (0x1C << 6) | OPC_CMPU_EQ_OB_DSP
,
757 OPC_PRECRQ_QH_PW
= (0x14 << 6) | OPC_CMPU_EQ_OB_DSP
,
758 OPC_PRECRQ_RS_QH_PW
= (0x15 << 6) | OPC_CMPU_EQ_OB_DSP
,
759 OPC_PRECRQU_S_OB_QH
= (0x0F << 6) | OPC_CMPU_EQ_OB_DSP
,
762 #define MASK_DAPPEND(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
764 /* DSP Append Sub-class */
765 OPC_DAPPEND
= (0x00 << 6) | OPC_DAPPEND_DSP
,
766 OPC_PREPENDD
= (0x03 << 6) | OPC_DAPPEND_DSP
,
767 OPC_PREPENDW
= (0x01 << 6) | OPC_DAPPEND_DSP
,
768 OPC_DBALIGN
= (0x10 << 6) | OPC_DAPPEND_DSP
,
771 #define MASK_DEXTR_W(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
773 /* MIPS DSP Accumulator and DSPControl Access Sub-class */
774 OPC_DMTHLIP
= (0x1F << 6) | OPC_DEXTR_W_DSP
,
775 OPC_DSHILO
= (0x1A << 6) | OPC_DEXTR_W_DSP
,
776 OPC_DEXTP
= (0x02 << 6) | OPC_DEXTR_W_DSP
,
777 OPC_DEXTPDP
= (0x0A << 6) | OPC_DEXTR_W_DSP
,
778 OPC_DEXTPDPV
= (0x0B << 6) | OPC_DEXTR_W_DSP
,
779 OPC_DEXTPV
= (0x03 << 6) | OPC_DEXTR_W_DSP
,
780 OPC_DEXTR_L
= (0x10 << 6) | OPC_DEXTR_W_DSP
,
781 OPC_DEXTR_R_L
= (0x14 << 6) | OPC_DEXTR_W_DSP
,
782 OPC_DEXTR_RS_L
= (0x16 << 6) | OPC_DEXTR_W_DSP
,
783 OPC_DEXTR_W
= (0x00 << 6) | OPC_DEXTR_W_DSP
,
784 OPC_DEXTR_R_W
= (0x04 << 6) | OPC_DEXTR_W_DSP
,
785 OPC_DEXTR_RS_W
= (0x06 << 6) | OPC_DEXTR_W_DSP
,
786 OPC_DEXTR_S_H
= (0x0E << 6) | OPC_DEXTR_W_DSP
,
787 OPC_DEXTRV_L
= (0x11 << 6) | OPC_DEXTR_W_DSP
,
788 OPC_DEXTRV_R_L
= (0x15 << 6) | OPC_DEXTR_W_DSP
,
789 OPC_DEXTRV_RS_L
= (0x17 << 6) | OPC_DEXTR_W_DSP
,
790 OPC_DEXTRV_S_H
= (0x0F << 6) | OPC_DEXTR_W_DSP
,
791 OPC_DEXTRV_W
= (0x01 << 6) | OPC_DEXTR_W_DSP
,
792 OPC_DEXTRV_R_W
= (0x05 << 6) | OPC_DEXTR_W_DSP
,
793 OPC_DEXTRV_RS_W
= (0x07 << 6) | OPC_DEXTR_W_DSP
,
794 OPC_DSHILOV
= (0x1B << 6) | OPC_DEXTR_W_DSP
,
797 #define MASK_DINSV(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
799 /* DSP Bit/Manipulation Sub-class */
800 OPC_DINSV
= (0x00 << 6) | OPC_DINSV_DSP
,
803 #define MASK_DPAQ_W_QH(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
805 /* MIPS DSP Multiply Sub-class insns */
806 OPC_DMADD
= (0x19 << 6) | OPC_DPAQ_W_QH_DSP
,
807 OPC_DMADDU
= (0x1D << 6) | OPC_DPAQ_W_QH_DSP
,
808 OPC_DMSUB
= (0x1B << 6) | OPC_DPAQ_W_QH_DSP
,
809 OPC_DMSUBU
= (0x1F << 6) | OPC_DPAQ_W_QH_DSP
,
810 OPC_DPA_W_QH
= (0x00 << 6) | OPC_DPAQ_W_QH_DSP
,
811 OPC_DPAQ_S_W_QH
= (0x04 << 6) | OPC_DPAQ_W_QH_DSP
,
812 OPC_DPAQ_SA_L_PW
= (0x0C << 6) | OPC_DPAQ_W_QH_DSP
,
813 OPC_DPAU_H_OBL
= (0x03 << 6) | OPC_DPAQ_W_QH_DSP
,
814 OPC_DPAU_H_OBR
= (0x07 << 6) | OPC_DPAQ_W_QH_DSP
,
815 OPC_DPS_W_QH
= (0x01 << 6) | OPC_DPAQ_W_QH_DSP
,
816 OPC_DPSQ_S_W_QH
= (0x05 << 6) | OPC_DPAQ_W_QH_DSP
,
817 OPC_DPSQ_SA_L_PW
= (0x0D << 6) | OPC_DPAQ_W_QH_DSP
,
818 OPC_DPSU_H_OBL
= (0x0B << 6) | OPC_DPAQ_W_QH_DSP
,
819 OPC_DPSU_H_OBR
= (0x0F << 6) | OPC_DPAQ_W_QH_DSP
,
820 OPC_MAQ_S_L_PWL
= (0x1C << 6) | OPC_DPAQ_W_QH_DSP
,
821 OPC_MAQ_S_L_PWR
= (0x1E << 6) | OPC_DPAQ_W_QH_DSP
,
822 OPC_MAQ_S_W_QHLL
= (0x14 << 6) | OPC_DPAQ_W_QH_DSP
,
823 OPC_MAQ_SA_W_QHLL
= (0x10 << 6) | OPC_DPAQ_W_QH_DSP
,
824 OPC_MAQ_S_W_QHLR
= (0x15 << 6) | OPC_DPAQ_W_QH_DSP
,
825 OPC_MAQ_SA_W_QHLR
= (0x11 << 6) | OPC_DPAQ_W_QH_DSP
,
826 OPC_MAQ_S_W_QHRL
= (0x16 << 6) | OPC_DPAQ_W_QH_DSP
,
827 OPC_MAQ_SA_W_QHRL
= (0x12 << 6) | OPC_DPAQ_W_QH_DSP
,
828 OPC_MAQ_S_W_QHRR
= (0x17 << 6) | OPC_DPAQ_W_QH_DSP
,
829 OPC_MAQ_SA_W_QHRR
= (0x13 << 6) | OPC_DPAQ_W_QH_DSP
,
830 OPC_MULSAQ_S_L_PW
= (0x0E << 6) | OPC_DPAQ_W_QH_DSP
,
831 OPC_MULSAQ_S_W_QH
= (0x06 << 6) | OPC_DPAQ_W_QH_DSP
,
834 #define MASK_SHLL_OB(op) (MASK_SPECIAL3(op) | (op & (0x1F << 6)))
836 /* MIPS DSP GPR-Based Shift Sub-class */
837 OPC_SHLL_PW
= (0x10 << 6) | OPC_SHLL_OB_DSP
,
838 OPC_SHLL_S_PW
= (0x14 << 6) | OPC_SHLL_OB_DSP
,
839 OPC_SHLLV_OB
= (0x02 << 6) | OPC_SHLL_OB_DSP
,
840 OPC_SHLLV_PW
= (0x12 << 6) | OPC_SHLL_OB_DSP
,
841 OPC_SHLLV_S_PW
= (0x16 << 6) | OPC_SHLL_OB_DSP
,
842 OPC_SHLLV_QH
= (0x0A << 6) | OPC_SHLL_OB_DSP
,
843 OPC_SHLLV_S_QH
= (0x0E << 6) | OPC_SHLL_OB_DSP
,
844 OPC_SHRA_PW
= (0x11 << 6) | OPC_SHLL_OB_DSP
,
845 OPC_SHRA_R_PW
= (0x15 << 6) | OPC_SHLL_OB_DSP
,
846 OPC_SHRAV_OB
= (0x06 << 6) | OPC_SHLL_OB_DSP
,
847 OPC_SHRAV_R_OB
= (0x07 << 6) | OPC_SHLL_OB_DSP
,
848 OPC_SHRAV_PW
= (0x13 << 6) | OPC_SHLL_OB_DSP
,
849 OPC_SHRAV_R_PW
= (0x17 << 6) | OPC_SHLL_OB_DSP
,
850 OPC_SHRAV_QH
= (0x0B << 6) | OPC_SHLL_OB_DSP
,
851 OPC_SHRAV_R_QH
= (0x0F << 6) | OPC_SHLL_OB_DSP
,
852 OPC_SHRLV_OB
= (0x03 << 6) | OPC_SHLL_OB_DSP
,
853 OPC_SHRLV_QH
= (0x1B << 6) | OPC_SHLL_OB_DSP
,
854 OPC_SHLL_OB
= (0x00 << 6) | OPC_SHLL_OB_DSP
,
855 OPC_SHLL_QH
= (0x08 << 6) | OPC_SHLL_OB_DSP
,
856 OPC_SHLL_S_QH
= (0x0C << 6) | OPC_SHLL_OB_DSP
,
857 OPC_SHRA_OB
= (0x04 << 6) | OPC_SHLL_OB_DSP
,
858 OPC_SHRA_R_OB
= (0x05 << 6) | OPC_SHLL_OB_DSP
,
859 OPC_SHRA_QH
= (0x09 << 6) | OPC_SHLL_OB_DSP
,
860 OPC_SHRA_R_QH
= (0x0D << 6) | OPC_SHLL_OB_DSP
,
861 OPC_SHRL_OB
= (0x01 << 6) | OPC_SHLL_OB_DSP
,
862 OPC_SHRL_QH
= (0x19 << 6) | OPC_SHLL_OB_DSP
,
865 /* Coprocessor 0 (rs field) */
866 #define MASK_CP0(op) MASK_OP_MAJOR(op) | (op & (0x1F << 21))
869 OPC_MFC0
= (0x00 << 21) | OPC_CP0
,
870 OPC_DMFC0
= (0x01 << 21) | OPC_CP0
,
871 OPC_MTC0
= (0x04 << 21) | OPC_CP0
,
872 OPC_DMTC0
= (0x05 << 21) | OPC_CP0
,
873 OPC_MFTR
= (0x08 << 21) | OPC_CP0
,
874 OPC_RDPGPR
= (0x0A << 21) | OPC_CP0
,
875 OPC_MFMC0
= (0x0B << 21) | OPC_CP0
,
876 OPC_MTTR
= (0x0C << 21) | OPC_CP0
,
877 OPC_WRPGPR
= (0x0E << 21) | OPC_CP0
,
878 OPC_C0
= (0x10 << 21) | OPC_CP0
,
879 OPC_C0_FIRST
= (0x10 << 21) | OPC_CP0
,
880 OPC_C0_LAST
= (0x1F << 21) | OPC_CP0
,
884 #define MASK_MFMC0(op) MASK_CP0(op) | (op & 0xFFFF)
887 OPC_DMT
= 0x01 | (0 << 5) | (0x0F << 6) | (0x01 << 11) | OPC_MFMC0
,
888 OPC_EMT
= 0x01 | (1 << 5) | (0x0F << 6) | (0x01 << 11) | OPC_MFMC0
,
889 OPC_DVPE
= 0x01 | (0 << 5) | OPC_MFMC0
,
890 OPC_EVPE
= 0x01 | (1 << 5) | OPC_MFMC0
,
891 OPC_DI
= (0 << 5) | (0x0C << 11) | OPC_MFMC0
,
892 OPC_EI
= (1 << 5) | (0x0C << 11) | OPC_MFMC0
,
895 /* Coprocessor 0 (with rs == C0) */
896 #define MASK_C0(op) MASK_CP0(op) | (op & 0x3F)
899 OPC_TLBR
= 0x01 | OPC_C0
,
900 OPC_TLBWI
= 0x02 | OPC_C0
,
901 OPC_TLBINV
= 0x03 | OPC_C0
,
902 OPC_TLBINVF
= 0x04 | OPC_C0
,
903 OPC_TLBWR
= 0x06 | OPC_C0
,
904 OPC_TLBP
= 0x08 | OPC_C0
,
905 OPC_RFE
= 0x10 | OPC_C0
,
906 OPC_ERET
= 0x18 | OPC_C0
,
907 OPC_DERET
= 0x1F | OPC_C0
,
908 OPC_WAIT
= 0x20 | OPC_C0
,
911 /* Coprocessor 1 (rs field) */
912 #define MASK_CP1(op) MASK_OP_MAJOR(op) | (op & (0x1F << 21))
914 /* Values for the fmt field in FP instructions */
916 /* 0 - 15 are reserved */
917 FMT_S
= 16, /* single fp */
918 FMT_D
= 17, /* double fp */
919 FMT_E
= 18, /* extended fp */
920 FMT_Q
= 19, /* quad fp */
921 FMT_W
= 20, /* 32-bit fixed */
922 FMT_L
= 21, /* 64-bit fixed */
923 FMT_PS
= 22, /* paired single fp */
924 /* 23 - 31 are reserved */
928 OPC_MFC1
= (0x00 << 21) | OPC_CP1
,
929 OPC_DMFC1
= (0x01 << 21) | OPC_CP1
,
930 OPC_CFC1
= (0x02 << 21) | OPC_CP1
,
931 OPC_MFHC1
= (0x03 << 21) | OPC_CP1
,
932 OPC_MTC1
= (0x04 << 21) | OPC_CP1
,
933 OPC_DMTC1
= (0x05 << 21) | OPC_CP1
,
934 OPC_CTC1
= (0x06 << 21) | OPC_CP1
,
935 OPC_MTHC1
= (0x07 << 21) | OPC_CP1
,
936 OPC_BC1
= (0x08 << 21) | OPC_CP1
, /* bc */
937 OPC_BC1ANY2
= (0x09 << 21) | OPC_CP1
,
938 OPC_BC1ANY4
= (0x0A << 21) | OPC_CP1
,
939 OPC_BZ_V
= (0x0B << 21) | OPC_CP1
,
940 OPC_BNZ_V
= (0x0F << 21) | OPC_CP1
,
941 OPC_S_FMT
= (FMT_S
<< 21) | OPC_CP1
,
942 OPC_D_FMT
= (FMT_D
<< 21) | OPC_CP1
,
943 OPC_E_FMT
= (FMT_E
<< 21) | OPC_CP1
,
944 OPC_Q_FMT
= (FMT_Q
<< 21) | OPC_CP1
,
945 OPC_W_FMT
= (FMT_W
<< 21) | OPC_CP1
,
946 OPC_L_FMT
= (FMT_L
<< 21) | OPC_CP1
,
947 OPC_PS_FMT
= (FMT_PS
<< 21) | OPC_CP1
,
948 OPC_BC1EQZ
= (0x09 << 21) | OPC_CP1
,
949 OPC_BC1NEZ
= (0x0D << 21) | OPC_CP1
,
950 OPC_BZ_B
= (0x18 << 21) | OPC_CP1
,
951 OPC_BZ_H
= (0x19 << 21) | OPC_CP1
,
952 OPC_BZ_W
= (0x1A << 21) | OPC_CP1
,
953 OPC_BZ_D
= (0x1B << 21) | OPC_CP1
,
954 OPC_BNZ_B
= (0x1C << 21) | OPC_CP1
,
955 OPC_BNZ_H
= (0x1D << 21) | OPC_CP1
,
956 OPC_BNZ_W
= (0x1E << 21) | OPC_CP1
,
957 OPC_BNZ_D
= (0x1F << 21) | OPC_CP1
,
960 #define MASK_CP1_FUNC(op) MASK_CP1(op) | (op & 0x3F)
961 #define MASK_BC1(op) MASK_CP1(op) | (op & (0x3 << 16))
964 OPC_BC1F
= (0x00 << 16) | OPC_BC1
,
965 OPC_BC1T
= (0x01 << 16) | OPC_BC1
,
966 OPC_BC1FL
= (0x02 << 16) | OPC_BC1
,
967 OPC_BC1TL
= (0x03 << 16) | OPC_BC1
,
971 OPC_BC1FANY2
= (0x00 << 16) | OPC_BC1ANY2
,
972 OPC_BC1TANY2
= (0x01 << 16) | OPC_BC1ANY2
,
976 OPC_BC1FANY4
= (0x00 << 16) | OPC_BC1ANY4
,
977 OPC_BC1TANY4
= (0x01 << 16) | OPC_BC1ANY4
,
980 #define MASK_CP2(op) MASK_OP_MAJOR(op) | (op & (0x1F << 21))
983 OPC_MFC2
= (0x00 << 21) | OPC_CP2
,
984 OPC_DMFC2
= (0x01 << 21) | OPC_CP2
,
985 OPC_CFC2
= (0x02 << 21) | OPC_CP2
,
986 OPC_MFHC2
= (0x03 << 21) | OPC_CP2
,
987 OPC_MTC2
= (0x04 << 21) | OPC_CP2
,
988 OPC_DMTC2
= (0x05 << 21) | OPC_CP2
,
989 OPC_CTC2
= (0x06 << 21) | OPC_CP2
,
990 OPC_MTHC2
= (0x07 << 21) | OPC_CP2
,
991 OPC_BC2
= (0x08 << 21) | OPC_CP2
,
992 OPC_BC2EQZ
= (0x09 << 21) | OPC_CP2
,
993 OPC_BC2NEZ
= (0x0D << 21) | OPC_CP2
,
996 #define MASK_LMI(op) (MASK_OP_MAJOR(op) | (op & (0x1F << 21)) | (op & 0x1F))
999 OPC_PADDSH
= (24 << 21) | (0x00) | OPC_CP2
,
1000 OPC_PADDUSH
= (25 << 21) | (0x00) | OPC_CP2
,
1001 OPC_PADDH
= (26 << 21) | (0x00) | OPC_CP2
,
1002 OPC_PADDW
= (27 << 21) | (0x00) | OPC_CP2
,
1003 OPC_PADDSB
= (28 << 21) | (0x00) | OPC_CP2
,
1004 OPC_PADDUSB
= (29 << 21) | (0x00) | OPC_CP2
,
1005 OPC_PADDB
= (30 << 21) | (0x00) | OPC_CP2
,
1006 OPC_PADDD
= (31 << 21) | (0x00) | OPC_CP2
,
1008 OPC_PSUBSH
= (24 << 21) | (0x01) | OPC_CP2
,
1009 OPC_PSUBUSH
= (25 << 21) | (0x01) | OPC_CP2
,
1010 OPC_PSUBH
= (26 << 21) | (0x01) | OPC_CP2
,
1011 OPC_PSUBW
= (27 << 21) | (0x01) | OPC_CP2
,
1012 OPC_PSUBSB
= (28 << 21) | (0x01) | OPC_CP2
,
1013 OPC_PSUBUSB
= (29 << 21) | (0x01) | OPC_CP2
,
1014 OPC_PSUBB
= (30 << 21) | (0x01) | OPC_CP2
,
1015 OPC_PSUBD
= (31 << 21) | (0x01) | OPC_CP2
,
1017 OPC_PSHUFH
= (24 << 21) | (0x02) | OPC_CP2
,
1018 OPC_PACKSSWH
= (25 << 21) | (0x02) | OPC_CP2
,
1019 OPC_PACKSSHB
= (26 << 21) | (0x02) | OPC_CP2
,
1020 OPC_PACKUSHB
= (27 << 21) | (0x02) | OPC_CP2
,
1021 OPC_XOR_CP2
= (28 << 21) | (0x02) | OPC_CP2
,
1022 OPC_NOR_CP2
= (29 << 21) | (0x02) | OPC_CP2
,
1023 OPC_AND_CP2
= (30 << 21) | (0x02) | OPC_CP2
,
1024 OPC_PANDN
= (31 << 21) | (0x02) | OPC_CP2
,
1026 OPC_PUNPCKLHW
= (24 << 21) | (0x03) | OPC_CP2
,
1027 OPC_PUNPCKHHW
= (25 << 21) | (0x03) | OPC_CP2
,
1028 OPC_PUNPCKLBH
= (26 << 21) | (0x03) | OPC_CP2
,
1029 OPC_PUNPCKHBH
= (27 << 21) | (0x03) | OPC_CP2
,
1030 OPC_PINSRH_0
= (28 << 21) | (0x03) | OPC_CP2
,
1031 OPC_PINSRH_1
= (29 << 21) | (0x03) | OPC_CP2
,
1032 OPC_PINSRH_2
= (30 << 21) | (0x03) | OPC_CP2
,
1033 OPC_PINSRH_3
= (31 << 21) | (0x03) | OPC_CP2
,
1035 OPC_PAVGH
= (24 << 21) | (0x08) | OPC_CP2
,
1036 OPC_PAVGB
= (25 << 21) | (0x08) | OPC_CP2
,
1037 OPC_PMAXSH
= (26 << 21) | (0x08) | OPC_CP2
,
1038 OPC_PMINSH
= (27 << 21) | (0x08) | OPC_CP2
,
1039 OPC_PMAXUB
= (28 << 21) | (0x08) | OPC_CP2
,
1040 OPC_PMINUB
= (29 << 21) | (0x08) | OPC_CP2
,
1042 OPC_PCMPEQW
= (24 << 21) | (0x09) | OPC_CP2
,
1043 OPC_PCMPGTW
= (25 << 21) | (0x09) | OPC_CP2
,
1044 OPC_PCMPEQH
= (26 << 21) | (0x09) | OPC_CP2
,
1045 OPC_PCMPGTH
= (27 << 21) | (0x09) | OPC_CP2
,
1046 OPC_PCMPEQB
= (28 << 21) | (0x09) | OPC_CP2
,
1047 OPC_PCMPGTB
= (29 << 21) | (0x09) | OPC_CP2
,
1049 OPC_PSLLW
= (24 << 21) | (0x0A) | OPC_CP2
,
1050 OPC_PSLLH
= (25 << 21) | (0x0A) | OPC_CP2
,
1051 OPC_PMULLH
= (26 << 21) | (0x0A) | OPC_CP2
,
1052 OPC_PMULHH
= (27 << 21) | (0x0A) | OPC_CP2
,
1053 OPC_PMULUW
= (28 << 21) | (0x0A) | OPC_CP2
,
1054 OPC_PMULHUH
= (29 << 21) | (0x0A) | OPC_CP2
,
1056 OPC_PSRLW
= (24 << 21) | (0x0B) | OPC_CP2
,
1057 OPC_PSRLH
= (25 << 21) | (0x0B) | OPC_CP2
,
1058 OPC_PSRAW
= (26 << 21) | (0x0B) | OPC_CP2
,
1059 OPC_PSRAH
= (27 << 21) | (0x0B) | OPC_CP2
,
1060 OPC_PUNPCKLWD
= (28 << 21) | (0x0B) | OPC_CP2
,
1061 OPC_PUNPCKHWD
= (29 << 21) | (0x0B) | OPC_CP2
,
1063 OPC_ADDU_CP2
= (24 << 21) | (0x0C) | OPC_CP2
,
1064 OPC_OR_CP2
= (25 << 21) | (0x0C) | OPC_CP2
,
1065 OPC_ADD_CP2
= (26 << 21) | (0x0C) | OPC_CP2
,
1066 OPC_DADD_CP2
= (27 << 21) | (0x0C) | OPC_CP2
,
1067 OPC_SEQU_CP2
= (28 << 21) | (0x0C) | OPC_CP2
,
1068 OPC_SEQ_CP2
= (29 << 21) | (0x0C) | OPC_CP2
,
1070 OPC_SUBU_CP2
= (24 << 21) | (0x0D) | OPC_CP2
,
1071 OPC_PASUBUB
= (25 << 21) | (0x0D) | OPC_CP2
,
1072 OPC_SUB_CP2
= (26 << 21) | (0x0D) | OPC_CP2
,
1073 OPC_DSUB_CP2
= (27 << 21) | (0x0D) | OPC_CP2
,
1074 OPC_SLTU_CP2
= (28 << 21) | (0x0D) | OPC_CP2
,
1075 OPC_SLT_CP2
= (29 << 21) | (0x0D) | OPC_CP2
,
1077 OPC_SLL_CP2
= (24 << 21) | (0x0E) | OPC_CP2
,
1078 OPC_DSLL_CP2
= (25 << 21) | (0x0E) | OPC_CP2
,
1079 OPC_PEXTRH
= (26 << 21) | (0x0E) | OPC_CP2
,
1080 OPC_PMADDHW
= (27 << 21) | (0x0E) | OPC_CP2
,
1081 OPC_SLEU_CP2
= (28 << 21) | (0x0E) | OPC_CP2
,
1082 OPC_SLE_CP2
= (29 << 21) | (0x0E) | OPC_CP2
,
1084 OPC_SRL_CP2
= (24 << 21) | (0x0F) | OPC_CP2
,
1085 OPC_DSRL_CP2
= (25 << 21) | (0x0F) | OPC_CP2
,
1086 OPC_SRA_CP2
= (26 << 21) | (0x0F) | OPC_CP2
,
1087 OPC_DSRA_CP2
= (27 << 21) | (0x0F) | OPC_CP2
,
1088 OPC_BIADD
= (28 << 21) | (0x0F) | OPC_CP2
,
1089 OPC_PMOVMSKB
= (29 << 21) | (0x0F) | OPC_CP2
,
1093 #define MASK_CP3(op) MASK_OP_MAJOR(op) | (op & 0x3F)
1096 OPC_LWXC1
= 0x00 | OPC_CP3
,
1097 OPC_LDXC1
= 0x01 | OPC_CP3
,
1098 OPC_LUXC1
= 0x05 | OPC_CP3
,
1099 OPC_SWXC1
= 0x08 | OPC_CP3
,
1100 OPC_SDXC1
= 0x09 | OPC_CP3
,
1101 OPC_SUXC1
= 0x0D | OPC_CP3
,
1102 OPC_PREFX
= 0x0F | OPC_CP3
,
1103 OPC_ALNV_PS
= 0x1E | OPC_CP3
,
1104 OPC_MADD_S
= 0x20 | OPC_CP3
,
1105 OPC_MADD_D
= 0x21 | OPC_CP3
,
1106 OPC_MADD_PS
= 0x26 | OPC_CP3
,
1107 OPC_MSUB_S
= 0x28 | OPC_CP3
,
1108 OPC_MSUB_D
= 0x29 | OPC_CP3
,
1109 OPC_MSUB_PS
= 0x2E | OPC_CP3
,
1110 OPC_NMADD_S
= 0x30 | OPC_CP3
,
1111 OPC_NMADD_D
= 0x31 | OPC_CP3
,
1112 OPC_NMADD_PS
= 0x36 | OPC_CP3
,
1113 OPC_NMSUB_S
= 0x38 | OPC_CP3
,
1114 OPC_NMSUB_D
= 0x39 | OPC_CP3
,
1115 OPC_NMSUB_PS
= 0x3E | OPC_CP3
,
1119 #define MASK_MSA_MINOR(op) (MASK_OP_MAJOR(op) | (op & 0x3F))
1121 OPC_MSA_I8_00
= 0x00 | OPC_MSA
,
1122 OPC_MSA_I8_01
= 0x01 | OPC_MSA
,
1123 OPC_MSA_I8_02
= 0x02 | OPC_MSA
,
1124 OPC_MSA_I5_06
= 0x06 | OPC_MSA
,
1125 OPC_MSA_I5_07
= 0x07 | OPC_MSA
,
1126 OPC_MSA_BIT_09
= 0x09 | OPC_MSA
,
1127 OPC_MSA_BIT_0A
= 0x0A | OPC_MSA
,
1128 OPC_MSA_3R_0D
= 0x0D | OPC_MSA
,
1129 OPC_MSA_3R_0E
= 0x0E | OPC_MSA
,
1130 OPC_MSA_3R_0F
= 0x0F | OPC_MSA
,
1131 OPC_MSA_3R_10
= 0x10 | OPC_MSA
,
1132 OPC_MSA_3R_11
= 0x11 | OPC_MSA
,
1133 OPC_MSA_3R_12
= 0x12 | OPC_MSA
,
1134 OPC_MSA_3R_13
= 0x13 | OPC_MSA
,
1135 OPC_MSA_3R_14
= 0x14 | OPC_MSA
,
1136 OPC_MSA_3R_15
= 0x15 | OPC_MSA
,
1137 OPC_MSA_ELM
= 0x19 | OPC_MSA
,
1138 OPC_MSA_3RF_1A
= 0x1A | OPC_MSA
,
1139 OPC_MSA_3RF_1B
= 0x1B | OPC_MSA
,
1140 OPC_MSA_3RF_1C
= 0x1C | OPC_MSA
,
1141 OPC_MSA_VEC
= 0x1E | OPC_MSA
,
1143 /* MI10 instruction */
1144 OPC_LD_B
= (0x20) | OPC_MSA
,
1145 OPC_LD_H
= (0x21) | OPC_MSA
,
1146 OPC_LD_W
= (0x22) | OPC_MSA
,
1147 OPC_LD_D
= (0x23) | OPC_MSA
,
1148 OPC_ST_B
= (0x24) | OPC_MSA
,
1149 OPC_ST_H
= (0x25) | OPC_MSA
,
1150 OPC_ST_W
= (0x26) | OPC_MSA
,
1151 OPC_ST_D
= (0x27) | OPC_MSA
,
1155 /* I5 instruction df(bits 22..21) = _b, _h, _w, _d */
1156 OPC_ADDVI_df
= (0x0 << 23) | OPC_MSA_I5_06
,
1157 OPC_CEQI_df
= (0x0 << 23) | OPC_MSA_I5_07
,
1158 OPC_SUBVI_df
= (0x1 << 23) | OPC_MSA_I5_06
,
1159 OPC_MAXI_S_df
= (0x2 << 23) | OPC_MSA_I5_06
,
1160 OPC_CLTI_S_df
= (0x2 << 23) | OPC_MSA_I5_07
,
1161 OPC_MAXI_U_df
= (0x3 << 23) | OPC_MSA_I5_06
,
1162 OPC_CLTI_U_df
= (0x3 << 23) | OPC_MSA_I5_07
,
1163 OPC_MINI_S_df
= (0x4 << 23) | OPC_MSA_I5_06
,
1164 OPC_CLEI_S_df
= (0x4 << 23) | OPC_MSA_I5_07
,
1165 OPC_MINI_U_df
= (0x5 << 23) | OPC_MSA_I5_06
,
1166 OPC_CLEI_U_df
= (0x5 << 23) | OPC_MSA_I5_07
,
1167 OPC_LDI_df
= (0x6 << 23) | OPC_MSA_I5_07
,
1169 /* I8 instruction */
1170 OPC_ANDI_B
= (0x0 << 24) | OPC_MSA_I8_00
,
1171 OPC_BMNZI_B
= (0x0 << 24) | OPC_MSA_I8_01
,
1172 OPC_SHF_B
= (0x0 << 24) | OPC_MSA_I8_02
,
1173 OPC_ORI_B
= (0x1 << 24) | OPC_MSA_I8_00
,
1174 OPC_BMZI_B
= (0x1 << 24) | OPC_MSA_I8_01
,
1175 OPC_SHF_H
= (0x1 << 24) | OPC_MSA_I8_02
,
1176 OPC_NORI_B
= (0x2 << 24) | OPC_MSA_I8_00
,
1177 OPC_BSELI_B
= (0x2 << 24) | OPC_MSA_I8_01
,
1178 OPC_SHF_W
= (0x2 << 24) | OPC_MSA_I8_02
,
1179 OPC_XORI_B
= (0x3 << 24) | OPC_MSA_I8_00
,
1181 /* VEC/2R/2RF instruction */
1182 OPC_AND_V
= (0x00 << 21) | OPC_MSA_VEC
,
1183 OPC_OR_V
= (0x01 << 21) | OPC_MSA_VEC
,
1184 OPC_NOR_V
= (0x02 << 21) | OPC_MSA_VEC
,
1185 OPC_XOR_V
= (0x03 << 21) | OPC_MSA_VEC
,
1186 OPC_BMNZ_V
= (0x04 << 21) | OPC_MSA_VEC
,
1187 OPC_BMZ_V
= (0x05 << 21) | OPC_MSA_VEC
,
1188 OPC_BSEL_V
= (0x06 << 21) | OPC_MSA_VEC
,
1190 OPC_MSA_2R
= (0x18 << 21) | OPC_MSA_VEC
,
1191 OPC_MSA_2RF
= (0x19 << 21) | OPC_MSA_VEC
,
1193 /* 2R instruction df(bits 17..16) = _b, _h, _w, _d */
1194 OPC_FILL_df
= (0x00 << 18) | OPC_MSA_2R
,
1195 OPC_PCNT_df
= (0x01 << 18) | OPC_MSA_2R
,
1196 OPC_NLOC_df
= (0x02 << 18) | OPC_MSA_2R
,
1197 OPC_NLZC_df
= (0x03 << 18) | OPC_MSA_2R
,
1199 /* 2RF instruction df(bit 16) = _w, _d */
1200 OPC_FCLASS_df
= (0x00 << 17) | OPC_MSA_2RF
,
1201 OPC_FTRUNC_S_df
= (0x01 << 17) | OPC_MSA_2RF
,
1202 OPC_FTRUNC_U_df
= (0x02 << 17) | OPC_MSA_2RF
,
1203 OPC_FSQRT_df
= (0x03 << 17) | OPC_MSA_2RF
,
1204 OPC_FRSQRT_df
= (0x04 << 17) | OPC_MSA_2RF
,
1205 OPC_FRCP_df
= (0x05 << 17) | OPC_MSA_2RF
,
1206 OPC_FRINT_df
= (0x06 << 17) | OPC_MSA_2RF
,
1207 OPC_FLOG2_df
= (0x07 << 17) | OPC_MSA_2RF
,
1208 OPC_FEXUPL_df
= (0x08 << 17) | OPC_MSA_2RF
,
1209 OPC_FEXUPR_df
= (0x09 << 17) | OPC_MSA_2RF
,
1210 OPC_FFQL_df
= (0x0A << 17) | OPC_MSA_2RF
,
1211 OPC_FFQR_df
= (0x0B << 17) | OPC_MSA_2RF
,
1212 OPC_FTINT_S_df
= (0x0C << 17) | OPC_MSA_2RF
,
1213 OPC_FTINT_U_df
= (0x0D << 17) | OPC_MSA_2RF
,
1214 OPC_FFINT_S_df
= (0x0E << 17) | OPC_MSA_2RF
,
1215 OPC_FFINT_U_df
= (0x0F << 17) | OPC_MSA_2RF
,
1217 /* 3R instruction df(bits 22..21) = _b, _h, _w, d */
1218 OPC_SLL_df
= (0x0 << 23) | OPC_MSA_3R_0D
,
1219 OPC_ADDV_df
= (0x0 << 23) | OPC_MSA_3R_0E
,
1220 OPC_CEQ_df
= (0x0 << 23) | OPC_MSA_3R_0F
,
1221 OPC_ADD_A_df
= (0x0 << 23) | OPC_MSA_3R_10
,
1222 OPC_SUBS_S_df
= (0x0 << 23) | OPC_MSA_3R_11
,
1223 OPC_MULV_df
= (0x0 << 23) | OPC_MSA_3R_12
,
1224 OPC_DOTP_S_df
= (0x0 << 23) | OPC_MSA_3R_13
,
1225 OPC_SLD_df
= (0x0 << 23) | OPC_MSA_3R_14
,
1226 OPC_VSHF_df
= (0x0 << 23) | OPC_MSA_3R_15
,
1227 OPC_SRA_df
= (0x1 << 23) | OPC_MSA_3R_0D
,
1228 OPC_SUBV_df
= (0x1 << 23) | OPC_MSA_3R_0E
,
1229 OPC_ADDS_A_df
= (0x1 << 23) | OPC_MSA_3R_10
,
1230 OPC_SUBS_U_df
= (0x1 << 23) | OPC_MSA_3R_11
,
1231 OPC_MADDV_df
= (0x1 << 23) | OPC_MSA_3R_12
,
1232 OPC_DOTP_U_df
= (0x1 << 23) | OPC_MSA_3R_13
,
1233 OPC_SPLAT_df
= (0x1 << 23) | OPC_MSA_3R_14
,
1234 OPC_SRAR_df
= (0x1 << 23) | OPC_MSA_3R_15
,
1235 OPC_SRL_df
= (0x2 << 23) | OPC_MSA_3R_0D
,
1236 OPC_MAX_S_df
= (0x2 << 23) | OPC_MSA_3R_0E
,
1237 OPC_CLT_S_df
= (0x2 << 23) | OPC_MSA_3R_0F
,
1238 OPC_ADDS_S_df
= (0x2 << 23) | OPC_MSA_3R_10
,
1239 OPC_SUBSUS_U_df
= (0x2 << 23) | OPC_MSA_3R_11
,
1240 OPC_MSUBV_df
= (0x2 << 23) | OPC_MSA_3R_12
,
1241 OPC_DPADD_S_df
= (0x2 << 23) | OPC_MSA_3R_13
,
1242 OPC_PCKEV_df
= (0x2 << 23) | OPC_MSA_3R_14
,
1243 OPC_SRLR_df
= (0x2 << 23) | OPC_MSA_3R_15
,
1244 OPC_BCLR_df
= (0x3 << 23) | OPC_MSA_3R_0D
,
1245 OPC_MAX_U_df
= (0x3 << 23) | OPC_MSA_3R_0E
,
1246 OPC_CLT_U_df
= (0x3 << 23) | OPC_MSA_3R_0F
,
1247 OPC_ADDS_U_df
= (0x3 << 23) | OPC_MSA_3R_10
,
1248 OPC_SUBSUU_S_df
= (0x3 << 23) | OPC_MSA_3R_11
,
1249 OPC_DPADD_U_df
= (0x3 << 23) | OPC_MSA_3R_13
,
1250 OPC_PCKOD_df
= (0x3 << 23) | OPC_MSA_3R_14
,
1251 OPC_BSET_df
= (0x4 << 23) | OPC_MSA_3R_0D
,
1252 OPC_MIN_S_df
= (0x4 << 23) | OPC_MSA_3R_0E
,
1253 OPC_CLE_S_df
= (0x4 << 23) | OPC_MSA_3R_0F
,
1254 OPC_AVE_S_df
= (0x4 << 23) | OPC_MSA_3R_10
,
1255 OPC_ASUB_S_df
= (0x4 << 23) | OPC_MSA_3R_11
,
1256 OPC_DIV_S_df
= (0x4 << 23) | OPC_MSA_3R_12
,
1257 OPC_DPSUB_S_df
= (0x4 << 23) | OPC_MSA_3R_13
,
1258 OPC_ILVL_df
= (0x4 << 23) | OPC_MSA_3R_14
,
1259 OPC_HADD_S_df
= (0x4 << 23) | OPC_MSA_3R_15
,
1260 OPC_BNEG_df
= (0x5 << 23) | OPC_MSA_3R_0D
,
1261 OPC_MIN_U_df
= (0x5 << 23) | OPC_MSA_3R_0E
,
1262 OPC_CLE_U_df
= (0x5 << 23) | OPC_MSA_3R_0F
,
1263 OPC_AVE_U_df
= (0x5 << 23) | OPC_MSA_3R_10
,
1264 OPC_ASUB_U_df
= (0x5 << 23) | OPC_MSA_3R_11
,
1265 OPC_DIV_U_df
= (0x5 << 23) | OPC_MSA_3R_12
,
1266 OPC_DPSUB_U_df
= (0x5 << 23) | OPC_MSA_3R_13
,
1267 OPC_ILVR_df
= (0x5 << 23) | OPC_MSA_3R_14
,
1268 OPC_HADD_U_df
= (0x5 << 23) | OPC_MSA_3R_15
,
1269 OPC_BINSL_df
= (0x6 << 23) | OPC_MSA_3R_0D
,
1270 OPC_MAX_A_df
= (0x6 << 23) | OPC_MSA_3R_0E
,
1271 OPC_AVER_S_df
= (0x6 << 23) | OPC_MSA_3R_10
,
1272 OPC_MOD_S_df
= (0x6 << 23) | OPC_MSA_3R_12
,
1273 OPC_ILVEV_df
= (0x6 << 23) | OPC_MSA_3R_14
,
1274 OPC_HSUB_S_df
= (0x6 << 23) | OPC_MSA_3R_15
,
1275 OPC_BINSR_df
= (0x7 << 23) | OPC_MSA_3R_0D
,
1276 OPC_MIN_A_df
= (0x7 << 23) | OPC_MSA_3R_0E
,
1277 OPC_AVER_U_df
= (0x7 << 23) | OPC_MSA_3R_10
,
1278 OPC_MOD_U_df
= (0x7 << 23) | OPC_MSA_3R_12
,
1279 OPC_ILVOD_df
= (0x7 << 23) | OPC_MSA_3R_14
,
1280 OPC_HSUB_U_df
= (0x7 << 23) | OPC_MSA_3R_15
,
1282 /* ELM instructions df(bits 21..16) = _b, _h, _w, _d */
1283 OPC_SLDI_df
= (0x0 << 22) | (0x00 << 16) | OPC_MSA_ELM
,
1284 OPC_CTCMSA
= (0x0 << 22) | (0x3E << 16) | OPC_MSA_ELM
,
1285 OPC_SPLATI_df
= (0x1 << 22) | (0x00 << 16) | OPC_MSA_ELM
,
1286 OPC_CFCMSA
= (0x1 << 22) | (0x3E << 16) | OPC_MSA_ELM
,
1287 OPC_COPY_S_df
= (0x2 << 22) | (0x00 << 16) | OPC_MSA_ELM
,
1288 OPC_MOVE_V
= (0x2 << 22) | (0x3E << 16) | OPC_MSA_ELM
,
1289 OPC_COPY_U_df
= (0x3 << 22) | (0x00 << 16) | OPC_MSA_ELM
,
1290 OPC_INSERT_df
= (0x4 << 22) | (0x00 << 16) | OPC_MSA_ELM
,
1291 OPC_INSVE_df
= (0x5 << 22) | (0x00 << 16) | OPC_MSA_ELM
,
1293 /* 3RF instruction _df(bit 21) = _w, _d */
1294 OPC_FCAF_df
= (0x0 << 22) | OPC_MSA_3RF_1A
,
1295 OPC_FADD_df
= (0x0 << 22) | OPC_MSA_3RF_1B
,
1296 OPC_FCUN_df
= (0x1 << 22) | OPC_MSA_3RF_1A
,
1297 OPC_FSUB_df
= (0x1 << 22) | OPC_MSA_3RF_1B
,
1298 OPC_FCOR_df
= (0x1 << 22) | OPC_MSA_3RF_1C
,
1299 OPC_FCEQ_df
= (0x2 << 22) | OPC_MSA_3RF_1A
,
1300 OPC_FMUL_df
= (0x2 << 22) | OPC_MSA_3RF_1B
,
1301 OPC_FCUNE_df
= (0x2 << 22) | OPC_MSA_3RF_1C
,
1302 OPC_FCUEQ_df
= (0x3 << 22) | OPC_MSA_3RF_1A
,
1303 OPC_FDIV_df
= (0x3 << 22) | OPC_MSA_3RF_1B
,
1304 OPC_FCNE_df
= (0x3 << 22) | OPC_MSA_3RF_1C
,
1305 OPC_FCLT_df
= (0x4 << 22) | OPC_MSA_3RF_1A
,
1306 OPC_FMADD_df
= (0x4 << 22) | OPC_MSA_3RF_1B
,
1307 OPC_MUL_Q_df
= (0x4 << 22) | OPC_MSA_3RF_1C
,
1308 OPC_FCULT_df
= (0x5 << 22) | OPC_MSA_3RF_1A
,
1309 OPC_FMSUB_df
= (0x5 << 22) | OPC_MSA_3RF_1B
,
1310 OPC_MADD_Q_df
= (0x5 << 22) | OPC_MSA_3RF_1C
,
1311 OPC_FCLE_df
= (0x6 << 22) | OPC_MSA_3RF_1A
,
1312 OPC_MSUB_Q_df
= (0x6 << 22) | OPC_MSA_3RF_1C
,
1313 OPC_FCULE_df
= (0x7 << 22) | OPC_MSA_3RF_1A
,
1314 OPC_FEXP2_df
= (0x7 << 22) | OPC_MSA_3RF_1B
,
1315 OPC_FSAF_df
= (0x8 << 22) | OPC_MSA_3RF_1A
,
1316 OPC_FEXDO_df
= (0x8 << 22) | OPC_MSA_3RF_1B
,
1317 OPC_FSUN_df
= (0x9 << 22) | OPC_MSA_3RF_1A
,
1318 OPC_FSOR_df
= (0x9 << 22) | OPC_MSA_3RF_1C
,
1319 OPC_FSEQ_df
= (0xA << 22) | OPC_MSA_3RF_1A
,
1320 OPC_FTQ_df
= (0xA << 22) | OPC_MSA_3RF_1B
,
1321 OPC_FSUNE_df
= (0xA << 22) | OPC_MSA_3RF_1C
,
1322 OPC_FSUEQ_df
= (0xB << 22) | OPC_MSA_3RF_1A
,
1323 OPC_FSNE_df
= (0xB << 22) | OPC_MSA_3RF_1C
,
1324 OPC_FSLT_df
= (0xC << 22) | OPC_MSA_3RF_1A
,
1325 OPC_FMIN_df
= (0xC << 22) | OPC_MSA_3RF_1B
,
1326 OPC_MULR_Q_df
= (0xC << 22) | OPC_MSA_3RF_1C
,
1327 OPC_FSULT_df
= (0xD << 22) | OPC_MSA_3RF_1A
,
1328 OPC_FMIN_A_df
= (0xD << 22) | OPC_MSA_3RF_1B
,
1329 OPC_MADDR_Q_df
= (0xD << 22) | OPC_MSA_3RF_1C
,
1330 OPC_FSLE_df
= (0xE << 22) | OPC_MSA_3RF_1A
,
1331 OPC_FMAX_df
= (0xE << 22) | OPC_MSA_3RF_1B
,
1332 OPC_MSUBR_Q_df
= (0xE << 22) | OPC_MSA_3RF_1C
,
1333 OPC_FSULE_df
= (0xF << 22) | OPC_MSA_3RF_1A
,
1334 OPC_FMAX_A_df
= (0xF << 22) | OPC_MSA_3RF_1B
,
1336 /* BIT instruction df(bits 22..16) = _B _H _W _D */
1337 OPC_SLLI_df
= (0x0 << 23) | OPC_MSA_BIT_09
,
1338 OPC_SAT_S_df
= (0x0 << 23) | OPC_MSA_BIT_0A
,
1339 OPC_SRAI_df
= (0x1 << 23) | OPC_MSA_BIT_09
,
1340 OPC_SAT_U_df
= (0x1 << 23) | OPC_MSA_BIT_0A
,
1341 OPC_SRLI_df
= (0x2 << 23) | OPC_MSA_BIT_09
,
1342 OPC_SRARI_df
= (0x2 << 23) | OPC_MSA_BIT_0A
,
1343 OPC_BCLRI_df
= (0x3 << 23) | OPC_MSA_BIT_09
,
1344 OPC_SRLRI_df
= (0x3 << 23) | OPC_MSA_BIT_0A
,
1345 OPC_BSETI_df
= (0x4 << 23) | OPC_MSA_BIT_09
,
1346 OPC_BNEGI_df
= (0x5 << 23) | OPC_MSA_BIT_09
,
1347 OPC_BINSLI_df
= (0x6 << 23) | OPC_MSA_BIT_09
,
1348 OPC_BINSRI_df
= (0x7 << 23) | OPC_MSA_BIT_09
,
1351 /* global register indices */
1352 static TCGv_ptr cpu_env
;
1353 static TCGv cpu_gpr
[32], cpu_PC
;
1354 static TCGv cpu_HI
[MIPS_DSP_ACC
], cpu_LO
[MIPS_DSP_ACC
];
1355 static TCGv cpu_dspctrl
, btarget
, bcond
;
1356 static TCGv_i32 hflags
;
1357 static TCGv_i32 fpu_fcr0
, fpu_fcr31
;
1358 static TCGv_i64 fpu_f64
[32];
1359 static TCGv_i64 msa_wr_d
[64];
1361 static uint32_t gen_opc_hflags
[OPC_BUF_SIZE
];
1362 static target_ulong gen_opc_btarget
[OPC_BUF_SIZE
];
1364 #include "exec/gen-icount.h"
1366 #define gen_helper_0e0i(name, arg) do { \
1367 TCGv_i32 helper_tmp = tcg_const_i32(arg); \
1368 gen_helper_##name(cpu_env, helper_tmp); \
1369 tcg_temp_free_i32(helper_tmp); \
1372 #define gen_helper_0e1i(name, arg1, arg2) do { \
1373 TCGv_i32 helper_tmp = tcg_const_i32(arg2); \
1374 gen_helper_##name(cpu_env, arg1, helper_tmp); \
1375 tcg_temp_free_i32(helper_tmp); \
1378 #define gen_helper_1e0i(name, ret, arg1) do { \
1379 TCGv_i32 helper_tmp = tcg_const_i32(arg1); \
1380 gen_helper_##name(ret, cpu_env, helper_tmp); \
1381 tcg_temp_free_i32(helper_tmp); \
1384 #define gen_helper_1e1i(name, ret, arg1, arg2) do { \
1385 TCGv_i32 helper_tmp = tcg_const_i32(arg2); \
1386 gen_helper_##name(ret, cpu_env, arg1, helper_tmp); \
1387 tcg_temp_free_i32(helper_tmp); \
1390 #define gen_helper_0e2i(name, arg1, arg2, arg3) do { \
1391 TCGv_i32 helper_tmp = tcg_const_i32(arg3); \
1392 gen_helper_##name(cpu_env, arg1, arg2, helper_tmp); \
1393 tcg_temp_free_i32(helper_tmp); \
1396 #define gen_helper_1e2i(name, ret, arg1, arg2, arg3) do { \
1397 TCGv_i32 helper_tmp = tcg_const_i32(arg3); \
1398 gen_helper_##name(ret, cpu_env, arg1, arg2, helper_tmp); \
1399 tcg_temp_free_i32(helper_tmp); \
1402 #define gen_helper_0e3i(name, arg1, arg2, arg3, arg4) do { \
1403 TCGv_i32 helper_tmp = tcg_const_i32(arg4); \
1404 gen_helper_##name(cpu_env, arg1, arg2, arg3, helper_tmp); \
1405 tcg_temp_free_i32(helper_tmp); \
1408 typedef struct DisasContext
{
1409 struct TranslationBlock
*tb
;
1410 target_ulong pc
, saved_pc
;
1412 int singlestep_enabled
;
1414 int32_t CP0_Config1
;
1415 /* Routine used to access memory */
1417 uint32_t hflags
, saved_hflags
;
1419 target_ulong btarget
;
1429 BS_NONE
= 0, /* We go out of the TB without reaching a branch or an
1430 * exception condition */
1431 BS_STOP
= 1, /* We want to stop translation for any reason */
1432 BS_BRANCH
= 2, /* We reached a branch condition */
1433 BS_EXCP
= 3, /* We reached an exception condition */
1436 static const char * const regnames
[] = {
1437 "r0", "at", "v0", "v1", "a0", "a1", "a2", "a3",
1438 "t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
1439 "s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
1440 "t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
1443 static const char * const regnames_HI
[] = {
1444 "HI0", "HI1", "HI2", "HI3",
1447 static const char * const regnames_LO
[] = {
1448 "LO0", "LO1", "LO2", "LO3",
1451 static const char * const fregnames
[] = {
1452 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
1453 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
1454 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
1455 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
1458 static const char * const msaregnames
[] = {
1459 "w0.d0", "w0.d1", "w1.d0", "w1.d1",
1460 "w2.d0", "w2.d1", "w3.d0", "w3.d1",
1461 "w4.d0", "w4.d1", "w5.d0", "w5.d1",
1462 "w6.d0", "w6.d1", "w7.d0", "w7.d1",
1463 "w8.d0", "w8.d1", "w9.d0", "w9.d1",
1464 "w10.d0", "w10.d1", "w11.d0", "w11.d1",
1465 "w12.d0", "w12.d1", "w13.d0", "w13.d1",
1466 "w14.d0", "w14.d1", "w15.d0", "w15.d1",
1467 "w16.d0", "w16.d1", "w17.d0", "w17.d1",
1468 "w18.d0", "w18.d1", "w19.d0", "w19.d1",
1469 "w20.d0", "w20.d1", "w21.d0", "w21.d1",
1470 "w22.d0", "w22.d1", "w23.d0", "w23.d1",
1471 "w24.d0", "w24.d1", "w25.d0", "w25.d1",
1472 "w26.d0", "w26.d1", "w27.d0", "w27.d1",
1473 "w28.d0", "w28.d1", "w29.d0", "w29.d1",
1474 "w30.d0", "w30.d1", "w31.d0", "w31.d1",
1477 #define MIPS_DEBUG(fmt, ...) \
1479 if (MIPS_DEBUG_DISAS) { \
1480 qemu_log_mask(CPU_LOG_TB_IN_ASM, \
1481 TARGET_FMT_lx ": %08x " fmt "\n", \
1482 ctx->pc, ctx->opcode , ## __VA_ARGS__); \
1486 #define LOG_DISAS(...) \
1488 if (MIPS_DEBUG_DISAS) { \
1489 qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__); \
1493 #define MIPS_INVAL(op) \
1494 MIPS_DEBUG("Invalid %s %03x %03x %03x", op, ctx->opcode >> 26, \
1495 ctx->opcode & 0x3F, ((ctx->opcode >> 16) & 0x1F))
1497 /* General purpose registers moves. */
1498 static inline void gen_load_gpr (TCGv t
, int reg
)
1501 tcg_gen_movi_tl(t
, 0);
1503 tcg_gen_mov_tl(t
, cpu_gpr
[reg
]);
1506 static inline void gen_store_gpr (TCGv t
, int reg
)
1509 tcg_gen_mov_tl(cpu_gpr
[reg
], t
);
1512 /* Moves to/from shadow registers. */
1513 static inline void gen_load_srsgpr (int from
, int to
)
1515 TCGv t0
= tcg_temp_new();
1518 tcg_gen_movi_tl(t0
, 0);
1520 TCGv_i32 t2
= tcg_temp_new_i32();
1521 TCGv_ptr addr
= tcg_temp_new_ptr();
1523 tcg_gen_ld_i32(t2
, cpu_env
, offsetof(CPUMIPSState
, CP0_SRSCtl
));
1524 tcg_gen_shri_i32(t2
, t2
, CP0SRSCtl_PSS
);
1525 tcg_gen_andi_i32(t2
, t2
, 0xf);
1526 tcg_gen_muli_i32(t2
, t2
, sizeof(target_ulong
) * 32);
1527 tcg_gen_ext_i32_ptr(addr
, t2
);
1528 tcg_gen_add_ptr(addr
, cpu_env
, addr
);
1530 tcg_gen_ld_tl(t0
, addr
, sizeof(target_ulong
) * from
);
1531 tcg_temp_free_ptr(addr
);
1532 tcg_temp_free_i32(t2
);
1534 gen_store_gpr(t0
, to
);
1538 static inline void gen_store_srsgpr (int from
, int to
)
1541 TCGv t0
= tcg_temp_new();
1542 TCGv_i32 t2
= tcg_temp_new_i32();
1543 TCGv_ptr addr
= tcg_temp_new_ptr();
1545 gen_load_gpr(t0
, from
);
1546 tcg_gen_ld_i32(t2
, cpu_env
, offsetof(CPUMIPSState
, CP0_SRSCtl
));
1547 tcg_gen_shri_i32(t2
, t2
, CP0SRSCtl_PSS
);
1548 tcg_gen_andi_i32(t2
, t2
, 0xf);
1549 tcg_gen_muli_i32(t2
, t2
, sizeof(target_ulong
) * 32);
1550 tcg_gen_ext_i32_ptr(addr
, t2
);
1551 tcg_gen_add_ptr(addr
, cpu_env
, addr
);
1553 tcg_gen_st_tl(t0
, addr
, sizeof(target_ulong
) * to
);
1554 tcg_temp_free_ptr(addr
);
1555 tcg_temp_free_i32(t2
);
1560 /* Floating point register moves. */
1561 static void gen_load_fpr32(TCGv_i32 t
, int reg
)
1563 tcg_gen_trunc_i64_i32(t
, fpu_f64
[reg
]);
1566 static void gen_store_fpr32(TCGv_i32 t
, int reg
)
1568 TCGv_i64 t64
= tcg_temp_new_i64();
1569 tcg_gen_extu_i32_i64(t64
, t
);
1570 tcg_gen_deposit_i64(fpu_f64
[reg
], fpu_f64
[reg
], t64
, 0, 32);
1571 tcg_temp_free_i64(t64
);
1574 static void gen_load_fpr32h(DisasContext
*ctx
, TCGv_i32 t
, int reg
)
1576 if (ctx
->hflags
& MIPS_HFLAG_F64
) {
1577 TCGv_i64 t64
= tcg_temp_new_i64();
1578 tcg_gen_shri_i64(t64
, fpu_f64
[reg
], 32);
1579 tcg_gen_trunc_i64_i32(t
, t64
);
1580 tcg_temp_free_i64(t64
);
1582 gen_load_fpr32(t
, reg
| 1);
1586 static void gen_store_fpr32h(DisasContext
*ctx
, TCGv_i32 t
, int reg
)
1588 if (ctx
->hflags
& MIPS_HFLAG_F64
) {
1589 TCGv_i64 t64
= tcg_temp_new_i64();
1590 tcg_gen_extu_i32_i64(t64
, t
);
1591 tcg_gen_deposit_i64(fpu_f64
[reg
], fpu_f64
[reg
], t64
, 32, 32);
1592 tcg_temp_free_i64(t64
);
1594 gen_store_fpr32(t
, reg
| 1);
1598 static void gen_load_fpr64(DisasContext
*ctx
, TCGv_i64 t
, int reg
)
1600 if (ctx
->hflags
& MIPS_HFLAG_F64
) {
1601 tcg_gen_mov_i64(t
, fpu_f64
[reg
]);
1603 tcg_gen_concat32_i64(t
, fpu_f64
[reg
& ~1], fpu_f64
[reg
| 1]);
1607 static void gen_store_fpr64(DisasContext
*ctx
, TCGv_i64 t
, int reg
)
1609 if (ctx
->hflags
& MIPS_HFLAG_F64
) {
1610 tcg_gen_mov_i64(fpu_f64
[reg
], t
);
1613 tcg_gen_deposit_i64(fpu_f64
[reg
& ~1], fpu_f64
[reg
& ~1], t
, 0, 32);
1614 t0
= tcg_temp_new_i64();
1615 tcg_gen_shri_i64(t0
, t
, 32);
1616 tcg_gen_deposit_i64(fpu_f64
[reg
| 1], fpu_f64
[reg
| 1], t0
, 0, 32);
1617 tcg_temp_free_i64(t0
);
1621 static inline int get_fp_bit (int cc
)
1630 static inline void gen_save_pc(target_ulong pc
)
1632 tcg_gen_movi_tl(cpu_PC
, pc
);
1635 static inline void save_cpu_state (DisasContext
*ctx
, int do_save_pc
)
1637 LOG_DISAS("hflags %08x saved %08x\n", ctx
->hflags
, ctx
->saved_hflags
);
1638 if (do_save_pc
&& ctx
->pc
!= ctx
->saved_pc
) {
1639 gen_save_pc(ctx
->pc
);
1640 ctx
->saved_pc
= ctx
->pc
;
1642 if (ctx
->hflags
!= ctx
->saved_hflags
) {
1643 tcg_gen_movi_i32(hflags
, ctx
->hflags
);
1644 ctx
->saved_hflags
= ctx
->hflags
;
1645 switch (ctx
->hflags
& MIPS_HFLAG_BMASK_BASE
) {
1651 tcg_gen_movi_tl(btarget
, ctx
->btarget
);
1657 static inline void restore_cpu_state (CPUMIPSState
*env
, DisasContext
*ctx
)
1659 ctx
->saved_hflags
= ctx
->hflags
;
1660 switch (ctx
->hflags
& MIPS_HFLAG_BMASK_BASE
) {
1666 ctx
->btarget
= env
->btarget
;
1672 generate_exception_err (DisasContext
*ctx
, int excp
, int err
)
1674 TCGv_i32 texcp
= tcg_const_i32(excp
);
1675 TCGv_i32 terr
= tcg_const_i32(err
);
1676 save_cpu_state(ctx
, 1);
1677 gen_helper_raise_exception_err(cpu_env
, texcp
, terr
);
1678 tcg_temp_free_i32(terr
);
1679 tcg_temp_free_i32(texcp
);
1683 generate_exception (DisasContext
*ctx
, int excp
)
1685 save_cpu_state(ctx
, 1);
1686 gen_helper_0e0i(raise_exception
, excp
);
1689 /* Addresses computation */
1690 static inline void gen_op_addr_add (DisasContext
*ctx
, TCGv ret
, TCGv arg0
, TCGv arg1
)
1692 tcg_gen_add_tl(ret
, arg0
, arg1
);
1694 #if defined(TARGET_MIPS64)
1695 if (ctx
->hflags
& MIPS_HFLAG_AWRAP
) {
1696 tcg_gen_ext32s_i64(ret
, ret
);
1701 /* Addresses computation (translation time) */
1702 static target_long
addr_add(DisasContext
*ctx
, target_long base
,
1705 target_long sum
= base
+ offset
;
1707 #if defined(TARGET_MIPS64)
1708 if (ctx
->hflags
& MIPS_HFLAG_AWRAP
) {
1715 static inline void check_cp0_enabled(DisasContext
*ctx
)
1717 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_CP0
)))
1718 generate_exception_err(ctx
, EXCP_CpU
, 0);
1721 static inline void check_cp1_enabled(DisasContext
*ctx
)
1723 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_FPU
)))
1724 generate_exception_err(ctx
, EXCP_CpU
, 1);
1727 /* Verify that the processor is running with COP1X instructions enabled.
1728 This is associated with the nabla symbol in the MIPS32 and MIPS64
1731 static inline void check_cop1x(DisasContext
*ctx
)
1733 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_COP1X
)))
1734 generate_exception(ctx
, EXCP_RI
);
1737 /* Verify that the processor is running with 64-bit floating-point
1738 operations enabled. */
1740 static inline void check_cp1_64bitmode(DisasContext
*ctx
)
1742 if (unlikely(~ctx
->hflags
& (MIPS_HFLAG_F64
| MIPS_HFLAG_COP1X
)))
1743 generate_exception(ctx
, EXCP_RI
);
1747 * Verify if floating point register is valid; an operation is not defined
1748 * if bit 0 of any register specification is set and the FR bit in the
1749 * Status register equals zero, since the register numbers specify an
1750 * even-odd pair of adjacent coprocessor general registers. When the FR bit
1751 * in the Status register equals one, both even and odd register numbers
1752 * are valid. This limitation exists only for 64 bit wide (d,l,ps) registers.
1754 * Multiple 64 bit wide registers can be checked by calling
1755 * gen_op_cp1_registers(freg1 | freg2 | ... | fregN);
1757 static inline void check_cp1_registers(DisasContext
*ctx
, int regs
)
1759 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_F64
) && (regs
& 1)))
1760 generate_exception(ctx
, EXCP_RI
);
1763 /* Verify that the processor is running with DSP instructions enabled.
1764 This is enabled by CP0 Status register MX(24) bit.
1767 static inline void check_dsp(DisasContext
*ctx
)
1769 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_DSP
))) {
1770 if (ctx
->insn_flags
& ASE_DSP
) {
1771 generate_exception(ctx
, EXCP_DSPDIS
);
1773 generate_exception(ctx
, EXCP_RI
);
1778 static inline void check_dspr2(DisasContext
*ctx
)
1780 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_DSPR2
))) {
1781 if (ctx
->insn_flags
& ASE_DSP
) {
1782 generate_exception(ctx
, EXCP_DSPDIS
);
1784 generate_exception(ctx
, EXCP_RI
);
1789 /* This code generates a "reserved instruction" exception if the
1790 CPU does not support the instruction set corresponding to flags. */
1791 static inline void check_insn(DisasContext
*ctx
, int flags
)
1793 if (unlikely(!(ctx
->insn_flags
& flags
))) {
1794 generate_exception(ctx
, EXCP_RI
);
1798 /* This code generates a "reserved instruction" exception if the
1799 CPU has corresponding flag set which indicates that the instruction
1800 has been removed. */
1801 static inline void check_insn_opc_removed(DisasContext
*ctx
, int flags
)
1803 if (unlikely(ctx
->insn_flags
& flags
)) {
1804 generate_exception(ctx
, EXCP_RI
);
1808 #ifdef TARGET_MIPS64
1809 /* This code generates a "reserved instruction" exception if 64-bit
1810 instructions are not enabled. */
1811 static inline void check_mips_64(DisasContext
*ctx
)
1813 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_64
)))
1814 generate_exception(ctx
, EXCP_RI
);
1818 /* Define small wrappers for gen_load_fpr* so that we have a uniform
1819 calling interface for 32 and 64-bit FPRs. No sense in changing
1820 all callers for gen_load_fpr32 when we need the CTX parameter for
1822 #define gen_ldcmp_fpr32(ctx, x, y) gen_load_fpr32(x, y)
1823 #define gen_ldcmp_fpr64(ctx, x, y) gen_load_fpr64(ctx, x, y)
1824 #define FOP_CONDS(type, abs, fmt, ifmt, bits) \
1825 static inline void gen_cmp ## type ## _ ## fmt(DisasContext *ctx, int n, \
1826 int ft, int fs, int cc) \
1828 TCGv_i##bits fp0 = tcg_temp_new_i##bits (); \
1829 TCGv_i##bits fp1 = tcg_temp_new_i##bits (); \
1832 check_cp1_64bitmode(ctx); \
1838 check_cp1_registers(ctx, fs | ft); \
1846 gen_ldcmp_fpr##bits (ctx, fp0, fs); \
1847 gen_ldcmp_fpr##bits (ctx, fp1, ft); \
1849 case 0: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _f, fp0, fp1, cc); break;\
1850 case 1: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _un, fp0, fp1, cc); break;\
1851 case 2: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _eq, fp0, fp1, cc); break;\
1852 case 3: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _ueq, fp0, fp1, cc); break;\
1853 case 4: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _olt, fp0, fp1, cc); break;\
1854 case 5: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _ult, fp0, fp1, cc); break;\
1855 case 6: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _ole, fp0, fp1, cc); break;\
1856 case 7: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _ule, fp0, fp1, cc); break;\
1857 case 8: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _sf, fp0, fp1, cc); break;\
1858 case 9: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _ngle, fp0, fp1, cc); break;\
1859 case 10: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _seq, fp0, fp1, cc); break;\
1860 case 11: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _ngl, fp0, fp1, cc); break;\
1861 case 12: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _lt, fp0, fp1, cc); break;\
1862 case 13: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _nge, fp0, fp1, cc); break;\
1863 case 14: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _le, fp0, fp1, cc); break;\
1864 case 15: gen_helper_0e2i(cmp ## type ## _ ## fmt ## _ngt, fp0, fp1, cc); break;\
1867 tcg_temp_free_i##bits (fp0); \
1868 tcg_temp_free_i##bits (fp1); \
1871 FOP_CONDS(, 0, d
, FMT_D
, 64)
1872 FOP_CONDS(abs
, 1, d
, FMT_D
, 64)
1873 FOP_CONDS(, 0, s
, FMT_S
, 32)
1874 FOP_CONDS(abs
, 1, s
, FMT_S
, 32)
1875 FOP_CONDS(, 0, ps
, FMT_PS
, 64)
1876 FOP_CONDS(abs
, 1, ps
, FMT_PS
, 64)
1879 #define FOP_CONDNS(fmt, ifmt, bits, STORE) \
1880 static inline void gen_r6_cmp_ ## fmt(DisasContext * ctx, int n, \
1881 int ft, int fs, int fd) \
1883 TCGv_i ## bits fp0 = tcg_temp_new_i ## bits(); \
1884 TCGv_i ## bits fp1 = tcg_temp_new_i ## bits(); \
1885 if (ifmt == FMT_D) { \
1886 check_cp1_registers(ctx, fs | ft | fd); \
1888 gen_ldcmp_fpr ## bits(ctx, fp0, fs); \
1889 gen_ldcmp_fpr ## bits(ctx, fp1, ft); \
1892 gen_helper_r6_cmp_ ## fmt ## _af(fp0, cpu_env, fp0, fp1); \
1895 gen_helper_r6_cmp_ ## fmt ## _un(fp0, cpu_env, fp0, fp1); \
1898 gen_helper_r6_cmp_ ## fmt ## _eq(fp0, cpu_env, fp0, fp1); \
1901 gen_helper_r6_cmp_ ## fmt ## _ueq(fp0, cpu_env, fp0, fp1); \
1904 gen_helper_r6_cmp_ ## fmt ## _lt(fp0, cpu_env, fp0, fp1); \
1907 gen_helper_r6_cmp_ ## fmt ## _ult(fp0, cpu_env, fp0, fp1); \
1910 gen_helper_r6_cmp_ ## fmt ## _le(fp0, cpu_env, fp0, fp1); \
1913 gen_helper_r6_cmp_ ## fmt ## _ule(fp0, cpu_env, fp0, fp1); \
1916 gen_helper_r6_cmp_ ## fmt ## _saf(fp0, cpu_env, fp0, fp1); \
1919 gen_helper_r6_cmp_ ## fmt ## _sun(fp0, cpu_env, fp0, fp1); \
1922 gen_helper_r6_cmp_ ## fmt ## _seq(fp0, cpu_env, fp0, fp1); \
1925 gen_helper_r6_cmp_ ## fmt ## _sueq(fp0, cpu_env, fp0, fp1); \
1928 gen_helper_r6_cmp_ ## fmt ## _slt(fp0, cpu_env, fp0, fp1); \
1931 gen_helper_r6_cmp_ ## fmt ## _sult(fp0, cpu_env, fp0, fp1); \
1934 gen_helper_r6_cmp_ ## fmt ## _sle(fp0, cpu_env, fp0, fp1); \
1937 gen_helper_r6_cmp_ ## fmt ## _sule(fp0, cpu_env, fp0, fp1); \
1940 gen_helper_r6_cmp_ ## fmt ## _or(fp0, cpu_env, fp0, fp1); \
1943 gen_helper_r6_cmp_ ## fmt ## _une(fp0, cpu_env, fp0, fp1); \
1946 gen_helper_r6_cmp_ ## fmt ## _ne(fp0, cpu_env, fp0, fp1); \
1949 gen_helper_r6_cmp_ ## fmt ## _sor(fp0, cpu_env, fp0, fp1); \
1952 gen_helper_r6_cmp_ ## fmt ## _sune(fp0, cpu_env, fp0, fp1); \
1955 gen_helper_r6_cmp_ ## fmt ## _sne(fp0, cpu_env, fp0, fp1); \
1961 tcg_temp_free_i ## bits (fp0); \
1962 tcg_temp_free_i ## bits (fp1); \
1965 FOP_CONDNS(d
, FMT_D
, 64, gen_store_fpr64(ctx
, fp0
, fd
))
1966 FOP_CONDNS(s
, FMT_S
, 32, gen_store_fpr32(fp0
, fd
))
1968 #undef gen_ldcmp_fpr32
1969 #undef gen_ldcmp_fpr64
1971 /* load/store instructions. */
1972 #ifdef CONFIG_USER_ONLY
1973 #define OP_LD_ATOMIC(insn,fname) \
1974 static inline void op_ld_##insn(TCGv ret, TCGv arg1, DisasContext *ctx) \
1976 TCGv t0 = tcg_temp_new(); \
1977 tcg_gen_mov_tl(t0, arg1); \
1978 tcg_gen_qemu_##fname(ret, arg1, ctx->mem_idx); \
1979 tcg_gen_st_tl(t0, cpu_env, offsetof(CPUMIPSState, lladdr)); \
1980 tcg_gen_st_tl(ret, cpu_env, offsetof(CPUMIPSState, llval)); \
1981 tcg_temp_free(t0); \
1984 #define OP_LD_ATOMIC(insn,fname) \
1985 static inline void op_ld_##insn(TCGv ret, TCGv arg1, DisasContext *ctx) \
1987 gen_helper_1e1i(insn, ret, arg1, ctx->mem_idx); \
1990 OP_LD_ATOMIC(ll
,ld32s
);
1991 #if defined(TARGET_MIPS64)
1992 OP_LD_ATOMIC(lld
,ld64
);
1996 #ifdef CONFIG_USER_ONLY
1997 #define OP_ST_ATOMIC(insn,fname,ldname,almask) \
1998 static inline void op_st_##insn(TCGv arg1, TCGv arg2, int rt, DisasContext *ctx) \
2000 TCGv t0 = tcg_temp_new(); \
2001 int l1 = gen_new_label(); \
2002 int l2 = gen_new_label(); \
2004 tcg_gen_andi_tl(t0, arg2, almask); \
2005 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1); \
2006 tcg_gen_st_tl(arg2, cpu_env, offsetof(CPUMIPSState, CP0_BadVAddr)); \
2007 generate_exception(ctx, EXCP_AdES); \
2008 gen_set_label(l1); \
2009 tcg_gen_ld_tl(t0, cpu_env, offsetof(CPUMIPSState, lladdr)); \
2010 tcg_gen_brcond_tl(TCG_COND_NE, arg2, t0, l2); \
2011 tcg_gen_movi_tl(t0, rt | ((almask << 3) & 0x20)); \
2012 tcg_gen_st_tl(t0, cpu_env, offsetof(CPUMIPSState, llreg)); \
2013 tcg_gen_st_tl(arg1, cpu_env, offsetof(CPUMIPSState, llnewval)); \
2014 gen_helper_0e0i(raise_exception, EXCP_SC); \
2015 gen_set_label(l2); \
2016 tcg_gen_movi_tl(t0, 0); \
2017 gen_store_gpr(t0, rt); \
2018 tcg_temp_free(t0); \
2021 #define OP_ST_ATOMIC(insn,fname,ldname,almask) \
2022 static inline void op_st_##insn(TCGv arg1, TCGv arg2, int rt, DisasContext *ctx) \
2024 TCGv t0 = tcg_temp_new(); \
2025 gen_helper_1e2i(insn, t0, arg1, arg2, ctx->mem_idx); \
2026 gen_store_gpr(t0, rt); \
2027 tcg_temp_free(t0); \
2030 OP_ST_ATOMIC(sc
,st32
,ld32s
,0x3);
2031 #if defined(TARGET_MIPS64)
2032 OP_ST_ATOMIC(scd
,st64
,ld64
,0x7);
2036 static void gen_base_offset_addr (DisasContext
*ctx
, TCGv addr
,
2037 int base
, int16_t offset
)
2040 tcg_gen_movi_tl(addr
, offset
);
2041 } else if (offset
== 0) {
2042 gen_load_gpr(addr
, base
);
2044 tcg_gen_movi_tl(addr
, offset
);
2045 gen_op_addr_add(ctx
, addr
, cpu_gpr
[base
], addr
);
2049 static target_ulong
pc_relative_pc (DisasContext
*ctx
)
2051 target_ulong pc
= ctx
->pc
;
2053 if (ctx
->hflags
& MIPS_HFLAG_BMASK
) {
2054 int branch_bytes
= ctx
->hflags
& MIPS_HFLAG_BDS16
? 2 : 4;
2059 pc
&= ~(target_ulong
)3;
2064 static void gen_ld(DisasContext
*ctx
, uint32_t opc
,
2065 int rt
, int base
, int16_t offset
)
2067 const char *opn
= "ld";
2070 if (rt
== 0 && ctx
->insn_flags
& (INSN_LOONGSON2E
| INSN_LOONGSON2F
)) {
2071 /* Loongson CPU uses a load to zero register for prefetch.
2072 We emulate it as a NOP. On other CPU we must perform the
2073 actual memory access. */
2078 t0
= tcg_temp_new();
2079 gen_base_offset_addr(ctx
, t0
, base
, offset
);
2082 #if defined(TARGET_MIPS64)
2084 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEUL
);
2085 gen_store_gpr(t0
, rt
);
2089 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEQ
);
2090 gen_store_gpr(t0
, rt
);
2095 save_cpu_state(ctx
, 1);
2096 op_ld_lld(t0
, t0
, ctx
);
2097 gen_store_gpr(t0
, rt
);
2101 t1
= tcg_temp_new();
2102 tcg_gen_andi_tl(t1
, t0
, 7);
2103 #ifndef TARGET_WORDS_BIGENDIAN
2104 tcg_gen_xori_tl(t1
, t1
, 7);
2106 tcg_gen_shli_tl(t1
, t1
, 3);
2107 tcg_gen_andi_tl(t0
, t0
, ~7);
2108 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEQ
);
2109 tcg_gen_shl_tl(t0
, t0
, t1
);
2110 tcg_gen_xori_tl(t1
, t1
, 63);
2111 t2
= tcg_const_tl(0x7fffffffffffffffull
);
2112 tcg_gen_shr_tl(t2
, t2
, t1
);
2113 gen_load_gpr(t1
, rt
);
2114 tcg_gen_and_tl(t1
, t1
, t2
);
2116 tcg_gen_or_tl(t0
, t0
, t1
);
2118 gen_store_gpr(t0
, rt
);
2122 t1
= tcg_temp_new();
2123 tcg_gen_andi_tl(t1
, t0
, 7);
2124 #ifdef TARGET_WORDS_BIGENDIAN
2125 tcg_gen_xori_tl(t1
, t1
, 7);
2127 tcg_gen_shli_tl(t1
, t1
, 3);
2128 tcg_gen_andi_tl(t0
, t0
, ~7);
2129 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEQ
);
2130 tcg_gen_shr_tl(t0
, t0
, t1
);
2131 tcg_gen_xori_tl(t1
, t1
, 63);
2132 t2
= tcg_const_tl(0xfffffffffffffffeull
);
2133 tcg_gen_shl_tl(t2
, t2
, t1
);
2134 gen_load_gpr(t1
, rt
);
2135 tcg_gen_and_tl(t1
, t1
, t2
);
2137 tcg_gen_or_tl(t0
, t0
, t1
);
2139 gen_store_gpr(t0
, rt
);
2143 t1
= tcg_const_tl(pc_relative_pc(ctx
));
2144 gen_op_addr_add(ctx
, t0
, t0
, t1
);
2146 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEQ
);
2147 gen_store_gpr(t0
, rt
);
2152 t1
= tcg_const_tl(pc_relative_pc(ctx
));
2153 gen_op_addr_add(ctx
, t0
, t0
, t1
);
2155 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TESL
);
2156 gen_store_gpr(t0
, rt
);
2160 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TESL
);
2161 gen_store_gpr(t0
, rt
);
2165 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TESW
);
2166 gen_store_gpr(t0
, rt
);
2170 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEUW
);
2171 gen_store_gpr(t0
, rt
);
2175 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_SB
);
2176 gen_store_gpr(t0
, rt
);
2180 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_UB
);
2181 gen_store_gpr(t0
, rt
);
2185 t1
= tcg_temp_new();
2186 tcg_gen_andi_tl(t1
, t0
, 3);
2187 #ifndef TARGET_WORDS_BIGENDIAN
2188 tcg_gen_xori_tl(t1
, t1
, 3);
2190 tcg_gen_shli_tl(t1
, t1
, 3);
2191 tcg_gen_andi_tl(t0
, t0
, ~3);
2192 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEUL
);
2193 tcg_gen_shl_tl(t0
, t0
, t1
);
2194 tcg_gen_xori_tl(t1
, t1
, 31);
2195 t2
= tcg_const_tl(0x7fffffffull
);
2196 tcg_gen_shr_tl(t2
, t2
, t1
);
2197 gen_load_gpr(t1
, rt
);
2198 tcg_gen_and_tl(t1
, t1
, t2
);
2200 tcg_gen_or_tl(t0
, t0
, t1
);
2202 tcg_gen_ext32s_tl(t0
, t0
);
2203 gen_store_gpr(t0
, rt
);
2207 t1
= tcg_temp_new();
2208 tcg_gen_andi_tl(t1
, t0
, 3);
2209 #ifdef TARGET_WORDS_BIGENDIAN
2210 tcg_gen_xori_tl(t1
, t1
, 3);
2212 tcg_gen_shli_tl(t1
, t1
, 3);
2213 tcg_gen_andi_tl(t0
, t0
, ~3);
2214 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEUL
);
2215 tcg_gen_shr_tl(t0
, t0
, t1
);
2216 tcg_gen_xori_tl(t1
, t1
, 31);
2217 t2
= tcg_const_tl(0xfffffffeull
);
2218 tcg_gen_shl_tl(t2
, t2
, t1
);
2219 gen_load_gpr(t1
, rt
);
2220 tcg_gen_and_tl(t1
, t1
, t2
);
2222 tcg_gen_or_tl(t0
, t0
, t1
);
2224 tcg_gen_ext32s_tl(t0
, t0
);
2225 gen_store_gpr(t0
, rt
);
2230 save_cpu_state(ctx
, 1);
2231 op_ld_ll(t0
, t0
, ctx
);
2232 gen_store_gpr(t0
, rt
);
2236 (void)opn
; /* avoid a compiler warning */
2237 MIPS_DEBUG("%s %s, %d(%s)", opn
, regnames
[rt
], offset
, regnames
[base
]);
2242 static void gen_st (DisasContext
*ctx
, uint32_t opc
, int rt
,
2243 int base
, int16_t offset
)
2245 const char *opn
= "st";
2246 TCGv t0
= tcg_temp_new();
2247 TCGv t1
= tcg_temp_new();
2249 gen_base_offset_addr(ctx
, t0
, base
, offset
);
2250 gen_load_gpr(t1
, rt
);
2252 #if defined(TARGET_MIPS64)
2254 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEQ
);
2258 save_cpu_state(ctx
, 1);
2259 gen_helper_0e2i(sdl
, t1
, t0
, ctx
->mem_idx
);
2263 save_cpu_state(ctx
, 1);
2264 gen_helper_0e2i(sdr
, t1
, t0
, ctx
->mem_idx
);
2269 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUL
);
2273 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUW
);
2277 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_8
);
2281 save_cpu_state(ctx
, 1);
2282 gen_helper_0e2i(swl
, t1
, t0
, ctx
->mem_idx
);
2286 save_cpu_state(ctx
, 1);
2287 gen_helper_0e2i(swr
, t1
, t0
, ctx
->mem_idx
);
2291 (void)opn
; /* avoid a compiler warning */
2292 MIPS_DEBUG("%s %s, %d(%s)", opn
, regnames
[rt
], offset
, regnames
[base
]);
2298 /* Store conditional */
2299 static void gen_st_cond (DisasContext
*ctx
, uint32_t opc
, int rt
,
2300 int base
, int16_t offset
)
2302 const char *opn
= "st_cond";
2305 #ifdef CONFIG_USER_ONLY
2306 t0
= tcg_temp_local_new();
2307 t1
= tcg_temp_local_new();
2309 t0
= tcg_temp_new();
2310 t1
= tcg_temp_new();
2312 gen_base_offset_addr(ctx
, t0
, base
, offset
);
2313 gen_load_gpr(t1
, rt
);
2315 #if defined(TARGET_MIPS64)
2318 save_cpu_state(ctx
, 1);
2319 op_st_scd(t1
, t0
, rt
, ctx
);
2325 save_cpu_state(ctx
, 1);
2326 op_st_sc(t1
, t0
, rt
, ctx
);
2330 (void)opn
; /* avoid a compiler warning */
2331 MIPS_DEBUG("%s %s, %d(%s)", opn
, regnames
[rt
], offset
, regnames
[base
]);
2336 /* Load and store */
2337 static void gen_flt_ldst (DisasContext
*ctx
, uint32_t opc
, int ft
,
2338 int base
, int16_t offset
)
2340 const char *opn
= "flt_ldst";
2341 TCGv t0
= tcg_temp_new();
2343 gen_base_offset_addr(ctx
, t0
, base
, offset
);
2344 /* Don't do NOP if destination is zero: we must perform the actual
2349 TCGv_i32 fp0
= tcg_temp_new_i32();
2350 tcg_gen_qemu_ld_i32(fp0
, t0
, ctx
->mem_idx
, MO_TESL
);
2351 gen_store_fpr32(fp0
, ft
);
2352 tcg_temp_free_i32(fp0
);
2358 TCGv_i32 fp0
= tcg_temp_new_i32();
2359 gen_load_fpr32(fp0
, ft
);
2360 tcg_gen_qemu_st_i32(fp0
, t0
, ctx
->mem_idx
, MO_TEUL
);
2361 tcg_temp_free_i32(fp0
);
2367 TCGv_i64 fp0
= tcg_temp_new_i64();
2368 tcg_gen_qemu_ld_i64(fp0
, t0
, ctx
->mem_idx
, MO_TEQ
);
2369 gen_store_fpr64(ctx
, fp0
, ft
);
2370 tcg_temp_free_i64(fp0
);
2376 TCGv_i64 fp0
= tcg_temp_new_i64();
2377 gen_load_fpr64(ctx
, fp0
, ft
);
2378 tcg_gen_qemu_st_i64(fp0
, t0
, ctx
->mem_idx
, MO_TEQ
);
2379 tcg_temp_free_i64(fp0
);
2385 generate_exception(ctx
, EXCP_RI
);
2388 (void)opn
; /* avoid a compiler warning */
2389 MIPS_DEBUG("%s %s, %d(%s)", opn
, fregnames
[ft
], offset
, regnames
[base
]);
2394 static void gen_cop1_ldst(DisasContext
*ctx
, uint32_t op
, int rt
,
2395 int rs
, int16_t imm
)
2397 if (ctx
->CP0_Config1
& (1 << CP0C1_FP
)) {
2398 check_cp1_enabled(ctx
);
2402 check_insn(ctx
, ISA_MIPS2
);
2405 gen_flt_ldst(ctx
, op
, rt
, rs
, imm
);
2408 generate_exception_err(ctx
, EXCP_CpU
, 1);
2412 /* Arithmetic with immediate operand */
2413 static void gen_arith_imm(DisasContext
*ctx
, uint32_t opc
,
2414 int rt
, int rs
, int16_t imm
)
2416 target_ulong uimm
= (target_long
)imm
; /* Sign extend to 32/64 bits */
2417 const char *opn
= "imm arith";
2419 if (rt
== 0 && opc
!= OPC_ADDI
&& opc
!= OPC_DADDI
) {
2420 /* If no destination, treat it as a NOP.
2421 For addi, we must generate the overflow exception when needed. */
2428 TCGv t0
= tcg_temp_local_new();
2429 TCGv t1
= tcg_temp_new();
2430 TCGv t2
= tcg_temp_new();
2431 int l1
= gen_new_label();
2433 gen_load_gpr(t1
, rs
);
2434 tcg_gen_addi_tl(t0
, t1
, uimm
);
2435 tcg_gen_ext32s_tl(t0
, t0
);
2437 tcg_gen_xori_tl(t1
, t1
, ~uimm
);
2438 tcg_gen_xori_tl(t2
, t0
, uimm
);
2439 tcg_gen_and_tl(t1
, t1
, t2
);
2441 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
2443 /* operands of same sign, result different sign */
2444 generate_exception(ctx
, EXCP_OVERFLOW
);
2446 tcg_gen_ext32s_tl(t0
, t0
);
2447 gen_store_gpr(t0
, rt
);
2454 tcg_gen_addi_tl(cpu_gpr
[rt
], cpu_gpr
[rs
], uimm
);
2455 tcg_gen_ext32s_tl(cpu_gpr
[rt
], cpu_gpr
[rt
]);
2457 tcg_gen_movi_tl(cpu_gpr
[rt
], uimm
);
2461 #if defined(TARGET_MIPS64)
2464 TCGv t0
= tcg_temp_local_new();
2465 TCGv t1
= tcg_temp_new();
2466 TCGv t2
= tcg_temp_new();
2467 int l1
= gen_new_label();
2469 gen_load_gpr(t1
, rs
);
2470 tcg_gen_addi_tl(t0
, t1
, uimm
);
2472 tcg_gen_xori_tl(t1
, t1
, ~uimm
);
2473 tcg_gen_xori_tl(t2
, t0
, uimm
);
2474 tcg_gen_and_tl(t1
, t1
, t2
);
2476 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
2478 /* operands of same sign, result different sign */
2479 generate_exception(ctx
, EXCP_OVERFLOW
);
2481 gen_store_gpr(t0
, rt
);
2488 tcg_gen_addi_tl(cpu_gpr
[rt
], cpu_gpr
[rs
], uimm
);
2490 tcg_gen_movi_tl(cpu_gpr
[rt
], uimm
);
2496 (void)opn
; /* avoid a compiler warning */
2497 MIPS_DEBUG("%s %s, %s, " TARGET_FMT_lx
, opn
, regnames
[rt
], regnames
[rs
], uimm
);
2500 /* Logic with immediate operand */
2501 static void gen_logic_imm(DisasContext
*ctx
, uint32_t opc
,
2502 int rt
, int rs
, int16_t imm
)
2507 /* If no destination, treat it as a NOP. */
2511 uimm
= (uint16_t)imm
;
2514 if (likely(rs
!= 0))
2515 tcg_gen_andi_tl(cpu_gpr
[rt
], cpu_gpr
[rs
], uimm
);
2517 tcg_gen_movi_tl(cpu_gpr
[rt
], 0);
2518 MIPS_DEBUG("andi %s, %s, " TARGET_FMT_lx
, regnames
[rt
],
2519 regnames
[rs
], uimm
);
2523 tcg_gen_ori_tl(cpu_gpr
[rt
], cpu_gpr
[rs
], uimm
);
2525 tcg_gen_movi_tl(cpu_gpr
[rt
], uimm
);
2526 MIPS_DEBUG("ori %s, %s, " TARGET_FMT_lx
, regnames
[rt
],
2527 regnames
[rs
], uimm
);
2530 if (likely(rs
!= 0))
2531 tcg_gen_xori_tl(cpu_gpr
[rt
], cpu_gpr
[rs
], uimm
);
2533 tcg_gen_movi_tl(cpu_gpr
[rt
], uimm
);
2534 MIPS_DEBUG("xori %s, %s, " TARGET_FMT_lx
, regnames
[rt
],
2535 regnames
[rs
], uimm
);
2538 if (rs
!= 0 && (ctx
->insn_flags
& ISA_MIPS32R6
)) {
2540 tcg_gen_addi_tl(cpu_gpr
[rt
], cpu_gpr
[rs
], imm
<< 16);
2541 tcg_gen_ext32s_tl(cpu_gpr
[rt
], cpu_gpr
[rt
]);
2542 MIPS_DEBUG("aui %s, %s, %04x", regnames
[rt
], regnames
[rs
], imm
);
2544 tcg_gen_movi_tl(cpu_gpr
[rt
], imm
<< 16);
2545 MIPS_DEBUG("lui %s, " TARGET_FMT_lx
, regnames
[rt
], uimm
);
2550 MIPS_DEBUG("Unknown logical immediate opcode %08x", opc
);
2555 /* Set on less than with immediate operand */
2556 static void gen_slt_imm(DisasContext
*ctx
, uint32_t opc
,
2557 int rt
, int rs
, int16_t imm
)
2559 target_ulong uimm
= (target_long
)imm
; /* Sign extend to 32/64 bits */
2560 const char *opn
= "imm arith";
2564 /* If no destination, treat it as a NOP. */
2568 t0
= tcg_temp_new();
2569 gen_load_gpr(t0
, rs
);
2572 tcg_gen_setcondi_tl(TCG_COND_LT
, cpu_gpr
[rt
], t0
, uimm
);
2576 tcg_gen_setcondi_tl(TCG_COND_LTU
, cpu_gpr
[rt
], t0
, uimm
);
2580 (void)opn
; /* avoid a compiler warning */
2581 MIPS_DEBUG("%s %s, %s, " TARGET_FMT_lx
, opn
, regnames
[rt
], regnames
[rs
], uimm
);
2585 /* Shifts with immediate operand */
2586 static void gen_shift_imm(DisasContext
*ctx
, uint32_t opc
,
2587 int rt
, int rs
, int16_t imm
)
2589 target_ulong uimm
= ((uint16_t)imm
) & 0x1f;
2590 const char *opn
= "imm shift";
2594 /* If no destination, treat it as a NOP. */
2599 t0
= tcg_temp_new();
2600 gen_load_gpr(t0
, rs
);
2603 tcg_gen_shli_tl(t0
, t0
, uimm
);
2604 tcg_gen_ext32s_tl(cpu_gpr
[rt
], t0
);
2608 tcg_gen_sari_tl(cpu_gpr
[rt
], t0
, uimm
);
2613 tcg_gen_ext32u_tl(t0
, t0
);
2614 tcg_gen_shri_tl(cpu_gpr
[rt
], t0
, uimm
);
2616 tcg_gen_ext32s_tl(cpu_gpr
[rt
], t0
);
2622 TCGv_i32 t1
= tcg_temp_new_i32();
2624 tcg_gen_trunc_tl_i32(t1
, t0
);
2625 tcg_gen_rotri_i32(t1
, t1
, uimm
);
2626 tcg_gen_ext_i32_tl(cpu_gpr
[rt
], t1
);
2627 tcg_temp_free_i32(t1
);
2629 tcg_gen_ext32s_tl(cpu_gpr
[rt
], t0
);
2633 #if defined(TARGET_MIPS64)
2635 tcg_gen_shli_tl(cpu_gpr
[rt
], t0
, uimm
);
2639 tcg_gen_sari_tl(cpu_gpr
[rt
], t0
, uimm
);
2643 tcg_gen_shri_tl(cpu_gpr
[rt
], t0
, uimm
);
2648 tcg_gen_rotri_tl(cpu_gpr
[rt
], t0
, uimm
);
2650 tcg_gen_mov_tl(cpu_gpr
[rt
], t0
);
2655 tcg_gen_shli_tl(cpu_gpr
[rt
], t0
, uimm
+ 32);
2659 tcg_gen_sari_tl(cpu_gpr
[rt
], t0
, uimm
+ 32);
2663 tcg_gen_shri_tl(cpu_gpr
[rt
], t0
, uimm
+ 32);
2667 tcg_gen_rotri_tl(cpu_gpr
[rt
], t0
, uimm
+ 32);
2672 (void)opn
; /* avoid a compiler warning */
2673 MIPS_DEBUG("%s %s, %s, " TARGET_FMT_lx
, opn
, regnames
[rt
], regnames
[rs
], uimm
);
2678 static void gen_arith(DisasContext
*ctx
, uint32_t opc
,
2679 int rd
, int rs
, int rt
)
2681 const char *opn
= "arith";
2683 if (rd
== 0 && opc
!= OPC_ADD
&& opc
!= OPC_SUB
2684 && opc
!= OPC_DADD
&& opc
!= OPC_DSUB
) {
2685 /* If no destination, treat it as a NOP.
2686 For add & sub, we must generate the overflow exception when needed. */
2694 TCGv t0
= tcg_temp_local_new();
2695 TCGv t1
= tcg_temp_new();
2696 TCGv t2
= tcg_temp_new();
2697 int l1
= gen_new_label();
2699 gen_load_gpr(t1
, rs
);
2700 gen_load_gpr(t2
, rt
);
2701 tcg_gen_add_tl(t0
, t1
, t2
);
2702 tcg_gen_ext32s_tl(t0
, t0
);
2703 tcg_gen_xor_tl(t1
, t1
, t2
);
2704 tcg_gen_xor_tl(t2
, t0
, t2
);
2705 tcg_gen_andc_tl(t1
, t2
, t1
);
2707 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
2709 /* operands of same sign, result different sign */
2710 generate_exception(ctx
, EXCP_OVERFLOW
);
2712 gen_store_gpr(t0
, rd
);
2718 if (rs
!= 0 && rt
!= 0) {
2719 tcg_gen_add_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2720 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
2721 } else if (rs
== 0 && rt
!= 0) {
2722 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rt
]);
2723 } else if (rs
!= 0 && rt
== 0) {
2724 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
2726 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2732 TCGv t0
= tcg_temp_local_new();
2733 TCGv t1
= tcg_temp_new();
2734 TCGv t2
= tcg_temp_new();
2735 int l1
= gen_new_label();
2737 gen_load_gpr(t1
, rs
);
2738 gen_load_gpr(t2
, rt
);
2739 tcg_gen_sub_tl(t0
, t1
, t2
);
2740 tcg_gen_ext32s_tl(t0
, t0
);
2741 tcg_gen_xor_tl(t2
, t1
, t2
);
2742 tcg_gen_xor_tl(t1
, t0
, t1
);
2743 tcg_gen_and_tl(t1
, t1
, t2
);
2745 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
2747 /* operands of different sign, first operand and result different sign */
2748 generate_exception(ctx
, EXCP_OVERFLOW
);
2750 gen_store_gpr(t0
, rd
);
2756 if (rs
!= 0 && rt
!= 0) {
2757 tcg_gen_sub_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2758 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
2759 } else if (rs
== 0 && rt
!= 0) {
2760 tcg_gen_neg_tl(cpu_gpr
[rd
], cpu_gpr
[rt
]);
2761 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
2762 } else if (rs
!= 0 && rt
== 0) {
2763 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
2765 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2769 #if defined(TARGET_MIPS64)
2772 TCGv t0
= tcg_temp_local_new();
2773 TCGv t1
= tcg_temp_new();
2774 TCGv t2
= tcg_temp_new();
2775 int l1
= gen_new_label();
2777 gen_load_gpr(t1
, rs
);
2778 gen_load_gpr(t2
, rt
);
2779 tcg_gen_add_tl(t0
, t1
, t2
);
2780 tcg_gen_xor_tl(t1
, t1
, t2
);
2781 tcg_gen_xor_tl(t2
, t0
, t2
);
2782 tcg_gen_andc_tl(t1
, t2
, t1
);
2784 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
2786 /* operands of same sign, result different sign */
2787 generate_exception(ctx
, EXCP_OVERFLOW
);
2789 gen_store_gpr(t0
, rd
);
2795 if (rs
!= 0 && rt
!= 0) {
2796 tcg_gen_add_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2797 } else if (rs
== 0 && rt
!= 0) {
2798 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rt
]);
2799 } else if (rs
!= 0 && rt
== 0) {
2800 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
2802 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2808 TCGv t0
= tcg_temp_local_new();
2809 TCGv t1
= tcg_temp_new();
2810 TCGv t2
= tcg_temp_new();
2811 int l1
= gen_new_label();
2813 gen_load_gpr(t1
, rs
);
2814 gen_load_gpr(t2
, rt
);
2815 tcg_gen_sub_tl(t0
, t1
, t2
);
2816 tcg_gen_xor_tl(t2
, t1
, t2
);
2817 tcg_gen_xor_tl(t1
, t0
, t1
);
2818 tcg_gen_and_tl(t1
, t1
, t2
);
2820 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
2822 /* operands of different sign, first operand and result different sign */
2823 generate_exception(ctx
, EXCP_OVERFLOW
);
2825 gen_store_gpr(t0
, rd
);
2831 if (rs
!= 0 && rt
!= 0) {
2832 tcg_gen_sub_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2833 } else if (rs
== 0 && rt
!= 0) {
2834 tcg_gen_neg_tl(cpu_gpr
[rd
], cpu_gpr
[rt
]);
2835 } else if (rs
!= 0 && rt
== 0) {
2836 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
2838 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2844 if (likely(rs
!= 0 && rt
!= 0)) {
2845 tcg_gen_mul_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2846 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
2848 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2853 (void)opn
; /* avoid a compiler warning */
2854 MIPS_DEBUG("%s %s, %s, %s", opn
, regnames
[rd
], regnames
[rs
], regnames
[rt
]);
2857 /* Conditional move */
2858 static void gen_cond_move(DisasContext
*ctx
, uint32_t opc
,
2859 int rd
, int rs
, int rt
)
2861 const char *opn
= "cond move";
2865 /* If no destination, treat it as a NOP. */
2870 t0
= tcg_temp_new();
2871 gen_load_gpr(t0
, rt
);
2872 t1
= tcg_const_tl(0);
2873 t2
= tcg_temp_new();
2874 gen_load_gpr(t2
, rs
);
2877 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr
[rd
], t0
, t1
, t2
, cpu_gpr
[rd
]);
2881 tcg_gen_movcond_tl(TCG_COND_EQ
, cpu_gpr
[rd
], t0
, t1
, t2
, cpu_gpr
[rd
]);
2885 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr
[rd
], t0
, t1
, t2
, t1
);
2889 tcg_gen_movcond_tl(TCG_COND_EQ
, cpu_gpr
[rd
], t0
, t1
, t2
, t1
);
2897 (void)opn
; /* avoid a compiler warning */
2898 MIPS_DEBUG("%s %s, %s, %s", opn
, regnames
[rd
], regnames
[rs
], regnames
[rt
]);
2902 static void gen_logic(DisasContext
*ctx
, uint32_t opc
,
2903 int rd
, int rs
, int rt
)
2905 const char *opn
= "logic";
2908 /* If no destination, treat it as a NOP. */
2915 if (likely(rs
!= 0 && rt
!= 0)) {
2916 tcg_gen_and_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2918 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2923 if (rs
!= 0 && rt
!= 0) {
2924 tcg_gen_nor_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2925 } else if (rs
== 0 && rt
!= 0) {
2926 tcg_gen_not_tl(cpu_gpr
[rd
], cpu_gpr
[rt
]);
2927 } else if (rs
!= 0 && rt
== 0) {
2928 tcg_gen_not_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
2930 tcg_gen_movi_tl(cpu_gpr
[rd
], ~((target_ulong
)0));
2935 if (likely(rs
!= 0 && rt
!= 0)) {
2936 tcg_gen_or_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2937 } else if (rs
== 0 && rt
!= 0) {
2938 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rt
]);
2939 } else if (rs
!= 0 && rt
== 0) {
2940 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
2942 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2947 if (likely(rs
!= 0 && rt
!= 0)) {
2948 tcg_gen_xor_tl(cpu_gpr
[rd
], cpu_gpr
[rs
], cpu_gpr
[rt
]);
2949 } else if (rs
== 0 && rt
!= 0) {
2950 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rt
]);
2951 } else if (rs
!= 0 && rt
== 0) {
2952 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
2954 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
2959 (void)opn
; /* avoid a compiler warning */
2960 MIPS_DEBUG("%s %s, %s, %s", opn
, regnames
[rd
], regnames
[rs
], regnames
[rt
]);
2963 /* Set on lower than */
2964 static void gen_slt(DisasContext
*ctx
, uint32_t opc
,
2965 int rd
, int rs
, int rt
)
2967 const char *opn
= "slt";
2971 /* If no destination, treat it as a NOP. */
2976 t0
= tcg_temp_new();
2977 t1
= tcg_temp_new();
2978 gen_load_gpr(t0
, rs
);
2979 gen_load_gpr(t1
, rt
);
2982 tcg_gen_setcond_tl(TCG_COND_LT
, cpu_gpr
[rd
], t0
, t1
);
2986 tcg_gen_setcond_tl(TCG_COND_LTU
, cpu_gpr
[rd
], t0
, t1
);
2990 (void)opn
; /* avoid a compiler warning */
2991 MIPS_DEBUG("%s %s, %s, %s", opn
, regnames
[rd
], regnames
[rs
], regnames
[rt
]);
2997 static void gen_shift(DisasContext
*ctx
, uint32_t opc
,
2998 int rd
, int rs
, int rt
)
3000 const char *opn
= "shifts";
3004 /* If no destination, treat it as a NOP.
3005 For add & sub, we must generate the overflow exception when needed. */
3010 t0
= tcg_temp_new();
3011 t1
= tcg_temp_new();
3012 gen_load_gpr(t0
, rs
);
3013 gen_load_gpr(t1
, rt
);
3016 tcg_gen_andi_tl(t0
, t0
, 0x1f);
3017 tcg_gen_shl_tl(t0
, t1
, t0
);
3018 tcg_gen_ext32s_tl(cpu_gpr
[rd
], t0
);
3022 tcg_gen_andi_tl(t0
, t0
, 0x1f);
3023 tcg_gen_sar_tl(cpu_gpr
[rd
], t1
, t0
);
3027 tcg_gen_ext32u_tl(t1
, t1
);
3028 tcg_gen_andi_tl(t0
, t0
, 0x1f);
3029 tcg_gen_shr_tl(t0
, t1
, t0
);
3030 tcg_gen_ext32s_tl(cpu_gpr
[rd
], t0
);
3035 TCGv_i32 t2
= tcg_temp_new_i32();
3036 TCGv_i32 t3
= tcg_temp_new_i32();
3038 tcg_gen_trunc_tl_i32(t2
, t0
);
3039 tcg_gen_trunc_tl_i32(t3
, t1
);
3040 tcg_gen_andi_i32(t2
, t2
, 0x1f);
3041 tcg_gen_rotr_i32(t2
, t3
, t2
);
3042 tcg_gen_ext_i32_tl(cpu_gpr
[rd
], t2
);
3043 tcg_temp_free_i32(t2
);
3044 tcg_temp_free_i32(t3
);
3048 #if defined(TARGET_MIPS64)
3050 tcg_gen_andi_tl(t0
, t0
, 0x3f);
3051 tcg_gen_shl_tl(cpu_gpr
[rd
], t1
, t0
);
3055 tcg_gen_andi_tl(t0
, t0
, 0x3f);
3056 tcg_gen_sar_tl(cpu_gpr
[rd
], t1
, t0
);
3060 tcg_gen_andi_tl(t0
, t0
, 0x3f);
3061 tcg_gen_shr_tl(cpu_gpr
[rd
], t1
, t0
);
3065 tcg_gen_andi_tl(t0
, t0
, 0x3f);
3066 tcg_gen_rotr_tl(cpu_gpr
[rd
], t1
, t0
);
3071 (void)opn
; /* avoid a compiler warning */
3072 MIPS_DEBUG("%s %s, %s, %s", opn
, regnames
[rd
], regnames
[rs
], regnames
[rt
]);
3077 /* Arithmetic on HI/LO registers */
3078 static void gen_HILO(DisasContext
*ctx
, uint32_t opc
, int acc
, int reg
)
3080 const char *opn
= "hilo";
3082 if (reg
== 0 && (opc
== OPC_MFHI
|| opc
== OPC_MFLO
)) {
3094 #if defined(TARGET_MIPS64)
3096 tcg_gen_ext32s_tl(cpu_gpr
[reg
], cpu_HI
[acc
]);
3100 tcg_gen_mov_tl(cpu_gpr
[reg
], cpu_HI
[acc
]);
3105 #if defined(TARGET_MIPS64)
3107 tcg_gen_ext32s_tl(cpu_gpr
[reg
], cpu_LO
[acc
]);
3111 tcg_gen_mov_tl(cpu_gpr
[reg
], cpu_LO
[acc
]);
3117 #if defined(TARGET_MIPS64)
3119 tcg_gen_ext32s_tl(cpu_HI
[acc
], cpu_gpr
[reg
]);
3123 tcg_gen_mov_tl(cpu_HI
[acc
], cpu_gpr
[reg
]);
3126 tcg_gen_movi_tl(cpu_HI
[acc
], 0);
3132 #if defined(TARGET_MIPS64)
3134 tcg_gen_ext32s_tl(cpu_LO
[acc
], cpu_gpr
[reg
]);
3138 tcg_gen_mov_tl(cpu_LO
[acc
], cpu_gpr
[reg
]);
3141 tcg_gen_movi_tl(cpu_LO
[acc
], 0);
3146 (void)opn
; /* avoid a compiler warning */
3147 MIPS_DEBUG("%s %s", opn
, regnames
[reg
]);
3150 static inline void gen_r6_ld(target_long addr
, int reg
, int memidx
,
3153 TCGv t0
= tcg_const_tl(addr
);
3154 tcg_gen_qemu_ld_tl(t0
, t0
, memidx
, memop
);
3155 gen_store_gpr(t0
, reg
);
3159 static inline void gen_pcrel(DisasContext
*ctx
, int rs
, int16_t imm
)
3164 switch (MASK_OPC_PCREL_TOP2BITS(ctx
->opcode
)) {
3167 offset
= sextract32(ctx
->opcode
<< 2, 0, 21);
3168 addr
= addr_add(ctx
, ctx
->pc
, offset
);
3169 tcg_gen_movi_tl(cpu_gpr
[rs
], addr
);
3173 offset
= sextract32(ctx
->opcode
<< 2, 0, 21);
3174 addr
= addr_add(ctx
, ctx
->pc
, offset
);
3175 gen_r6_ld(addr
, rs
, ctx
->mem_idx
, MO_TESL
);
3177 #if defined(TARGET_MIPS64)
3180 offset
= sextract32(ctx
->opcode
<< 2, 0, 21);
3181 addr
= addr_add(ctx
, ctx
->pc
, offset
);
3182 gen_r6_ld(addr
, rs
, ctx
->mem_idx
, MO_TEUL
);
3186 switch (MASK_OPC_PCREL_TOP5BITS(ctx
->opcode
)) {
3190 addr
= addr_add(ctx
, ctx
->pc
, offset
);
3191 tcg_gen_movi_tl(cpu_gpr
[rs
], addr
);
3197 addr
= ~0xFFFF & addr_add(ctx
, ctx
->pc
, offset
);
3198 tcg_gen_movi_tl(cpu_gpr
[rs
], addr
);
3201 #if defined(TARGET_MIPS64)
3202 case R6_OPC_LDPC
: /* bits 16 and 17 are part of immediate */
3203 case R6_OPC_LDPC
+ (1 << 16):
3204 case R6_OPC_LDPC
+ (2 << 16):
3205 case R6_OPC_LDPC
+ (3 << 16):
3207 offset
= sextract32(ctx
->opcode
<< 3, 0, 21);
3208 addr
= addr_add(ctx
, (ctx
->pc
& ~0x7), offset
);
3209 gen_r6_ld(addr
, rs
, ctx
->mem_idx
, MO_TEQ
);
3213 MIPS_INVAL("OPC_PCREL");
3214 generate_exception(ctx
, EXCP_RI
);
3221 static void gen_r6_muldiv(DisasContext
*ctx
, int opc
, int rd
, int rs
, int rt
)
3223 const char *opn
= "r6 mul/div";
3232 t0
= tcg_temp_new();
3233 t1
= tcg_temp_new();
3235 gen_load_gpr(t0
, rs
);
3236 gen_load_gpr(t1
, rt
);
3241 TCGv t2
= tcg_temp_new();
3242 TCGv t3
= tcg_temp_new();
3243 tcg_gen_ext32s_tl(t0
, t0
);
3244 tcg_gen_ext32s_tl(t1
, t1
);
3245 tcg_gen_setcondi_tl(TCG_COND_EQ
, t2
, t0
, INT_MIN
);
3246 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, -1);
3247 tcg_gen_and_tl(t2
, t2
, t3
);
3248 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, 0);
3249 tcg_gen_or_tl(t2
, t2
, t3
);
3250 tcg_gen_movi_tl(t3
, 0);
3251 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
3252 tcg_gen_div_tl(cpu_gpr
[rd
], t0
, t1
);
3253 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3261 TCGv t2
= tcg_temp_new();
3262 TCGv t3
= tcg_temp_new();
3263 tcg_gen_ext32s_tl(t0
, t0
);
3264 tcg_gen_ext32s_tl(t1
, t1
);
3265 tcg_gen_setcondi_tl(TCG_COND_EQ
, t2
, t0
, INT_MIN
);
3266 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, -1);
3267 tcg_gen_and_tl(t2
, t2
, t3
);
3268 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, 0);
3269 tcg_gen_or_tl(t2
, t2
, t3
);
3270 tcg_gen_movi_tl(t3
, 0);
3271 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
3272 tcg_gen_rem_tl(cpu_gpr
[rd
], t0
, t1
);
3273 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3281 TCGv t2
= tcg_const_tl(0);
3282 TCGv t3
= tcg_const_tl(1);
3283 tcg_gen_ext32u_tl(t0
, t0
);
3284 tcg_gen_ext32u_tl(t1
, t1
);
3285 tcg_gen_movcond_tl(TCG_COND_EQ
, t1
, t1
, t2
, t3
, t1
);
3286 tcg_gen_divu_tl(cpu_gpr
[rd
], t0
, t1
);
3287 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3295 TCGv t2
= tcg_const_tl(0);
3296 TCGv t3
= tcg_const_tl(1);
3297 tcg_gen_ext32u_tl(t0
, t0
);
3298 tcg_gen_ext32u_tl(t1
, t1
);
3299 tcg_gen_movcond_tl(TCG_COND_EQ
, t1
, t1
, t2
, t3
, t1
);
3300 tcg_gen_remu_tl(cpu_gpr
[rd
], t0
, t1
);
3301 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3309 TCGv_i32 t2
= tcg_temp_new_i32();
3310 TCGv_i32 t3
= tcg_temp_new_i32();
3311 tcg_gen_trunc_tl_i32(t2
, t0
);
3312 tcg_gen_trunc_tl_i32(t3
, t1
);
3313 tcg_gen_mul_i32(t2
, t2
, t3
);
3314 tcg_gen_ext_i32_tl(cpu_gpr
[rd
], t2
);
3315 tcg_temp_free_i32(t2
);
3316 tcg_temp_free_i32(t3
);
3322 TCGv_i32 t2
= tcg_temp_new_i32();
3323 TCGv_i32 t3
= tcg_temp_new_i32();
3324 tcg_gen_trunc_tl_i32(t2
, t0
);
3325 tcg_gen_trunc_tl_i32(t3
, t1
);
3326 tcg_gen_muls2_i32(t2
, t3
, t2
, t3
);
3327 tcg_gen_ext_i32_tl(cpu_gpr
[rd
], t3
);
3328 tcg_temp_free_i32(t2
);
3329 tcg_temp_free_i32(t3
);
3335 TCGv_i32 t2
= tcg_temp_new_i32();
3336 TCGv_i32 t3
= tcg_temp_new_i32();
3337 tcg_gen_trunc_tl_i32(t2
, t0
);
3338 tcg_gen_trunc_tl_i32(t3
, t1
);
3339 tcg_gen_mul_i32(t2
, t2
, t3
);
3340 tcg_gen_ext_i32_tl(cpu_gpr
[rd
], t2
);
3341 tcg_temp_free_i32(t2
);
3342 tcg_temp_free_i32(t3
);
3348 TCGv_i32 t2
= tcg_temp_new_i32();
3349 TCGv_i32 t3
= tcg_temp_new_i32();
3350 tcg_gen_trunc_tl_i32(t2
, t0
);
3351 tcg_gen_trunc_tl_i32(t3
, t1
);
3352 tcg_gen_mulu2_i32(t2
, t3
, t2
, t3
);
3353 tcg_gen_ext_i32_tl(cpu_gpr
[rd
], t3
);
3354 tcg_temp_free_i32(t2
);
3355 tcg_temp_free_i32(t3
);
3359 #if defined(TARGET_MIPS64)
3362 TCGv t2
= tcg_temp_new();
3363 TCGv t3
= tcg_temp_new();
3364 tcg_gen_setcondi_tl(TCG_COND_EQ
, t2
, t0
, -1LL << 63);
3365 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, -1LL);
3366 tcg_gen_and_tl(t2
, t2
, t3
);
3367 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, 0);
3368 tcg_gen_or_tl(t2
, t2
, t3
);
3369 tcg_gen_movi_tl(t3
, 0);
3370 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
3371 tcg_gen_div_tl(cpu_gpr
[rd
], t0
, t1
);
3379 TCGv t2
= tcg_temp_new();
3380 TCGv t3
= tcg_temp_new();
3381 tcg_gen_setcondi_tl(TCG_COND_EQ
, t2
, t0
, -1LL << 63);
3382 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, -1LL);
3383 tcg_gen_and_tl(t2
, t2
, t3
);
3384 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, 0);
3385 tcg_gen_or_tl(t2
, t2
, t3
);
3386 tcg_gen_movi_tl(t3
, 0);
3387 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
3388 tcg_gen_rem_tl(cpu_gpr
[rd
], t0
, t1
);
3396 TCGv t2
= tcg_const_tl(0);
3397 TCGv t3
= tcg_const_tl(1);
3398 tcg_gen_movcond_tl(TCG_COND_EQ
, t1
, t1
, t2
, t3
, t1
);
3399 tcg_gen_divu_i64(cpu_gpr
[rd
], t0
, t1
);
3407 TCGv t2
= tcg_const_tl(0);
3408 TCGv t3
= tcg_const_tl(1);
3409 tcg_gen_movcond_tl(TCG_COND_EQ
, t1
, t1
, t2
, t3
, t1
);
3410 tcg_gen_remu_i64(cpu_gpr
[rd
], t0
, t1
);
3417 tcg_gen_mul_i64(cpu_gpr
[rd
], t0
, t1
);
3422 TCGv t2
= tcg_temp_new();
3423 tcg_gen_muls2_i64(t2
, cpu_gpr
[rd
], t0
, t1
);
3429 tcg_gen_mul_i64(cpu_gpr
[rd
], t0
, t1
);
3434 TCGv t2
= tcg_temp_new();
3435 tcg_gen_mulu2_i64(t2
, cpu_gpr
[rd
], t0
, t1
);
3443 generate_exception(ctx
, EXCP_RI
);
3446 (void)opn
; /* avoid a compiler warning */
3447 MIPS_DEBUG("%s %s %s", opn
, regnames
[rs
], regnames
[rt
]);
3453 static void gen_muldiv(DisasContext
*ctx
, uint32_t opc
,
3454 int acc
, int rs
, int rt
)
3456 const char *opn
= "mul/div";
3459 t0
= tcg_temp_new();
3460 t1
= tcg_temp_new();
3462 gen_load_gpr(t0
, rs
);
3463 gen_load_gpr(t1
, rt
);
3472 TCGv t2
= tcg_temp_new();
3473 TCGv t3
= tcg_temp_new();
3474 tcg_gen_ext32s_tl(t0
, t0
);
3475 tcg_gen_ext32s_tl(t1
, t1
);
3476 tcg_gen_setcondi_tl(TCG_COND_EQ
, t2
, t0
, INT_MIN
);
3477 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, -1);
3478 tcg_gen_and_tl(t2
, t2
, t3
);
3479 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, 0);
3480 tcg_gen_or_tl(t2
, t2
, t3
);
3481 tcg_gen_movi_tl(t3
, 0);
3482 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
3483 tcg_gen_div_tl(cpu_LO
[acc
], t0
, t1
);
3484 tcg_gen_rem_tl(cpu_HI
[acc
], t0
, t1
);
3485 tcg_gen_ext32s_tl(cpu_LO
[acc
], cpu_LO
[acc
]);
3486 tcg_gen_ext32s_tl(cpu_HI
[acc
], cpu_HI
[acc
]);
3494 TCGv t2
= tcg_const_tl(0);
3495 TCGv t3
= tcg_const_tl(1);
3496 tcg_gen_ext32u_tl(t0
, t0
);
3497 tcg_gen_ext32u_tl(t1
, t1
);
3498 tcg_gen_movcond_tl(TCG_COND_EQ
, t1
, t1
, t2
, t3
, t1
);
3499 tcg_gen_divu_tl(cpu_LO
[acc
], t0
, t1
);
3500 tcg_gen_remu_tl(cpu_HI
[acc
], t0
, t1
);
3501 tcg_gen_ext32s_tl(cpu_LO
[acc
], cpu_LO
[acc
]);
3502 tcg_gen_ext32s_tl(cpu_HI
[acc
], cpu_HI
[acc
]);
3510 TCGv_i32 t2
= tcg_temp_new_i32();
3511 TCGv_i32 t3
= tcg_temp_new_i32();
3512 tcg_gen_trunc_tl_i32(t2
, t0
);
3513 tcg_gen_trunc_tl_i32(t3
, t1
);
3514 tcg_gen_muls2_i32(t2
, t3
, t2
, t3
);
3515 tcg_gen_ext_i32_tl(cpu_LO
[acc
], t2
);
3516 tcg_gen_ext_i32_tl(cpu_HI
[acc
], t3
);
3517 tcg_temp_free_i32(t2
);
3518 tcg_temp_free_i32(t3
);
3524 TCGv_i32 t2
= tcg_temp_new_i32();
3525 TCGv_i32 t3
= tcg_temp_new_i32();
3526 tcg_gen_trunc_tl_i32(t2
, t0
);
3527 tcg_gen_trunc_tl_i32(t3
, t1
);
3528 tcg_gen_mulu2_i32(t2
, t3
, t2
, t3
);
3529 tcg_gen_ext_i32_tl(cpu_LO
[acc
], t2
);
3530 tcg_gen_ext_i32_tl(cpu_HI
[acc
], t3
);
3531 tcg_temp_free_i32(t2
);
3532 tcg_temp_free_i32(t3
);
3536 #if defined(TARGET_MIPS64)
3539 TCGv t2
= tcg_temp_new();
3540 TCGv t3
= tcg_temp_new();
3541 tcg_gen_setcondi_tl(TCG_COND_EQ
, t2
, t0
, -1LL << 63);
3542 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, -1LL);
3543 tcg_gen_and_tl(t2
, t2
, t3
);
3544 tcg_gen_setcondi_tl(TCG_COND_EQ
, t3
, t1
, 0);
3545 tcg_gen_or_tl(t2
, t2
, t3
);
3546 tcg_gen_movi_tl(t3
, 0);
3547 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
3548 tcg_gen_div_tl(cpu_LO
[acc
], t0
, t1
);
3549 tcg_gen_rem_tl(cpu_HI
[acc
], t0
, t1
);
3557 TCGv t2
= tcg_const_tl(0);
3558 TCGv t3
= tcg_const_tl(1);
3559 tcg_gen_movcond_tl(TCG_COND_EQ
, t1
, t1
, t2
, t3
, t1
);
3560 tcg_gen_divu_i64(cpu_LO
[acc
], t0
, t1
);
3561 tcg_gen_remu_i64(cpu_HI
[acc
], t0
, t1
);
3568 tcg_gen_muls2_i64(cpu_LO
[acc
], cpu_HI
[acc
], t0
, t1
);
3572 tcg_gen_mulu2_i64(cpu_LO
[acc
], cpu_HI
[acc
], t0
, t1
);
3578 TCGv_i64 t2
= tcg_temp_new_i64();
3579 TCGv_i64 t3
= tcg_temp_new_i64();
3581 tcg_gen_ext_tl_i64(t2
, t0
);
3582 tcg_gen_ext_tl_i64(t3
, t1
);
3583 tcg_gen_mul_i64(t2
, t2
, t3
);
3584 tcg_gen_concat_tl_i64(t3
, cpu_LO
[acc
], cpu_HI
[acc
]);
3585 tcg_gen_add_i64(t2
, t2
, t3
);
3586 tcg_temp_free_i64(t3
);
3587 tcg_gen_trunc_i64_tl(t0
, t2
);
3588 tcg_gen_shri_i64(t2
, t2
, 32);
3589 tcg_gen_trunc_i64_tl(t1
, t2
);
3590 tcg_temp_free_i64(t2
);
3591 tcg_gen_ext32s_tl(cpu_LO
[acc
], t0
);
3592 tcg_gen_ext32s_tl(cpu_HI
[acc
], t1
);
3598 TCGv_i64 t2
= tcg_temp_new_i64();
3599 TCGv_i64 t3
= tcg_temp_new_i64();
3601 tcg_gen_ext32u_tl(t0
, t0
);
3602 tcg_gen_ext32u_tl(t1
, t1
);
3603 tcg_gen_extu_tl_i64(t2
, t0
);
3604 tcg_gen_extu_tl_i64(t3
, t1
);
3605 tcg_gen_mul_i64(t2
, t2
, t3
);
3606 tcg_gen_concat_tl_i64(t3
, cpu_LO
[acc
], cpu_HI
[acc
]);
3607 tcg_gen_add_i64(t2
, t2
, t3
);
3608 tcg_temp_free_i64(t3
);
3609 tcg_gen_trunc_i64_tl(t0
, t2
);
3610 tcg_gen_shri_i64(t2
, t2
, 32);
3611 tcg_gen_trunc_i64_tl(t1
, t2
);
3612 tcg_temp_free_i64(t2
);
3613 tcg_gen_ext32s_tl(cpu_LO
[acc
], t0
);
3614 tcg_gen_ext32s_tl(cpu_HI
[acc
], t1
);
3620 TCGv_i64 t2
= tcg_temp_new_i64();
3621 TCGv_i64 t3
= tcg_temp_new_i64();
3623 tcg_gen_ext_tl_i64(t2
, t0
);
3624 tcg_gen_ext_tl_i64(t3
, t1
);
3625 tcg_gen_mul_i64(t2
, t2
, t3
);
3626 tcg_gen_concat_tl_i64(t3
, cpu_LO
[acc
], cpu_HI
[acc
]);
3627 tcg_gen_sub_i64(t2
, t3
, t2
);
3628 tcg_temp_free_i64(t3
);
3629 tcg_gen_trunc_i64_tl(t0
, t2
);
3630 tcg_gen_shri_i64(t2
, t2
, 32);
3631 tcg_gen_trunc_i64_tl(t1
, t2
);
3632 tcg_temp_free_i64(t2
);
3633 tcg_gen_ext32s_tl(cpu_LO
[acc
], t0
);
3634 tcg_gen_ext32s_tl(cpu_HI
[acc
], t1
);
3640 TCGv_i64 t2
= tcg_temp_new_i64();
3641 TCGv_i64 t3
= tcg_temp_new_i64();
3643 tcg_gen_ext32u_tl(t0
, t0
);
3644 tcg_gen_ext32u_tl(t1
, t1
);
3645 tcg_gen_extu_tl_i64(t2
, t0
);
3646 tcg_gen_extu_tl_i64(t3
, t1
);
3647 tcg_gen_mul_i64(t2
, t2
, t3
);
3648 tcg_gen_concat_tl_i64(t3
, cpu_LO
[acc
], cpu_HI
[acc
]);
3649 tcg_gen_sub_i64(t2
, t3
, t2
);
3650 tcg_temp_free_i64(t3
);
3651 tcg_gen_trunc_i64_tl(t0
, t2
);
3652 tcg_gen_shri_i64(t2
, t2
, 32);
3653 tcg_gen_trunc_i64_tl(t1
, t2
);
3654 tcg_temp_free_i64(t2
);
3655 tcg_gen_ext32s_tl(cpu_LO
[acc
], t0
);
3656 tcg_gen_ext32s_tl(cpu_HI
[acc
], t1
);
3662 generate_exception(ctx
, EXCP_RI
);
3665 (void)opn
; /* avoid a compiler warning */
3666 MIPS_DEBUG("%s %s %s", opn
, regnames
[rs
], regnames
[rt
]);
3672 static void gen_mul_vr54xx (DisasContext
*ctx
, uint32_t opc
,
3673 int rd
, int rs
, int rt
)
3675 const char *opn
= "mul vr54xx";
3676 TCGv t0
= tcg_temp_new();
3677 TCGv t1
= tcg_temp_new();
3679 gen_load_gpr(t0
, rs
);
3680 gen_load_gpr(t1
, rt
);
3683 case OPC_VR54XX_MULS
:
3684 gen_helper_muls(t0
, cpu_env
, t0
, t1
);
3687 case OPC_VR54XX_MULSU
:
3688 gen_helper_mulsu(t0
, cpu_env
, t0
, t1
);
3691 case OPC_VR54XX_MACC
:
3692 gen_helper_macc(t0
, cpu_env
, t0
, t1
);
3695 case OPC_VR54XX_MACCU
:
3696 gen_helper_maccu(t0
, cpu_env
, t0
, t1
);
3699 case OPC_VR54XX_MSAC
:
3700 gen_helper_msac(t0
, cpu_env
, t0
, t1
);
3703 case OPC_VR54XX_MSACU
:
3704 gen_helper_msacu(t0
, cpu_env
, t0
, t1
);
3707 case OPC_VR54XX_MULHI
:
3708 gen_helper_mulhi(t0
, cpu_env
, t0
, t1
);
3711 case OPC_VR54XX_MULHIU
:
3712 gen_helper_mulhiu(t0
, cpu_env
, t0
, t1
);
3715 case OPC_VR54XX_MULSHI
:
3716 gen_helper_mulshi(t0
, cpu_env
, t0
, t1
);
3719 case OPC_VR54XX_MULSHIU
:
3720 gen_helper_mulshiu(t0
, cpu_env
, t0
, t1
);
3723 case OPC_VR54XX_MACCHI
:
3724 gen_helper_macchi(t0
, cpu_env
, t0
, t1
);
3727 case OPC_VR54XX_MACCHIU
:
3728 gen_helper_macchiu(t0
, cpu_env
, t0
, t1
);
3731 case OPC_VR54XX_MSACHI
:
3732 gen_helper_msachi(t0
, cpu_env
, t0
, t1
);
3735 case OPC_VR54XX_MSACHIU
:
3736 gen_helper_msachiu(t0
, cpu_env
, t0
, t1
);
3740 MIPS_INVAL("mul vr54xx");
3741 generate_exception(ctx
, EXCP_RI
);
3744 gen_store_gpr(t0
, rd
);
3745 (void)opn
; /* avoid a compiler warning */
3746 MIPS_DEBUG("%s %s, %s, %s", opn
, regnames
[rd
], regnames
[rs
], regnames
[rt
]);
3753 static void gen_cl (DisasContext
*ctx
, uint32_t opc
,
3756 const char *opn
= "CLx";
3764 t0
= tcg_temp_new();
3765 gen_load_gpr(t0
, rs
);
3769 gen_helper_clo(cpu_gpr
[rd
], t0
);
3774 gen_helper_clz(cpu_gpr
[rd
], t0
);
3777 #if defined(TARGET_MIPS64)
3780 gen_helper_dclo(cpu_gpr
[rd
], t0
);
3785 gen_helper_dclz(cpu_gpr
[rd
], t0
);
3790 (void)opn
; /* avoid a compiler warning */
3791 MIPS_DEBUG("%s %s, %s", opn
, regnames
[rd
], regnames
[rs
]);
3795 /* Godson integer instructions */
3796 static void gen_loongson_integer(DisasContext
*ctx
, uint32_t opc
,
3797 int rd
, int rs
, int rt
)
3799 const char *opn
= "loongson";
3811 case OPC_MULTU_G_2E
:
3812 case OPC_MULTU_G_2F
:
3813 #if defined(TARGET_MIPS64)
3814 case OPC_DMULT_G_2E
:
3815 case OPC_DMULT_G_2F
:
3816 case OPC_DMULTU_G_2E
:
3817 case OPC_DMULTU_G_2F
:
3819 t0
= tcg_temp_new();
3820 t1
= tcg_temp_new();
3823 t0
= tcg_temp_local_new();
3824 t1
= tcg_temp_local_new();
3828 gen_load_gpr(t0
, rs
);
3829 gen_load_gpr(t1
, rt
);
3834 tcg_gen_mul_tl(cpu_gpr
[rd
], t0
, t1
);
3835 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3838 case OPC_MULTU_G_2E
:
3839 case OPC_MULTU_G_2F
:
3840 tcg_gen_ext32u_tl(t0
, t0
);
3841 tcg_gen_ext32u_tl(t1
, t1
);
3842 tcg_gen_mul_tl(cpu_gpr
[rd
], t0
, t1
);
3843 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3849 int l1
= gen_new_label();
3850 int l2
= gen_new_label();
3851 int l3
= gen_new_label();
3852 tcg_gen_ext32s_tl(t0
, t0
);
3853 tcg_gen_ext32s_tl(t1
, t1
);
3854 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, 0, l1
);
3855 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3858 tcg_gen_brcondi_tl(TCG_COND_NE
, t0
, INT_MIN
, l2
);
3859 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, -1, l2
);
3860 tcg_gen_mov_tl(cpu_gpr
[rd
], t0
);
3863 tcg_gen_div_tl(cpu_gpr
[rd
], t0
, t1
);
3864 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3872 int l1
= gen_new_label();
3873 int l2
= gen_new_label();
3874 tcg_gen_ext32u_tl(t0
, t0
);
3875 tcg_gen_ext32u_tl(t1
, t1
);
3876 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, 0, l1
);
3877 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3880 tcg_gen_divu_tl(cpu_gpr
[rd
], t0
, t1
);
3881 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3889 int l1
= gen_new_label();
3890 int l2
= gen_new_label();
3891 int l3
= gen_new_label();
3892 tcg_gen_ext32u_tl(t0
, t0
);
3893 tcg_gen_ext32u_tl(t1
, t1
);
3894 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
3895 tcg_gen_brcondi_tl(TCG_COND_NE
, t0
, INT_MIN
, l2
);
3896 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, -1, l2
);
3898 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3901 tcg_gen_rem_tl(cpu_gpr
[rd
], t0
, t1
);
3902 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3910 int l1
= gen_new_label();
3911 int l2
= gen_new_label();
3912 tcg_gen_ext32u_tl(t0
, t0
);
3913 tcg_gen_ext32u_tl(t1
, t1
);
3914 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, 0, l1
);
3915 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3918 tcg_gen_remu_tl(cpu_gpr
[rd
], t0
, t1
);
3919 tcg_gen_ext32s_tl(cpu_gpr
[rd
], cpu_gpr
[rd
]);
3924 #if defined(TARGET_MIPS64)
3925 case OPC_DMULT_G_2E
:
3926 case OPC_DMULT_G_2F
:
3927 tcg_gen_mul_tl(cpu_gpr
[rd
], t0
, t1
);
3930 case OPC_DMULTU_G_2E
:
3931 case OPC_DMULTU_G_2F
:
3932 tcg_gen_mul_tl(cpu_gpr
[rd
], t0
, t1
);
3938 int l1
= gen_new_label();
3939 int l2
= gen_new_label();
3940 int l3
= gen_new_label();
3941 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, 0, l1
);
3942 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3945 tcg_gen_brcondi_tl(TCG_COND_NE
, t0
, -1LL << 63, l2
);
3946 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, -1LL, l2
);
3947 tcg_gen_mov_tl(cpu_gpr
[rd
], t0
);
3950 tcg_gen_div_tl(cpu_gpr
[rd
], t0
, t1
);
3955 case OPC_DDIVU_G_2E
:
3956 case OPC_DDIVU_G_2F
:
3958 int l1
= gen_new_label();
3959 int l2
= gen_new_label();
3960 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, 0, l1
);
3961 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3964 tcg_gen_divu_tl(cpu_gpr
[rd
], t0
, t1
);
3972 int l1
= gen_new_label();
3973 int l2
= gen_new_label();
3974 int l3
= gen_new_label();
3975 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
3976 tcg_gen_brcondi_tl(TCG_COND_NE
, t0
, -1LL << 63, l2
);
3977 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, -1LL, l2
);
3979 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3982 tcg_gen_rem_tl(cpu_gpr
[rd
], t0
, t1
);
3987 case OPC_DMODU_G_2E
:
3988 case OPC_DMODU_G_2F
:
3990 int l1
= gen_new_label();
3991 int l2
= gen_new_label();
3992 tcg_gen_brcondi_tl(TCG_COND_NE
, t1
, 0, l1
);
3993 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
3996 tcg_gen_remu_tl(cpu_gpr
[rd
], t0
, t1
);
4004 (void)opn
; /* avoid a compiler warning */
4005 MIPS_DEBUG("%s %s, %s", opn
, regnames
[rd
], regnames
[rs
]);
4010 /* Loongson multimedia instructions */
4011 static void gen_loongson_multimedia(DisasContext
*ctx
, int rd
, int rs
, int rt
)
4013 const char *opn
= "loongson_cp2";
4014 uint32_t opc
, shift_max
;
4017 opc
= MASK_LMI(ctx
->opcode
);
4023 t0
= tcg_temp_local_new_i64();
4024 t1
= tcg_temp_local_new_i64();
4027 t0
= tcg_temp_new_i64();
4028 t1
= tcg_temp_new_i64();
4032 gen_load_fpr64(ctx
, t0
, rs
);
4033 gen_load_fpr64(ctx
, t1
, rt
);
4035 #define LMI_HELPER(UP, LO) \
4036 case OPC_##UP: gen_helper_##LO(t0, t0, t1); opn = #LO; break
4037 #define LMI_HELPER_1(UP, LO) \
4038 case OPC_##UP: gen_helper_##LO(t0, t0); opn = #LO; break
4039 #define LMI_DIRECT(UP, LO, OP) \
4040 case OPC_##UP: tcg_gen_##OP##_i64(t0, t0, t1); opn = #LO; break
4043 LMI_HELPER(PADDSH
, paddsh
);
4044 LMI_HELPER(PADDUSH
, paddush
);
4045 LMI_HELPER(PADDH
, paddh
);
4046 LMI_HELPER(PADDW
, paddw
);
4047 LMI_HELPER(PADDSB
, paddsb
);
4048 LMI_HELPER(PADDUSB
, paddusb
);
4049 LMI_HELPER(PADDB
, paddb
);
4051 LMI_HELPER(PSUBSH
, psubsh
);
4052 LMI_HELPER(PSUBUSH
, psubush
);
4053 LMI_HELPER(PSUBH
, psubh
);
4054 LMI_HELPER(PSUBW
, psubw
);
4055 LMI_HELPER(PSUBSB
, psubsb
);
4056 LMI_HELPER(PSUBUSB
, psubusb
);
4057 LMI_HELPER(PSUBB
, psubb
);
4059 LMI_HELPER(PSHUFH
, pshufh
);
4060 LMI_HELPER(PACKSSWH
, packsswh
);
4061 LMI_HELPER(PACKSSHB
, packsshb
);
4062 LMI_HELPER(PACKUSHB
, packushb
);
4064 LMI_HELPER(PUNPCKLHW
, punpcklhw
);
4065 LMI_HELPER(PUNPCKHHW
, punpckhhw
);
4066 LMI_HELPER(PUNPCKLBH
, punpcklbh
);
4067 LMI_HELPER(PUNPCKHBH
, punpckhbh
);
4068 LMI_HELPER(PUNPCKLWD
, punpcklwd
);
4069 LMI_HELPER(PUNPCKHWD
, punpckhwd
);
4071 LMI_HELPER(PAVGH
, pavgh
);
4072 LMI_HELPER(PAVGB
, pavgb
);
4073 LMI_HELPER(PMAXSH
, pmaxsh
);
4074 LMI_HELPER(PMINSH
, pminsh
);
4075 LMI_HELPER(PMAXUB
, pmaxub
);
4076 LMI_HELPER(PMINUB
, pminub
);
4078 LMI_HELPER(PCMPEQW
, pcmpeqw
);
4079 LMI_HELPER(PCMPGTW
, pcmpgtw
);
4080 LMI_HELPER(PCMPEQH
, pcmpeqh
);
4081 LMI_HELPER(PCMPGTH
, pcmpgth
);
4082 LMI_HELPER(PCMPEQB
, pcmpeqb
);
4083 LMI_HELPER(PCMPGTB
, pcmpgtb
);
4085 LMI_HELPER(PSLLW
, psllw
);
4086 LMI_HELPER(PSLLH
, psllh
);
4087 LMI_HELPER(PSRLW
, psrlw
);
4088 LMI_HELPER(PSRLH
, psrlh
);
4089 LMI_HELPER(PSRAW
, psraw
);
4090 LMI_HELPER(PSRAH
, psrah
);
4092 LMI_HELPER(PMULLH
, pmullh
);
4093 LMI_HELPER(PMULHH
, pmulhh
);
4094 LMI_HELPER(PMULHUH
, pmulhuh
);
4095 LMI_HELPER(PMADDHW
, pmaddhw
);
4097 LMI_HELPER(PASUBUB
, pasubub
);
4098 LMI_HELPER_1(BIADD
, biadd
);
4099 LMI_HELPER_1(PMOVMSKB
, pmovmskb
);
4101 LMI_DIRECT(PADDD
, paddd
, add
);
4102 LMI_DIRECT(PSUBD
, psubd
, sub
);
4103 LMI_DIRECT(XOR_CP2
, xor, xor);
4104 LMI_DIRECT(NOR_CP2
, nor
, nor
);
4105 LMI_DIRECT(AND_CP2
, and, and);
4106 LMI_DIRECT(PANDN
, pandn
, andc
);
4107 LMI_DIRECT(OR
, or, or);
4110 tcg_gen_deposit_i64(t0
, t0
, t1
, 0, 16);
4114 tcg_gen_deposit_i64(t0
, t0
, t1
, 16, 16);
4118 tcg_gen_deposit_i64(t0
, t0
, t1
, 32, 16);
4122 tcg_gen_deposit_i64(t0
, t0
, t1
, 48, 16);
4127 tcg_gen_andi_i64(t1
, t1
, 3);
4128 tcg_gen_shli_i64(t1
, t1
, 4);
4129 tcg_gen_shr_i64(t0
, t0
, t1
);
4130 tcg_gen_ext16u_i64(t0
, t0
);
4135 tcg_gen_add_i64(t0
, t0
, t1
);
4136 tcg_gen_ext32s_i64(t0
, t0
);
4140 tcg_gen_sub_i64(t0
, t0
, t1
);
4141 tcg_gen_ext32s_i64(t0
, t0
);
4170 /* Make sure shift count isn't TCG undefined behaviour. */
4171 tcg_gen_andi_i64(t1
, t1
, shift_max
- 1);
4176 tcg_gen_shl_i64(t0
, t0
, t1
);
4180 /* Since SRA is UndefinedResult without sign-extended inputs,
4181 we can treat SRA and DSRA the same. */
4182 tcg_gen_sar_i64(t0
, t0
, t1
);
4185 /* We want to shift in zeros for SRL; zero-extend first. */
4186 tcg_gen_ext32u_i64(t0
, t0
);
4189 tcg_gen_shr_i64(t0
, t0
, t1
);
4193 if (shift_max
== 32) {
4194 tcg_gen_ext32s_i64(t0
, t0
);
4197 /* Shifts larger than MAX produce zero. */
4198 tcg_gen_setcondi_i64(TCG_COND_LTU
, t1
, t1
, shift_max
);
4199 tcg_gen_neg_i64(t1
, t1
);
4200 tcg_gen_and_i64(t0
, t0
, t1
);
4206 TCGv_i64 t2
= tcg_temp_new_i64();
4207 int lab
= gen_new_label();
4209 tcg_gen_mov_i64(t2
, t0
);
4210 tcg_gen_add_i64(t0
, t1
, t2
);
4211 if (opc
== OPC_ADD_CP2
) {
4212 tcg_gen_ext32s_i64(t0
, t0
);
4214 tcg_gen_xor_i64(t1
, t1
, t2
);
4215 tcg_gen_xor_i64(t2
, t2
, t0
);
4216 tcg_gen_andc_i64(t1
, t2
, t1
);
4217 tcg_temp_free_i64(t2
);
4218 tcg_gen_brcondi_i64(TCG_COND_GE
, t1
, 0, lab
);
4219 generate_exception(ctx
, EXCP_OVERFLOW
);
4222 opn
= (opc
== OPC_ADD_CP2
? "add" : "dadd");
4229 TCGv_i64 t2
= tcg_temp_new_i64();
4230 int lab
= gen_new_label();
4232 tcg_gen_mov_i64(t2
, t0
);
4233 tcg_gen_sub_i64(t0
, t1
, t2
);
4234 if (opc
== OPC_SUB_CP2
) {
4235 tcg_gen_ext32s_i64(t0
, t0
);
4237 tcg_gen_xor_i64(t1
, t1
, t2
);
4238 tcg_gen_xor_i64(t2
, t2
, t0
);
4239 tcg_gen_and_i64(t1
, t1
, t2
);
4240 tcg_temp_free_i64(t2
);
4241 tcg_gen_brcondi_i64(TCG_COND_GE
, t1
, 0, lab
);
4242 generate_exception(ctx
, EXCP_OVERFLOW
);
4245 opn
= (opc
== OPC_SUB_CP2
? "sub" : "dsub");
4250 tcg_gen_ext32u_i64(t0
, t0
);
4251 tcg_gen_ext32u_i64(t1
, t1
);
4252 tcg_gen_mul_i64(t0
, t0
, t1
);
4262 /* ??? Document is unclear: Set FCC[CC]. Does that mean the
4263 FD field is the CC field? */
4266 generate_exception(ctx
, EXCP_RI
);
4273 gen_store_fpr64(ctx
, t0
, rd
);
4275 (void)opn
; /* avoid a compiler warning */
4276 MIPS_DEBUG("%s %s, %s, %s", opn
,
4277 fregnames
[rd
], fregnames
[rs
], fregnames
[rt
]);
4278 tcg_temp_free_i64(t0
);
4279 tcg_temp_free_i64(t1
);
4283 static void gen_trap (DisasContext
*ctx
, uint32_t opc
,
4284 int rs
, int rt
, int16_t imm
)
4287 TCGv t0
= tcg_temp_new();
4288 TCGv t1
= tcg_temp_new();
4291 /* Load needed operands */
4299 /* Compare two registers */
4301 gen_load_gpr(t0
, rs
);
4302 gen_load_gpr(t1
, rt
);
4312 /* Compare register to immediate */
4313 if (rs
!= 0 || imm
!= 0) {
4314 gen_load_gpr(t0
, rs
);
4315 tcg_gen_movi_tl(t1
, (int32_t)imm
);
4322 case OPC_TEQ
: /* rs == rs */
4323 case OPC_TEQI
: /* r0 == 0 */
4324 case OPC_TGE
: /* rs >= rs */
4325 case OPC_TGEI
: /* r0 >= 0 */
4326 case OPC_TGEU
: /* rs >= rs unsigned */
4327 case OPC_TGEIU
: /* r0 >= 0 unsigned */
4329 generate_exception(ctx
, EXCP_TRAP
);
4331 case OPC_TLT
: /* rs < rs */
4332 case OPC_TLTI
: /* r0 < 0 */
4333 case OPC_TLTU
: /* rs < rs unsigned */
4334 case OPC_TLTIU
: /* r0 < 0 unsigned */
4335 case OPC_TNE
: /* rs != rs */
4336 case OPC_TNEI
: /* r0 != 0 */
4337 /* Never trap: treat as NOP. */
4341 int l1
= gen_new_label();
4346 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, t1
, l1
);
4350 tcg_gen_brcond_tl(TCG_COND_LT
, t0
, t1
, l1
);
4354 tcg_gen_brcond_tl(TCG_COND_LTU
, t0
, t1
, l1
);
4358 tcg_gen_brcond_tl(TCG_COND_GE
, t0
, t1
, l1
);
4362 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
4366 tcg_gen_brcond_tl(TCG_COND_EQ
, t0
, t1
, l1
);
4369 generate_exception(ctx
, EXCP_TRAP
);
4376 static inline void gen_goto_tb(DisasContext
*ctx
, int n
, target_ulong dest
)
4378 TranslationBlock
*tb
;
4380 if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
) &&
4381 likely(!ctx
->singlestep_enabled
)) {
4384 tcg_gen_exit_tb((uintptr_t)tb
+ n
);
4387 if (ctx
->singlestep_enabled
) {
4388 save_cpu_state(ctx
, 0);
4389 gen_helper_0e0i(raise_exception
, EXCP_DEBUG
);
4395 /* Branches (before delay slot) */
4396 static void gen_compute_branch (DisasContext
*ctx
, uint32_t opc
,
4398 int rs
, int rt
, int32_t offset
,
4401 target_ulong btgt
= -1;
4403 int bcond_compute
= 0;
4404 TCGv t0
= tcg_temp_new();
4405 TCGv t1
= tcg_temp_new();
4407 if (ctx
->hflags
& MIPS_HFLAG_BMASK
) {
4408 #ifdef MIPS_DEBUG_DISAS
4409 LOG_DISAS("Branch in delay / forbidden slot at PC 0x"
4410 TARGET_FMT_lx
"\n", ctx
->pc
);
4412 generate_exception(ctx
, EXCP_RI
);
4416 /* Load needed operands */
4422 /* Compare two registers */
4424 gen_load_gpr(t0
, rs
);
4425 gen_load_gpr(t1
, rt
);
4428 btgt
= ctx
->pc
+ insn_bytes
+ offset
;
4442 /* Compare to zero */
4444 gen_load_gpr(t0
, rs
);
4447 btgt
= ctx
->pc
+ insn_bytes
+ offset
;
4450 #if defined(TARGET_MIPS64)
4452 tcg_gen_andi_tl(t0
, cpu_dspctrl
, 0x7F);
4454 tcg_gen_andi_tl(t0
, cpu_dspctrl
, 0x3F);
4457 btgt
= ctx
->pc
+ insn_bytes
+ offset
;
4462 /* Jump to immediate */
4463 btgt
= ((ctx
->pc
+ insn_bytes
) & (int32_t)0xF0000000) | (uint32_t)offset
;
4467 /* Jump to register */
4468 if (offset
!= 0 && offset
!= 16) {
4469 /* Hint = 0 is JR/JALR, hint 16 is JR.HB/JALR.HB, the
4470 others are reserved. */
4471 MIPS_INVAL("jump hint");
4472 generate_exception(ctx
, EXCP_RI
);
4475 gen_load_gpr(btarget
, rs
);
4478 MIPS_INVAL("branch/jump");
4479 generate_exception(ctx
, EXCP_RI
);
4482 if (bcond_compute
== 0) {
4483 /* No condition to be computed */
4485 case OPC_BEQ
: /* rx == rx */
4486 case OPC_BEQL
: /* rx == rx likely */
4487 case OPC_BGEZ
: /* 0 >= 0 */
4488 case OPC_BGEZL
: /* 0 >= 0 likely */
4489 case OPC_BLEZ
: /* 0 <= 0 */
4490 case OPC_BLEZL
: /* 0 <= 0 likely */
4492 ctx
->hflags
|= MIPS_HFLAG_B
;
4493 MIPS_DEBUG("balways");
4495 case OPC_BGEZAL
: /* 0 >= 0 */
4496 case OPC_BGEZALL
: /* 0 >= 0 likely */
4497 /* Always take and link */
4499 ctx
->hflags
|= MIPS_HFLAG_B
;
4500 MIPS_DEBUG("balways and link");
4502 case OPC_BNE
: /* rx != rx */
4503 case OPC_BGTZ
: /* 0 > 0 */
4504 case OPC_BLTZ
: /* 0 < 0 */
4506 MIPS_DEBUG("bnever (NOP)");
4508 case OPC_BLTZAL
: /* 0 < 0 */
4509 /* Handle as an unconditional branch to get correct delay
4512 btgt
= ctx
->pc
+ insn_bytes
+ delayslot_size
;
4513 ctx
->hflags
|= MIPS_HFLAG_B
;
4514 MIPS_DEBUG("bnever and link");
4516 case OPC_BLTZALL
: /* 0 < 0 likely */
4517 tcg_gen_movi_tl(cpu_gpr
[31], ctx
->pc
+ 8);
4518 /* Skip the instruction in the delay slot */
4519 MIPS_DEBUG("bnever, link and skip");
4522 case OPC_BNEL
: /* rx != rx likely */
4523 case OPC_BGTZL
: /* 0 > 0 likely */
4524 case OPC_BLTZL
: /* 0 < 0 likely */
4525 /* Skip the instruction in the delay slot */
4526 MIPS_DEBUG("bnever and skip");
4530 ctx
->hflags
|= MIPS_HFLAG_B
;
4531 MIPS_DEBUG("j " TARGET_FMT_lx
, btgt
);
4534 ctx
->hflags
|= MIPS_HFLAG_BX
;
4538 ctx
->hflags
|= MIPS_HFLAG_B
;
4539 MIPS_DEBUG("jal " TARGET_FMT_lx
, btgt
);
4542 ctx
->hflags
|= MIPS_HFLAG_BR
;
4543 MIPS_DEBUG("jr %s", regnames
[rs
]);
4547 ctx
->hflags
|= MIPS_HFLAG_BR
;
4548 MIPS_DEBUG("jalr %s, %s", regnames
[rt
], regnames
[rs
]);
4551 MIPS_INVAL("branch/jump");
4552 generate_exception(ctx
, EXCP_RI
);
4558 tcg_gen_setcond_tl(TCG_COND_EQ
, bcond
, t0
, t1
);
4559 MIPS_DEBUG("beq %s, %s, " TARGET_FMT_lx
,
4560 regnames
[rs
], regnames
[rt
], btgt
);
4563 tcg_gen_setcond_tl(TCG_COND_EQ
, bcond
, t0
, t1
);
4564 MIPS_DEBUG("beql %s, %s, " TARGET_FMT_lx
,
4565 regnames
[rs
], regnames
[rt
], btgt
);
4568 tcg_gen_setcond_tl(TCG_COND_NE
, bcond
, t0
, t1
);
4569 MIPS_DEBUG("bne %s, %s, " TARGET_FMT_lx
,
4570 regnames
[rs
], regnames
[rt
], btgt
);
4573 tcg_gen_setcond_tl(TCG_COND_NE
, bcond
, t0
, t1
);
4574 MIPS_DEBUG("bnel %s, %s, " TARGET_FMT_lx
,
4575 regnames
[rs
], regnames
[rt
], btgt
);
4578 tcg_gen_setcondi_tl(TCG_COND_GE
, bcond
, t0
, 0);
4579 MIPS_DEBUG("bgez %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4582 tcg_gen_setcondi_tl(TCG_COND_GE
, bcond
, t0
, 0);
4583 MIPS_DEBUG("bgezl %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4586 tcg_gen_setcondi_tl(TCG_COND_GE
, bcond
, t0
, 0);
4587 MIPS_DEBUG("bgezal %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4591 tcg_gen_setcondi_tl(TCG_COND_GE
, bcond
, t0
, 0);
4593 MIPS_DEBUG("bgezall %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4596 tcg_gen_setcondi_tl(TCG_COND_GT
, bcond
, t0
, 0);
4597 MIPS_DEBUG("bgtz %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4600 tcg_gen_setcondi_tl(TCG_COND_GT
, bcond
, t0
, 0);
4601 MIPS_DEBUG("bgtzl %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4604 tcg_gen_setcondi_tl(TCG_COND_LE
, bcond
, t0
, 0);
4605 MIPS_DEBUG("blez %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4608 tcg_gen_setcondi_tl(TCG_COND_LE
, bcond
, t0
, 0);
4609 MIPS_DEBUG("blezl %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4612 tcg_gen_setcondi_tl(TCG_COND_LT
, bcond
, t0
, 0);
4613 MIPS_DEBUG("bltz %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4616 tcg_gen_setcondi_tl(TCG_COND_LT
, bcond
, t0
, 0);
4617 MIPS_DEBUG("bltzl %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4620 tcg_gen_setcondi_tl(TCG_COND_GE
, bcond
, t0
, 32);
4621 MIPS_DEBUG("bposge32 " TARGET_FMT_lx
, btgt
);
4623 #if defined(TARGET_MIPS64)
4625 tcg_gen_setcondi_tl(TCG_COND_GE
, bcond
, t0
, 64);
4626 MIPS_DEBUG("bposge64 " TARGET_FMT_lx
, btgt
);
4630 tcg_gen_setcondi_tl(TCG_COND_LT
, bcond
, t0
, 0);
4632 MIPS_DEBUG("bltzal %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4634 ctx
->hflags
|= MIPS_HFLAG_BC
;
4637 tcg_gen_setcondi_tl(TCG_COND_LT
, bcond
, t0
, 0);
4639 MIPS_DEBUG("bltzall %s, " TARGET_FMT_lx
, regnames
[rs
], btgt
);
4641 ctx
->hflags
|= MIPS_HFLAG_BL
;
4644 MIPS_INVAL("conditional branch/jump");
4645 generate_exception(ctx
, EXCP_RI
);
4649 MIPS_DEBUG("enter ds: link %d cond %02x target " TARGET_FMT_lx
,
4650 blink
, ctx
->hflags
, btgt
);
4652 ctx
->btarget
= btgt
;
4654 switch (delayslot_size
) {
4656 ctx
->hflags
|= MIPS_HFLAG_BDS16
;
4659 ctx
->hflags
|= MIPS_HFLAG_BDS32
;
4664 int post_delay
= insn_bytes
+ delayslot_size
;
4665 int lowbit
= !!(ctx
->hflags
& MIPS_HFLAG_M16
);
4667 tcg_gen_movi_tl(cpu_gpr
[blink
], ctx
->pc
+ post_delay
+ lowbit
);
4671 if (insn_bytes
== 2)
4672 ctx
->hflags
|= MIPS_HFLAG_B16
;
4677 /* special3 bitfield operations */
4678 static void gen_bitops (DisasContext
*ctx
, uint32_t opc
, int rt
,
4679 int rs
, int lsb
, int msb
)
4681 TCGv t0
= tcg_temp_new();
4682 TCGv t1
= tcg_temp_new();
4684 gen_load_gpr(t1
, rs
);
4689 tcg_gen_shri_tl(t0
, t1
, lsb
);
4691 tcg_gen_andi_tl(t0
, t0
, (1 << (msb
+ 1)) - 1);
4693 tcg_gen_ext32s_tl(t0
, t0
);
4696 #if defined(TARGET_MIPS64)
4698 tcg_gen_shri_tl(t0
, t1
, lsb
);
4700 tcg_gen_andi_tl(t0
, t0
, (1ULL << (msb
+ 1 + 32)) - 1);
4704 tcg_gen_shri_tl(t0
, t1
, lsb
+ 32);
4705 tcg_gen_andi_tl(t0
, t0
, (1ULL << (msb
+ 1)) - 1);
4708 tcg_gen_shri_tl(t0
, t1
, lsb
);
4709 tcg_gen_andi_tl(t0
, t0
, (1ULL << (msb
+ 1)) - 1);
4715 gen_load_gpr(t0
, rt
);
4716 tcg_gen_deposit_tl(t0
, t0
, t1
, lsb
, msb
- lsb
+ 1);
4717 tcg_gen_ext32s_tl(t0
, t0
);
4719 #if defined(TARGET_MIPS64)
4721 gen_load_gpr(t0
, rt
);
4722 tcg_gen_deposit_tl(t0
, t0
, t1
, lsb
, msb
+ 32 - lsb
+ 1);
4725 gen_load_gpr(t0
, rt
);
4726 tcg_gen_deposit_tl(t0
, t0
, t1
, lsb
+ 32, msb
- lsb
+ 1);
4729 gen_load_gpr(t0
, rt
);
4730 tcg_gen_deposit_tl(t0
, t0
, t1
, lsb
, msb
- lsb
+ 1);
4735 MIPS_INVAL("bitops");
4736 generate_exception(ctx
, EXCP_RI
);
4741 gen_store_gpr(t0
, rt
);
4746 static void gen_bshfl (DisasContext
*ctx
, uint32_t op2
, int rt
, int rd
)
4751 /* If no destination, treat it as a NOP. */
4756 t0
= tcg_temp_new();
4757 gen_load_gpr(t0
, rt
);
4761 TCGv t1
= tcg_temp_new();
4763 tcg_gen_shri_tl(t1
, t0
, 8);
4764 tcg_gen_andi_tl(t1
, t1
, 0x00FF00FF);
4765 tcg_gen_shli_tl(t0
, t0
, 8);
4766 tcg_gen_andi_tl(t0
, t0
, ~0x00FF00FF);
4767 tcg_gen_or_tl(t0
, t0
, t1
);
4769 tcg_gen_ext32s_tl(cpu_gpr
[rd
], t0
);
4773 tcg_gen_ext8s_tl(cpu_gpr
[rd
], t0
);
4776 tcg_gen_ext16s_tl(cpu_gpr
[rd
], t0
);
4778 #if defined(TARGET_MIPS64)
4781 TCGv t1
= tcg_temp_new();
4783 tcg_gen_shri_tl(t1
, t0
, 8);
4784 tcg_gen_andi_tl(t1
, t1
, 0x00FF00FF00FF00FFULL
);
4785 tcg_gen_shli_tl(t0
, t0
, 8);
4786 tcg_gen_andi_tl(t0
, t0
, ~0x00FF00FF00FF00FFULL
);
4787 tcg_gen_or_tl(cpu_gpr
[rd
], t0
, t1
);
4793 TCGv t1
= tcg_temp_new();
4795 tcg_gen_shri_tl(t1
, t0
, 16);
4796 tcg_gen_andi_tl(t1
, t1
, 0x0000FFFF0000FFFFULL
);
4797 tcg_gen_shli_tl(t0
, t0
, 16);
4798 tcg_gen_andi_tl(t0
, t0
, ~0x0000FFFF0000FFFFULL
);
4799 tcg_gen_or_tl(t0
, t0
, t1
);
4800 tcg_gen_shri_tl(t1
, t0
, 32);
4801 tcg_gen_shli_tl(t0
, t0
, 32);
4802 tcg_gen_or_tl(cpu_gpr
[rd
], t0
, t1
);
4808 MIPS_INVAL("bsfhl");
4809 generate_exception(ctx
, EXCP_RI
);
4816 #ifndef CONFIG_USER_ONLY
4817 /* CP0 (MMU and control) */
4818 static inline void gen_mfc0_load32 (TCGv arg
, target_ulong off
)
4820 TCGv_i32 t0
= tcg_temp_new_i32();
4822 tcg_gen_ld_i32(t0
, cpu_env
, off
);
4823 tcg_gen_ext_i32_tl(arg
, t0
);
4824 tcg_temp_free_i32(t0
);
4827 static inline void gen_mfc0_load64 (TCGv arg
, target_ulong off
)
4829 tcg_gen_ld_tl(arg
, cpu_env
, off
);
4830 tcg_gen_ext32s_tl(arg
, arg
);
4833 static inline void gen_mtc0_store32 (TCGv arg
, target_ulong off
)
4835 TCGv_i32 t0
= tcg_temp_new_i32();
4837 tcg_gen_trunc_tl_i32(t0
, arg
);
4838 tcg_gen_st_i32(t0
, cpu_env
, off
);
4839 tcg_temp_free_i32(t0
);
4842 static inline void gen_mtc0_store64 (TCGv arg
, target_ulong off
)
4844 tcg_gen_ext32s_tl(arg
, arg
);
4845 tcg_gen_st_tl(arg
, cpu_env
, off
);
4848 static inline void gen_mfc0_unimplemented(DisasContext
*ctx
, TCGv arg
)
4850 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
4851 tcg_gen_movi_tl(arg
, 0);
4853 tcg_gen_movi_tl(arg
, ~0);
4857 #define CP0_CHECK(c) \
4860 goto cp0_unimplemented; \
4864 static void gen_mfc0(DisasContext
*ctx
, TCGv arg
, int reg
, int sel
)
4866 const char *rn
= "invalid";
4869 check_insn(ctx
, ISA_MIPS32
);
4875 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Index
));
4879 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4880 gen_helper_mfc0_mvpcontrol(arg
, cpu_env
);
4884 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4885 gen_helper_mfc0_mvpconf0(arg
, cpu_env
);
4889 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4890 gen_helper_mfc0_mvpconf1(arg
, cpu_env
);
4894 goto cp0_unimplemented
;
4900 CP0_CHECK(!(ctx
->insn_flags
& ISA_MIPS32R6
));
4901 gen_helper_mfc0_random(arg
, cpu_env
);
4905 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4906 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEControl
));
4910 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4911 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEConf0
));
4915 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4916 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEConf1
));
4920 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4921 gen_mfc0_load64(arg
, offsetof(CPUMIPSState
, CP0_YQMask
));
4925 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4926 gen_mfc0_load64(arg
, offsetof(CPUMIPSState
, CP0_VPESchedule
));
4930 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4931 gen_mfc0_load64(arg
, offsetof(CPUMIPSState
, CP0_VPEScheFBack
));
4932 rn
= "VPEScheFBack";
4935 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4936 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEOpt
));
4940 goto cp0_unimplemented
;
4946 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EntryLo0
));
4947 #if defined(TARGET_MIPS64)
4949 TCGv tmp
= tcg_temp_new();
4950 tcg_gen_andi_tl(tmp
, arg
, (3ull << CP0EnLo_XI
));
4951 tcg_gen_shri_tl(tmp
, tmp
, 32);
4952 tcg_gen_or_tl(arg
, arg
, tmp
);
4956 tcg_gen_ext32s_tl(arg
, arg
);
4960 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4961 gen_helper_mfc0_tcstatus(arg
, cpu_env
);
4965 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4966 gen_helper_mfc0_tcbind(arg
, cpu_env
);
4970 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4971 gen_helper_mfc0_tcrestart(arg
, cpu_env
);
4975 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4976 gen_helper_mfc0_tchalt(arg
, cpu_env
);
4980 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4981 gen_helper_mfc0_tccontext(arg
, cpu_env
);
4985 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4986 gen_helper_mfc0_tcschedule(arg
, cpu_env
);
4990 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
4991 gen_helper_mfc0_tcschefback(arg
, cpu_env
);
4995 goto cp0_unimplemented
;
5001 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EntryLo1
));
5002 #if defined(TARGET_MIPS64)
5004 TCGv tmp
= tcg_temp_new();
5005 tcg_gen_andi_tl(tmp
, arg
, (3ull << CP0EnLo_XI
));
5006 tcg_gen_shri_tl(tmp
, tmp
, 32);
5007 tcg_gen_or_tl(arg
, arg
, tmp
);
5011 tcg_gen_ext32s_tl(arg
, arg
);
5015 goto cp0_unimplemented
;
5021 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_Context
));
5022 tcg_gen_ext32s_tl(arg
, arg
);
5026 // gen_helper_mfc0_contextconfig(arg); /* SmartMIPS ASE */
5027 rn
= "ContextConfig";
5028 goto cp0_unimplemented
;
5031 CP0_CHECK(ctx
->ulri
);
5032 tcg_gen_ld32s_tl(arg
, cpu_env
,
5033 offsetof(CPUMIPSState
, active_tc
.CP0_UserLocal
));
5037 goto cp0_unimplemented
;
5043 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_PageMask
));
5047 check_insn(ctx
, ISA_MIPS32R2
);
5048 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_PageGrain
));
5052 goto cp0_unimplemented
;
5058 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Wired
));
5062 check_insn(ctx
, ISA_MIPS32R2
);
5063 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf0
));
5067 check_insn(ctx
, ISA_MIPS32R2
);
5068 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf1
));
5072 check_insn(ctx
, ISA_MIPS32R2
);
5073 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf2
));
5077 check_insn(ctx
, ISA_MIPS32R2
);
5078 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf3
));
5082 check_insn(ctx
, ISA_MIPS32R2
);
5083 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf4
));
5087 goto cp0_unimplemented
;
5093 check_insn(ctx
, ISA_MIPS32R2
);
5094 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_HWREna
));
5098 goto cp0_unimplemented
;
5104 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_BadVAddr
));
5105 tcg_gen_ext32s_tl(arg
, arg
);
5110 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_BadInstr
));
5115 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_BadInstrP
));
5119 goto cp0_unimplemented
;
5125 /* Mark as an IO operation because we read the time. */
5126 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
5129 gen_helper_mfc0_count(arg
, cpu_env
);
5130 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
5133 /* Break the TB to be able to take timer interrupts immediately
5134 after reading count. */
5135 ctx
->bstate
= BS_STOP
;
5138 /* 6,7 are implementation dependent */
5140 goto cp0_unimplemented
;
5146 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EntryHi
));
5147 tcg_gen_ext32s_tl(arg
, arg
);
5151 goto cp0_unimplemented
;
5157 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Compare
));
5160 /* 6,7 are implementation dependent */
5162 goto cp0_unimplemented
;
5168 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Status
));
5172 check_insn(ctx
, ISA_MIPS32R2
);
5173 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_IntCtl
));
5177 check_insn(ctx
, ISA_MIPS32R2
);
5178 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSCtl
));
5182 check_insn(ctx
, ISA_MIPS32R2
);
5183 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSMap
));
5187 goto cp0_unimplemented
;
5193 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Cause
));
5197 goto cp0_unimplemented
;
5203 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EPC
));
5204 tcg_gen_ext32s_tl(arg
, arg
);
5208 goto cp0_unimplemented
;
5214 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_PRid
));
5218 check_insn(ctx
, ISA_MIPS32R2
);
5219 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_EBase
));
5223 goto cp0_unimplemented
;
5229 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config0
));
5233 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config1
));
5237 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config2
));
5241 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config3
));
5245 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config4
));
5249 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config5
));
5252 /* 6,7 are implementation dependent */
5254 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config6
));
5258 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config7
));
5262 goto cp0_unimplemented
;
5268 gen_helper_mfc0_lladdr(arg
, cpu_env
);
5272 goto cp0_unimplemented
;
5278 gen_helper_1e0i(mfc0_watchlo
, arg
, sel
);
5282 goto cp0_unimplemented
;
5288 gen_helper_1e0i(mfc0_watchhi
, arg
, sel
);
5292 goto cp0_unimplemented
;
5298 #if defined(TARGET_MIPS64)
5299 check_insn(ctx
, ISA_MIPS3
);
5300 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_XContext
));
5301 tcg_gen_ext32s_tl(arg
, arg
);
5306 goto cp0_unimplemented
;
5310 /* Officially reserved, but sel 0 is used for R1x000 framemask */
5311 CP0_CHECK(!(ctx
->insn_flags
& ISA_MIPS32R6
));
5314 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Framemask
));
5318 goto cp0_unimplemented
;
5322 tcg_gen_movi_tl(arg
, 0); /* unimplemented */
5323 rn
= "'Diagnostic"; /* implementation dependent */
5328 gen_helper_mfc0_debug(arg
, cpu_env
); /* EJTAG support */
5332 // gen_helper_mfc0_tracecontrol(arg); /* PDtrace support */
5333 rn
= "TraceControl";
5336 // gen_helper_mfc0_tracecontrol2(arg); /* PDtrace support */
5337 rn
= "TraceControl2";
5340 // gen_helper_mfc0_usertracedata(arg); /* PDtrace support */
5341 rn
= "UserTraceData";
5344 // gen_helper_mfc0_tracebpc(arg); /* PDtrace support */
5348 goto cp0_unimplemented
;
5355 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_DEPC
));
5356 tcg_gen_ext32s_tl(arg
, arg
);
5360 goto cp0_unimplemented
;
5366 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Performance0
));
5367 rn
= "Performance0";
5370 // gen_helper_mfc0_performance1(arg);
5371 rn
= "Performance1";
5374 // gen_helper_mfc0_performance2(arg);
5375 rn
= "Performance2";
5378 // gen_helper_mfc0_performance3(arg);
5379 rn
= "Performance3";
5382 // gen_helper_mfc0_performance4(arg);
5383 rn
= "Performance4";
5386 // gen_helper_mfc0_performance5(arg);
5387 rn
= "Performance5";
5390 // gen_helper_mfc0_performance6(arg);
5391 rn
= "Performance6";
5394 // gen_helper_mfc0_performance7(arg);
5395 rn
= "Performance7";
5398 goto cp0_unimplemented
;
5402 tcg_gen_movi_tl(arg
, 0); /* unimplemented */
5408 tcg_gen_movi_tl(arg
, 0); /* unimplemented */
5412 goto cp0_unimplemented
;
5421 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_TagLo
));
5428 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_DataLo
));
5432 goto cp0_unimplemented
;
5441 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_TagHi
));
5448 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_DataHi
));
5452 goto cp0_unimplemented
;
5458 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_ErrorEPC
));
5459 tcg_gen_ext32s_tl(arg
, arg
);
5463 goto cp0_unimplemented
;
5470 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_DESAVE
));
5474 CP0_CHECK(ctx
->kscrexist
& (1 << sel
));
5475 tcg_gen_ld_tl(arg
, cpu_env
,
5476 offsetof(CPUMIPSState
, CP0_KScratch
[sel
-2]));
5477 tcg_gen_ext32s_tl(arg
, arg
);
5481 goto cp0_unimplemented
;
5485 goto cp0_unimplemented
;
5487 (void)rn
; /* avoid a compiler warning */
5488 LOG_DISAS("mfc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
5492 LOG_DISAS("mfc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
5493 gen_mfc0_unimplemented(ctx
, arg
);
5496 static void gen_mtc0(DisasContext
*ctx
, TCGv arg
, int reg
, int sel
)
5498 const char *rn
= "invalid";
5501 check_insn(ctx
, ISA_MIPS32
);
5503 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
5511 gen_helper_mtc0_index(cpu_env
, arg
);
5515 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5516 gen_helper_mtc0_mvpcontrol(cpu_env
, arg
);
5520 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5525 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5530 goto cp0_unimplemented
;
5540 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5541 gen_helper_mtc0_vpecontrol(cpu_env
, arg
);
5545 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5546 gen_helper_mtc0_vpeconf0(cpu_env
, arg
);
5550 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5551 gen_helper_mtc0_vpeconf1(cpu_env
, arg
);
5555 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5556 gen_helper_mtc0_yqmask(cpu_env
, arg
);
5560 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5561 gen_mtc0_store64(arg
, offsetof(CPUMIPSState
, CP0_VPESchedule
));
5565 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5566 gen_mtc0_store64(arg
, offsetof(CPUMIPSState
, CP0_VPEScheFBack
));
5567 rn
= "VPEScheFBack";
5570 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5571 gen_helper_mtc0_vpeopt(cpu_env
, arg
);
5575 goto cp0_unimplemented
;
5581 gen_helper_mtc0_entrylo0(cpu_env
, arg
);
5585 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5586 gen_helper_mtc0_tcstatus(cpu_env
, arg
);
5590 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5591 gen_helper_mtc0_tcbind(cpu_env
, arg
);
5595 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5596 gen_helper_mtc0_tcrestart(cpu_env
, arg
);
5600 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5601 gen_helper_mtc0_tchalt(cpu_env
, arg
);
5605 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5606 gen_helper_mtc0_tccontext(cpu_env
, arg
);
5610 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5611 gen_helper_mtc0_tcschedule(cpu_env
, arg
);
5615 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
5616 gen_helper_mtc0_tcschefback(cpu_env
, arg
);
5620 goto cp0_unimplemented
;
5626 gen_helper_mtc0_entrylo1(cpu_env
, arg
);
5630 goto cp0_unimplemented
;
5636 gen_helper_mtc0_context(cpu_env
, arg
);
5640 // gen_helper_mtc0_contextconfig(cpu_env, arg); /* SmartMIPS ASE */
5641 rn
= "ContextConfig";
5642 goto cp0_unimplemented
;
5645 CP0_CHECK(ctx
->ulri
);
5646 tcg_gen_st_tl(arg
, cpu_env
,
5647 offsetof(CPUMIPSState
, active_tc
.CP0_UserLocal
));
5651 goto cp0_unimplemented
;
5657 gen_helper_mtc0_pagemask(cpu_env
, arg
);
5661 check_insn(ctx
, ISA_MIPS32R2
);
5662 gen_helper_mtc0_pagegrain(cpu_env
, arg
);
5666 goto cp0_unimplemented
;
5672 gen_helper_mtc0_wired(cpu_env
, arg
);
5676 check_insn(ctx
, ISA_MIPS32R2
);
5677 gen_helper_mtc0_srsconf0(cpu_env
, arg
);
5681 check_insn(ctx
, ISA_MIPS32R2
);
5682 gen_helper_mtc0_srsconf1(cpu_env
, arg
);
5686 check_insn(ctx
, ISA_MIPS32R2
);
5687 gen_helper_mtc0_srsconf2(cpu_env
, arg
);
5691 check_insn(ctx
, ISA_MIPS32R2
);
5692 gen_helper_mtc0_srsconf3(cpu_env
, arg
);
5696 check_insn(ctx
, ISA_MIPS32R2
);
5697 gen_helper_mtc0_srsconf4(cpu_env
, arg
);
5701 goto cp0_unimplemented
;
5707 check_insn(ctx
, ISA_MIPS32R2
);
5708 gen_helper_mtc0_hwrena(cpu_env
, arg
);
5709 ctx
->bstate
= BS_STOP
;
5713 goto cp0_unimplemented
;
5731 goto cp0_unimplemented
;
5737 gen_helper_mtc0_count(cpu_env
, arg
);
5740 /* 6,7 are implementation dependent */
5742 goto cp0_unimplemented
;
5748 gen_helper_mtc0_entryhi(cpu_env
, arg
);
5752 goto cp0_unimplemented
;
5758 gen_helper_mtc0_compare(cpu_env
, arg
);
5761 /* 6,7 are implementation dependent */
5763 goto cp0_unimplemented
;
5769 save_cpu_state(ctx
, 1);
5770 gen_helper_mtc0_status(cpu_env
, arg
);
5771 /* BS_STOP isn't good enough here, hflags may have changed. */
5772 gen_save_pc(ctx
->pc
+ 4);
5773 ctx
->bstate
= BS_EXCP
;
5777 check_insn(ctx
, ISA_MIPS32R2
);
5778 gen_helper_mtc0_intctl(cpu_env
, arg
);
5779 /* Stop translation as we may have switched the execution mode */
5780 ctx
->bstate
= BS_STOP
;
5784 check_insn(ctx
, ISA_MIPS32R2
);
5785 gen_helper_mtc0_srsctl(cpu_env
, arg
);
5786 /* Stop translation as we may have switched the execution mode */
5787 ctx
->bstate
= BS_STOP
;
5791 check_insn(ctx
, ISA_MIPS32R2
);
5792 gen_mtc0_store32(arg
, offsetof(CPUMIPSState
, CP0_SRSMap
));
5793 /* Stop translation as we may have switched the execution mode */
5794 ctx
->bstate
= BS_STOP
;
5798 goto cp0_unimplemented
;
5804 save_cpu_state(ctx
, 1);
5805 gen_helper_mtc0_cause(cpu_env
, arg
);
5809 goto cp0_unimplemented
;
5815 gen_mtc0_store64(arg
, offsetof(CPUMIPSState
, CP0_EPC
));
5819 goto cp0_unimplemented
;
5829 check_insn(ctx
, ISA_MIPS32R2
);
5830 gen_helper_mtc0_ebase(cpu_env
, arg
);
5834 goto cp0_unimplemented
;
5840 gen_helper_mtc0_config0(cpu_env
, arg
);
5842 /* Stop translation as we may have switched the execution mode */
5843 ctx
->bstate
= BS_STOP
;
5846 /* ignored, read only */
5850 gen_helper_mtc0_config2(cpu_env
, arg
);
5852 /* Stop translation as we may have switched the execution mode */
5853 ctx
->bstate
= BS_STOP
;
5856 gen_helper_mtc0_config3(cpu_env
, arg
);
5858 /* Stop translation as we may have switched the execution mode */
5859 ctx
->bstate
= BS_STOP
;
5862 gen_helper_mtc0_config4(cpu_env
, arg
);
5864 ctx
->bstate
= BS_STOP
;
5867 gen_helper_mtc0_config5(cpu_env
, arg
);
5869 /* Stop translation as we may have switched the execution mode */
5870 ctx
->bstate
= BS_STOP
;
5872 /* 6,7 are implementation dependent */
5882 rn
= "Invalid config selector";
5883 goto cp0_unimplemented
;
5889 gen_helper_mtc0_lladdr(cpu_env
, arg
);
5893 goto cp0_unimplemented
;
5899 gen_helper_0e1i(mtc0_watchlo
, arg
, sel
);
5903 goto cp0_unimplemented
;
5909 gen_helper_0e1i(mtc0_watchhi
, arg
, sel
);
5913 goto cp0_unimplemented
;
5919 #if defined(TARGET_MIPS64)
5920 check_insn(ctx
, ISA_MIPS3
);
5921 gen_helper_mtc0_xcontext(cpu_env
, arg
);
5926 goto cp0_unimplemented
;
5930 /* Officially reserved, but sel 0 is used for R1x000 framemask */
5931 CP0_CHECK(!(ctx
->insn_flags
& ISA_MIPS32R6
));
5934 gen_helper_mtc0_framemask(cpu_env
, arg
);
5938 goto cp0_unimplemented
;
5943 rn
= "Diagnostic"; /* implementation dependent */
5948 gen_helper_mtc0_debug(cpu_env
, arg
); /* EJTAG support */
5949 /* BS_STOP isn't good enough here, hflags may have changed. */
5950 gen_save_pc(ctx
->pc
+ 4);
5951 ctx
->bstate
= BS_EXCP
;
5955 // gen_helper_mtc0_tracecontrol(cpu_env, arg); /* PDtrace support */
5956 rn
= "TraceControl";
5957 /* Stop translation as we may have switched the execution mode */
5958 ctx
->bstate
= BS_STOP
;
5961 // gen_helper_mtc0_tracecontrol2(cpu_env, arg); /* PDtrace support */
5962 rn
= "TraceControl2";
5963 /* Stop translation as we may have switched the execution mode */
5964 ctx
->bstate
= BS_STOP
;
5967 /* Stop translation as we may have switched the execution mode */
5968 ctx
->bstate
= BS_STOP
;
5969 // gen_helper_mtc0_usertracedata(cpu_env, arg); /* PDtrace support */
5970 rn
= "UserTraceData";
5971 /* Stop translation as we may have switched the execution mode */
5972 ctx
->bstate
= BS_STOP
;
5975 // gen_helper_mtc0_tracebpc(cpu_env, arg); /* PDtrace support */
5976 /* Stop translation as we may have switched the execution mode */
5977 ctx
->bstate
= BS_STOP
;
5981 goto cp0_unimplemented
;
5988 gen_mtc0_store64(arg
, offsetof(CPUMIPSState
, CP0_DEPC
));
5992 goto cp0_unimplemented
;
5998 gen_helper_mtc0_performance0(cpu_env
, arg
);
5999 rn
= "Performance0";
6002 // gen_helper_mtc0_performance1(arg);
6003 rn
= "Performance1";
6006 // gen_helper_mtc0_performance2(arg);
6007 rn
= "Performance2";
6010 // gen_helper_mtc0_performance3(arg);
6011 rn
= "Performance3";
6014 // gen_helper_mtc0_performance4(arg);
6015 rn
= "Performance4";
6018 // gen_helper_mtc0_performance5(arg);
6019 rn
= "Performance5";
6022 // gen_helper_mtc0_performance6(arg);
6023 rn
= "Performance6";
6026 // gen_helper_mtc0_performance7(arg);
6027 rn
= "Performance7";
6030 goto cp0_unimplemented
;
6044 goto cp0_unimplemented
;
6053 gen_helper_mtc0_taglo(cpu_env
, arg
);
6060 gen_helper_mtc0_datalo(cpu_env
, arg
);
6064 goto cp0_unimplemented
;
6073 gen_helper_mtc0_taghi(cpu_env
, arg
);
6080 gen_helper_mtc0_datahi(cpu_env
, arg
);
6085 goto cp0_unimplemented
;
6091 gen_mtc0_store64(arg
, offsetof(CPUMIPSState
, CP0_ErrorEPC
));
6095 goto cp0_unimplemented
;
6102 gen_mtc0_store32(arg
, offsetof(CPUMIPSState
, CP0_DESAVE
));
6106 CP0_CHECK(ctx
->kscrexist
& (1 << sel
));
6107 tcg_gen_st_tl(arg
, cpu_env
,
6108 offsetof(CPUMIPSState
, CP0_KScratch
[sel
-2]));
6112 goto cp0_unimplemented
;
6114 /* Stop translation as we may have switched the execution mode */
6115 ctx
->bstate
= BS_STOP
;
6118 goto cp0_unimplemented
;
6120 (void)rn
; /* avoid a compiler warning */
6121 LOG_DISAS("mtc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
6122 /* For simplicity assume that all writes can cause interrupts. */
6123 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
6125 ctx
->bstate
= BS_STOP
;
6130 LOG_DISAS("mtc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
6133 #if defined(TARGET_MIPS64)
6134 static void gen_dmfc0(DisasContext
*ctx
, TCGv arg
, int reg
, int sel
)
6136 const char *rn
= "invalid";
6139 check_insn(ctx
, ISA_MIPS64
);
6145 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Index
));
6149 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6150 gen_helper_mfc0_mvpcontrol(arg
, cpu_env
);
6154 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6155 gen_helper_mfc0_mvpconf0(arg
, cpu_env
);
6159 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6160 gen_helper_mfc0_mvpconf1(arg
, cpu_env
);
6164 goto cp0_unimplemented
;
6170 CP0_CHECK(!(ctx
->insn_flags
& ISA_MIPS32R6
));
6171 gen_helper_mfc0_random(arg
, cpu_env
);
6175 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6176 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEControl
));
6180 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6181 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEConf0
));
6185 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6186 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEConf1
));
6190 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6191 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_YQMask
));
6195 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6196 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_VPESchedule
));
6200 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6201 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_VPEScheFBack
));
6202 rn
= "VPEScheFBack";
6205 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6206 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_VPEOpt
));
6210 goto cp0_unimplemented
;
6216 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EntryLo0
));
6220 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6221 gen_helper_mfc0_tcstatus(arg
, cpu_env
);
6225 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6226 gen_helper_mfc0_tcbind(arg
, cpu_env
);
6230 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6231 gen_helper_dmfc0_tcrestart(arg
, cpu_env
);
6235 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6236 gen_helper_dmfc0_tchalt(arg
, cpu_env
);
6240 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6241 gen_helper_dmfc0_tccontext(arg
, cpu_env
);
6245 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6246 gen_helper_dmfc0_tcschedule(arg
, cpu_env
);
6250 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6251 gen_helper_dmfc0_tcschefback(arg
, cpu_env
);
6255 goto cp0_unimplemented
;
6261 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EntryLo1
));
6265 goto cp0_unimplemented
;
6271 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_Context
));
6275 // gen_helper_dmfc0_contextconfig(arg); /* SmartMIPS ASE */
6276 rn
= "ContextConfig";
6277 goto cp0_unimplemented
;
6280 CP0_CHECK(ctx
->ulri
);
6281 tcg_gen_ld_tl(arg
, cpu_env
,
6282 offsetof(CPUMIPSState
, active_tc
.CP0_UserLocal
));
6286 goto cp0_unimplemented
;
6292 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_PageMask
));
6296 check_insn(ctx
, ISA_MIPS32R2
);
6297 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_PageGrain
));
6301 goto cp0_unimplemented
;
6307 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Wired
));
6311 check_insn(ctx
, ISA_MIPS32R2
);
6312 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf0
));
6316 check_insn(ctx
, ISA_MIPS32R2
);
6317 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf1
));
6321 check_insn(ctx
, ISA_MIPS32R2
);
6322 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf2
));
6326 check_insn(ctx
, ISA_MIPS32R2
);
6327 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf3
));
6331 check_insn(ctx
, ISA_MIPS32R2
);
6332 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSConf4
));
6336 goto cp0_unimplemented
;
6342 check_insn(ctx
, ISA_MIPS32R2
);
6343 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_HWREna
));
6347 goto cp0_unimplemented
;
6353 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_BadVAddr
));
6358 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_BadInstr
));
6363 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_BadInstrP
));
6367 goto cp0_unimplemented
;
6373 /* Mark as an IO operation because we read the time. */
6374 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
6377 gen_helper_mfc0_count(arg
, cpu_env
);
6378 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
6381 /* Break the TB to be able to take timer interrupts immediately
6382 after reading count. */
6383 ctx
->bstate
= BS_STOP
;
6386 /* 6,7 are implementation dependent */
6388 goto cp0_unimplemented
;
6394 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EntryHi
));
6398 goto cp0_unimplemented
;
6404 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Compare
));
6407 /* 6,7 are implementation dependent */
6409 goto cp0_unimplemented
;
6415 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Status
));
6419 check_insn(ctx
, ISA_MIPS32R2
);
6420 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_IntCtl
));
6424 check_insn(ctx
, ISA_MIPS32R2
);
6425 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSCtl
));
6429 check_insn(ctx
, ISA_MIPS32R2
);
6430 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_SRSMap
));
6434 goto cp0_unimplemented
;
6440 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Cause
));
6444 goto cp0_unimplemented
;
6450 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EPC
));
6454 goto cp0_unimplemented
;
6460 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_PRid
));
6464 check_insn(ctx
, ISA_MIPS32R2
);
6465 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_EBase
));
6469 goto cp0_unimplemented
;
6475 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config0
));
6479 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config1
));
6483 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config2
));
6487 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config3
));
6491 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config4
));
6495 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config5
));
6498 /* 6,7 are implementation dependent */
6500 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config6
));
6504 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Config7
));
6508 goto cp0_unimplemented
;
6514 gen_helper_dmfc0_lladdr(arg
, cpu_env
);
6518 goto cp0_unimplemented
;
6524 gen_helper_1e0i(dmfc0_watchlo
, arg
, sel
);
6528 goto cp0_unimplemented
;
6534 gen_helper_1e0i(mfc0_watchhi
, arg
, sel
);
6538 goto cp0_unimplemented
;
6544 check_insn(ctx
, ISA_MIPS3
);
6545 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_XContext
));
6549 goto cp0_unimplemented
;
6553 /* Officially reserved, but sel 0 is used for R1x000 framemask */
6554 CP0_CHECK(!(ctx
->insn_flags
& ISA_MIPS32R6
));
6557 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Framemask
));
6561 goto cp0_unimplemented
;
6565 tcg_gen_movi_tl(arg
, 0); /* unimplemented */
6566 rn
= "'Diagnostic"; /* implementation dependent */
6571 gen_helper_mfc0_debug(arg
, cpu_env
); /* EJTAG support */
6575 // gen_helper_dmfc0_tracecontrol(arg, cpu_env); /* PDtrace support */
6576 rn
= "TraceControl";
6579 // gen_helper_dmfc0_tracecontrol2(arg, cpu_env); /* PDtrace support */
6580 rn
= "TraceControl2";
6583 // gen_helper_dmfc0_usertracedata(arg, cpu_env); /* PDtrace support */
6584 rn
= "UserTraceData";
6587 // gen_helper_dmfc0_tracebpc(arg, cpu_env); /* PDtrace support */
6591 goto cp0_unimplemented
;
6598 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_DEPC
));
6602 goto cp0_unimplemented
;
6608 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_Performance0
));
6609 rn
= "Performance0";
6612 // gen_helper_dmfc0_performance1(arg);
6613 rn
= "Performance1";
6616 // gen_helper_dmfc0_performance2(arg);
6617 rn
= "Performance2";
6620 // gen_helper_dmfc0_performance3(arg);
6621 rn
= "Performance3";
6624 // gen_helper_dmfc0_performance4(arg);
6625 rn
= "Performance4";
6628 // gen_helper_dmfc0_performance5(arg);
6629 rn
= "Performance5";
6632 // gen_helper_dmfc0_performance6(arg);
6633 rn
= "Performance6";
6636 // gen_helper_dmfc0_performance7(arg);
6637 rn
= "Performance7";
6640 goto cp0_unimplemented
;
6644 tcg_gen_movi_tl(arg
, 0); /* unimplemented */
6651 tcg_gen_movi_tl(arg
, 0); /* unimplemented */
6655 goto cp0_unimplemented
;
6664 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_TagLo
));
6671 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_DataLo
));
6675 goto cp0_unimplemented
;
6684 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_TagHi
));
6691 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_DataHi
));
6695 goto cp0_unimplemented
;
6701 tcg_gen_ld_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_ErrorEPC
));
6705 goto cp0_unimplemented
;
6712 gen_mfc0_load32(arg
, offsetof(CPUMIPSState
, CP0_DESAVE
));
6716 CP0_CHECK(ctx
->kscrexist
& (1 << sel
));
6717 tcg_gen_ld_tl(arg
, cpu_env
,
6718 offsetof(CPUMIPSState
, CP0_KScratch
[sel
-2]));
6722 goto cp0_unimplemented
;
6726 goto cp0_unimplemented
;
6728 (void)rn
; /* avoid a compiler warning */
6729 LOG_DISAS("dmfc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
6733 LOG_DISAS("dmfc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
6734 gen_mfc0_unimplemented(ctx
, arg
);
6737 static void gen_dmtc0(DisasContext
*ctx
, TCGv arg
, int reg
, int sel
)
6739 const char *rn
= "invalid";
6742 check_insn(ctx
, ISA_MIPS64
);
6744 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
6752 gen_helper_mtc0_index(cpu_env
, arg
);
6756 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6757 gen_helper_mtc0_mvpcontrol(cpu_env
, arg
);
6761 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6766 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6771 goto cp0_unimplemented
;
6781 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6782 gen_helper_mtc0_vpecontrol(cpu_env
, arg
);
6786 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6787 gen_helper_mtc0_vpeconf0(cpu_env
, arg
);
6791 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6792 gen_helper_mtc0_vpeconf1(cpu_env
, arg
);
6796 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6797 gen_helper_mtc0_yqmask(cpu_env
, arg
);
6801 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6802 tcg_gen_st_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_VPESchedule
));
6806 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6807 tcg_gen_st_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_VPEScheFBack
));
6808 rn
= "VPEScheFBack";
6811 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6812 gen_helper_mtc0_vpeopt(cpu_env
, arg
);
6816 goto cp0_unimplemented
;
6822 gen_helper_dmtc0_entrylo0(cpu_env
, arg
);
6826 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6827 gen_helper_mtc0_tcstatus(cpu_env
, arg
);
6831 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6832 gen_helper_mtc0_tcbind(cpu_env
, arg
);
6836 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6837 gen_helper_mtc0_tcrestart(cpu_env
, arg
);
6841 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6842 gen_helper_mtc0_tchalt(cpu_env
, arg
);
6846 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6847 gen_helper_mtc0_tccontext(cpu_env
, arg
);
6851 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6852 gen_helper_mtc0_tcschedule(cpu_env
, arg
);
6856 CP0_CHECK(ctx
->insn_flags
& ASE_MT
);
6857 gen_helper_mtc0_tcschefback(cpu_env
, arg
);
6861 goto cp0_unimplemented
;
6867 gen_helper_dmtc0_entrylo1(cpu_env
, arg
);
6871 goto cp0_unimplemented
;
6877 gen_helper_mtc0_context(cpu_env
, arg
);
6881 // gen_helper_mtc0_contextconfig(cpu_env, arg); /* SmartMIPS ASE */
6882 rn
= "ContextConfig";
6883 goto cp0_unimplemented
;
6886 CP0_CHECK(ctx
->ulri
);
6887 tcg_gen_st_tl(arg
, cpu_env
,
6888 offsetof(CPUMIPSState
, active_tc
.CP0_UserLocal
));
6892 goto cp0_unimplemented
;
6898 gen_helper_mtc0_pagemask(cpu_env
, arg
);
6902 check_insn(ctx
, ISA_MIPS32R2
);
6903 gen_helper_mtc0_pagegrain(cpu_env
, arg
);
6907 goto cp0_unimplemented
;
6913 gen_helper_mtc0_wired(cpu_env
, arg
);
6917 check_insn(ctx
, ISA_MIPS32R2
);
6918 gen_helper_mtc0_srsconf0(cpu_env
, arg
);
6922 check_insn(ctx
, ISA_MIPS32R2
);
6923 gen_helper_mtc0_srsconf1(cpu_env
, arg
);
6927 check_insn(ctx
, ISA_MIPS32R2
);
6928 gen_helper_mtc0_srsconf2(cpu_env
, arg
);
6932 check_insn(ctx
, ISA_MIPS32R2
);
6933 gen_helper_mtc0_srsconf3(cpu_env
, arg
);
6937 check_insn(ctx
, ISA_MIPS32R2
);
6938 gen_helper_mtc0_srsconf4(cpu_env
, arg
);
6942 goto cp0_unimplemented
;
6948 check_insn(ctx
, ISA_MIPS32R2
);
6949 gen_helper_mtc0_hwrena(cpu_env
, arg
);
6950 ctx
->bstate
= BS_STOP
;
6954 goto cp0_unimplemented
;
6972 goto cp0_unimplemented
;
6978 gen_helper_mtc0_count(cpu_env
, arg
);
6981 /* 6,7 are implementation dependent */
6983 goto cp0_unimplemented
;
6985 /* Stop translation as we may have switched the execution mode */
6986 ctx
->bstate
= BS_STOP
;
6991 gen_helper_mtc0_entryhi(cpu_env
, arg
);
6995 goto cp0_unimplemented
;
7001 gen_helper_mtc0_compare(cpu_env
, arg
);
7004 /* 6,7 are implementation dependent */
7006 goto cp0_unimplemented
;
7008 /* Stop translation as we may have switched the execution mode */
7009 ctx
->bstate
= BS_STOP
;
7014 save_cpu_state(ctx
, 1);
7015 gen_helper_mtc0_status(cpu_env
, arg
);
7016 /* BS_STOP isn't good enough here, hflags may have changed. */
7017 gen_save_pc(ctx
->pc
+ 4);
7018 ctx
->bstate
= BS_EXCP
;
7022 check_insn(ctx
, ISA_MIPS32R2
);
7023 gen_helper_mtc0_intctl(cpu_env
, arg
);
7024 /* Stop translation as we may have switched the execution mode */
7025 ctx
->bstate
= BS_STOP
;
7029 check_insn(ctx
, ISA_MIPS32R2
);
7030 gen_helper_mtc0_srsctl(cpu_env
, arg
);
7031 /* Stop translation as we may have switched the execution mode */
7032 ctx
->bstate
= BS_STOP
;
7036 check_insn(ctx
, ISA_MIPS32R2
);
7037 gen_mtc0_store32(arg
, offsetof(CPUMIPSState
, CP0_SRSMap
));
7038 /* Stop translation as we may have switched the execution mode */
7039 ctx
->bstate
= BS_STOP
;
7043 goto cp0_unimplemented
;
7049 save_cpu_state(ctx
, 1);
7050 /* Mark as an IO operation because we may trigger a software
7052 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
7055 gen_helper_mtc0_cause(cpu_env
, arg
);
7056 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
7059 /* Stop translation as we may have triggered an intetrupt */
7060 ctx
->bstate
= BS_STOP
;
7064 goto cp0_unimplemented
;
7070 tcg_gen_st_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_EPC
));
7074 goto cp0_unimplemented
;
7084 check_insn(ctx
, ISA_MIPS32R2
);
7085 gen_helper_mtc0_ebase(cpu_env
, arg
);
7089 goto cp0_unimplemented
;
7095 gen_helper_mtc0_config0(cpu_env
, arg
);
7097 /* Stop translation as we may have switched the execution mode */
7098 ctx
->bstate
= BS_STOP
;
7101 /* ignored, read only */
7105 gen_helper_mtc0_config2(cpu_env
, arg
);
7107 /* Stop translation as we may have switched the execution mode */
7108 ctx
->bstate
= BS_STOP
;
7111 gen_helper_mtc0_config3(cpu_env
, arg
);
7113 /* Stop translation as we may have switched the execution mode */
7114 ctx
->bstate
= BS_STOP
;
7117 /* currently ignored */
7121 gen_helper_mtc0_config5(cpu_env
, arg
);
7123 /* Stop translation as we may have switched the execution mode */
7124 ctx
->bstate
= BS_STOP
;
7126 /* 6,7 are implementation dependent */
7128 rn
= "Invalid config selector";
7129 goto cp0_unimplemented
;
7135 gen_helper_mtc0_lladdr(cpu_env
, arg
);
7139 goto cp0_unimplemented
;
7145 gen_helper_0e1i(mtc0_watchlo
, arg
, sel
);
7149 goto cp0_unimplemented
;
7155 gen_helper_0e1i(mtc0_watchhi
, arg
, sel
);
7159 goto cp0_unimplemented
;
7165 check_insn(ctx
, ISA_MIPS3
);
7166 gen_helper_mtc0_xcontext(cpu_env
, arg
);
7170 goto cp0_unimplemented
;
7174 /* Officially reserved, but sel 0 is used for R1x000 framemask */
7175 CP0_CHECK(!(ctx
->insn_flags
& ISA_MIPS32R6
));
7178 gen_helper_mtc0_framemask(cpu_env
, arg
);
7182 goto cp0_unimplemented
;
7187 rn
= "Diagnostic"; /* implementation dependent */
7192 gen_helper_mtc0_debug(cpu_env
, arg
); /* EJTAG support */
7193 /* BS_STOP isn't good enough here, hflags may have changed. */
7194 gen_save_pc(ctx
->pc
+ 4);
7195 ctx
->bstate
= BS_EXCP
;
7199 // gen_helper_mtc0_tracecontrol(cpu_env, arg); /* PDtrace support */
7200 /* Stop translation as we may have switched the execution mode */
7201 ctx
->bstate
= BS_STOP
;
7202 rn
= "TraceControl";
7205 // gen_helper_mtc0_tracecontrol2(cpu_env, arg); /* PDtrace support */
7206 /* Stop translation as we may have switched the execution mode */
7207 ctx
->bstate
= BS_STOP
;
7208 rn
= "TraceControl2";
7211 // gen_helper_mtc0_usertracedata(cpu_env, arg); /* PDtrace support */
7212 /* Stop translation as we may have switched the execution mode */
7213 ctx
->bstate
= BS_STOP
;
7214 rn
= "UserTraceData";
7217 // gen_helper_mtc0_tracebpc(cpu_env, arg); /* PDtrace support */
7218 /* Stop translation as we may have switched the execution mode */
7219 ctx
->bstate
= BS_STOP
;
7223 goto cp0_unimplemented
;
7230 tcg_gen_st_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_DEPC
));
7234 goto cp0_unimplemented
;
7240 gen_helper_mtc0_performance0(cpu_env
, arg
);
7241 rn
= "Performance0";
7244 // gen_helper_mtc0_performance1(cpu_env, arg);
7245 rn
= "Performance1";
7248 // gen_helper_mtc0_performance2(cpu_env, arg);
7249 rn
= "Performance2";
7252 // gen_helper_mtc0_performance3(cpu_env, arg);
7253 rn
= "Performance3";
7256 // gen_helper_mtc0_performance4(cpu_env, arg);
7257 rn
= "Performance4";
7260 // gen_helper_mtc0_performance5(cpu_env, arg);
7261 rn
= "Performance5";
7264 // gen_helper_mtc0_performance6(cpu_env, arg);
7265 rn
= "Performance6";
7268 // gen_helper_mtc0_performance7(cpu_env, arg);
7269 rn
= "Performance7";
7272 goto cp0_unimplemented
;
7286 goto cp0_unimplemented
;
7295 gen_helper_mtc0_taglo(cpu_env
, arg
);
7302 gen_helper_mtc0_datalo(cpu_env
, arg
);
7306 goto cp0_unimplemented
;
7315 gen_helper_mtc0_taghi(cpu_env
, arg
);
7322 gen_helper_mtc0_datahi(cpu_env
, arg
);
7327 goto cp0_unimplemented
;
7333 tcg_gen_st_tl(arg
, cpu_env
, offsetof(CPUMIPSState
, CP0_ErrorEPC
));
7337 goto cp0_unimplemented
;
7344 gen_mtc0_store32(arg
, offsetof(CPUMIPSState
, CP0_DESAVE
));
7348 CP0_CHECK(ctx
->kscrexist
& (1 << sel
));
7349 tcg_gen_st_tl(arg
, cpu_env
,
7350 offsetof(CPUMIPSState
, CP0_KScratch
[sel
-2]));
7354 goto cp0_unimplemented
;
7356 /* Stop translation as we may have switched the execution mode */
7357 ctx
->bstate
= BS_STOP
;
7360 goto cp0_unimplemented
;
7362 (void)rn
; /* avoid a compiler warning */
7363 LOG_DISAS("dmtc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
7364 /* For simplicity assume that all writes can cause interrupts. */
7365 if (ctx
->tb
->cflags
& CF_USE_ICOUNT
) {
7367 ctx
->bstate
= BS_STOP
;
7372 LOG_DISAS("dmtc0 %s (reg %d sel %d)\n", rn
, reg
, sel
);
7374 #endif /* TARGET_MIPS64 */
7376 static void gen_mftr(CPUMIPSState
*env
, DisasContext
*ctx
, int rt
, int rd
,
7377 int u
, int sel
, int h
)
7379 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
7380 TCGv t0
= tcg_temp_local_new();
7382 if ((env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
)) == 0 &&
7383 ((env
->tcs
[other_tc
].CP0_TCBind
& (0xf << CP0TCBd_CurVPE
)) !=
7384 (env
->active_tc
.CP0_TCBind
& (0xf << CP0TCBd_CurVPE
))))
7385 tcg_gen_movi_tl(t0
, -1);
7386 else if ((env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
)) >
7387 (env
->mvp
->CP0_MVPConf0
& (0xff << CP0MVPC0_PTC
)))
7388 tcg_gen_movi_tl(t0
, -1);
7394 gen_helper_mftc0_vpecontrol(t0
, cpu_env
);
7397 gen_helper_mftc0_vpeconf0(t0
, cpu_env
);
7407 gen_helper_mftc0_tcstatus(t0
, cpu_env
);
7410 gen_helper_mftc0_tcbind(t0
, cpu_env
);
7413 gen_helper_mftc0_tcrestart(t0
, cpu_env
);
7416 gen_helper_mftc0_tchalt(t0
, cpu_env
);
7419 gen_helper_mftc0_tccontext(t0
, cpu_env
);
7422 gen_helper_mftc0_tcschedule(t0
, cpu_env
);
7425 gen_helper_mftc0_tcschefback(t0
, cpu_env
);
7428 gen_mfc0(ctx
, t0
, rt
, sel
);
7435 gen_helper_mftc0_entryhi(t0
, cpu_env
);
7438 gen_mfc0(ctx
, t0
, rt
, sel
);
7444 gen_helper_mftc0_status(t0
, cpu_env
);
7447 gen_mfc0(ctx
, t0
, rt
, sel
);
7453 gen_helper_mftc0_cause(t0
, cpu_env
);
7463 gen_helper_mftc0_epc(t0
, cpu_env
);
7473 gen_helper_mftc0_ebase(t0
, cpu_env
);
7483 gen_helper_mftc0_configx(t0
, cpu_env
, tcg_const_tl(sel
));
7493 gen_helper_mftc0_debug(t0
, cpu_env
);
7496 gen_mfc0(ctx
, t0
, rt
, sel
);
7501 gen_mfc0(ctx
, t0
, rt
, sel
);
7503 } else switch (sel
) {
7504 /* GPR registers. */
7506 gen_helper_1e0i(mftgpr
, t0
, rt
);
7508 /* Auxiliary CPU registers */
7512 gen_helper_1e0i(mftlo
, t0
, 0);
7515 gen_helper_1e0i(mfthi
, t0
, 0);
7518 gen_helper_1e0i(mftacx
, t0
, 0);
7521 gen_helper_1e0i(mftlo
, t0
, 1);
7524 gen_helper_1e0i(mfthi
, t0
, 1);
7527 gen_helper_1e0i(mftacx
, t0
, 1);
7530 gen_helper_1e0i(mftlo
, t0
, 2);
7533 gen_helper_1e0i(mfthi
, t0
, 2);
7536 gen_helper_1e0i(mftacx
, t0
, 2);
7539 gen_helper_1e0i(mftlo
, t0
, 3);
7542 gen_helper_1e0i(mfthi
, t0
, 3);
7545 gen_helper_1e0i(mftacx
, t0
, 3);
7548 gen_helper_mftdsp(t0
, cpu_env
);
7554 /* Floating point (COP1). */
7556 /* XXX: For now we support only a single FPU context. */
7558 TCGv_i32 fp0
= tcg_temp_new_i32();
7560 gen_load_fpr32(fp0
, rt
);
7561 tcg_gen_ext_i32_tl(t0
, fp0
);
7562 tcg_temp_free_i32(fp0
);
7564 TCGv_i32 fp0
= tcg_temp_new_i32();
7566 gen_load_fpr32h(ctx
, fp0
, rt
);
7567 tcg_gen_ext_i32_tl(t0
, fp0
);
7568 tcg_temp_free_i32(fp0
);
7572 /* XXX: For now we support only a single FPU context. */
7573 gen_helper_1e0i(cfc1
, t0
, rt
);
7575 /* COP2: Not implemented. */
7582 LOG_DISAS("mftr (reg %d u %d sel %d h %d)\n", rt
, u
, sel
, h
);
7583 gen_store_gpr(t0
, rd
);
7589 LOG_DISAS("mftr (reg %d u %d sel %d h %d)\n", rt
, u
, sel
, h
);
7590 generate_exception(ctx
, EXCP_RI
);
7593 static void gen_mttr(CPUMIPSState
*env
, DisasContext
*ctx
, int rd
, int rt
,
7594 int u
, int sel
, int h
)
7596 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
7597 TCGv t0
= tcg_temp_local_new();
7599 gen_load_gpr(t0
, rt
);
7600 if ((env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
)) == 0 &&
7601 ((env
->tcs
[other_tc
].CP0_TCBind
& (0xf << CP0TCBd_CurVPE
)) !=
7602 (env
->active_tc
.CP0_TCBind
& (0xf << CP0TCBd_CurVPE
))))
7604 else if ((env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
)) >
7605 (env
->mvp
->CP0_MVPConf0
& (0xff << CP0MVPC0_PTC
)))
7612 gen_helper_mttc0_vpecontrol(cpu_env
, t0
);
7615 gen_helper_mttc0_vpeconf0(cpu_env
, t0
);
7625 gen_helper_mttc0_tcstatus(cpu_env
, t0
);
7628 gen_helper_mttc0_tcbind(cpu_env
, t0
);
7631 gen_helper_mttc0_tcrestart(cpu_env
, t0
);
7634 gen_helper_mttc0_tchalt(cpu_env
, t0
);
7637 gen_helper_mttc0_tccontext(cpu_env
, t0
);
7640 gen_helper_mttc0_tcschedule(cpu_env
, t0
);
7643 gen_helper_mttc0_tcschefback(cpu_env
, t0
);
7646 gen_mtc0(ctx
, t0
, rd
, sel
);
7653 gen_helper_mttc0_entryhi(cpu_env
, t0
);
7656 gen_mtc0(ctx
, t0
, rd
, sel
);
7662 gen_helper_mttc0_status(cpu_env
, t0
);
7665 gen_mtc0(ctx
, t0
, rd
, sel
);
7671 gen_helper_mttc0_cause(cpu_env
, t0
);
7681 gen_helper_mttc0_ebase(cpu_env
, t0
);
7691 gen_helper_mttc0_debug(cpu_env
, t0
);
7694 gen_mtc0(ctx
, t0
, rd
, sel
);
7699 gen_mtc0(ctx
, t0
, rd
, sel
);
7701 } else switch (sel
) {
7702 /* GPR registers. */
7704 gen_helper_0e1i(mttgpr
, t0
, rd
);
7706 /* Auxiliary CPU registers */
7710 gen_helper_0e1i(mttlo
, t0
, 0);
7713 gen_helper_0e1i(mtthi
, t0
, 0);
7716 gen_helper_0e1i(mttacx
, t0
, 0);
7719 gen_helper_0e1i(mttlo
, t0
, 1);
7722 gen_helper_0e1i(mtthi
, t0
, 1);
7725 gen_helper_0e1i(mttacx
, t0
, 1);
7728 gen_helper_0e1i(mttlo
, t0
, 2);
7731 gen_helper_0e1i(mtthi
, t0
, 2);
7734 gen_helper_0e1i(mttacx
, t0
, 2);
7737 gen_helper_0e1i(mttlo
, t0
, 3);
7740 gen_helper_0e1i(mtthi
, t0
, 3);
7743 gen_helper_0e1i(mttacx
, t0
, 3);
7746 gen_helper_mttdsp(cpu_env
, t0
);
7752 /* Floating point (COP1). */
7754 /* XXX: For now we support only a single FPU context. */
7756 TCGv_i32 fp0
= tcg_temp_new_i32();
7758 tcg_gen_trunc_tl_i32(fp0
, t0
);
7759 gen_store_fpr32(fp0
, rd
);
7760 tcg_temp_free_i32(fp0
);
7762 TCGv_i32 fp0
= tcg_temp_new_i32();
7764 tcg_gen_trunc_tl_i32(fp0
, t0
);
7765 gen_store_fpr32h(ctx
, fp0
, rd
);
7766 tcg_temp_free_i32(fp0
);
7770 /* XXX: For now we support only a single FPU context. */
7771 save_cpu_state(ctx
, 1);
7773 TCGv_i32 fs_tmp
= tcg_const_i32(rd
);
7775 gen_helper_0e2i(ctc1
, t0
, fs_tmp
, rt
);
7776 tcg_temp_free_i32(fs_tmp
);
7778 /* Stop translation as we may have changed hflags */
7779 ctx
->bstate
= BS_STOP
;
7781 /* COP2: Not implemented. */
7788 LOG_DISAS("mttr (reg %d u %d sel %d h %d)\n", rd
, u
, sel
, h
);
7794 LOG_DISAS("mttr (reg %d u %d sel %d h %d)\n", rd
, u
, sel
, h
);
7795 generate_exception(ctx
, EXCP_RI
);
7798 static void gen_cp0 (CPUMIPSState
*env
, DisasContext
*ctx
, uint32_t opc
, int rt
, int rd
)
7800 const char *opn
= "ldst";
7802 check_cp0_enabled(ctx
);
7809 gen_mfc0(ctx
, cpu_gpr
[rt
], rd
, ctx
->opcode
& 0x7);
7814 TCGv t0
= tcg_temp_new();
7816 gen_load_gpr(t0
, rt
);
7817 gen_mtc0(ctx
, t0
, rd
, ctx
->opcode
& 0x7);
7822 #if defined(TARGET_MIPS64)
7824 check_insn(ctx
, ISA_MIPS3
);
7829 gen_dmfc0(ctx
, cpu_gpr
[rt
], rd
, ctx
->opcode
& 0x7);
7833 check_insn(ctx
, ISA_MIPS3
);
7835 TCGv t0
= tcg_temp_new();
7837 gen_load_gpr(t0
, rt
);
7838 gen_dmtc0(ctx
, t0
, rd
, ctx
->opcode
& 0x7);
7845 check_insn(ctx
, ASE_MT
);
7850 gen_mftr(env
, ctx
, rt
, rd
, (ctx
->opcode
>> 5) & 1,
7851 ctx
->opcode
& 0x7, (ctx
->opcode
>> 4) & 1);
7855 check_insn(ctx
, ASE_MT
);
7856 gen_mttr(env
, ctx
, rd
, rt
, (ctx
->opcode
>> 5) & 1,
7857 ctx
->opcode
& 0x7, (ctx
->opcode
>> 4) & 1);
7862 if (!env
->tlb
->helper_tlbwi
)
7864 gen_helper_tlbwi(cpu_env
);
7869 if (!env
->tlb
->helper_tlbinv
) {
7872 gen_helper_tlbinv(cpu_env
);
7873 } /* treat as nop if TLBINV not supported */
7878 if (!env
->tlb
->helper_tlbinvf
) {
7881 gen_helper_tlbinvf(cpu_env
);
7882 } /* treat as nop if TLBINV not supported */
7886 if (!env
->tlb
->helper_tlbwr
)
7888 gen_helper_tlbwr(cpu_env
);
7892 if (!env
->tlb
->helper_tlbp
)
7894 gen_helper_tlbp(cpu_env
);
7898 if (!env
->tlb
->helper_tlbr
)
7900 gen_helper_tlbr(cpu_env
);
7904 check_insn(ctx
, ISA_MIPS2
);
7905 if ((ctx
->insn_flags
& ISA_MIPS32R6
) &&
7906 (ctx
->hflags
& MIPS_HFLAG_BMASK
)) {
7907 MIPS_DEBUG("CTI in delay / forbidden slot");
7910 gen_helper_eret(cpu_env
);
7911 ctx
->bstate
= BS_EXCP
;
7915 check_insn(ctx
, ISA_MIPS32
);
7916 if ((ctx
->insn_flags
& ISA_MIPS32R6
) &&
7917 (ctx
->hflags
& MIPS_HFLAG_BMASK
)) {
7918 MIPS_DEBUG("CTI in delay / forbidden slot");
7921 if (!(ctx
->hflags
& MIPS_HFLAG_DM
)) {
7923 generate_exception(ctx
, EXCP_RI
);
7925 gen_helper_deret(cpu_env
);
7926 ctx
->bstate
= BS_EXCP
;
7931 check_insn(ctx
, ISA_MIPS3
| ISA_MIPS32
);
7932 if ((ctx
->insn_flags
& ISA_MIPS32R6
) &&
7933 (ctx
->hflags
& MIPS_HFLAG_BMASK
)) {
7934 MIPS_DEBUG("CTI in delay / forbidden slot");
7937 /* If we get an exception, we want to restart at next instruction */
7939 save_cpu_state(ctx
, 1);
7941 gen_helper_wait(cpu_env
);
7942 ctx
->bstate
= BS_EXCP
;
7947 generate_exception(ctx
, EXCP_RI
);
7950 (void)opn
; /* avoid a compiler warning */
7951 MIPS_DEBUG("%s %s %d", opn
, regnames
[rt
], rd
);
7953 #endif /* !CONFIG_USER_ONLY */
7955 /* CP1 Branches (before delay slot) */
7956 static void gen_compute_branch1(DisasContext
*ctx
, uint32_t op
,
7957 int32_t cc
, int32_t offset
)
7959 target_ulong btarget
;
7960 const char *opn
= "cp1 cond branch";
7961 TCGv_i32 t0
= tcg_temp_new_i32();
7963 if ((ctx
->insn_flags
& ISA_MIPS32R6
) && (ctx
->hflags
& MIPS_HFLAG_BMASK
)) {
7964 MIPS_DEBUG("CTI in delay / forbidden slot");
7965 generate_exception(ctx
, EXCP_RI
);
7970 check_insn(ctx
, ISA_MIPS4
| ISA_MIPS32
);
7972 btarget
= ctx
->pc
+ 4 + offset
;
7976 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
7977 tcg_gen_not_i32(t0
, t0
);
7978 tcg_gen_andi_i32(t0
, t0
, 1);
7979 tcg_gen_extu_i32_tl(bcond
, t0
);
7983 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
7984 tcg_gen_not_i32(t0
, t0
);
7985 tcg_gen_andi_i32(t0
, t0
, 1);
7986 tcg_gen_extu_i32_tl(bcond
, t0
);
7990 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
7991 tcg_gen_andi_i32(t0
, t0
, 1);
7992 tcg_gen_extu_i32_tl(bcond
, t0
);
7996 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
7997 tcg_gen_andi_i32(t0
, t0
, 1);
7998 tcg_gen_extu_i32_tl(bcond
, t0
);
8001 ctx
->hflags
|= MIPS_HFLAG_BL
;
8005 TCGv_i32 t1
= tcg_temp_new_i32();
8006 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
8007 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+1));
8008 tcg_gen_nand_i32(t0
, t0
, t1
);
8009 tcg_temp_free_i32(t1
);
8010 tcg_gen_andi_i32(t0
, t0
, 1);
8011 tcg_gen_extu_i32_tl(bcond
, t0
);
8017 TCGv_i32 t1
= tcg_temp_new_i32();
8018 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
8019 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+1));
8020 tcg_gen_or_i32(t0
, t0
, t1
);
8021 tcg_temp_free_i32(t1
);
8022 tcg_gen_andi_i32(t0
, t0
, 1);
8023 tcg_gen_extu_i32_tl(bcond
, t0
);
8029 TCGv_i32 t1
= tcg_temp_new_i32();
8030 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
8031 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+1));
8032 tcg_gen_and_i32(t0
, t0
, t1
);
8033 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+2));
8034 tcg_gen_and_i32(t0
, t0
, t1
);
8035 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+3));
8036 tcg_gen_nand_i32(t0
, t0
, t1
);
8037 tcg_temp_free_i32(t1
);
8038 tcg_gen_andi_i32(t0
, t0
, 1);
8039 tcg_gen_extu_i32_tl(bcond
, t0
);
8045 TCGv_i32 t1
= tcg_temp_new_i32();
8046 tcg_gen_shri_i32(t0
, fpu_fcr31
, get_fp_bit(cc
));
8047 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+1));
8048 tcg_gen_or_i32(t0
, t0
, t1
);
8049 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+2));
8050 tcg_gen_or_i32(t0
, t0
, t1
);
8051 tcg_gen_shri_i32(t1
, fpu_fcr31
, get_fp_bit(cc
+3));
8052 tcg_gen_or_i32(t0
, t0
, t1
);
8053 tcg_temp_free_i32(t1
);
8054 tcg_gen_andi_i32(t0
, t0
, 1);
8055 tcg_gen_extu_i32_tl(bcond
, t0
);
8059 ctx
->hflags
|= MIPS_HFLAG_BC
;
8063 generate_exception (ctx
, EXCP_RI
);
8066 (void)opn
; /* avoid a compiler warning */
8067 MIPS_DEBUG("%s: cond %02x target " TARGET_FMT_lx
, opn
,
8068 ctx
->hflags
, btarget
);
8069 ctx
->btarget
= btarget
;
8070 ctx
->hflags
|= MIPS_HFLAG_BDS32
;
8072 tcg_temp_free_i32(t0
);
8075 /* R6 CP1 Branches */
8076 static void gen_compute_branch1_r6(DisasContext
*ctx
, uint32_t op
,
8077 int32_t ft
, int32_t offset
)
8079 target_ulong btarget
;
8080 const char *opn
= "cp1 cond branch";
8081 TCGv_i64 t0
= tcg_temp_new_i64();
8083 if (ctx
->hflags
& MIPS_HFLAG_BMASK
) {
8084 #ifdef MIPS_DEBUG_DISAS
8085 LOG_DISAS("Branch in delay / forbidden slot at PC 0x" TARGET_FMT_lx
8088 generate_exception(ctx
, EXCP_RI
);
8092 gen_load_fpr64(ctx
, t0
, ft
);
8093 tcg_gen_andi_i64(t0
, t0
, 1);
8095 btarget
= addr_add(ctx
, ctx
->pc
+ 4, offset
);
8099 tcg_gen_xori_i64(t0
, t0
, 1);
8101 ctx
->hflags
|= MIPS_HFLAG_BC
;
8104 /* t0 already set */
8106 ctx
->hflags
|= MIPS_HFLAG_BC
;
8110 generate_exception(ctx
, EXCP_RI
);
8114 tcg_gen_trunc_i64_tl(bcond
, t0
);
8116 (void)opn
; /* avoid a compiler warning */
8117 MIPS_DEBUG("%s: cond %02x target " TARGET_FMT_lx
, opn
,
8118 ctx
->hflags
, btarget
);
8119 ctx
->btarget
= btarget
;
8120 ctx
->hflags
|= MIPS_HFLAG_BDS32
;
8123 tcg_temp_free_i64(t0
);
8126 /* Coprocessor 1 (FPU) */
8128 #define FOP(func, fmt) (((fmt) << 21) | (func))
8131 OPC_ADD_S
= FOP(0, FMT_S
),
8132 OPC_SUB_S
= FOP(1, FMT_S
),
8133 OPC_MUL_S
= FOP(2, FMT_S
),
8134 OPC_DIV_S
= FOP(3, FMT_S
),
8135 OPC_SQRT_S
= FOP(4, FMT_S
),
8136 OPC_ABS_S
= FOP(5, FMT_S
),
8137 OPC_MOV_S
= FOP(6, FMT_S
),
8138 OPC_NEG_S
= FOP(7, FMT_S
),
8139 OPC_ROUND_L_S
= FOP(8, FMT_S
),
8140 OPC_TRUNC_L_S
= FOP(9, FMT_S
),
8141 OPC_CEIL_L_S
= FOP(10, FMT_S
),
8142 OPC_FLOOR_L_S
= FOP(11, FMT_S
),
8143 OPC_ROUND_W_S
= FOP(12, FMT_S
),
8144 OPC_TRUNC_W_S
= FOP(13, FMT_S
),
8145 OPC_CEIL_W_S
= FOP(14, FMT_S
),
8146 OPC_FLOOR_W_S
= FOP(15, FMT_S
),
8147 OPC_SEL_S
= FOP(16, FMT_S
),
8148 OPC_MOVCF_S
= FOP(17, FMT_S
),
8149 OPC_MOVZ_S
= FOP(18, FMT_S
),
8150 OPC_MOVN_S
= FOP(19, FMT_S
),
8151 OPC_SELEQZ_S
= FOP(20, FMT_S
),
8152 OPC_RECIP_S
= FOP(21, FMT_S
),
8153 OPC_RSQRT_S
= FOP(22, FMT_S
),
8154 OPC_SELNEZ_S
= FOP(23, FMT_S
),
8155 OPC_MADDF_S
= FOP(24, FMT_S
),
8156 OPC_MSUBF_S
= FOP(25, FMT_S
),
8157 OPC_RINT_S
= FOP(26, FMT_S
),
8158 OPC_CLASS_S
= FOP(27, FMT_S
),
8159 OPC_MIN_S
= FOP(28, FMT_S
),
8160 OPC_RECIP2_S
= FOP(28, FMT_S
),
8161 OPC_MINA_S
= FOP(29, FMT_S
),
8162 OPC_RECIP1_S
= FOP(29, FMT_S
),
8163 OPC_MAX_S
= FOP(30, FMT_S
),
8164 OPC_RSQRT1_S
= FOP(30, FMT_S
),
8165 OPC_MAXA_S
= FOP(31, FMT_S
),
8166 OPC_RSQRT2_S
= FOP(31, FMT_S
),
8167 OPC_CVT_D_S
= FOP(33, FMT_S
),
8168 OPC_CVT_W_S
= FOP(36, FMT_S
),
8169 OPC_CVT_L_S
= FOP(37, FMT_S
),
8170 OPC_CVT_PS_S
= FOP(38, FMT_S
),
8171 OPC_CMP_F_S
= FOP (48, FMT_S
),
8172 OPC_CMP_UN_S
= FOP (49, FMT_S
),
8173 OPC_CMP_EQ_S
= FOP (50, FMT_S
),
8174 OPC_CMP_UEQ_S
= FOP (51, FMT_S
),
8175 OPC_CMP_OLT_S
= FOP (52, FMT_S
),
8176 OPC_CMP_ULT_S
= FOP (53, FMT_S
),
8177 OPC_CMP_OLE_S
= FOP (54, FMT_S
),
8178 OPC_CMP_ULE_S
= FOP (55, FMT_S
),
8179 OPC_CMP_SF_S
= FOP (56, FMT_S
),
8180 OPC_CMP_NGLE_S
= FOP (57, FMT_S
),
8181 OPC_CMP_SEQ_S
= FOP (58, FMT_S
),
8182 OPC_CMP_NGL_S
= FOP (59, FMT_S
),
8183 OPC_CMP_LT_S
= FOP (60, FMT_S
),
8184 OPC_CMP_NGE_S
= FOP (61, FMT_S
),
8185 OPC_CMP_LE_S
= FOP (62, FMT_S
),
8186 OPC_CMP_NGT_S
= FOP (63, FMT_S
),
8188 OPC_ADD_D
= FOP(0, FMT_D
),
8189 OPC_SUB_D
= FOP(1, FMT_D
),
8190 OPC_MUL_D
= FOP(2, FMT_D
),
8191 OPC_DIV_D
= FOP(3, FMT_D
),
8192 OPC_SQRT_D
= FOP(4, FMT_D
),
8193 OPC_ABS_D
= FOP(5, FMT_D
),
8194 OPC_MOV_D
= FOP(6, FMT_D
),
8195 OPC_NEG_D
= FOP(7, FMT_D
),
8196 OPC_ROUND_L_D
= FOP(8, FMT_D
),
8197 OPC_TRUNC_L_D
= FOP(9, FMT_D
),
8198 OPC_CEIL_L_D
= FOP(10, FMT_D
),
8199 OPC_FLOOR_L_D
= FOP(11, FMT_D
),
8200 OPC_ROUND_W_D
= FOP(12, FMT_D
),
8201 OPC_TRUNC_W_D
= FOP(13, FMT_D
),
8202 OPC_CEIL_W_D
= FOP(14, FMT_D
),
8203 OPC_FLOOR_W_D
= FOP(15, FMT_D
),
8204 OPC_SEL_D
= FOP(16, FMT_D
),
8205 OPC_MOVCF_D
= FOP(17, FMT_D
),
8206 OPC_MOVZ_D
= FOP(18, FMT_D
),
8207 OPC_MOVN_D
= FOP(19, FMT_D
),
8208 OPC_SELEQZ_D
= FOP(20, FMT_D
),
8209 OPC_RECIP_D
= FOP(21, FMT_D
),
8210 OPC_RSQRT_D
= FOP(22, FMT_D
),
8211 OPC_SELNEZ_D
= FOP(23, FMT_D
),
8212 OPC_MADDF_D
= FOP(24, FMT_D
),
8213 OPC_MSUBF_D
= FOP(25, FMT_D
),
8214 OPC_RINT_D
= FOP(26, FMT_D
),
8215 OPC_CLASS_D
= FOP(27, FMT_D
),
8216 OPC_MIN_D
= FOP(28, FMT_D
),
8217 OPC_RECIP2_D
= FOP(28, FMT_D
),
8218 OPC_MINA_D
= FOP(29, FMT_D
),
8219 OPC_RECIP1_D
= FOP(29, FMT_D
),
8220 OPC_MAX_D
= FOP(30, FMT_D
),
8221 OPC_RSQRT1_D
= FOP(30, FMT_D
),
8222 OPC_MAXA_D
= FOP(31, FMT_D
),
8223 OPC_RSQRT2_D
= FOP(31, FMT_D
),
8224 OPC_CVT_S_D
= FOP(32, FMT_D
),
8225 OPC_CVT_W_D
= FOP(36, FMT_D
),
8226 OPC_CVT_L_D
= FOP(37, FMT_D
),
8227 OPC_CMP_F_D
= FOP (48, FMT_D
),
8228 OPC_CMP_UN_D
= FOP (49, FMT_D
),
8229 OPC_CMP_EQ_D
= FOP (50, FMT_D
),
8230 OPC_CMP_UEQ_D
= FOP (51, FMT_D
),
8231 OPC_CMP_OLT_D
= FOP (52, FMT_D
),
8232 OPC_CMP_ULT_D
= FOP (53, FMT_D
),
8233 OPC_CMP_OLE_D
= FOP (54, FMT_D
),
8234 OPC_CMP_ULE_D
= FOP (55, FMT_D
),
8235 OPC_CMP_SF_D
= FOP (56, FMT_D
),
8236 OPC_CMP_NGLE_D
= FOP (57, FMT_D
),
8237 OPC_CMP_SEQ_D
= FOP (58, FMT_D
),
8238 OPC_CMP_NGL_D
= FOP (59, FMT_D
),
8239 OPC_CMP_LT_D
= FOP (60, FMT_D
),
8240 OPC_CMP_NGE_D
= FOP (61, FMT_D
),
8241 OPC_CMP_LE_D
= FOP (62, FMT_D
),
8242 OPC_CMP_NGT_D
= FOP (63, FMT_D
),
8244 OPC_CVT_S_W
= FOP(32, FMT_W
),
8245 OPC_CVT_D_W
= FOP(33, FMT_W
),
8246 OPC_CVT_S_L
= FOP(32, FMT_L
),
8247 OPC_CVT_D_L
= FOP(33, FMT_L
),
8248 OPC_CVT_PS_PW
= FOP(38, FMT_W
),
8250 OPC_ADD_PS
= FOP(0, FMT_PS
),
8251 OPC_SUB_PS
= FOP(1, FMT_PS
),
8252 OPC_MUL_PS
= FOP(2, FMT_PS
),
8253 OPC_DIV_PS
= FOP(3, FMT_PS
),
8254 OPC_ABS_PS
= FOP(5, FMT_PS
),
8255 OPC_MOV_PS
= FOP(6, FMT_PS
),
8256 OPC_NEG_PS
= FOP(7, FMT_PS
),
8257 OPC_MOVCF_PS
= FOP(17, FMT_PS
),
8258 OPC_MOVZ_PS
= FOP(18, FMT_PS
),
8259 OPC_MOVN_PS
= FOP(19, FMT_PS
),
8260 OPC_ADDR_PS
= FOP(24, FMT_PS
),
8261 OPC_MULR_PS
= FOP(26, FMT_PS
),
8262 OPC_RECIP2_PS
= FOP(28, FMT_PS
),
8263 OPC_RECIP1_PS
= FOP(29, FMT_PS
),
8264 OPC_RSQRT1_PS
= FOP(30, FMT_PS
),
8265 OPC_RSQRT2_PS
= FOP(31, FMT_PS
),
8267 OPC_CVT_S_PU
= FOP(32, FMT_PS
),
8268 OPC_CVT_PW_PS
= FOP(36, FMT_PS
),
8269 OPC_CVT_S_PL
= FOP(40, FMT_PS
),
8270 OPC_PLL_PS
= FOP(44, FMT_PS
),
8271 OPC_PLU_PS
= FOP(45, FMT_PS
),
8272 OPC_PUL_PS
= FOP(46, FMT_PS
),
8273 OPC_PUU_PS
= FOP(47, FMT_PS
),
8274 OPC_CMP_F_PS
= FOP (48, FMT_PS
),
8275 OPC_CMP_UN_PS
= FOP (49, FMT_PS
),
8276 OPC_CMP_EQ_PS
= FOP (50, FMT_PS
),
8277 OPC_CMP_UEQ_PS
= FOP (51, FMT_PS
),
8278 OPC_CMP_OLT_PS
= FOP (52, FMT_PS
),
8279 OPC_CMP_ULT_PS
= FOP (53, FMT_PS
),
8280 OPC_CMP_OLE_PS
= FOP (54, FMT_PS
),
8281 OPC_CMP_ULE_PS
= FOP (55, FMT_PS
),
8282 OPC_CMP_SF_PS
= FOP (56, FMT_PS
),
8283 OPC_CMP_NGLE_PS
= FOP (57, FMT_PS
),
8284 OPC_CMP_SEQ_PS
= FOP (58, FMT_PS
),
8285 OPC_CMP_NGL_PS
= FOP (59, FMT_PS
),
8286 OPC_CMP_LT_PS
= FOP (60, FMT_PS
),
8287 OPC_CMP_NGE_PS
= FOP (61, FMT_PS
),
8288 OPC_CMP_LE_PS
= FOP (62, FMT_PS
),
8289 OPC_CMP_NGT_PS
= FOP (63, FMT_PS
),
8293 R6_OPC_CMP_AF_S
= FOP(0, FMT_W
),
8294 R6_OPC_CMP_UN_S
= FOP(1, FMT_W
),
8295 R6_OPC_CMP_EQ_S
= FOP(2, FMT_W
),
8296 R6_OPC_CMP_UEQ_S
= FOP(3, FMT_W
),
8297 R6_OPC_CMP_LT_S
= FOP(4, FMT_W
),
8298 R6_OPC_CMP_ULT_S
= FOP(5, FMT_W
),
8299 R6_OPC_CMP_LE_S
= FOP(6, FMT_W
),
8300 R6_OPC_CMP_ULE_S
= FOP(7, FMT_W
),
8301 R6_OPC_CMP_SAF_S
= FOP(8, FMT_W
),
8302 R6_OPC_CMP_SUN_S
= FOP(9, FMT_W
),
8303 R6_OPC_CMP_SEQ_S
= FOP(10, FMT_W
),
8304 R6_OPC_CMP_SEUQ_S
= FOP(11, FMT_W
),
8305 R6_OPC_CMP_SLT_S
= FOP(12, FMT_W
),
8306 R6_OPC_CMP_SULT_S
= FOP(13, FMT_W
),
8307 R6_OPC_CMP_SLE_S
= FOP(14, FMT_W
),
8308 R6_OPC_CMP_SULE_S
= FOP(15, FMT_W
),
8309 R6_OPC_CMP_OR_S
= FOP(17, FMT_W
),
8310 R6_OPC_CMP_UNE_S
= FOP(18, FMT_W
),
8311 R6_OPC_CMP_NE_S
= FOP(19, FMT_W
),
8312 R6_OPC_CMP_SOR_S
= FOP(25, FMT_W
),
8313 R6_OPC_CMP_SUNE_S
= FOP(26, FMT_W
),
8314 R6_OPC_CMP_SNE_S
= FOP(27, FMT_W
),
8316 R6_OPC_CMP_AF_D
= FOP(0, FMT_L
),
8317 R6_OPC_CMP_UN_D
= FOP(1, FMT_L
),
8318 R6_OPC_CMP_EQ_D
= FOP(2, FMT_L
),
8319 R6_OPC_CMP_UEQ_D
= FOP(3, FMT_L
),
8320 R6_OPC_CMP_LT_D
= FOP(4, FMT_L
),
8321 R6_OPC_CMP_ULT_D
= FOP(5, FMT_L
),
8322 R6_OPC_CMP_LE_D
= FOP(6, FMT_L
),
8323 R6_OPC_CMP_ULE_D
= FOP(7, FMT_L
),
8324 R6_OPC_CMP_SAF_D
= FOP(8, FMT_L
),
8325 R6_OPC_CMP_SUN_D
= FOP(9, FMT_L
),
8326 R6_OPC_CMP_SEQ_D
= FOP(10, FMT_L
),
8327 R6_OPC_CMP_SEUQ_D
= FOP(11, FMT_L
),
8328 R6_OPC_CMP_SLT_D
= FOP(12, FMT_L
),
8329 R6_OPC_CMP_SULT_D
= FOP(13, FMT_L
),
8330 R6_OPC_CMP_SLE_D
= FOP(14, FMT_L
),
8331 R6_OPC_CMP_SULE_D
= FOP(15, FMT_L
),
8332 R6_OPC_CMP_OR_D
= FOP(17, FMT_L
),
8333 R6_OPC_CMP_UNE_D
= FOP(18, FMT_L
),
8334 R6_OPC_CMP_NE_D
= FOP(19, FMT_L
),
8335 R6_OPC_CMP_SOR_D
= FOP(25, FMT_L
),
8336 R6_OPC_CMP_SUNE_D
= FOP(26, FMT_L
),
8337 R6_OPC_CMP_SNE_D
= FOP(27, FMT_L
),
8339 static void gen_cp1 (DisasContext
*ctx
, uint32_t opc
, int rt
, int fs
)
8341 const char *opn
= "cp1 move";
8342 TCGv t0
= tcg_temp_new();
8347 TCGv_i32 fp0
= tcg_temp_new_i32();
8349 gen_load_fpr32(fp0
, fs
);
8350 tcg_gen_ext_i32_tl(t0
, fp0
);
8351 tcg_temp_free_i32(fp0
);
8353 gen_store_gpr(t0
, rt
);
8357 gen_load_gpr(t0
, rt
);
8359 TCGv_i32 fp0
= tcg_temp_new_i32();
8361 tcg_gen_trunc_tl_i32(fp0
, t0
);
8362 gen_store_fpr32(fp0
, fs
);
8363 tcg_temp_free_i32(fp0
);
8368 gen_helper_1e0i(cfc1
, t0
, fs
);
8369 gen_store_gpr(t0
, rt
);
8373 gen_load_gpr(t0
, rt
);
8374 save_cpu_state(ctx
, 1);
8376 TCGv_i32 fs_tmp
= tcg_const_i32(fs
);
8378 gen_helper_0e2i(ctc1
, t0
, fs_tmp
, rt
);
8379 tcg_temp_free_i32(fs_tmp
);
8381 /* Stop translation as we may have changed hflags */
8382 ctx
->bstate
= BS_STOP
;
8385 #if defined(TARGET_MIPS64)
8387 gen_load_fpr64(ctx
, t0
, fs
);
8388 gen_store_gpr(t0
, rt
);
8392 gen_load_gpr(t0
, rt
);
8393 gen_store_fpr64(ctx
, t0
, fs
);
8399 TCGv_i32 fp0
= tcg_temp_new_i32();
8401 gen_load_fpr32h(ctx
, fp0
, fs
);
8402 tcg_gen_ext_i32_tl(t0
, fp0
);
8403 tcg_temp_free_i32(fp0
);
8405 gen_store_gpr(t0
, rt
);
8409 gen_load_gpr(t0
, rt
);
8411 TCGv_i32 fp0
= tcg_temp_new_i32();
8413 tcg_gen_trunc_tl_i32(fp0
, t0
);
8414 gen_store_fpr32h(ctx
, fp0
, fs
);
8415 tcg_temp_free_i32(fp0
);
8421 generate_exception (ctx
, EXCP_RI
);
8424 (void)opn
; /* avoid a compiler warning */
8425 MIPS_DEBUG("%s %s %s", opn
, regnames
[rt
], fregnames
[fs
]);
8431 static void gen_movci (DisasContext
*ctx
, int rd
, int rs
, int cc
, int tf
)
8447 l1
= gen_new_label();
8448 t0
= tcg_temp_new_i32();
8449 tcg_gen_andi_i32(t0
, fpu_fcr31
, 1 << get_fp_bit(cc
));
8450 tcg_gen_brcondi_i32(cond
, t0
, 0, l1
);
8451 tcg_temp_free_i32(t0
);
8453 tcg_gen_movi_tl(cpu_gpr
[rd
], 0);
8455 tcg_gen_mov_tl(cpu_gpr
[rd
], cpu_gpr
[rs
]);
8460 static inline void gen_movcf_s (int fs
, int fd
, int cc
, int tf
)
8463 TCGv_i32 t0
= tcg_temp_new_i32();
8464 int l1
= gen_new_label();
8471 tcg_gen_andi_i32(t0
, fpu_fcr31
, 1 << get_fp_bit(cc
));
8472 tcg_gen_brcondi_i32(cond
, t0
, 0, l1
);
8473 gen_load_fpr32(t0
, fs
);
8474 gen_store_fpr32(t0
, fd
);
8476 tcg_temp_free_i32(t0
);
8479 static inline void gen_movcf_d (DisasContext
*ctx
, int fs
, int fd
, int cc
, int tf
)
8482 TCGv_i32 t0
= tcg_temp_new_i32();
8484 int l1
= gen_new_label();
8491 tcg_gen_andi_i32(t0
, fpu_fcr31
, 1 << get_fp_bit(cc
));
8492 tcg_gen_brcondi_i32(cond
, t0
, 0, l1
);
8493 tcg_temp_free_i32(t0
);
8494 fp0
= tcg_temp_new_i64();
8495 gen_load_fpr64(ctx
, fp0
, fs
);
8496 gen_store_fpr64(ctx
, fp0
, fd
);
8497 tcg_temp_free_i64(fp0
);
8501 static inline void gen_movcf_ps(DisasContext
*ctx
, int fs
, int fd
,
8505 TCGv_i32 t0
= tcg_temp_new_i32();
8506 int l1
= gen_new_label();
8507 int l2
= gen_new_label();
8514 tcg_gen_andi_i32(t0
, fpu_fcr31
, 1 << get_fp_bit(cc
));
8515 tcg_gen_brcondi_i32(cond
, t0
, 0, l1
);
8516 gen_load_fpr32(t0
, fs
);
8517 gen_store_fpr32(t0
, fd
);
8520 tcg_gen_andi_i32(t0
, fpu_fcr31
, 1 << get_fp_bit(cc
+1));
8521 tcg_gen_brcondi_i32(cond
, t0
, 0, l2
);
8522 gen_load_fpr32h(ctx
, t0
, fs
);
8523 gen_store_fpr32h(ctx
, t0
, fd
);
8524 tcg_temp_free_i32(t0
);
8528 static void gen_sel_s(DisasContext
*ctx
, enum fopcode op1
, int fd
, int ft
,
8531 TCGv_i32 t1
= tcg_const_i32(0);
8532 TCGv_i32 fp0
= tcg_temp_new_i32();
8533 TCGv_i32 fp1
= tcg_temp_new_i32();
8534 TCGv_i32 fp2
= tcg_temp_new_i32();
8535 gen_load_fpr32(fp0
, fd
);
8536 gen_load_fpr32(fp1
, ft
);
8537 gen_load_fpr32(fp2
, fs
);
8541 tcg_gen_andi_i32(fp0
, fp0
, 1);
8542 tcg_gen_movcond_i32(TCG_COND_NE
, fp0
, fp0
, t1
, fp1
, fp2
);
8545 tcg_gen_andi_i32(fp1
, fp1
, 1);
8546 tcg_gen_movcond_i32(TCG_COND_EQ
, fp0
, fp1
, t1
, fp2
, t1
);
8549 tcg_gen_andi_i32(fp1
, fp1
, 1);
8550 tcg_gen_movcond_i32(TCG_COND_NE
, fp0
, fp1
, t1
, fp2
, t1
);
8553 MIPS_INVAL("gen_sel_s");
8554 generate_exception (ctx
, EXCP_RI
);
8558 gen_store_fpr32(fp0
, fd
);
8559 tcg_temp_free_i32(fp2
);
8560 tcg_temp_free_i32(fp1
);
8561 tcg_temp_free_i32(fp0
);
8562 tcg_temp_free_i32(t1
);
8565 static void gen_sel_d(DisasContext
*ctx
, enum fopcode op1
, int fd
, int ft
,
8568 TCGv_i64 t1
= tcg_const_i64(0);
8569 TCGv_i64 fp0
= tcg_temp_new_i64();
8570 TCGv_i64 fp1
= tcg_temp_new_i64();
8571 TCGv_i64 fp2
= tcg_temp_new_i64();
8572 gen_load_fpr64(ctx
, fp0
, fd
);
8573 gen_load_fpr64(ctx
, fp1
, ft
);
8574 gen_load_fpr64(ctx
, fp2
, fs
);
8578 tcg_gen_andi_i64(fp0
, fp0
, 1);
8579 tcg_gen_movcond_i64(TCG_COND_NE
, fp0
, fp0
, t1
, fp1
, fp2
);
8582 tcg_gen_andi_i64(fp1
, fp1
, 1);
8583 tcg_gen_movcond_i64(TCG_COND_EQ
, fp0
, fp1
, t1
, fp2
, t1
);
8586 tcg_gen_andi_i64(fp1
, fp1
, 1);
8587 tcg_gen_movcond_i64(TCG_COND_NE
, fp0
, fp1
, t1
, fp2
, t1
);
8590 MIPS_INVAL("gen_sel_d");
8591 generate_exception (ctx
, EXCP_RI
);
8595 gen_store_fpr64(ctx
, fp0
, fd
);
8596 tcg_temp_free_i64(fp2
);
8597 tcg_temp_free_i64(fp1
);
8598 tcg_temp_free_i64(fp0
);
8599 tcg_temp_free_i64(t1
);
8602 static void gen_farith (DisasContext
*ctx
, enum fopcode op1
,
8603 int ft
, int fs
, int fd
, int cc
)
8605 const char *opn
= "farith";
8606 const char *condnames
[] = {
8624 const char *condnames_abs
[] = {
8642 enum { BINOP
, CMPOP
, OTHEROP
} optype
= OTHEROP
;
8643 uint32_t func
= ctx
->opcode
& 0x3f;
8648 TCGv_i32 fp0
= tcg_temp_new_i32();
8649 TCGv_i32 fp1
= tcg_temp_new_i32();
8651 gen_load_fpr32(fp0
, fs
);
8652 gen_load_fpr32(fp1
, ft
);
8653 gen_helper_float_add_s(fp0
, cpu_env
, fp0
, fp1
);
8654 tcg_temp_free_i32(fp1
);
8655 gen_store_fpr32(fp0
, fd
);
8656 tcg_temp_free_i32(fp0
);
8663 TCGv_i32 fp0
= tcg_temp_new_i32();
8664 TCGv_i32 fp1
= tcg_temp_new_i32();
8666 gen_load_fpr32(fp0
, fs
);
8667 gen_load_fpr32(fp1
, ft
);
8668 gen_helper_float_sub_s(fp0
, cpu_env
, fp0
, fp1
);
8669 tcg_temp_free_i32(fp1
);
8670 gen_store_fpr32(fp0
, fd
);
8671 tcg_temp_free_i32(fp0
);
8678 TCGv_i32 fp0
= tcg_temp_new_i32();
8679 TCGv_i32 fp1
= tcg_temp_new_i32();
8681 gen_load_fpr32(fp0
, fs
);
8682 gen_load_fpr32(fp1
, ft
);
8683 gen_helper_float_mul_s(fp0
, cpu_env
, fp0
, fp1
);
8684 tcg_temp_free_i32(fp1
);
8685 gen_store_fpr32(fp0
, fd
);
8686 tcg_temp_free_i32(fp0
);
8693 TCGv_i32 fp0
= tcg_temp_new_i32();
8694 TCGv_i32 fp1
= tcg_temp_new_i32();
8696 gen_load_fpr32(fp0
, fs
);
8697 gen_load_fpr32(fp1
, ft
);
8698 gen_helper_float_div_s(fp0
, cpu_env
, fp0
, fp1
);
8699 tcg_temp_free_i32(fp1
);
8700 gen_store_fpr32(fp0
, fd
);
8701 tcg_temp_free_i32(fp0
);
8708 TCGv_i32 fp0
= tcg_temp_new_i32();
8710 gen_load_fpr32(fp0
, fs
);
8711 gen_helper_float_sqrt_s(fp0
, cpu_env
, fp0
);
8712 gen_store_fpr32(fp0
, fd
);
8713 tcg_temp_free_i32(fp0
);
8719 TCGv_i32 fp0
= tcg_temp_new_i32();
8721 gen_load_fpr32(fp0
, fs
);
8722 gen_helper_float_abs_s(fp0
, fp0
);
8723 gen_store_fpr32(fp0
, fd
);
8724 tcg_temp_free_i32(fp0
);
8730 TCGv_i32 fp0
= tcg_temp_new_i32();
8732 gen_load_fpr32(fp0
, fs
);
8733 gen_store_fpr32(fp0
, fd
);
8734 tcg_temp_free_i32(fp0
);
8740 TCGv_i32 fp0
= tcg_temp_new_i32();
8742 gen_load_fpr32(fp0
, fs
);
8743 gen_helper_float_chs_s(fp0
, fp0
);
8744 gen_store_fpr32(fp0
, fd
);
8745 tcg_temp_free_i32(fp0
);
8750 check_cp1_64bitmode(ctx
);
8752 TCGv_i32 fp32
= tcg_temp_new_i32();
8753 TCGv_i64 fp64
= tcg_temp_new_i64();
8755 gen_load_fpr32(fp32
, fs
);
8756 gen_helper_float_roundl_s(fp64
, cpu_env
, fp32
);
8757 tcg_temp_free_i32(fp32
);
8758 gen_store_fpr64(ctx
, fp64
, fd
);
8759 tcg_temp_free_i64(fp64
);
8764 check_cp1_64bitmode(ctx
);
8766 TCGv_i32 fp32
= tcg_temp_new_i32();
8767 TCGv_i64 fp64
= tcg_temp_new_i64();
8769 gen_load_fpr32(fp32
, fs
);
8770 gen_helper_float_truncl_s(fp64
, cpu_env
, fp32
);
8771 tcg_temp_free_i32(fp32
);
8772 gen_store_fpr64(ctx
, fp64
, fd
);
8773 tcg_temp_free_i64(fp64
);
8778 check_cp1_64bitmode(ctx
);
8780 TCGv_i32 fp32
= tcg_temp_new_i32();
8781 TCGv_i64 fp64
= tcg_temp_new_i64();
8783 gen_load_fpr32(fp32
, fs
);
8784 gen_helper_float_ceill_s(fp64
, cpu_env
, fp32
);
8785 tcg_temp_free_i32(fp32
);
8786 gen_store_fpr64(ctx
, fp64
, fd
);
8787 tcg_temp_free_i64(fp64
);
8792 check_cp1_64bitmode(ctx
);
8794 TCGv_i32 fp32
= tcg_temp_new_i32();
8795 TCGv_i64 fp64
= tcg_temp_new_i64();
8797 gen_load_fpr32(fp32
, fs
);
8798 gen_helper_float_floorl_s(fp64
, cpu_env
, fp32
);
8799 tcg_temp_free_i32(fp32
);
8800 gen_store_fpr64(ctx
, fp64
, fd
);
8801 tcg_temp_free_i64(fp64
);
8807 TCGv_i32 fp0
= tcg_temp_new_i32();
8809 gen_load_fpr32(fp0
, fs
);
8810 gen_helper_float_roundw_s(fp0
, cpu_env
, fp0
);
8811 gen_store_fpr32(fp0
, fd
);
8812 tcg_temp_free_i32(fp0
);
8818 TCGv_i32 fp0
= tcg_temp_new_i32();
8820 gen_load_fpr32(fp0
, fs
);
8821 gen_helper_float_truncw_s(fp0
, cpu_env
, fp0
);
8822 gen_store_fpr32(fp0
, fd
);
8823 tcg_temp_free_i32(fp0
);
8829 TCGv_i32 fp0
= tcg_temp_new_i32();
8831 gen_load_fpr32(fp0
, fs
);
8832 gen_helper_float_ceilw_s(fp0
, cpu_env
, fp0
);
8833 gen_store_fpr32(fp0
, fd
);
8834 tcg_temp_free_i32(fp0
);
8840 TCGv_i32 fp0
= tcg_temp_new_i32();
8842 gen_load_fpr32(fp0
, fs
);
8843 gen_helper_float_floorw_s(fp0
, cpu_env
, fp0
);
8844 gen_store_fpr32(fp0
, fd
);
8845 tcg_temp_free_i32(fp0
);
8850 check_insn(ctx
, ISA_MIPS32R6
);
8851 gen_sel_s(ctx
, op1
, fd
, ft
, fs
);
8855 check_insn(ctx
, ISA_MIPS32R6
);
8856 gen_sel_s(ctx
, op1
, fd
, ft
, fs
);
8860 check_insn(ctx
, ISA_MIPS32R6
);
8861 gen_sel_s(ctx
, op1
, fd
, ft
, fs
);
8865 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
8866 gen_movcf_s(fs
, fd
, (ft
>> 2) & 0x7, ft
& 0x1);
8870 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
8872 int l1
= gen_new_label();
8876 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[ft
], 0, l1
);
8878 fp0
= tcg_temp_new_i32();
8879 gen_load_fpr32(fp0
, fs
);
8880 gen_store_fpr32(fp0
, fd
);
8881 tcg_temp_free_i32(fp0
);
8887 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
8889 int l1
= gen_new_label();
8893 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[ft
], 0, l1
);
8894 fp0
= tcg_temp_new_i32();
8895 gen_load_fpr32(fp0
, fs
);
8896 gen_store_fpr32(fp0
, fd
);
8897 tcg_temp_free_i32(fp0
);
8906 TCGv_i32 fp0
= tcg_temp_new_i32();
8908 gen_load_fpr32(fp0
, fs
);
8909 gen_helper_float_recip_s(fp0
, cpu_env
, fp0
);
8910 gen_store_fpr32(fp0
, fd
);
8911 tcg_temp_free_i32(fp0
);
8918 TCGv_i32 fp0
= tcg_temp_new_i32();
8920 gen_load_fpr32(fp0
, fs
);
8921 gen_helper_float_rsqrt_s(fp0
, cpu_env
, fp0
);
8922 gen_store_fpr32(fp0
, fd
);
8923 tcg_temp_free_i32(fp0
);
8928 check_insn(ctx
, ISA_MIPS32R6
);
8930 TCGv_i32 fp0
= tcg_temp_new_i32();
8931 TCGv_i32 fp1
= tcg_temp_new_i32();
8932 TCGv_i32 fp2
= tcg_temp_new_i32();
8933 gen_load_fpr32(fp0
, fs
);
8934 gen_load_fpr32(fp1
, ft
);
8935 gen_load_fpr32(fp2
, fd
);
8936 gen_helper_float_maddf_s(fp2
, cpu_env
, fp0
, fp1
, fp2
);
8937 gen_store_fpr32(fp2
, fd
);
8938 tcg_temp_free_i32(fp2
);
8939 tcg_temp_free_i32(fp1
);
8940 tcg_temp_free_i32(fp0
);
8945 check_insn(ctx
, ISA_MIPS32R6
);
8947 TCGv_i32 fp0
= tcg_temp_new_i32();
8948 TCGv_i32 fp1
= tcg_temp_new_i32();
8949 TCGv_i32 fp2
= tcg_temp_new_i32();
8950 gen_load_fpr32(fp0
, fs
);
8951 gen_load_fpr32(fp1
, ft
);
8952 gen_load_fpr32(fp2
, fd
);
8953 gen_helper_float_msubf_s(fp2
, cpu_env
, fp0
, fp1
, fp2
);
8954 gen_store_fpr32(fp2
, fd
);
8955 tcg_temp_free_i32(fp2
);
8956 tcg_temp_free_i32(fp1
);
8957 tcg_temp_free_i32(fp0
);
8962 check_insn(ctx
, ISA_MIPS32R6
);
8964 TCGv_i32 fp0
= tcg_temp_new_i32();
8965 gen_load_fpr32(fp0
, fs
);
8966 gen_helper_float_rint_s(fp0
, cpu_env
, fp0
);
8967 gen_store_fpr32(fp0
, fd
);
8968 tcg_temp_free_i32(fp0
);
8973 check_insn(ctx
, ISA_MIPS32R6
);
8975 TCGv_i32 fp0
= tcg_temp_new_i32();
8976 gen_load_fpr32(fp0
, fs
);
8977 gen_helper_float_class_s(fp0
, fp0
);
8978 gen_store_fpr32(fp0
, fd
);
8979 tcg_temp_free_i32(fp0
);
8983 case OPC_MIN_S
: /* OPC_RECIP2_S */
8984 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
8986 TCGv_i32 fp0
= tcg_temp_new_i32();
8987 TCGv_i32 fp1
= tcg_temp_new_i32();
8988 TCGv_i32 fp2
= tcg_temp_new_i32();
8989 gen_load_fpr32(fp0
, fs
);
8990 gen_load_fpr32(fp1
, ft
);
8991 gen_helper_float_min_s(fp2
, cpu_env
, fp0
, fp1
);
8992 gen_store_fpr32(fp2
, fd
);
8993 tcg_temp_free_i32(fp2
);
8994 tcg_temp_free_i32(fp1
);
8995 tcg_temp_free_i32(fp0
);
8999 check_cp1_64bitmode(ctx
);
9001 TCGv_i32 fp0
= tcg_temp_new_i32();
9002 TCGv_i32 fp1
= tcg_temp_new_i32();
9004 gen_load_fpr32(fp0
, fs
);
9005 gen_load_fpr32(fp1
, ft
);
9006 gen_helper_float_recip2_s(fp0
, cpu_env
, fp0
, fp1
);
9007 tcg_temp_free_i32(fp1
);
9008 gen_store_fpr32(fp0
, fd
);
9009 tcg_temp_free_i32(fp0
);
9014 case OPC_MINA_S
: /* OPC_RECIP1_S */
9015 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
9017 TCGv_i32 fp0
= tcg_temp_new_i32();
9018 TCGv_i32 fp1
= tcg_temp_new_i32();
9019 TCGv_i32 fp2
= tcg_temp_new_i32();
9020 gen_load_fpr32(fp0
, fs
);
9021 gen_load_fpr32(fp1
, ft
);
9022 gen_helper_float_mina_s(fp2
, cpu_env
, fp0
, fp1
);
9023 gen_store_fpr32(fp2
, fd
);
9024 tcg_temp_free_i32(fp2
);
9025 tcg_temp_free_i32(fp1
);
9026 tcg_temp_free_i32(fp0
);
9030 check_cp1_64bitmode(ctx
);
9032 TCGv_i32 fp0
= tcg_temp_new_i32();
9034 gen_load_fpr32(fp0
, fs
);
9035 gen_helper_float_recip1_s(fp0
, cpu_env
, fp0
);
9036 gen_store_fpr32(fp0
, fd
);
9037 tcg_temp_free_i32(fp0
);
9042 case OPC_MAX_S
: /* OPC_RSQRT1_S */
9043 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
9045 TCGv_i32 fp0
= tcg_temp_new_i32();
9046 TCGv_i32 fp1
= tcg_temp_new_i32();
9047 gen_load_fpr32(fp0
, fs
);
9048 gen_load_fpr32(fp1
, ft
);
9049 gen_helper_float_max_s(fp1
, cpu_env
, fp0
, fp1
);
9050 gen_store_fpr32(fp1
, fd
);
9051 tcg_temp_free_i32(fp1
);
9052 tcg_temp_free_i32(fp0
);
9056 check_cp1_64bitmode(ctx
);
9058 TCGv_i32 fp0
= tcg_temp_new_i32();
9060 gen_load_fpr32(fp0
, fs
);
9061 gen_helper_float_rsqrt1_s(fp0
, cpu_env
, fp0
);
9062 gen_store_fpr32(fp0
, fd
);
9063 tcg_temp_free_i32(fp0
);
9068 case OPC_MAXA_S
: /* OPC_RSQRT2_S */
9069 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
9071 TCGv_i32 fp0
= tcg_temp_new_i32();
9072 TCGv_i32 fp1
= tcg_temp_new_i32();
9073 gen_load_fpr32(fp0
, fs
);
9074 gen_load_fpr32(fp1
, ft
);
9075 gen_helper_float_maxa_s(fp1
, cpu_env
, fp0
, fp1
);
9076 gen_store_fpr32(fp1
, fd
);
9077 tcg_temp_free_i32(fp1
);
9078 tcg_temp_free_i32(fp0
);
9082 check_cp1_64bitmode(ctx
);
9084 TCGv_i32 fp0
= tcg_temp_new_i32();
9085 TCGv_i32 fp1
= tcg_temp_new_i32();
9087 gen_load_fpr32(fp0
, fs
);
9088 gen_load_fpr32(fp1
, ft
);
9089 gen_helper_float_rsqrt2_s(fp0
, cpu_env
, fp0
, fp1
);
9090 tcg_temp_free_i32(fp1
);
9091 gen_store_fpr32(fp0
, fd
);
9092 tcg_temp_free_i32(fp0
);
9098 check_cp1_registers(ctx
, fd
);
9100 TCGv_i32 fp32
= tcg_temp_new_i32();
9101 TCGv_i64 fp64
= tcg_temp_new_i64();
9103 gen_load_fpr32(fp32
, fs
);
9104 gen_helper_float_cvtd_s(fp64
, cpu_env
, fp32
);
9105 tcg_temp_free_i32(fp32
);
9106 gen_store_fpr64(ctx
, fp64
, fd
);
9107 tcg_temp_free_i64(fp64
);
9113 TCGv_i32 fp0
= tcg_temp_new_i32();
9115 gen_load_fpr32(fp0
, fs
);
9116 gen_helper_float_cvtw_s(fp0
, cpu_env
, fp0
);
9117 gen_store_fpr32(fp0
, fd
);
9118 tcg_temp_free_i32(fp0
);
9123 check_cp1_64bitmode(ctx
);
9125 TCGv_i32 fp32
= tcg_temp_new_i32();
9126 TCGv_i64 fp64
= tcg_temp_new_i64();
9128 gen_load_fpr32(fp32
, fs
);
9129 gen_helper_float_cvtl_s(fp64
, cpu_env
, fp32
);
9130 tcg_temp_free_i32(fp32
);
9131 gen_store_fpr64(ctx
, fp64
, fd
);
9132 tcg_temp_free_i64(fp64
);
9137 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
9138 check_cp1_64bitmode(ctx
);
9140 TCGv_i64 fp64
= tcg_temp_new_i64();
9141 TCGv_i32 fp32_0
= tcg_temp_new_i32();
9142 TCGv_i32 fp32_1
= tcg_temp_new_i32();
9144 gen_load_fpr32(fp32_0
, fs
);
9145 gen_load_fpr32(fp32_1
, ft
);
9146 tcg_gen_concat_i32_i64(fp64
, fp32_1
, fp32_0
);
9147 tcg_temp_free_i32(fp32_1
);
9148 tcg_temp_free_i32(fp32_0
);
9149 gen_store_fpr64(ctx
, fp64
, fd
);
9150 tcg_temp_free_i64(fp64
);
9163 case OPC_CMP_NGLE_S
:
9170 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
9171 if (ctx
->opcode
& (1 << 6)) {
9172 gen_cmpabs_s(ctx
, func
-48, ft
, fs
, cc
);
9173 opn
= condnames_abs
[func
-48];
9175 gen_cmp_s(ctx
, func
-48, ft
, fs
, cc
);
9176 opn
= condnames
[func
-48];
9180 check_cp1_registers(ctx
, fs
| ft
| fd
);
9182 TCGv_i64 fp0
= tcg_temp_new_i64();
9183 TCGv_i64 fp1
= tcg_temp_new_i64();
9185 gen_load_fpr64(ctx
, fp0
, fs
);
9186 gen_load_fpr64(ctx
, fp1
, ft
);
9187 gen_helper_float_add_d(fp0
, cpu_env
, fp0
, fp1
);
9188 tcg_temp_free_i64(fp1
);
9189 gen_store_fpr64(ctx
, fp0
, fd
);
9190 tcg_temp_free_i64(fp0
);
9196 check_cp1_registers(ctx
, fs
| ft
| fd
);
9198 TCGv_i64 fp0
= tcg_temp_new_i64();
9199 TCGv_i64 fp1
= tcg_temp_new_i64();
9201 gen_load_fpr64(ctx
, fp0
, fs
);
9202 gen_load_fpr64(ctx
, fp1
, ft
);
9203 gen_helper_float_sub_d(fp0
, cpu_env
, fp0
, fp1
);
9204 tcg_temp_free_i64(fp1
);
9205 gen_store_fpr64(ctx
, fp0
, fd
);
9206 tcg_temp_free_i64(fp0
);
9212 check_cp1_registers(ctx
, fs
| ft
| fd
);
9214 TCGv_i64 fp0
= tcg_temp_new_i64();
9215 TCGv_i64 fp1
= tcg_temp_new_i64();
9217 gen_load_fpr64(ctx
, fp0
, fs
);
9218 gen_load_fpr64(ctx
, fp1
, ft
);
9219 gen_helper_float_mul_d(fp0
, cpu_env
, fp0
, fp1
);
9220 tcg_temp_free_i64(fp1
);
9221 gen_store_fpr64(ctx
, fp0
, fd
);
9222 tcg_temp_free_i64(fp0
);
9228 check_cp1_registers(ctx
, fs
| ft
| fd
);
9230 TCGv_i64 fp0
= tcg_temp_new_i64();
9231 TCGv_i64 fp1
= tcg_temp_new_i64();
9233 gen_load_fpr64(ctx
, fp0
, fs
);
9234 gen_load_fpr64(ctx
, fp1
, ft
);
9235 gen_helper_float_div_d(fp0
, cpu_env
, fp0
, fp1
);
9236 tcg_temp_free_i64(fp1
);
9237 gen_store_fpr64(ctx
, fp0
, fd
);
9238 tcg_temp_free_i64(fp0
);
9244 check_cp1_registers(ctx
, fs
| fd
);
9246 TCGv_i64 fp0
= tcg_temp_new_i64();
9248 gen_load_fpr64(ctx
, fp0
, fs
);
9249 gen_helper_float_sqrt_d(fp0
, cpu_env
, fp0
);
9250 gen_store_fpr64(ctx
, fp0
, fd
);
9251 tcg_temp_free_i64(fp0
);
9256 check_cp1_registers(ctx
, fs
| fd
);
9258 TCGv_i64 fp0
= tcg_temp_new_i64();
9260 gen_load_fpr64(ctx
, fp0
, fs
);
9261 gen_helper_float_abs_d(fp0
, fp0
);
9262 gen_store_fpr64(ctx
, fp0
, fd
);
9263 tcg_temp_free_i64(fp0
);
9268 check_cp1_registers(ctx
, fs
| fd
);
9270 TCGv_i64 fp0
= tcg_temp_new_i64();
9272 gen_load_fpr64(ctx
, fp0
, fs
);
9273 gen_store_fpr64(ctx
, fp0
, fd
);
9274 tcg_temp_free_i64(fp0
);
9279 check_cp1_registers(ctx
, fs
| fd
);
9281 TCGv_i64 fp0
= tcg_temp_new_i64();
9283 gen_load_fpr64(ctx
, fp0
, fs
);
9284 gen_helper_float_chs_d(fp0
, fp0
);
9285 gen_store_fpr64(ctx
, fp0
, fd
);
9286 tcg_temp_free_i64(fp0
);
9291 check_cp1_64bitmode(ctx
);
9293 TCGv_i64 fp0
= tcg_temp_new_i64();
9295 gen_load_fpr64(ctx
, fp0
, fs
);
9296 gen_helper_float_roundl_d(fp0
, cpu_env
, fp0
);
9297 gen_store_fpr64(ctx
, fp0
, fd
);
9298 tcg_temp_free_i64(fp0
);
9303 check_cp1_64bitmode(ctx
);
9305 TCGv_i64 fp0
= tcg_temp_new_i64();
9307 gen_load_fpr64(ctx
, fp0
, fs
);
9308 gen_helper_float_truncl_d(fp0
, cpu_env
, fp0
);
9309 gen_store_fpr64(ctx
, fp0
, fd
);
9310 tcg_temp_free_i64(fp0
);
9315 check_cp1_64bitmode(ctx
);
9317 TCGv_i64 fp0
= tcg_temp_new_i64();
9319 gen_load_fpr64(ctx
, fp0
, fs
);
9320 gen_helper_float_ceill_d(fp0
, cpu_env
, fp0
);
9321 gen_store_fpr64(ctx
, fp0
, fd
);
9322 tcg_temp_free_i64(fp0
);
9327 check_cp1_64bitmode(ctx
);
9329 TCGv_i64 fp0
= tcg_temp_new_i64();
9331 gen_load_fpr64(ctx
, fp0
, fs
);
9332 gen_helper_float_floorl_d(fp0
, cpu_env
, fp0
);
9333 gen_store_fpr64(ctx
, fp0
, fd
);
9334 tcg_temp_free_i64(fp0
);
9339 check_cp1_registers(ctx
, fs
);
9341 TCGv_i32 fp32
= tcg_temp_new_i32();
9342 TCGv_i64 fp64
= tcg_temp_new_i64();
9344 gen_load_fpr64(ctx
, fp64
, fs
);
9345 gen_helper_float_roundw_d(fp32
, cpu_env
, fp64
);
9346 tcg_temp_free_i64(fp64
);
9347 gen_store_fpr32(fp32
, fd
);
9348 tcg_temp_free_i32(fp32
);
9353 check_cp1_registers(ctx
, fs
);
9355 TCGv_i32 fp32
= tcg_temp_new_i32();
9356 TCGv_i64 fp64
= tcg_temp_new_i64();
9358 gen_load_fpr64(ctx
, fp64
, fs
);
9359 gen_helper_float_truncw_d(fp32
, cpu_env
, fp64
);
9360 tcg_temp_free_i64(fp64
);
9361 gen_store_fpr32(fp32
, fd
);
9362 tcg_temp_free_i32(fp32
);
9367 check_cp1_registers(ctx
, fs
);
9369 TCGv_i32 fp32
= tcg_temp_new_i32();
9370 TCGv_i64 fp64
= tcg_temp_new_i64();
9372 gen_load_fpr64(ctx
, fp64
, fs
);
9373 gen_helper_float_ceilw_d(fp32
, cpu_env
, fp64
);
9374 tcg_temp_free_i64(fp64
);
9375 gen_store_fpr32(fp32
, fd
);
9376 tcg_temp_free_i32(fp32
);
9381 check_cp1_registers(ctx
, fs
);
9383 TCGv_i32 fp32
= tcg_temp_new_i32();
9384 TCGv_i64 fp64
= tcg_temp_new_i64();
9386 gen_load_fpr64(ctx
, fp64
, fs
);
9387 gen_helper_float_floorw_d(fp32
, cpu_env
, fp64
);
9388 tcg_temp_free_i64(fp64
);
9389 gen_store_fpr32(fp32
, fd
);
9390 tcg_temp_free_i32(fp32
);
9395 check_insn(ctx
, ISA_MIPS32R6
);
9396 gen_sel_d(ctx
, op1
, fd
, ft
, fs
);
9400 check_insn(ctx
, ISA_MIPS32R6
);
9401 gen_sel_d(ctx
, op1
, fd
, ft
, fs
);
9405 check_insn(ctx
, ISA_MIPS32R6
);
9406 gen_sel_d(ctx
, op1
, fd
, ft
, fs
);
9410 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
9411 gen_movcf_d(ctx
, fs
, fd
, (ft
>> 2) & 0x7, ft
& 0x1);
9415 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
9417 int l1
= gen_new_label();
9421 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[ft
], 0, l1
);
9423 fp0
= tcg_temp_new_i64();
9424 gen_load_fpr64(ctx
, fp0
, fs
);
9425 gen_store_fpr64(ctx
, fp0
, fd
);
9426 tcg_temp_free_i64(fp0
);
9432 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
9434 int l1
= gen_new_label();
9438 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[ft
], 0, l1
);
9439 fp0
= tcg_temp_new_i64();
9440 gen_load_fpr64(ctx
, fp0
, fs
);
9441 gen_store_fpr64(ctx
, fp0
, fd
);
9442 tcg_temp_free_i64(fp0
);
9449 check_cp1_64bitmode(ctx
);
9451 TCGv_i64 fp0
= tcg_temp_new_i64();
9453 gen_load_fpr64(ctx
, fp0
, fs
);
9454 gen_helper_float_recip_d(fp0
, cpu_env
, fp0
);
9455 gen_store_fpr64(ctx
, fp0
, fd
);
9456 tcg_temp_free_i64(fp0
);
9461 check_cp1_64bitmode(ctx
);
9463 TCGv_i64 fp0
= tcg_temp_new_i64();
9465 gen_load_fpr64(ctx
, fp0
, fs
);
9466 gen_helper_float_rsqrt_d(fp0
, cpu_env
, fp0
);
9467 gen_store_fpr64(ctx
, fp0
, fd
);
9468 tcg_temp_free_i64(fp0
);
9473 check_insn(ctx
, ISA_MIPS32R6
);
9475 TCGv_i64 fp0
= tcg_temp_new_i64();
9476 TCGv_i64 fp1
= tcg_temp_new_i64();
9477 TCGv_i64 fp2
= tcg_temp_new_i64();
9478 gen_load_fpr64(ctx
, fp0
, fs
);
9479 gen_load_fpr64(ctx
, fp1
, ft
);
9480 gen_load_fpr64(ctx
, fp2
, fd
);
9481 gen_helper_float_maddf_d(fp2
, cpu_env
, fp0
, fp1
, fp2
);
9482 gen_store_fpr64(ctx
, fp2
, fd
);
9483 tcg_temp_free_i64(fp2
);
9484 tcg_temp_free_i64(fp1
);
9485 tcg_temp_free_i64(fp0
);
9490 check_insn(ctx
, ISA_MIPS32R6
);
9492 TCGv_i64 fp0
= tcg_temp_new_i64();
9493 TCGv_i64 fp1
= tcg_temp_new_i64();
9494 TCGv_i64 fp2
= tcg_temp_new_i64();
9495 gen_load_fpr64(ctx
, fp0
, fs
);
9496 gen_load_fpr64(ctx
, fp1
, ft
);
9497 gen_load_fpr64(ctx
, fp2
, fd
);
9498 gen_helper_float_msubf_d(fp2
, cpu_env
, fp0
, fp1
, fp2
);
9499 gen_store_fpr64(ctx
, fp2
, fd
);
9500 tcg_temp_free_i64(fp2
);
9501 tcg_temp_free_i64(fp1
);
9502 tcg_temp_free_i64(fp0
);
9507 check_insn(ctx
, ISA_MIPS32R6
);
9509 TCGv_i64 fp0
= tcg_temp_new_i64();
9510 gen_load_fpr64(ctx
, fp0
, fs
);
9511 gen_helper_float_rint_d(fp0
, cpu_env
, fp0
);
9512 gen_store_fpr64(ctx
, fp0
, fd
);
9513 tcg_temp_free_i64(fp0
);
9518 check_insn(ctx
, ISA_MIPS32R6
);
9520 TCGv_i64 fp0
= tcg_temp_new_i64();
9521 gen_load_fpr64(ctx
, fp0
, fs
);
9522 gen_helper_float_class_d(fp0
, fp0
);
9523 gen_store_fpr64(ctx
, fp0
, fd
);
9524 tcg_temp_free_i64(fp0
);
9528 case OPC_MIN_D
: /* OPC_RECIP2_D */
9529 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
9531 TCGv_i64 fp0
= tcg_temp_new_i64();
9532 TCGv_i64 fp1
= tcg_temp_new_i64();
9533 gen_load_fpr64(ctx
, fp0
, fs
);
9534 gen_load_fpr64(ctx
, fp1
, ft
);
9535 gen_helper_float_min_d(fp1
, cpu_env
, fp0
, fp1
);
9536 gen_store_fpr64(ctx
, fp1
, fd
);
9537 tcg_temp_free_i64(fp1
);
9538 tcg_temp_free_i64(fp0
);
9542 check_cp1_64bitmode(ctx
);
9544 TCGv_i64 fp0
= tcg_temp_new_i64();
9545 TCGv_i64 fp1
= tcg_temp_new_i64();
9547 gen_load_fpr64(ctx
, fp0
, fs
);
9548 gen_load_fpr64(ctx
, fp1
, ft
);
9549 gen_helper_float_recip2_d(fp0
, cpu_env
, fp0
, fp1
);
9550 tcg_temp_free_i64(fp1
);
9551 gen_store_fpr64(ctx
, fp0
, fd
);
9552 tcg_temp_free_i64(fp0
);
9557 case OPC_MINA_D
: /* OPC_RECIP1_D */
9558 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
9560 TCGv_i64 fp0
= tcg_temp_new_i64();
9561 TCGv_i64 fp1
= tcg_temp_new_i64();
9562 gen_load_fpr64(ctx
, fp0
, fs
);
9563 gen_load_fpr64(ctx
, fp1
, ft
);
9564 gen_helper_float_mina_d(fp1
, cpu_env
, fp0
, fp1
);
9565 gen_store_fpr64(ctx
, fp1
, fd
);
9566 tcg_temp_free_i64(fp1
);
9567 tcg_temp_free_i64(fp0
);
9571 check_cp1_64bitmode(ctx
);
9573 TCGv_i64 fp0
= tcg_temp_new_i64();
9575 gen_load_fpr64(ctx
, fp0
, fs
);
9576 gen_helper_float_recip1_d(fp0
, cpu_env
, fp0
);
9577 gen_store_fpr64(ctx
, fp0
, fd
);
9578 tcg_temp_free_i64(fp0
);
9583 case OPC_MAX_D
: /* OPC_RSQRT1_D */
9584 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
9586 TCGv_i64 fp0
= tcg_temp_new_i64();
9587 TCGv_i64 fp1
= tcg_temp_new_i64();
9588 gen_load_fpr64(ctx
, fp0
, fs
);
9589 gen_load_fpr64(ctx
, fp1
, ft
);
9590 gen_helper_float_max_d(fp1
, cpu_env
, fp0
, fp1
);
9591 gen_store_fpr64(ctx
, fp1
, fd
);
9592 tcg_temp_free_i64(fp1
);
9593 tcg_temp_free_i64(fp0
);
9597 check_cp1_64bitmode(ctx
);
9599 TCGv_i64 fp0
= tcg_temp_new_i64();
9601 gen_load_fpr64(ctx
, fp0
, fs
);
9602 gen_helper_float_rsqrt1_d(fp0
, cpu_env
, fp0
);
9603 gen_store_fpr64(ctx
, fp0
, fd
);
9604 tcg_temp_free_i64(fp0
);
9609 case OPC_MAXA_D
: /* OPC_RSQRT2_D */
9610 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
9612 TCGv_i64 fp0
= tcg_temp_new_i64();
9613 TCGv_i64 fp1
= tcg_temp_new_i64();
9614 gen_load_fpr64(ctx
, fp0
, fs
);
9615 gen_load_fpr64(ctx
, fp1
, ft
);
9616 gen_helper_float_maxa_d(fp1
, cpu_env
, fp0
, fp1
);
9617 gen_store_fpr64(ctx
, fp1
, fd
);
9618 tcg_temp_free_i64(fp1
);
9619 tcg_temp_free_i64(fp0
);
9623 check_cp1_64bitmode(ctx
);
9625 TCGv_i64 fp0
= tcg_temp_new_i64();
9626 TCGv_i64 fp1
= tcg_temp_new_i64();
9628 gen_load_fpr64(ctx
, fp0
, fs
);
9629 gen_load_fpr64(ctx
, fp1
, ft
);
9630 gen_helper_float_rsqrt2_d(fp0
, cpu_env
, fp0
, fp1
);
9631 tcg_temp_free_i64(fp1
);
9632 gen_store_fpr64(ctx
, fp0
, fd
);
9633 tcg_temp_free_i64(fp0
);
9647 case OPC_CMP_NGLE_D
:
9654 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
9655 if (ctx
->opcode
& (1 << 6)) {
9656 gen_cmpabs_d(ctx
, func
-48, ft
, fs
, cc
);
9657 opn
= condnames_abs
[func
-48];
9659 gen_cmp_d(ctx
, func
-48, ft
, fs
, cc
);
9660 opn
= condnames
[func
-48];
9664 check_cp1_registers(ctx
, fs
);
9666 TCGv_i32 fp32
= tcg_temp_new_i32();
9667 TCGv_i64 fp64
= tcg_temp_new_i64();
9669 gen_load_fpr64(ctx
, fp64
, fs
);
9670 gen_helper_float_cvts_d(fp32
, cpu_env
, fp64
);
9671 tcg_temp_free_i64(fp64
);
9672 gen_store_fpr32(fp32
, fd
);
9673 tcg_temp_free_i32(fp32
);
9678 check_cp1_registers(ctx
, fs
);
9680 TCGv_i32 fp32
= tcg_temp_new_i32();
9681 TCGv_i64 fp64
= tcg_temp_new_i64();
9683 gen_load_fpr64(ctx
, fp64
, fs
);
9684 gen_helper_float_cvtw_d(fp32
, cpu_env
, fp64
);
9685 tcg_temp_free_i64(fp64
);
9686 gen_store_fpr32(fp32
, fd
);
9687 tcg_temp_free_i32(fp32
);
9692 check_cp1_64bitmode(ctx
);
9694 TCGv_i64 fp0
= tcg_temp_new_i64();
9696 gen_load_fpr64(ctx
, fp0
, fs
);
9697 gen_helper_float_cvtl_d(fp0
, cpu_env
, fp0
);
9698 gen_store_fpr64(ctx
, fp0
, fd
);
9699 tcg_temp_free_i64(fp0
);
9705 TCGv_i32 fp0
= tcg_temp_new_i32();
9707 gen_load_fpr32(fp0
, fs
);
9708 gen_helper_float_cvts_w(fp0
, cpu_env
, fp0
);
9709 gen_store_fpr32(fp0
, fd
);
9710 tcg_temp_free_i32(fp0
);
9715 check_cp1_registers(ctx
, fd
);
9717 TCGv_i32 fp32
= tcg_temp_new_i32();
9718 TCGv_i64 fp64
= tcg_temp_new_i64();
9720 gen_load_fpr32(fp32
, fs
);
9721 gen_helper_float_cvtd_w(fp64
, cpu_env
, fp32
);
9722 tcg_temp_free_i32(fp32
);
9723 gen_store_fpr64(ctx
, fp64
, fd
);
9724 tcg_temp_free_i64(fp64
);
9729 check_cp1_64bitmode(ctx
);
9731 TCGv_i32 fp32
= tcg_temp_new_i32();
9732 TCGv_i64 fp64
= tcg_temp_new_i64();
9734 gen_load_fpr64(ctx
, fp64
, fs
);
9735 gen_helper_float_cvts_l(fp32
, cpu_env
, fp64
);
9736 tcg_temp_free_i64(fp64
);
9737 gen_store_fpr32(fp32
, fd
);
9738 tcg_temp_free_i32(fp32
);
9743 check_cp1_64bitmode(ctx
);
9745 TCGv_i64 fp0
= tcg_temp_new_i64();
9747 gen_load_fpr64(ctx
, fp0
, fs
);
9748 gen_helper_float_cvtd_l(fp0
, cpu_env
, fp0
);
9749 gen_store_fpr64(ctx
, fp0
, fd
);
9750 tcg_temp_free_i64(fp0
);
9755 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
9756 check_cp1_64bitmode(ctx
);
9758 TCGv_i64 fp0
= tcg_temp_new_i64();
9760 gen_load_fpr64(ctx
, fp0
, fs
);
9761 gen_helper_float_cvtps_pw(fp0
, cpu_env
, fp0
);
9762 gen_store_fpr64(ctx
, fp0
, fd
);
9763 tcg_temp_free_i64(fp0
);
9768 check_cp1_64bitmode(ctx
);
9770 TCGv_i64 fp0
= tcg_temp_new_i64();
9771 TCGv_i64 fp1
= tcg_temp_new_i64();
9773 gen_load_fpr64(ctx
, fp0
, fs
);
9774 gen_load_fpr64(ctx
, fp1
, ft
);
9775 gen_helper_float_add_ps(fp0
, cpu_env
, fp0
, fp1
);
9776 tcg_temp_free_i64(fp1
);
9777 gen_store_fpr64(ctx
, fp0
, fd
);
9778 tcg_temp_free_i64(fp0
);
9783 check_cp1_64bitmode(ctx
);
9785 TCGv_i64 fp0
= tcg_temp_new_i64();
9786 TCGv_i64 fp1
= tcg_temp_new_i64();
9788 gen_load_fpr64(ctx
, fp0
, fs
);
9789 gen_load_fpr64(ctx
, fp1
, ft
);
9790 gen_helper_float_sub_ps(fp0
, cpu_env
, fp0
, fp1
);
9791 tcg_temp_free_i64(fp1
);
9792 gen_store_fpr64(ctx
, fp0
, fd
);
9793 tcg_temp_free_i64(fp0
);
9798 check_cp1_64bitmode(ctx
);
9800 TCGv_i64 fp0
= tcg_temp_new_i64();
9801 TCGv_i64 fp1
= tcg_temp_new_i64();
9803 gen_load_fpr64(ctx
, fp0
, fs
);
9804 gen_load_fpr64(ctx
, fp1
, ft
);
9805 gen_helper_float_mul_ps(fp0
, cpu_env
, fp0
, fp1
);
9806 tcg_temp_free_i64(fp1
);
9807 gen_store_fpr64(ctx
, fp0
, fd
);
9808 tcg_temp_free_i64(fp0
);
9813 check_cp1_64bitmode(ctx
);
9815 TCGv_i64 fp0
= tcg_temp_new_i64();
9817 gen_load_fpr64(ctx
, fp0
, fs
);
9818 gen_helper_float_abs_ps(fp0
, fp0
);
9819 gen_store_fpr64(ctx
, fp0
, fd
);
9820 tcg_temp_free_i64(fp0
);
9825 check_cp1_64bitmode(ctx
);
9827 TCGv_i64 fp0
= tcg_temp_new_i64();
9829 gen_load_fpr64(ctx
, fp0
, fs
);
9830 gen_store_fpr64(ctx
, fp0
, fd
);
9831 tcg_temp_free_i64(fp0
);
9836 check_cp1_64bitmode(ctx
);
9838 TCGv_i64 fp0
= tcg_temp_new_i64();
9840 gen_load_fpr64(ctx
, fp0
, fs
);
9841 gen_helper_float_chs_ps(fp0
, fp0
);
9842 gen_store_fpr64(ctx
, fp0
, fd
);
9843 tcg_temp_free_i64(fp0
);
9848 check_cp1_64bitmode(ctx
);
9849 gen_movcf_ps(ctx
, fs
, fd
, (ft
>> 2) & 0x7, ft
& 0x1);
9853 check_cp1_64bitmode(ctx
);
9855 int l1
= gen_new_label();
9859 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[ft
], 0, l1
);
9860 fp0
= tcg_temp_new_i64();
9861 gen_load_fpr64(ctx
, fp0
, fs
);
9862 gen_store_fpr64(ctx
, fp0
, fd
);
9863 tcg_temp_free_i64(fp0
);
9869 check_cp1_64bitmode(ctx
);
9871 int l1
= gen_new_label();
9875 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[ft
], 0, l1
);
9876 fp0
= tcg_temp_new_i64();
9877 gen_load_fpr64(ctx
, fp0
, fs
);
9878 gen_store_fpr64(ctx
, fp0
, fd
);
9879 tcg_temp_free_i64(fp0
);
9886 check_cp1_64bitmode(ctx
);
9888 TCGv_i64 fp0
= tcg_temp_new_i64();
9889 TCGv_i64 fp1
= tcg_temp_new_i64();
9891 gen_load_fpr64(ctx
, fp0
, ft
);
9892 gen_load_fpr64(ctx
, fp1
, fs
);
9893 gen_helper_float_addr_ps(fp0
, cpu_env
, fp0
, fp1
);
9894 tcg_temp_free_i64(fp1
);
9895 gen_store_fpr64(ctx
, fp0
, fd
);
9896 tcg_temp_free_i64(fp0
);
9901 check_cp1_64bitmode(ctx
);
9903 TCGv_i64 fp0
= tcg_temp_new_i64();
9904 TCGv_i64 fp1
= tcg_temp_new_i64();
9906 gen_load_fpr64(ctx
, fp0
, ft
);
9907 gen_load_fpr64(ctx
, fp1
, fs
);
9908 gen_helper_float_mulr_ps(fp0
, cpu_env
, fp0
, fp1
);
9909 tcg_temp_free_i64(fp1
);
9910 gen_store_fpr64(ctx
, fp0
, fd
);
9911 tcg_temp_free_i64(fp0
);
9916 check_cp1_64bitmode(ctx
);
9918 TCGv_i64 fp0
= tcg_temp_new_i64();
9919 TCGv_i64 fp1
= tcg_temp_new_i64();
9921 gen_load_fpr64(ctx
, fp0
, fs
);
9922 gen_load_fpr64(ctx
, fp1
, ft
);
9923 gen_helper_float_recip2_ps(fp0
, cpu_env
, fp0
, fp1
);
9924 tcg_temp_free_i64(fp1
);
9925 gen_store_fpr64(ctx
, fp0
, fd
);
9926 tcg_temp_free_i64(fp0
);
9931 check_cp1_64bitmode(ctx
);
9933 TCGv_i64 fp0
= tcg_temp_new_i64();
9935 gen_load_fpr64(ctx
, fp0
, fs
);
9936 gen_helper_float_recip1_ps(fp0
, cpu_env
, fp0
);
9937 gen_store_fpr64(ctx
, fp0
, fd
);
9938 tcg_temp_free_i64(fp0
);
9943 check_cp1_64bitmode(ctx
);
9945 TCGv_i64 fp0
= tcg_temp_new_i64();
9947 gen_load_fpr64(ctx
, fp0
, fs
);
9948 gen_helper_float_rsqrt1_ps(fp0
, cpu_env
, fp0
);
9949 gen_store_fpr64(ctx
, fp0
, fd
);
9950 tcg_temp_free_i64(fp0
);
9955 check_cp1_64bitmode(ctx
);
9957 TCGv_i64 fp0
= tcg_temp_new_i64();
9958 TCGv_i64 fp1
= tcg_temp_new_i64();
9960 gen_load_fpr64(ctx
, fp0
, fs
);
9961 gen_load_fpr64(ctx
, fp1
, ft
);
9962 gen_helper_float_rsqrt2_ps(fp0
, cpu_env
, fp0
, fp1
);
9963 tcg_temp_free_i64(fp1
);
9964 gen_store_fpr64(ctx
, fp0
, fd
);
9965 tcg_temp_free_i64(fp0
);
9970 check_cp1_64bitmode(ctx
);
9972 TCGv_i32 fp0
= tcg_temp_new_i32();
9974 gen_load_fpr32h(ctx
, fp0
, fs
);
9975 gen_helper_float_cvts_pu(fp0
, cpu_env
, fp0
);
9976 gen_store_fpr32(fp0
, fd
);
9977 tcg_temp_free_i32(fp0
);
9982 check_cp1_64bitmode(ctx
);
9984 TCGv_i64 fp0
= tcg_temp_new_i64();
9986 gen_load_fpr64(ctx
, fp0
, fs
);
9987 gen_helper_float_cvtpw_ps(fp0
, cpu_env
, fp0
);
9988 gen_store_fpr64(ctx
, fp0
, fd
);
9989 tcg_temp_free_i64(fp0
);
9994 check_cp1_64bitmode(ctx
);
9996 TCGv_i32 fp0
= tcg_temp_new_i32();
9998 gen_load_fpr32(fp0
, fs
);
9999 gen_helper_float_cvts_pl(fp0
, cpu_env
, fp0
);
10000 gen_store_fpr32(fp0
, fd
);
10001 tcg_temp_free_i32(fp0
);
10006 check_cp1_64bitmode(ctx
);
10008 TCGv_i32 fp0
= tcg_temp_new_i32();
10009 TCGv_i32 fp1
= tcg_temp_new_i32();
10011 gen_load_fpr32(fp0
, fs
);
10012 gen_load_fpr32(fp1
, ft
);
10013 gen_store_fpr32h(ctx
, fp0
, fd
);
10014 gen_store_fpr32(fp1
, fd
);
10015 tcg_temp_free_i32(fp0
);
10016 tcg_temp_free_i32(fp1
);
10021 check_cp1_64bitmode(ctx
);
10023 TCGv_i32 fp0
= tcg_temp_new_i32();
10024 TCGv_i32 fp1
= tcg_temp_new_i32();
10026 gen_load_fpr32(fp0
, fs
);
10027 gen_load_fpr32h(ctx
, fp1
, ft
);
10028 gen_store_fpr32(fp1
, fd
);
10029 gen_store_fpr32h(ctx
, fp0
, fd
);
10030 tcg_temp_free_i32(fp0
);
10031 tcg_temp_free_i32(fp1
);
10036 check_cp1_64bitmode(ctx
);
10038 TCGv_i32 fp0
= tcg_temp_new_i32();
10039 TCGv_i32 fp1
= tcg_temp_new_i32();
10041 gen_load_fpr32h(ctx
, fp0
, fs
);
10042 gen_load_fpr32(fp1
, ft
);
10043 gen_store_fpr32(fp1
, fd
);
10044 gen_store_fpr32h(ctx
, fp0
, fd
);
10045 tcg_temp_free_i32(fp0
);
10046 tcg_temp_free_i32(fp1
);
10051 check_cp1_64bitmode(ctx
);
10053 TCGv_i32 fp0
= tcg_temp_new_i32();
10054 TCGv_i32 fp1
= tcg_temp_new_i32();
10056 gen_load_fpr32h(ctx
, fp0
, fs
);
10057 gen_load_fpr32h(ctx
, fp1
, ft
);
10058 gen_store_fpr32(fp1
, fd
);
10059 gen_store_fpr32h(ctx
, fp0
, fd
);
10060 tcg_temp_free_i32(fp0
);
10061 tcg_temp_free_i32(fp1
);
10066 case OPC_CMP_UN_PS
:
10067 case OPC_CMP_EQ_PS
:
10068 case OPC_CMP_UEQ_PS
:
10069 case OPC_CMP_OLT_PS
:
10070 case OPC_CMP_ULT_PS
:
10071 case OPC_CMP_OLE_PS
:
10072 case OPC_CMP_ULE_PS
:
10073 case OPC_CMP_SF_PS
:
10074 case OPC_CMP_NGLE_PS
:
10075 case OPC_CMP_SEQ_PS
:
10076 case OPC_CMP_NGL_PS
:
10077 case OPC_CMP_LT_PS
:
10078 case OPC_CMP_NGE_PS
:
10079 case OPC_CMP_LE_PS
:
10080 case OPC_CMP_NGT_PS
:
10081 if (ctx
->opcode
& (1 << 6)) {
10082 gen_cmpabs_ps(ctx
, func
-48, ft
, fs
, cc
);
10083 opn
= condnames_abs
[func
-48];
10085 gen_cmp_ps(ctx
, func
-48, ft
, fs
, cc
);
10086 opn
= condnames
[func
-48];
10091 generate_exception (ctx
, EXCP_RI
);
10094 (void)opn
; /* avoid a compiler warning */
10097 MIPS_DEBUG("%s %s, %s, %s", opn
, fregnames
[fd
], fregnames
[fs
], fregnames
[ft
]);
10100 MIPS_DEBUG("%s %s,%s", opn
, fregnames
[fs
], fregnames
[ft
]);
10103 MIPS_DEBUG("%s %s,%s", opn
, fregnames
[fd
], fregnames
[fs
]);
10108 /* Coprocessor 3 (FPU) */
10109 static void gen_flt3_ldst (DisasContext
*ctx
, uint32_t opc
,
10110 int fd
, int fs
, int base
, int index
)
10112 const char *opn
= "extended float load/store";
10114 TCGv t0
= tcg_temp_new();
10117 gen_load_gpr(t0
, index
);
10118 } else if (index
== 0) {
10119 gen_load_gpr(t0
, base
);
10121 gen_op_addr_add(ctx
, t0
, cpu_gpr
[base
], cpu_gpr
[index
]);
10123 /* Don't do NOP if destination is zero: we must perform the actual
10129 TCGv_i32 fp0
= tcg_temp_new_i32();
10131 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TESL
);
10132 tcg_gen_trunc_tl_i32(fp0
, t0
);
10133 gen_store_fpr32(fp0
, fd
);
10134 tcg_temp_free_i32(fp0
);
10140 check_cp1_registers(ctx
, fd
);
10142 TCGv_i64 fp0
= tcg_temp_new_i64();
10143 tcg_gen_qemu_ld_i64(fp0
, t0
, ctx
->mem_idx
, MO_TEQ
);
10144 gen_store_fpr64(ctx
, fp0
, fd
);
10145 tcg_temp_free_i64(fp0
);
10150 check_cp1_64bitmode(ctx
);
10151 tcg_gen_andi_tl(t0
, t0
, ~0x7);
10153 TCGv_i64 fp0
= tcg_temp_new_i64();
10155 tcg_gen_qemu_ld_i64(fp0
, t0
, ctx
->mem_idx
, MO_TEQ
);
10156 gen_store_fpr64(ctx
, fp0
, fd
);
10157 tcg_temp_free_i64(fp0
);
10164 TCGv_i32 fp0
= tcg_temp_new_i32();
10165 gen_load_fpr32(fp0
, fs
);
10166 tcg_gen_qemu_st_i32(fp0
, t0
, ctx
->mem_idx
, MO_TEUL
);
10167 tcg_temp_free_i32(fp0
);
10174 check_cp1_registers(ctx
, fs
);
10176 TCGv_i64 fp0
= tcg_temp_new_i64();
10177 gen_load_fpr64(ctx
, fp0
, fs
);
10178 tcg_gen_qemu_st_i64(fp0
, t0
, ctx
->mem_idx
, MO_TEQ
);
10179 tcg_temp_free_i64(fp0
);
10185 check_cp1_64bitmode(ctx
);
10186 tcg_gen_andi_tl(t0
, t0
, ~0x7);
10188 TCGv_i64 fp0
= tcg_temp_new_i64();
10189 gen_load_fpr64(ctx
, fp0
, fs
);
10190 tcg_gen_qemu_st_i64(fp0
, t0
, ctx
->mem_idx
, MO_TEQ
);
10191 tcg_temp_free_i64(fp0
);
10198 (void)opn
; (void)store
; /* avoid compiler warnings */
10199 MIPS_DEBUG("%s %s, %s(%s)", opn
, fregnames
[store
? fs
: fd
],
10200 regnames
[index
], regnames
[base
]);
10203 static void gen_flt3_arith (DisasContext
*ctx
, uint32_t opc
,
10204 int fd
, int fr
, int fs
, int ft
)
10206 const char *opn
= "flt3_arith";
10210 check_cp1_64bitmode(ctx
);
10212 TCGv t0
= tcg_temp_local_new();
10213 TCGv_i32 fp
= tcg_temp_new_i32();
10214 TCGv_i32 fph
= tcg_temp_new_i32();
10215 int l1
= gen_new_label();
10216 int l2
= gen_new_label();
10218 gen_load_gpr(t0
, fr
);
10219 tcg_gen_andi_tl(t0
, t0
, 0x7);
10221 tcg_gen_brcondi_tl(TCG_COND_NE
, t0
, 0, l1
);
10222 gen_load_fpr32(fp
, fs
);
10223 gen_load_fpr32h(ctx
, fph
, fs
);
10224 gen_store_fpr32(fp
, fd
);
10225 gen_store_fpr32h(ctx
, fph
, fd
);
10228 tcg_gen_brcondi_tl(TCG_COND_NE
, t0
, 4, l2
);
10230 #ifdef TARGET_WORDS_BIGENDIAN
10231 gen_load_fpr32(fp
, fs
);
10232 gen_load_fpr32h(ctx
, fph
, ft
);
10233 gen_store_fpr32h(ctx
, fp
, fd
);
10234 gen_store_fpr32(fph
, fd
);
10236 gen_load_fpr32h(ctx
, fph
, fs
);
10237 gen_load_fpr32(fp
, ft
);
10238 gen_store_fpr32(fph
, fd
);
10239 gen_store_fpr32h(ctx
, fp
, fd
);
10242 tcg_temp_free_i32(fp
);
10243 tcg_temp_free_i32(fph
);
10250 TCGv_i32 fp0
= tcg_temp_new_i32();
10251 TCGv_i32 fp1
= tcg_temp_new_i32();
10252 TCGv_i32 fp2
= tcg_temp_new_i32();
10254 gen_load_fpr32(fp0
, fs
);
10255 gen_load_fpr32(fp1
, ft
);
10256 gen_load_fpr32(fp2
, fr
);
10257 gen_helper_float_madd_s(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10258 tcg_temp_free_i32(fp0
);
10259 tcg_temp_free_i32(fp1
);
10260 gen_store_fpr32(fp2
, fd
);
10261 tcg_temp_free_i32(fp2
);
10267 check_cp1_registers(ctx
, fd
| fs
| ft
| fr
);
10269 TCGv_i64 fp0
= tcg_temp_new_i64();
10270 TCGv_i64 fp1
= tcg_temp_new_i64();
10271 TCGv_i64 fp2
= tcg_temp_new_i64();
10273 gen_load_fpr64(ctx
, fp0
, fs
);
10274 gen_load_fpr64(ctx
, fp1
, ft
);
10275 gen_load_fpr64(ctx
, fp2
, fr
);
10276 gen_helper_float_madd_d(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10277 tcg_temp_free_i64(fp0
);
10278 tcg_temp_free_i64(fp1
);
10279 gen_store_fpr64(ctx
, fp2
, fd
);
10280 tcg_temp_free_i64(fp2
);
10285 check_cp1_64bitmode(ctx
);
10287 TCGv_i64 fp0
= tcg_temp_new_i64();
10288 TCGv_i64 fp1
= tcg_temp_new_i64();
10289 TCGv_i64 fp2
= tcg_temp_new_i64();
10291 gen_load_fpr64(ctx
, fp0
, fs
);
10292 gen_load_fpr64(ctx
, fp1
, ft
);
10293 gen_load_fpr64(ctx
, fp2
, fr
);
10294 gen_helper_float_madd_ps(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10295 tcg_temp_free_i64(fp0
);
10296 tcg_temp_free_i64(fp1
);
10297 gen_store_fpr64(ctx
, fp2
, fd
);
10298 tcg_temp_free_i64(fp2
);
10305 TCGv_i32 fp0
= tcg_temp_new_i32();
10306 TCGv_i32 fp1
= tcg_temp_new_i32();
10307 TCGv_i32 fp2
= tcg_temp_new_i32();
10309 gen_load_fpr32(fp0
, fs
);
10310 gen_load_fpr32(fp1
, ft
);
10311 gen_load_fpr32(fp2
, fr
);
10312 gen_helper_float_msub_s(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10313 tcg_temp_free_i32(fp0
);
10314 tcg_temp_free_i32(fp1
);
10315 gen_store_fpr32(fp2
, fd
);
10316 tcg_temp_free_i32(fp2
);
10322 check_cp1_registers(ctx
, fd
| fs
| ft
| fr
);
10324 TCGv_i64 fp0
= tcg_temp_new_i64();
10325 TCGv_i64 fp1
= tcg_temp_new_i64();
10326 TCGv_i64 fp2
= tcg_temp_new_i64();
10328 gen_load_fpr64(ctx
, fp0
, fs
);
10329 gen_load_fpr64(ctx
, fp1
, ft
);
10330 gen_load_fpr64(ctx
, fp2
, fr
);
10331 gen_helper_float_msub_d(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10332 tcg_temp_free_i64(fp0
);
10333 tcg_temp_free_i64(fp1
);
10334 gen_store_fpr64(ctx
, fp2
, fd
);
10335 tcg_temp_free_i64(fp2
);
10340 check_cp1_64bitmode(ctx
);
10342 TCGv_i64 fp0
= tcg_temp_new_i64();
10343 TCGv_i64 fp1
= tcg_temp_new_i64();
10344 TCGv_i64 fp2
= tcg_temp_new_i64();
10346 gen_load_fpr64(ctx
, fp0
, fs
);
10347 gen_load_fpr64(ctx
, fp1
, ft
);
10348 gen_load_fpr64(ctx
, fp2
, fr
);
10349 gen_helper_float_msub_ps(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10350 tcg_temp_free_i64(fp0
);
10351 tcg_temp_free_i64(fp1
);
10352 gen_store_fpr64(ctx
, fp2
, fd
);
10353 tcg_temp_free_i64(fp2
);
10360 TCGv_i32 fp0
= tcg_temp_new_i32();
10361 TCGv_i32 fp1
= tcg_temp_new_i32();
10362 TCGv_i32 fp2
= tcg_temp_new_i32();
10364 gen_load_fpr32(fp0
, fs
);
10365 gen_load_fpr32(fp1
, ft
);
10366 gen_load_fpr32(fp2
, fr
);
10367 gen_helper_float_nmadd_s(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10368 tcg_temp_free_i32(fp0
);
10369 tcg_temp_free_i32(fp1
);
10370 gen_store_fpr32(fp2
, fd
);
10371 tcg_temp_free_i32(fp2
);
10377 check_cp1_registers(ctx
, fd
| fs
| ft
| fr
);
10379 TCGv_i64 fp0
= tcg_temp_new_i64();
10380 TCGv_i64 fp1
= tcg_temp_new_i64();
10381 TCGv_i64 fp2
= tcg_temp_new_i64();
10383 gen_load_fpr64(ctx
, fp0
, fs
);
10384 gen_load_fpr64(ctx
, fp1
, ft
);
10385 gen_load_fpr64(ctx
, fp2
, fr
);
10386 gen_helper_float_nmadd_d(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10387 tcg_temp_free_i64(fp0
);
10388 tcg_temp_free_i64(fp1
);
10389 gen_store_fpr64(ctx
, fp2
, fd
);
10390 tcg_temp_free_i64(fp2
);
10395 check_cp1_64bitmode(ctx
);
10397 TCGv_i64 fp0
= tcg_temp_new_i64();
10398 TCGv_i64 fp1
= tcg_temp_new_i64();
10399 TCGv_i64 fp2
= tcg_temp_new_i64();
10401 gen_load_fpr64(ctx
, fp0
, fs
);
10402 gen_load_fpr64(ctx
, fp1
, ft
);
10403 gen_load_fpr64(ctx
, fp2
, fr
);
10404 gen_helper_float_nmadd_ps(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10405 tcg_temp_free_i64(fp0
);
10406 tcg_temp_free_i64(fp1
);
10407 gen_store_fpr64(ctx
, fp2
, fd
);
10408 tcg_temp_free_i64(fp2
);
10415 TCGv_i32 fp0
= tcg_temp_new_i32();
10416 TCGv_i32 fp1
= tcg_temp_new_i32();
10417 TCGv_i32 fp2
= tcg_temp_new_i32();
10419 gen_load_fpr32(fp0
, fs
);
10420 gen_load_fpr32(fp1
, ft
);
10421 gen_load_fpr32(fp2
, fr
);
10422 gen_helper_float_nmsub_s(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10423 tcg_temp_free_i32(fp0
);
10424 tcg_temp_free_i32(fp1
);
10425 gen_store_fpr32(fp2
, fd
);
10426 tcg_temp_free_i32(fp2
);
10432 check_cp1_registers(ctx
, fd
| fs
| ft
| fr
);
10434 TCGv_i64 fp0
= tcg_temp_new_i64();
10435 TCGv_i64 fp1
= tcg_temp_new_i64();
10436 TCGv_i64 fp2
= tcg_temp_new_i64();
10438 gen_load_fpr64(ctx
, fp0
, fs
);
10439 gen_load_fpr64(ctx
, fp1
, ft
);
10440 gen_load_fpr64(ctx
, fp2
, fr
);
10441 gen_helper_float_nmsub_d(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10442 tcg_temp_free_i64(fp0
);
10443 tcg_temp_free_i64(fp1
);
10444 gen_store_fpr64(ctx
, fp2
, fd
);
10445 tcg_temp_free_i64(fp2
);
10450 check_cp1_64bitmode(ctx
);
10452 TCGv_i64 fp0
= tcg_temp_new_i64();
10453 TCGv_i64 fp1
= tcg_temp_new_i64();
10454 TCGv_i64 fp2
= tcg_temp_new_i64();
10456 gen_load_fpr64(ctx
, fp0
, fs
);
10457 gen_load_fpr64(ctx
, fp1
, ft
);
10458 gen_load_fpr64(ctx
, fp2
, fr
);
10459 gen_helper_float_nmsub_ps(fp2
, cpu_env
, fp0
, fp1
, fp2
);
10460 tcg_temp_free_i64(fp0
);
10461 tcg_temp_free_i64(fp1
);
10462 gen_store_fpr64(ctx
, fp2
, fd
);
10463 tcg_temp_free_i64(fp2
);
10469 generate_exception (ctx
, EXCP_RI
);
10472 (void)opn
; /* avoid a compiler warning */
10473 MIPS_DEBUG("%s %s, %s, %s, %s", opn
, fregnames
[fd
], fregnames
[fr
],
10474 fregnames
[fs
], fregnames
[ft
]);
10477 static void gen_rdhwr(DisasContext
*ctx
, int rt
, int rd
)
10481 #if !defined(CONFIG_USER_ONLY)
10482 /* The Linux kernel will emulate rdhwr if it's not supported natively.
10483 Therefore only check the ISA in system mode. */
10484 check_insn(ctx
, ISA_MIPS32R2
);
10486 t0
= tcg_temp_new();
10490 save_cpu_state(ctx
, 1);
10491 gen_helper_rdhwr_cpunum(t0
, cpu_env
);
10492 gen_store_gpr(t0
, rt
);
10495 save_cpu_state(ctx
, 1);
10496 gen_helper_rdhwr_synci_step(t0
, cpu_env
);
10497 gen_store_gpr(t0
, rt
);
10500 save_cpu_state(ctx
, 1);
10501 gen_helper_rdhwr_cc(t0
, cpu_env
);
10502 gen_store_gpr(t0
, rt
);
10505 save_cpu_state(ctx
, 1);
10506 gen_helper_rdhwr_ccres(t0
, cpu_env
);
10507 gen_store_gpr(t0
, rt
);
10510 #if defined(CONFIG_USER_ONLY)
10511 tcg_gen_ld_tl(t0
, cpu_env
,
10512 offsetof(CPUMIPSState
, active_tc
.CP0_UserLocal
));
10513 gen_store_gpr(t0
, rt
);
10516 if ((ctx
->hflags
& MIPS_HFLAG_CP0
) ||
10517 (ctx
->hflags
& MIPS_HFLAG_HWRENA_ULR
)) {
10518 tcg_gen_ld_tl(t0
, cpu_env
,
10519 offsetof(CPUMIPSState
, active_tc
.CP0_UserLocal
));
10520 gen_store_gpr(t0
, rt
);
10522 generate_exception(ctx
, EXCP_RI
);
10526 default: /* Invalid */
10527 MIPS_INVAL("rdhwr");
10528 generate_exception(ctx
, EXCP_RI
);
10534 static void gen_branch(DisasContext
*ctx
, int insn_bytes
)
10536 if (ctx
->hflags
& MIPS_HFLAG_BMASK
) {
10537 int proc_hflags
= ctx
->hflags
& MIPS_HFLAG_BMASK
;
10538 /* Branches completion */
10539 ctx
->hflags
&= ~MIPS_HFLAG_BMASK
;
10540 ctx
->bstate
= BS_BRANCH
;
10541 save_cpu_state(ctx
, 0);
10542 /* FIXME: Need to clear can_do_io. */
10543 switch (proc_hflags
& MIPS_HFLAG_BMASK_BASE
) {
10544 case MIPS_HFLAG_FBNSLOT
:
10545 MIPS_DEBUG("forbidden slot");
10546 gen_goto_tb(ctx
, 0, ctx
->pc
+ insn_bytes
);
10549 /* unconditional branch */
10550 MIPS_DEBUG("unconditional branch");
10551 if (proc_hflags
& MIPS_HFLAG_BX
) {
10552 tcg_gen_xori_i32(hflags
, hflags
, MIPS_HFLAG_M16
);
10554 gen_goto_tb(ctx
, 0, ctx
->btarget
);
10556 case MIPS_HFLAG_BL
:
10557 /* blikely taken case */
10558 MIPS_DEBUG("blikely branch taken");
10559 gen_goto_tb(ctx
, 0, ctx
->btarget
);
10561 case MIPS_HFLAG_BC
:
10562 /* Conditional branch */
10563 MIPS_DEBUG("conditional branch");
10565 int l1
= gen_new_label();
10567 tcg_gen_brcondi_tl(TCG_COND_NE
, bcond
, 0, l1
);
10568 gen_goto_tb(ctx
, 1, ctx
->pc
+ insn_bytes
);
10570 gen_goto_tb(ctx
, 0, ctx
->btarget
);
10573 case MIPS_HFLAG_BR
:
10574 /* unconditional branch to register */
10575 MIPS_DEBUG("branch to register");
10576 if (ctx
->insn_flags
& (ASE_MIPS16
| ASE_MICROMIPS
)) {
10577 TCGv t0
= tcg_temp_new();
10578 TCGv_i32 t1
= tcg_temp_new_i32();
10580 tcg_gen_andi_tl(t0
, btarget
, 0x1);
10581 tcg_gen_trunc_tl_i32(t1
, t0
);
10583 tcg_gen_andi_i32(hflags
, hflags
, ~(uint32_t)MIPS_HFLAG_M16
);
10584 tcg_gen_shli_i32(t1
, t1
, MIPS_HFLAG_M16_SHIFT
);
10585 tcg_gen_or_i32(hflags
, hflags
, t1
);
10586 tcg_temp_free_i32(t1
);
10588 tcg_gen_andi_tl(cpu_PC
, btarget
, ~(target_ulong
)0x1);
10590 tcg_gen_mov_tl(cpu_PC
, btarget
);
10592 if (ctx
->singlestep_enabled
) {
10593 save_cpu_state(ctx
, 0);
10594 gen_helper_0e0i(raise_exception
, EXCP_DEBUG
);
10596 tcg_gen_exit_tb(0);
10599 MIPS_DEBUG("unknown branch");
10605 /* ISA extensions (ASEs) */
10606 /* MIPS16 extension to MIPS32 */
10608 /* MIPS16 major opcodes */
10610 M16_OPC_ADDIUSP
= 0x00,
10611 M16_OPC_ADDIUPC
= 0x01,
10613 M16_OPC_JAL
= 0x03,
10614 M16_OPC_BEQZ
= 0x04,
10615 M16_OPC_BNEQZ
= 0x05,
10616 M16_OPC_SHIFT
= 0x06,
10618 M16_OPC_RRIA
= 0x08,
10619 M16_OPC_ADDIU8
= 0x09,
10620 M16_OPC_SLTI
= 0x0a,
10621 M16_OPC_SLTIU
= 0x0b,
10624 M16_OPC_CMPI
= 0x0e,
10628 M16_OPC_LWSP
= 0x12,
10630 M16_OPC_LBU
= 0x14,
10631 M16_OPC_LHU
= 0x15,
10632 M16_OPC_LWPC
= 0x16,
10633 M16_OPC_LWU
= 0x17,
10636 M16_OPC_SWSP
= 0x1a,
10638 M16_OPC_RRR
= 0x1c,
10640 M16_OPC_EXTEND
= 0x1e,
10644 /* I8 funct field */
10663 /* RR funct field */
10697 /* I64 funct field */
10705 I64_DADDIUPC
= 0x6,
10709 /* RR ry field for CNVT */
10711 RR_RY_CNVT_ZEB
= 0x0,
10712 RR_RY_CNVT_ZEH
= 0x1,
10713 RR_RY_CNVT_ZEW
= 0x2,
10714 RR_RY_CNVT_SEB
= 0x4,
10715 RR_RY_CNVT_SEH
= 0x5,
10716 RR_RY_CNVT_SEW
= 0x6,
10719 static int xlat (int r
)
10721 static int map
[] = { 16, 17, 2, 3, 4, 5, 6, 7 };
10726 static void gen_mips16_save (DisasContext
*ctx
,
10727 int xsregs
, int aregs
,
10728 int do_ra
, int do_s0
, int do_s1
,
10731 TCGv t0
= tcg_temp_new();
10732 TCGv t1
= tcg_temp_new();
10733 TCGv t2
= tcg_temp_new();
10763 generate_exception(ctx
, EXCP_RI
);
10769 gen_base_offset_addr(ctx
, t0
, 29, 12);
10770 gen_load_gpr(t1
, 7);
10771 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUL
);
10774 gen_base_offset_addr(ctx
, t0
, 29, 8);
10775 gen_load_gpr(t1
, 6);
10776 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUL
);
10779 gen_base_offset_addr(ctx
, t0
, 29, 4);
10780 gen_load_gpr(t1
, 5);
10781 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUL
);
10784 gen_base_offset_addr(ctx
, t0
, 29, 0);
10785 gen_load_gpr(t1
, 4);
10786 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUL
);
10789 gen_load_gpr(t0
, 29);
10791 #define DECR_AND_STORE(reg) do { \
10792 tcg_gen_movi_tl(t2, -4); \
10793 gen_op_addr_add(ctx, t0, t0, t2); \
10794 gen_load_gpr(t1, reg); \
10795 tcg_gen_qemu_st_tl(t1, t0, ctx->mem_idx, MO_TEUL); \
10799 DECR_AND_STORE(31);
10804 DECR_AND_STORE(30);
10807 DECR_AND_STORE(23);
10810 DECR_AND_STORE(22);
10813 DECR_AND_STORE(21);
10816 DECR_AND_STORE(20);
10819 DECR_AND_STORE(19);
10822 DECR_AND_STORE(18);
10826 DECR_AND_STORE(17);
10829 DECR_AND_STORE(16);
10859 generate_exception(ctx
, EXCP_RI
);
10875 #undef DECR_AND_STORE
10877 tcg_gen_movi_tl(t2
, -framesize
);
10878 gen_op_addr_add(ctx
, cpu_gpr
[29], cpu_gpr
[29], t2
);
10884 static void gen_mips16_restore (DisasContext
*ctx
,
10885 int xsregs
, int aregs
,
10886 int do_ra
, int do_s0
, int do_s1
,
10890 TCGv t0
= tcg_temp_new();
10891 TCGv t1
= tcg_temp_new();
10892 TCGv t2
= tcg_temp_new();
10894 tcg_gen_movi_tl(t2
, framesize
);
10895 gen_op_addr_add(ctx
, t0
, cpu_gpr
[29], t2
);
10897 #define DECR_AND_LOAD(reg) do { \
10898 tcg_gen_movi_tl(t2, -4); \
10899 gen_op_addr_add(ctx, t0, t0, t2); \
10900 tcg_gen_qemu_ld_tl(t1, t0, ctx->mem_idx, MO_TESL); \
10901 gen_store_gpr(t1, reg); \
10965 generate_exception(ctx
, EXCP_RI
);
10981 #undef DECR_AND_LOAD
10983 tcg_gen_movi_tl(t2
, framesize
);
10984 gen_op_addr_add(ctx
, cpu_gpr
[29], cpu_gpr
[29], t2
);
10990 static void gen_addiupc (DisasContext
*ctx
, int rx
, int imm
,
10991 int is_64_bit
, int extended
)
10995 if (extended
&& (ctx
->hflags
& MIPS_HFLAG_BMASK
)) {
10996 generate_exception(ctx
, EXCP_RI
);
11000 t0
= tcg_temp_new();
11002 tcg_gen_movi_tl(t0
, pc_relative_pc(ctx
));
11003 tcg_gen_addi_tl(cpu_gpr
[rx
], t0
, imm
);
11005 tcg_gen_ext32s_tl(cpu_gpr
[rx
], cpu_gpr
[rx
]);
11011 #if defined(TARGET_MIPS64)
11012 static void decode_i64_mips16 (DisasContext
*ctx
,
11013 int ry
, int funct
, int16_t offset
,
11018 check_insn(ctx
, ISA_MIPS3
);
11019 check_mips_64(ctx
);
11020 offset
= extended
? offset
: offset
<< 3;
11021 gen_ld(ctx
, OPC_LD
, ry
, 29, offset
);
11024 check_insn(ctx
, ISA_MIPS3
);
11025 check_mips_64(ctx
);
11026 offset
= extended
? offset
: offset
<< 3;
11027 gen_st(ctx
, OPC_SD
, ry
, 29, offset
);
11030 check_insn(ctx
, ISA_MIPS3
);
11031 check_mips_64(ctx
);
11032 offset
= extended
? offset
: (ctx
->opcode
& 0xff) << 3;
11033 gen_st(ctx
, OPC_SD
, 31, 29, offset
);
11036 check_insn(ctx
, ISA_MIPS3
);
11037 check_mips_64(ctx
);
11038 offset
= extended
? offset
: ((int8_t)ctx
->opcode
) << 3;
11039 gen_arith_imm(ctx
, OPC_DADDIU
, 29, 29, offset
);
11042 check_insn(ctx
, ISA_MIPS3
);
11043 check_mips_64(ctx
);
11044 if (extended
&& (ctx
->hflags
& MIPS_HFLAG_BMASK
)) {
11045 generate_exception(ctx
, EXCP_RI
);
11047 offset
= extended
? offset
: offset
<< 3;
11048 gen_ld(ctx
, OPC_LDPC
, ry
, 0, offset
);
11052 check_insn(ctx
, ISA_MIPS3
);
11053 check_mips_64(ctx
);
11054 offset
= extended
? offset
: ((int8_t)(offset
<< 3)) >> 3;
11055 gen_arith_imm(ctx
, OPC_DADDIU
, ry
, ry
, offset
);
11058 check_insn(ctx
, ISA_MIPS3
);
11059 check_mips_64(ctx
);
11060 offset
= extended
? offset
: offset
<< 2;
11061 gen_addiupc(ctx
, ry
, offset
, 1, extended
);
11064 check_insn(ctx
, ISA_MIPS3
);
11065 check_mips_64(ctx
);
11066 offset
= extended
? offset
: offset
<< 2;
11067 gen_arith_imm(ctx
, OPC_DADDIU
, ry
, 29, offset
);
11073 static int decode_extended_mips16_opc (CPUMIPSState
*env
, DisasContext
*ctx
)
11075 int extend
= cpu_lduw_code(env
, ctx
->pc
+ 2);
11076 int op
, rx
, ry
, funct
, sa
;
11077 int16_t imm
, offset
;
11079 ctx
->opcode
= (ctx
->opcode
<< 16) | extend
;
11080 op
= (ctx
->opcode
>> 11) & 0x1f;
11081 sa
= (ctx
->opcode
>> 22) & 0x1f;
11082 funct
= (ctx
->opcode
>> 8) & 0x7;
11083 rx
= xlat((ctx
->opcode
>> 8) & 0x7);
11084 ry
= xlat((ctx
->opcode
>> 5) & 0x7);
11085 offset
= imm
= (int16_t) (((ctx
->opcode
>> 16) & 0x1f) << 11
11086 | ((ctx
->opcode
>> 21) & 0x3f) << 5
11087 | (ctx
->opcode
& 0x1f));
11089 /* The extended opcodes cleverly reuse the opcodes from their 16-bit
11092 case M16_OPC_ADDIUSP
:
11093 gen_arith_imm(ctx
, OPC_ADDIU
, rx
, 29, imm
);
11095 case M16_OPC_ADDIUPC
:
11096 gen_addiupc(ctx
, rx
, imm
, 0, 1);
11099 gen_compute_branch(ctx
, OPC_BEQ
, 4, 0, 0, offset
<< 1, 0);
11100 /* No delay slot, so just process as a normal instruction */
11103 gen_compute_branch(ctx
, OPC_BEQ
, 4, rx
, 0, offset
<< 1, 0);
11104 /* No delay slot, so just process as a normal instruction */
11106 case M16_OPC_BNEQZ
:
11107 gen_compute_branch(ctx
, OPC_BNE
, 4, rx
, 0, offset
<< 1, 0);
11108 /* No delay slot, so just process as a normal instruction */
11110 case M16_OPC_SHIFT
:
11111 switch (ctx
->opcode
& 0x3) {
11113 gen_shift_imm(ctx
, OPC_SLL
, rx
, ry
, sa
);
11116 #if defined(TARGET_MIPS64)
11117 check_mips_64(ctx
);
11118 gen_shift_imm(ctx
, OPC_DSLL
, rx
, ry
, sa
);
11120 generate_exception(ctx
, EXCP_RI
);
11124 gen_shift_imm(ctx
, OPC_SRL
, rx
, ry
, sa
);
11127 gen_shift_imm(ctx
, OPC_SRA
, rx
, ry
, sa
);
11131 #if defined(TARGET_MIPS64)
11133 check_insn(ctx
, ISA_MIPS3
);
11134 check_mips_64(ctx
);
11135 gen_ld(ctx
, OPC_LD
, ry
, rx
, offset
);
11139 imm
= ctx
->opcode
& 0xf;
11140 imm
= imm
| ((ctx
->opcode
>> 20) & 0x7f) << 4;
11141 imm
= imm
| ((ctx
->opcode
>> 16) & 0xf) << 11;
11142 imm
= (int16_t) (imm
<< 1) >> 1;
11143 if ((ctx
->opcode
>> 4) & 0x1) {
11144 #if defined(TARGET_MIPS64)
11145 check_mips_64(ctx
);
11146 gen_arith_imm(ctx
, OPC_DADDIU
, ry
, rx
, imm
);
11148 generate_exception(ctx
, EXCP_RI
);
11151 gen_arith_imm(ctx
, OPC_ADDIU
, ry
, rx
, imm
);
11154 case M16_OPC_ADDIU8
:
11155 gen_arith_imm(ctx
, OPC_ADDIU
, rx
, rx
, imm
);
11158 gen_slt_imm(ctx
, OPC_SLTI
, 24, rx
, imm
);
11160 case M16_OPC_SLTIU
:
11161 gen_slt_imm(ctx
, OPC_SLTIU
, 24, rx
, imm
);
11166 gen_compute_branch(ctx
, OPC_BEQ
, 4, 24, 0, offset
<< 1, 0);
11169 gen_compute_branch(ctx
, OPC_BNE
, 4, 24, 0, offset
<< 1, 0);
11172 gen_st(ctx
, OPC_SW
, 31, 29, imm
);
11175 gen_arith_imm(ctx
, OPC_ADDIU
, 29, 29, imm
);
11178 check_insn(ctx
, ISA_MIPS32
);
11180 int xsregs
= (ctx
->opcode
>> 24) & 0x7;
11181 int aregs
= (ctx
->opcode
>> 16) & 0xf;
11182 int do_ra
= (ctx
->opcode
>> 6) & 0x1;
11183 int do_s0
= (ctx
->opcode
>> 5) & 0x1;
11184 int do_s1
= (ctx
->opcode
>> 4) & 0x1;
11185 int framesize
= (((ctx
->opcode
>> 20) & 0xf) << 4
11186 | (ctx
->opcode
& 0xf)) << 3;
11188 if (ctx
->opcode
& (1 << 7)) {
11189 gen_mips16_save(ctx
, xsregs
, aregs
,
11190 do_ra
, do_s0
, do_s1
,
11193 gen_mips16_restore(ctx
, xsregs
, aregs
,
11194 do_ra
, do_s0
, do_s1
,
11200 generate_exception(ctx
, EXCP_RI
);
11205 tcg_gen_movi_tl(cpu_gpr
[rx
], (uint16_t) imm
);
11208 tcg_gen_xori_tl(cpu_gpr
[24], cpu_gpr
[rx
], (uint16_t) imm
);
11210 #if defined(TARGET_MIPS64)
11212 check_insn(ctx
, ISA_MIPS3
);
11213 check_mips_64(ctx
);
11214 gen_st(ctx
, OPC_SD
, ry
, rx
, offset
);
11218 gen_ld(ctx
, OPC_LB
, ry
, rx
, offset
);
11221 gen_ld(ctx
, OPC_LH
, ry
, rx
, offset
);
11224 gen_ld(ctx
, OPC_LW
, rx
, 29, offset
);
11227 gen_ld(ctx
, OPC_LW
, ry
, rx
, offset
);
11230 gen_ld(ctx
, OPC_LBU
, ry
, rx
, offset
);
11233 gen_ld(ctx
, OPC_LHU
, ry
, rx
, offset
);
11236 gen_ld(ctx
, OPC_LWPC
, rx
, 0, offset
);
11238 #if defined(TARGET_MIPS64)
11240 check_insn(ctx
, ISA_MIPS3
);
11241 check_mips_64(ctx
);
11242 gen_ld(ctx
, OPC_LWU
, ry
, rx
, offset
);
11246 gen_st(ctx
, OPC_SB
, ry
, rx
, offset
);
11249 gen_st(ctx
, OPC_SH
, ry
, rx
, offset
);
11252 gen_st(ctx
, OPC_SW
, rx
, 29, offset
);
11255 gen_st(ctx
, OPC_SW
, ry
, rx
, offset
);
11257 #if defined(TARGET_MIPS64)
11259 decode_i64_mips16(ctx
, ry
, funct
, offset
, 1);
11263 generate_exception(ctx
, EXCP_RI
);
11270 static int decode_mips16_opc (CPUMIPSState
*env
, DisasContext
*ctx
)
11274 int op
, cnvt_op
, op1
, offset
;
11278 op
= (ctx
->opcode
>> 11) & 0x1f;
11279 sa
= (ctx
->opcode
>> 2) & 0x7;
11280 sa
= sa
== 0 ? 8 : sa
;
11281 rx
= xlat((ctx
->opcode
>> 8) & 0x7);
11282 cnvt_op
= (ctx
->opcode
>> 5) & 0x7;
11283 ry
= xlat((ctx
->opcode
>> 5) & 0x7);
11284 op1
= offset
= ctx
->opcode
& 0x1f;
11289 case M16_OPC_ADDIUSP
:
11291 int16_t imm
= ((uint8_t) ctx
->opcode
) << 2;
11293 gen_arith_imm(ctx
, OPC_ADDIU
, rx
, 29, imm
);
11296 case M16_OPC_ADDIUPC
:
11297 gen_addiupc(ctx
, rx
, ((uint8_t) ctx
->opcode
) << 2, 0, 0);
11300 offset
= (ctx
->opcode
& 0x7ff) << 1;
11301 offset
= (int16_t)(offset
<< 4) >> 4;
11302 gen_compute_branch(ctx
, OPC_BEQ
, 2, 0, 0, offset
, 0);
11303 /* No delay slot, so just process as a normal instruction */
11306 offset
= cpu_lduw_code(env
, ctx
->pc
+ 2);
11307 offset
= (((ctx
->opcode
& 0x1f) << 21)
11308 | ((ctx
->opcode
>> 5) & 0x1f) << 16
11310 op
= ((ctx
->opcode
>> 10) & 0x1) ? OPC_JALX
: OPC_JAL
;
11311 gen_compute_branch(ctx
, op
, 4, rx
, ry
, offset
, 2);
11315 gen_compute_branch(ctx
, OPC_BEQ
, 2, rx
, 0,
11316 ((int8_t)ctx
->opcode
) << 1, 0);
11317 /* No delay slot, so just process as a normal instruction */
11319 case M16_OPC_BNEQZ
:
11320 gen_compute_branch(ctx
, OPC_BNE
, 2, rx
, 0,
11321 ((int8_t)ctx
->opcode
) << 1, 0);
11322 /* No delay slot, so just process as a normal instruction */
11324 case M16_OPC_SHIFT
:
11325 switch (ctx
->opcode
& 0x3) {
11327 gen_shift_imm(ctx
, OPC_SLL
, rx
, ry
, sa
);
11330 #if defined(TARGET_MIPS64)
11331 check_insn(ctx
, ISA_MIPS3
);
11332 check_mips_64(ctx
);
11333 gen_shift_imm(ctx
, OPC_DSLL
, rx
, ry
, sa
);
11335 generate_exception(ctx
, EXCP_RI
);
11339 gen_shift_imm(ctx
, OPC_SRL
, rx
, ry
, sa
);
11342 gen_shift_imm(ctx
, OPC_SRA
, rx
, ry
, sa
);
11346 #if defined(TARGET_MIPS64)
11348 check_insn(ctx
, ISA_MIPS3
);
11349 check_mips_64(ctx
);
11350 gen_ld(ctx
, OPC_LD
, ry
, rx
, offset
<< 3);
11355 int16_t imm
= (int8_t)((ctx
->opcode
& 0xf) << 4) >> 4;
11357 if ((ctx
->opcode
>> 4) & 1) {
11358 #if defined(TARGET_MIPS64)
11359 check_insn(ctx
, ISA_MIPS3
);
11360 check_mips_64(ctx
);
11361 gen_arith_imm(ctx
, OPC_DADDIU
, ry
, rx
, imm
);
11363 generate_exception(ctx
, EXCP_RI
);
11366 gen_arith_imm(ctx
, OPC_ADDIU
, ry
, rx
, imm
);
11370 case M16_OPC_ADDIU8
:
11372 int16_t imm
= (int8_t) ctx
->opcode
;
11374 gen_arith_imm(ctx
, OPC_ADDIU
, rx
, rx
, imm
);
11379 int16_t imm
= (uint8_t) ctx
->opcode
;
11380 gen_slt_imm(ctx
, OPC_SLTI
, 24, rx
, imm
);
11383 case M16_OPC_SLTIU
:
11385 int16_t imm
= (uint8_t) ctx
->opcode
;
11386 gen_slt_imm(ctx
, OPC_SLTIU
, 24, rx
, imm
);
11393 funct
= (ctx
->opcode
>> 8) & 0x7;
11396 gen_compute_branch(ctx
, OPC_BEQ
, 2, 24, 0,
11397 ((int8_t)ctx
->opcode
) << 1, 0);
11400 gen_compute_branch(ctx
, OPC_BNE
, 2, 24, 0,
11401 ((int8_t)ctx
->opcode
) << 1, 0);
11404 gen_st(ctx
, OPC_SW
, 31, 29, (ctx
->opcode
& 0xff) << 2);
11407 gen_arith_imm(ctx
, OPC_ADDIU
, 29, 29,
11408 ((int8_t)ctx
->opcode
) << 3);
11411 check_insn(ctx
, ISA_MIPS32
);
11413 int do_ra
= ctx
->opcode
& (1 << 6);
11414 int do_s0
= ctx
->opcode
& (1 << 5);
11415 int do_s1
= ctx
->opcode
& (1 << 4);
11416 int framesize
= ctx
->opcode
& 0xf;
11418 if (framesize
== 0) {
11421 framesize
= framesize
<< 3;
11424 if (ctx
->opcode
& (1 << 7)) {
11425 gen_mips16_save(ctx
, 0, 0,
11426 do_ra
, do_s0
, do_s1
, framesize
);
11428 gen_mips16_restore(ctx
, 0, 0,
11429 do_ra
, do_s0
, do_s1
, framesize
);
11435 int rz
= xlat(ctx
->opcode
& 0x7);
11437 reg32
= (((ctx
->opcode
>> 3) & 0x3) << 3) |
11438 ((ctx
->opcode
>> 5) & 0x7);
11439 gen_arith(ctx
, OPC_ADDU
, reg32
, rz
, 0);
11443 reg32
= ctx
->opcode
& 0x1f;
11444 gen_arith(ctx
, OPC_ADDU
, ry
, reg32
, 0);
11447 generate_exception(ctx
, EXCP_RI
);
11454 int16_t imm
= (uint8_t) ctx
->opcode
;
11456 gen_arith_imm(ctx
, OPC_ADDIU
, rx
, 0, imm
);
11461 int16_t imm
= (uint8_t) ctx
->opcode
;
11462 gen_logic_imm(ctx
, OPC_XORI
, 24, rx
, imm
);
11465 #if defined(TARGET_MIPS64)
11467 check_insn(ctx
, ISA_MIPS3
);
11468 check_mips_64(ctx
);
11469 gen_st(ctx
, OPC_SD
, ry
, rx
, offset
<< 3);
11473 gen_ld(ctx
, OPC_LB
, ry
, rx
, offset
);
11476 gen_ld(ctx
, OPC_LH
, ry
, rx
, offset
<< 1);
11479 gen_ld(ctx
, OPC_LW
, rx
, 29, ((uint8_t)ctx
->opcode
) << 2);
11482 gen_ld(ctx
, OPC_LW
, ry
, rx
, offset
<< 2);
11485 gen_ld(ctx
, OPC_LBU
, ry
, rx
, offset
);
11488 gen_ld(ctx
, OPC_LHU
, ry
, rx
, offset
<< 1);
11491 gen_ld(ctx
, OPC_LWPC
, rx
, 0, ((uint8_t)ctx
->opcode
) << 2);
11493 #if defined (TARGET_MIPS64)
11495 check_insn(ctx
, ISA_MIPS3
);
11496 check_mips_64(ctx
);
11497 gen_ld(ctx
, OPC_LWU
, ry
, rx
, offset
<< 2);
11501 gen_st(ctx
, OPC_SB
, ry
, rx
, offset
);
11504 gen_st(ctx
, OPC_SH
, ry
, rx
, offset
<< 1);
11507 gen_st(ctx
, OPC_SW
, rx
, 29, ((uint8_t)ctx
->opcode
) << 2);
11510 gen_st(ctx
, OPC_SW
, ry
, rx
, offset
<< 2);
11514 int rz
= xlat((ctx
->opcode
>> 2) & 0x7);
11517 switch (ctx
->opcode
& 0x3) {
11519 mips32_op
= OPC_ADDU
;
11522 mips32_op
= OPC_SUBU
;
11524 #if defined(TARGET_MIPS64)
11526 mips32_op
= OPC_DADDU
;
11527 check_insn(ctx
, ISA_MIPS3
);
11528 check_mips_64(ctx
);
11531 mips32_op
= OPC_DSUBU
;
11532 check_insn(ctx
, ISA_MIPS3
);
11533 check_mips_64(ctx
);
11537 generate_exception(ctx
, EXCP_RI
);
11541 gen_arith(ctx
, mips32_op
, rz
, rx
, ry
);
11550 int nd
= (ctx
->opcode
>> 7) & 0x1;
11551 int link
= (ctx
->opcode
>> 6) & 0x1;
11552 int ra
= (ctx
->opcode
>> 5) & 0x1;
11555 check_insn(ctx
, ISA_MIPS32
);
11564 gen_compute_branch(ctx
, op
, 2, ra
? 31 : rx
, 31, 0,
11569 /* XXX: not clear which exception should be raised
11570 * when in debug mode...
11572 check_insn(ctx
, ISA_MIPS32
);
11573 if (!(ctx
->hflags
& MIPS_HFLAG_DM
)) {
11574 generate_exception(ctx
, EXCP_DBp
);
11576 generate_exception(ctx
, EXCP_DBp
);
11580 gen_slt(ctx
, OPC_SLT
, 24, rx
, ry
);
11583 gen_slt(ctx
, OPC_SLTU
, 24, rx
, ry
);
11586 generate_exception(ctx
, EXCP_BREAK
);
11589 gen_shift(ctx
, OPC_SLLV
, ry
, rx
, ry
);
11592 gen_shift(ctx
, OPC_SRLV
, ry
, rx
, ry
);
11595 gen_shift(ctx
, OPC_SRAV
, ry
, rx
, ry
);
11597 #if defined (TARGET_MIPS64)
11599 check_insn(ctx
, ISA_MIPS3
);
11600 check_mips_64(ctx
);
11601 gen_shift_imm(ctx
, OPC_DSRL
, ry
, ry
, sa
);
11605 gen_logic(ctx
, OPC_XOR
, 24, rx
, ry
);
11608 gen_arith(ctx
, OPC_SUBU
, rx
, 0, ry
);
11611 gen_logic(ctx
, OPC_AND
, rx
, rx
, ry
);
11614 gen_logic(ctx
, OPC_OR
, rx
, rx
, ry
);
11617 gen_logic(ctx
, OPC_XOR
, rx
, rx
, ry
);
11620 gen_logic(ctx
, OPC_NOR
, rx
, ry
, 0);
11623 gen_HILO(ctx
, OPC_MFHI
, 0, rx
);
11626 check_insn(ctx
, ISA_MIPS32
);
11628 case RR_RY_CNVT_ZEB
:
11629 tcg_gen_ext8u_tl(cpu_gpr
[rx
], cpu_gpr
[rx
]);
11631 case RR_RY_CNVT_ZEH
:
11632 tcg_gen_ext16u_tl(cpu_gpr
[rx
], cpu_gpr
[rx
]);
11634 case RR_RY_CNVT_SEB
:
11635 tcg_gen_ext8s_tl(cpu_gpr
[rx
], cpu_gpr
[rx
]);
11637 case RR_RY_CNVT_SEH
:
11638 tcg_gen_ext16s_tl(cpu_gpr
[rx
], cpu_gpr
[rx
]);
11640 #if defined (TARGET_MIPS64)
11641 case RR_RY_CNVT_ZEW
:
11642 check_insn(ctx
, ISA_MIPS64
);
11643 check_mips_64(ctx
);
11644 tcg_gen_ext32u_tl(cpu_gpr
[rx
], cpu_gpr
[rx
]);
11646 case RR_RY_CNVT_SEW
:
11647 check_insn(ctx
, ISA_MIPS64
);
11648 check_mips_64(ctx
);
11649 tcg_gen_ext32s_tl(cpu_gpr
[rx
], cpu_gpr
[rx
]);
11653 generate_exception(ctx
, EXCP_RI
);
11658 gen_HILO(ctx
, OPC_MFLO
, 0, rx
);
11660 #if defined (TARGET_MIPS64)
11662 check_insn(ctx
, ISA_MIPS3
);
11663 check_mips_64(ctx
);
11664 gen_shift_imm(ctx
, OPC_DSRA
, ry
, ry
, sa
);
11667 check_insn(ctx
, ISA_MIPS3
);
11668 check_mips_64(ctx
);
11669 gen_shift(ctx
, OPC_DSLLV
, ry
, rx
, ry
);
11672 check_insn(ctx
, ISA_MIPS3
);
11673 check_mips_64(ctx
);
11674 gen_shift(ctx
, OPC_DSRLV
, ry
, rx
, ry
);
11677 check_insn(ctx
, ISA_MIPS3
);
11678 check_mips_64(ctx
);
11679 gen_shift(ctx
, OPC_DSRAV
, ry
, rx
, ry
);
11683 gen_muldiv(ctx
, OPC_MULT
, 0, rx
, ry
);
11686 gen_muldiv(ctx
, OPC_MULTU
, 0, rx
, ry
);
11689 gen_muldiv(ctx
, OPC_DIV
, 0, rx
, ry
);
11692 gen_muldiv(ctx
, OPC_DIVU
, 0, rx
, ry
);
11694 #if defined (TARGET_MIPS64)
11696 check_insn(ctx
, ISA_MIPS3
);
11697 check_mips_64(ctx
);
11698 gen_muldiv(ctx
, OPC_DMULT
, 0, rx
, ry
);
11701 check_insn(ctx
, ISA_MIPS3
);
11702 check_mips_64(ctx
);
11703 gen_muldiv(ctx
, OPC_DMULTU
, 0, rx
, ry
);
11706 check_insn(ctx
, ISA_MIPS3
);
11707 check_mips_64(ctx
);
11708 gen_muldiv(ctx
, OPC_DDIV
, 0, rx
, ry
);
11711 check_insn(ctx
, ISA_MIPS3
);
11712 check_mips_64(ctx
);
11713 gen_muldiv(ctx
, OPC_DDIVU
, 0, rx
, ry
);
11717 generate_exception(ctx
, EXCP_RI
);
11721 case M16_OPC_EXTEND
:
11722 decode_extended_mips16_opc(env
, ctx
);
11725 #if defined(TARGET_MIPS64)
11727 funct
= (ctx
->opcode
>> 8) & 0x7;
11728 decode_i64_mips16(ctx
, ry
, funct
, offset
, 0);
11732 generate_exception(ctx
, EXCP_RI
);
11739 /* microMIPS extension to MIPS32/MIPS64 */
11742 * microMIPS32/microMIPS64 major opcodes
11744 * 1. MIPS Architecture for Programmers Volume II-B:
11745 * The microMIPS32 Instruction Set (Revision 3.05)
11747 * Table 6.2 microMIPS32 Encoding of Major Opcode Field
11749 * 2. MIPS Architecture For Programmers Volume II-A:
11750 * The MIPS64 Instruction Set (Revision 3.51)
11778 POOL32S
= 0x16, /* MIPS64 */
11779 DADDIU32
= 0x17, /* MIPS64 */
11781 /* 0x1f is reserved */
11790 /* 0x20 is reserved */
11800 /* 0x28 and 0x29 are reserved */
11810 /* 0x30 and 0x31 are reserved */
11817 SD32
= 0x36, /* MIPS64 */
11818 LD32
= 0x37, /* MIPS64 */
11820 /* 0x38 and 0x39 are reserved */
11831 /* POOL32A encoding of minor opcode field */
11834 /* These opcodes are distinguished only by bits 9..6; those bits are
11835 * what are recorded below. */
11861 /* The following can be distinguished by their lower 6 bits. */
11867 /* POOL32AXF encoding of minor opcode field extension */
11870 * 1. MIPS Architecture for Programmers Volume II-B:
11871 * The microMIPS32 Instruction Set (Revision 3.05)
11873 * Table 6.5 POOL32Axf Encoding of Minor Opcode Extension Field
11875 * 2. MIPS Architecture for Programmers VolumeIV-e:
11876 * The MIPS DSP Application-Specific Extension
11877 * to the microMIPS32 Architecture (Revision 2.34)
11879 * Table 5.5 POOL32Axf Encoding of Minor Opcode Extension Field
11894 /* begin of microMIPS32 DSP */
11896 /* bits 13..12 for 0x01 */
11902 /* bits 13..12 for 0x2a */
11908 /* bits 13..12 for 0x32 */
11912 /* end of microMIPS32 DSP */
11914 /* bits 15..12 for 0x2c */
11930 /* bits 15..12 for 0x34 */
11938 /* bits 15..12 for 0x3c */
11940 JR
= 0x0, /* alias */
11945 /* bits 15..12 for 0x05 */
11949 /* bits 15..12 for 0x0d */
11959 /* bits 15..12 for 0x15 */
11965 /* bits 15..12 for 0x1d */
11969 /* bits 15..12 for 0x2d */
11974 /* bits 15..12 for 0x35 */
11981 /* POOL32B encoding of minor opcode field (bits 15..12) */
11997 /* POOL32C encoding of minor opcode field (bits 15..12) */
12005 /* 0xa is reserved */
12012 /* 0x6 is reserved */
12018 /* POOL32F encoding of minor opcode field (bits 5..0) */
12021 /* These are the bit 7..6 values */
12032 /* These are the bit 8..6 values */
12076 CABS_COND_FMT
= 0x1c, /* MIPS3D */
12080 /* POOL32Fxf encoding of minor opcode extension field */
12118 /* POOL32I encoding of minor opcode field (bits 25..21) */
12143 /* These overlap and are distinguished by bit16 of the instruction */
12152 /* POOL16A encoding of minor opcode field */
12159 /* POOL16B encoding of minor opcode field */
12166 /* POOL16C encoding of minor opcode field */
12186 /* POOL16D encoding of minor opcode field */
12193 /* POOL16E encoding of minor opcode field */
12200 static int mmreg (int r
)
12202 static const int map
[] = { 16, 17, 2, 3, 4, 5, 6, 7 };
12207 /* Used for 16-bit store instructions. */
12208 static int mmreg2 (int r
)
12210 static const int map
[] = { 0, 17, 2, 3, 4, 5, 6, 7 };
12215 #define uMIPS_RD(op) ((op >> 7) & 0x7)
12216 #define uMIPS_RS(op) ((op >> 4) & 0x7)
12217 #define uMIPS_RS2(op) uMIPS_RS(op)
12218 #define uMIPS_RS1(op) ((op >> 1) & 0x7)
12219 #define uMIPS_RD5(op) ((op >> 5) & 0x1f)
12220 #define uMIPS_RS5(op) (op & 0x1f)
12222 /* Signed immediate */
12223 #define SIMM(op, start, width) \
12224 ((int32_t)(((op >> start) & ((~0U) >> (32-width))) \
12227 /* Zero-extended immediate */
12228 #define ZIMM(op, start, width) ((op >> start) & ((~0U) >> (32-width)))
12230 static void gen_addiur1sp(DisasContext
*ctx
)
12232 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
12234 gen_arith_imm(ctx
, OPC_ADDIU
, rd
, 29, ((ctx
->opcode
>> 1) & 0x3f) << 2);
12237 static void gen_addiur2(DisasContext
*ctx
)
12239 static const int decoded_imm
[] = { 1, 4, 8, 12, 16, 20, 24, -1 };
12240 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
12241 int rs
= mmreg(uMIPS_RS(ctx
->opcode
));
12243 gen_arith_imm(ctx
, OPC_ADDIU
, rd
, rs
, decoded_imm
[ZIMM(ctx
->opcode
, 1, 3)]);
12246 static void gen_addiusp(DisasContext
*ctx
)
12248 int encoded
= ZIMM(ctx
->opcode
, 1, 9);
12251 if (encoded
<= 1) {
12252 decoded
= 256 + encoded
;
12253 } else if (encoded
<= 255) {
12255 } else if (encoded
<= 509) {
12256 decoded
= encoded
- 512;
12258 decoded
= encoded
- 768;
12261 gen_arith_imm(ctx
, OPC_ADDIU
, 29, 29, decoded
<< 2);
12264 static void gen_addius5(DisasContext
*ctx
)
12266 int imm
= SIMM(ctx
->opcode
, 1, 4);
12267 int rd
= (ctx
->opcode
>> 5) & 0x1f;
12269 gen_arith_imm(ctx
, OPC_ADDIU
, rd
, rd
, imm
);
12272 static void gen_andi16(DisasContext
*ctx
)
12274 static const int decoded_imm
[] = { 128, 1, 2, 3, 4, 7, 8, 15, 16,
12275 31, 32, 63, 64, 255, 32768, 65535 };
12276 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
12277 int rs
= mmreg(uMIPS_RS(ctx
->opcode
));
12278 int encoded
= ZIMM(ctx
->opcode
, 0, 4);
12280 gen_logic_imm(ctx
, OPC_ANDI
, rd
, rs
, decoded_imm
[encoded
]);
12283 static void gen_ldst_multiple (DisasContext
*ctx
, uint32_t opc
, int reglist
,
12284 int base
, int16_t offset
)
12286 const char *opn
= "ldst_multiple";
12290 if (ctx
->hflags
& MIPS_HFLAG_BMASK
) {
12291 generate_exception(ctx
, EXCP_RI
);
12295 t0
= tcg_temp_new();
12297 gen_base_offset_addr(ctx
, t0
, base
, offset
);
12299 t1
= tcg_const_tl(reglist
);
12300 t2
= tcg_const_i32(ctx
->mem_idx
);
12302 save_cpu_state(ctx
, 1);
12305 gen_helper_lwm(cpu_env
, t0
, t1
, t2
);
12309 gen_helper_swm(cpu_env
, t0
, t1
, t2
);
12312 #ifdef TARGET_MIPS64
12314 gen_helper_ldm(cpu_env
, t0
, t1
, t2
);
12318 gen_helper_sdm(cpu_env
, t0
, t1
, t2
);
12324 MIPS_DEBUG("%s, %x, %d(%s)", opn
, reglist
, offset
, regnames
[base
]);
12327 tcg_temp_free_i32(t2
);
12331 static void gen_pool16c_insn(DisasContext
*ctx
)
12333 int rd
= mmreg((ctx
->opcode
>> 3) & 0x7);
12334 int rs
= mmreg(ctx
->opcode
& 0x7);
12336 switch (((ctx
->opcode
) >> 4) & 0x3f) {
12341 gen_logic(ctx
, OPC_NOR
, rd
, rs
, 0);
12347 gen_logic(ctx
, OPC_XOR
, rd
, rd
, rs
);
12353 gen_logic(ctx
, OPC_AND
, rd
, rd
, rs
);
12359 gen_logic(ctx
, OPC_OR
, rd
, rd
, rs
);
12366 static const int lwm_convert
[] = { 0x11, 0x12, 0x13, 0x14 };
12367 int offset
= ZIMM(ctx
->opcode
, 0, 4);
12369 gen_ldst_multiple(ctx
, LWM32
, lwm_convert
[(ctx
->opcode
>> 4) & 0x3],
12378 static const int swm_convert
[] = { 0x11, 0x12, 0x13, 0x14 };
12379 int offset
= ZIMM(ctx
->opcode
, 0, 4);
12381 gen_ldst_multiple(ctx
, SWM32
, swm_convert
[(ctx
->opcode
>> 4) & 0x3],
12388 int reg
= ctx
->opcode
& 0x1f;
12390 gen_compute_branch(ctx
, OPC_JR
, 2, reg
, 0, 0, 4);
12396 int reg
= ctx
->opcode
& 0x1f;
12397 gen_compute_branch(ctx
, OPC_JR
, 2, reg
, 0, 0, 0);
12398 /* Let normal delay slot handling in our caller take us
12399 to the branch target. */
12404 gen_compute_branch(ctx
, OPC_JALR
, 2, ctx
->opcode
& 0x1f, 31, 0, 4);
12405 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
12409 gen_compute_branch(ctx
, OPC_JALR
, 2, ctx
->opcode
& 0x1f, 31, 0, 2);
12410 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
12414 gen_HILO(ctx
, OPC_MFHI
, 0, uMIPS_RS5(ctx
->opcode
));
12418 gen_HILO(ctx
, OPC_MFLO
, 0, uMIPS_RS5(ctx
->opcode
));
12421 generate_exception(ctx
, EXCP_BREAK
);
12424 /* XXX: not clear which exception should be raised
12425 * when in debug mode...
12427 check_insn(ctx
, ISA_MIPS32
);
12428 if (!(ctx
->hflags
& MIPS_HFLAG_DM
)) {
12429 generate_exception(ctx
, EXCP_DBp
);
12431 generate_exception(ctx
, EXCP_DBp
);
12434 case JRADDIUSP
+ 0:
12435 case JRADDIUSP
+ 1:
12437 int imm
= ZIMM(ctx
->opcode
, 0, 5);
12438 gen_compute_branch(ctx
, OPC_JR
, 2, 31, 0, 0, 0);
12439 gen_arith_imm(ctx
, OPC_ADDIU
, 29, 29, imm
<< 2);
12440 /* Let normal delay slot handling in our caller take us
12441 to the branch target. */
12445 generate_exception(ctx
, EXCP_RI
);
12450 static void gen_ldxs (DisasContext
*ctx
, int base
, int index
, int rd
)
12452 TCGv t0
= tcg_temp_new();
12453 TCGv t1
= tcg_temp_new();
12455 gen_load_gpr(t0
, base
);
12458 gen_load_gpr(t1
, index
);
12459 tcg_gen_shli_tl(t1
, t1
, 2);
12460 gen_op_addr_add(ctx
, t0
, t1
, t0
);
12463 tcg_gen_qemu_ld_tl(t1
, t0
, ctx
->mem_idx
, MO_TESL
);
12464 gen_store_gpr(t1
, rd
);
12470 static void gen_ldst_pair (DisasContext
*ctx
, uint32_t opc
, int rd
,
12471 int base
, int16_t offset
)
12473 const char *opn
= "ldst_pair";
12476 if (ctx
->hflags
& MIPS_HFLAG_BMASK
|| rd
== 31) {
12477 generate_exception(ctx
, EXCP_RI
);
12481 t0
= tcg_temp_new();
12482 t1
= tcg_temp_new();
12484 gen_base_offset_addr(ctx
, t0
, base
, offset
);
12489 generate_exception(ctx
, EXCP_RI
);
12492 tcg_gen_qemu_ld_tl(t1
, t0
, ctx
->mem_idx
, MO_TESL
);
12493 gen_store_gpr(t1
, rd
);
12494 tcg_gen_movi_tl(t1
, 4);
12495 gen_op_addr_add(ctx
, t0
, t0
, t1
);
12496 tcg_gen_qemu_ld_tl(t1
, t0
, ctx
->mem_idx
, MO_TESL
);
12497 gen_store_gpr(t1
, rd
+1);
12501 gen_load_gpr(t1
, rd
);
12502 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUL
);
12503 tcg_gen_movi_tl(t1
, 4);
12504 gen_op_addr_add(ctx
, t0
, t0
, t1
);
12505 gen_load_gpr(t1
, rd
+1);
12506 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEUL
);
12509 #ifdef TARGET_MIPS64
12512 generate_exception(ctx
, EXCP_RI
);
12515 tcg_gen_qemu_ld_tl(t1
, t0
, ctx
->mem_idx
, MO_TEQ
);
12516 gen_store_gpr(t1
, rd
);
12517 tcg_gen_movi_tl(t1
, 8);
12518 gen_op_addr_add(ctx
, t0
, t0
, t1
);
12519 tcg_gen_qemu_ld_tl(t1
, t0
, ctx
->mem_idx
, MO_TEQ
);
12520 gen_store_gpr(t1
, rd
+1);
12524 gen_load_gpr(t1
, rd
);
12525 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEQ
);
12526 tcg_gen_movi_tl(t1
, 8);
12527 gen_op_addr_add(ctx
, t0
, t0
, t1
);
12528 gen_load_gpr(t1
, rd
+1);
12529 tcg_gen_qemu_st_tl(t1
, t0
, ctx
->mem_idx
, MO_TEQ
);
12534 (void)opn
; /* avoid a compiler warning */
12535 MIPS_DEBUG("%s, %s, %d(%s)", opn
, regnames
[rd
], offset
, regnames
[base
]);
12540 static void gen_pool32axf (CPUMIPSState
*env
, DisasContext
*ctx
, int rt
, int rs
)
12542 int extension
= (ctx
->opcode
>> 6) & 0x3f;
12543 int minor
= (ctx
->opcode
>> 12) & 0xf;
12544 uint32_t mips32_op
;
12546 switch (extension
) {
12548 mips32_op
= OPC_TEQ
;
12551 mips32_op
= OPC_TGE
;
12554 mips32_op
= OPC_TGEU
;
12557 mips32_op
= OPC_TLT
;
12560 mips32_op
= OPC_TLTU
;
12563 mips32_op
= OPC_TNE
;
12565 gen_trap(ctx
, mips32_op
, rs
, rt
, -1);
12567 #ifndef CONFIG_USER_ONLY
12570 check_cp0_enabled(ctx
);
12572 /* Treat as NOP. */
12575 gen_mfc0(ctx
, cpu_gpr
[rt
], rs
, (ctx
->opcode
>> 11) & 0x7);
12579 check_cp0_enabled(ctx
);
12581 TCGv t0
= tcg_temp_new();
12583 gen_load_gpr(t0
, rt
);
12584 gen_mtc0(ctx
, t0
, rs
, (ctx
->opcode
>> 11) & 0x7);
12590 switch (minor
& 3) {
12592 gen_muldiv(ctx
, OPC_MADD
, (ctx
->opcode
>> 14) & 3, rs
, rt
);
12595 gen_muldiv(ctx
, OPC_MADDU
, (ctx
->opcode
>> 14) & 3, rs
, rt
);
12598 gen_muldiv(ctx
, OPC_MSUB
, (ctx
->opcode
>> 14) & 3, rs
, rt
);
12601 gen_muldiv(ctx
, OPC_MSUBU
, (ctx
->opcode
>> 14) & 3, rs
, rt
);
12604 goto pool32axf_invalid
;
12608 switch (minor
& 3) {
12610 gen_muldiv(ctx
, OPC_MULT
, (ctx
->opcode
>> 14) & 3, rs
, rt
);
12613 gen_muldiv(ctx
, OPC_MULTU
, (ctx
->opcode
>> 14) & 3, rs
, rt
);
12616 goto pool32axf_invalid
;
12622 gen_bshfl(ctx
, OPC_SEB
, rs
, rt
);
12625 gen_bshfl(ctx
, OPC_SEH
, rs
, rt
);
12628 mips32_op
= OPC_CLO
;
12631 mips32_op
= OPC_CLZ
;
12633 check_insn(ctx
, ISA_MIPS32
);
12634 gen_cl(ctx
, mips32_op
, rt
, rs
);
12637 gen_rdhwr(ctx
, rt
, rs
);
12640 gen_bshfl(ctx
, OPC_WSBH
, rs
, rt
);
12643 mips32_op
= OPC_MULT
;
12646 mips32_op
= OPC_MULTU
;
12649 mips32_op
= OPC_DIV
;
12652 mips32_op
= OPC_DIVU
;
12655 check_insn(ctx
, ISA_MIPS32
);
12656 gen_muldiv(ctx
, mips32_op
, 0, rs
, rt
);
12659 mips32_op
= OPC_MADD
;
12662 mips32_op
= OPC_MADDU
;
12665 mips32_op
= OPC_MSUB
;
12668 mips32_op
= OPC_MSUBU
;
12670 check_insn(ctx
, ISA_MIPS32
);
12671 gen_muldiv(ctx
, mips32_op
, 0, rs
, rt
);
12674 goto pool32axf_invalid
;
12685 generate_exception_err(ctx
, EXCP_CpU
, 2);
12688 goto pool32axf_invalid
;
12695 gen_compute_branch(ctx
, OPC_JALR
, 4, rs
, rt
, 0, 4);
12696 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
12700 gen_compute_branch(ctx
, OPC_JALR
, 4, rs
, rt
, 0, 2);
12701 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
12704 goto pool32axf_invalid
;
12710 check_cp0_enabled(ctx
);
12711 check_insn(ctx
, ISA_MIPS32R2
);
12712 gen_load_srsgpr(rt
, rs
);
12715 check_cp0_enabled(ctx
);
12716 check_insn(ctx
, ISA_MIPS32R2
);
12717 gen_store_srsgpr(rt
, rs
);
12720 goto pool32axf_invalid
;
12723 #ifndef CONFIG_USER_ONLY
12727 mips32_op
= OPC_TLBP
;
12730 mips32_op
= OPC_TLBR
;
12733 mips32_op
= OPC_TLBWI
;
12736 mips32_op
= OPC_TLBWR
;
12739 mips32_op
= OPC_WAIT
;
12742 mips32_op
= OPC_DERET
;
12745 mips32_op
= OPC_ERET
;
12747 gen_cp0(env
, ctx
, mips32_op
, rt
, rs
);
12750 goto pool32axf_invalid
;
12756 check_cp0_enabled(ctx
);
12758 TCGv t0
= tcg_temp_new();
12760 save_cpu_state(ctx
, 1);
12761 gen_helper_di(t0
, cpu_env
);
12762 gen_store_gpr(t0
, rs
);
12763 /* Stop translation as we may have switched the execution mode */
12764 ctx
->bstate
= BS_STOP
;
12769 check_cp0_enabled(ctx
);
12771 TCGv t0
= tcg_temp_new();
12773 save_cpu_state(ctx
, 1);
12774 gen_helper_ei(t0
, cpu_env
);
12775 gen_store_gpr(t0
, rs
);
12776 /* Stop translation as we may have switched the execution mode */
12777 ctx
->bstate
= BS_STOP
;
12782 goto pool32axf_invalid
;
12792 generate_exception(ctx
, EXCP_SYSCALL
);
12793 ctx
->bstate
= BS_STOP
;
12796 check_insn(ctx
, ISA_MIPS32
);
12797 if (!(ctx
->hflags
& MIPS_HFLAG_DM
)) {
12798 generate_exception(ctx
, EXCP_DBp
);
12800 generate_exception(ctx
, EXCP_DBp
);
12804 goto pool32axf_invalid
;
12808 switch (minor
& 3) {
12810 gen_HILO(ctx
, OPC_MFHI
, minor
>> 2, rs
);
12813 gen_HILO(ctx
, OPC_MFLO
, minor
>> 2, rs
);
12816 gen_HILO(ctx
, OPC_MTHI
, minor
>> 2, rs
);
12819 gen_HILO(ctx
, OPC_MTLO
, minor
>> 2, rs
);
12822 goto pool32axf_invalid
;
12828 gen_HILO(ctx
, OPC_MFHI
, 0, rs
);
12831 gen_HILO(ctx
, OPC_MFLO
, 0, rs
);
12834 gen_HILO(ctx
, OPC_MTHI
, 0, rs
);
12837 gen_HILO(ctx
, OPC_MTLO
, 0, rs
);
12840 goto pool32axf_invalid
;
12845 MIPS_INVAL("pool32axf");
12846 generate_exception(ctx
, EXCP_RI
);
12851 /* Values for microMIPS fmt field. Variable-width, depending on which
12852 formats the instruction supports. */
12871 static void gen_pool32fxf(DisasContext
*ctx
, int rt
, int rs
)
12873 int extension
= (ctx
->opcode
>> 6) & 0x3ff;
12874 uint32_t mips32_op
;
12876 #define FLOAT_1BIT_FMT(opc, fmt) (fmt << 8) | opc
12877 #define FLOAT_2BIT_FMT(opc, fmt) (fmt << 7) | opc
12878 #define COND_FLOAT_MOV(opc, cond) (cond << 7) | opc
12880 switch (extension
) {
12881 case FLOAT_1BIT_FMT(CFC1
, 0):
12882 mips32_op
= OPC_CFC1
;
12884 case FLOAT_1BIT_FMT(CTC1
, 0):
12885 mips32_op
= OPC_CTC1
;
12887 case FLOAT_1BIT_FMT(MFC1
, 0):
12888 mips32_op
= OPC_MFC1
;
12890 case FLOAT_1BIT_FMT(MTC1
, 0):
12891 mips32_op
= OPC_MTC1
;
12893 case FLOAT_1BIT_FMT(MFHC1
, 0):
12894 mips32_op
= OPC_MFHC1
;
12896 case FLOAT_1BIT_FMT(MTHC1
, 0):
12897 mips32_op
= OPC_MTHC1
;
12899 gen_cp1(ctx
, mips32_op
, rt
, rs
);
12902 /* Reciprocal square root */
12903 case FLOAT_1BIT_FMT(RSQRT_FMT
, FMT_SD_S
):
12904 mips32_op
= OPC_RSQRT_S
;
12906 case FLOAT_1BIT_FMT(RSQRT_FMT
, FMT_SD_D
):
12907 mips32_op
= OPC_RSQRT_D
;
12911 case FLOAT_1BIT_FMT(SQRT_FMT
, FMT_SD_S
):
12912 mips32_op
= OPC_SQRT_S
;
12914 case FLOAT_1BIT_FMT(SQRT_FMT
, FMT_SD_D
):
12915 mips32_op
= OPC_SQRT_D
;
12919 case FLOAT_1BIT_FMT(RECIP_FMT
, FMT_SD_S
):
12920 mips32_op
= OPC_RECIP_S
;
12922 case FLOAT_1BIT_FMT(RECIP_FMT
, FMT_SD_D
):
12923 mips32_op
= OPC_RECIP_D
;
12927 case FLOAT_1BIT_FMT(FLOOR_L
, FMT_SD_S
):
12928 mips32_op
= OPC_FLOOR_L_S
;
12930 case FLOAT_1BIT_FMT(FLOOR_L
, FMT_SD_D
):
12931 mips32_op
= OPC_FLOOR_L_D
;
12933 case FLOAT_1BIT_FMT(FLOOR_W
, FMT_SD_S
):
12934 mips32_op
= OPC_FLOOR_W_S
;
12936 case FLOAT_1BIT_FMT(FLOOR_W
, FMT_SD_D
):
12937 mips32_op
= OPC_FLOOR_W_D
;
12941 case FLOAT_1BIT_FMT(CEIL_L
, FMT_SD_S
):
12942 mips32_op
= OPC_CEIL_L_S
;
12944 case FLOAT_1BIT_FMT(CEIL_L
, FMT_SD_D
):
12945 mips32_op
= OPC_CEIL_L_D
;
12947 case FLOAT_1BIT_FMT(CEIL_W
, FMT_SD_S
):
12948 mips32_op
= OPC_CEIL_W_S
;
12950 case FLOAT_1BIT_FMT(CEIL_W
, FMT_SD_D
):
12951 mips32_op
= OPC_CEIL_W_D
;
12955 case FLOAT_1BIT_FMT(TRUNC_L
, FMT_SD_S
):
12956 mips32_op
= OPC_TRUNC_L_S
;
12958 case FLOAT_1BIT_FMT(TRUNC_L
, FMT_SD_D
):
12959 mips32_op
= OPC_TRUNC_L_D
;
12961 case FLOAT_1BIT_FMT(TRUNC_W
, FMT_SD_S
):
12962 mips32_op
= OPC_TRUNC_W_S
;
12964 case FLOAT_1BIT_FMT(TRUNC_W
, FMT_SD_D
):
12965 mips32_op
= OPC_TRUNC_W_D
;
12969 case FLOAT_1BIT_FMT(ROUND_L
, FMT_SD_S
):
12970 mips32_op
= OPC_ROUND_L_S
;
12972 case FLOAT_1BIT_FMT(ROUND_L
, FMT_SD_D
):
12973 mips32_op
= OPC_ROUND_L_D
;
12975 case FLOAT_1BIT_FMT(ROUND_W
, FMT_SD_S
):
12976 mips32_op
= OPC_ROUND_W_S
;
12978 case FLOAT_1BIT_FMT(ROUND_W
, FMT_SD_D
):
12979 mips32_op
= OPC_ROUND_W_D
;
12982 /* Integer to floating-point conversion */
12983 case FLOAT_1BIT_FMT(CVT_L
, FMT_SD_S
):
12984 mips32_op
= OPC_CVT_L_S
;
12986 case FLOAT_1BIT_FMT(CVT_L
, FMT_SD_D
):
12987 mips32_op
= OPC_CVT_L_D
;
12989 case FLOAT_1BIT_FMT(CVT_W
, FMT_SD_S
):
12990 mips32_op
= OPC_CVT_W_S
;
12992 case FLOAT_1BIT_FMT(CVT_W
, FMT_SD_D
):
12993 mips32_op
= OPC_CVT_W_D
;
12996 /* Paired-foo conversions */
12997 case FLOAT_1BIT_FMT(CVT_S_PL
, 0):
12998 mips32_op
= OPC_CVT_S_PL
;
13000 case FLOAT_1BIT_FMT(CVT_S_PU
, 0):
13001 mips32_op
= OPC_CVT_S_PU
;
13003 case FLOAT_1BIT_FMT(CVT_PW_PS
, 0):
13004 mips32_op
= OPC_CVT_PW_PS
;
13006 case FLOAT_1BIT_FMT(CVT_PS_PW
, 0):
13007 mips32_op
= OPC_CVT_PS_PW
;
13010 /* Floating-point moves */
13011 case FLOAT_2BIT_FMT(MOV_FMT
, FMT_SDPS_S
):
13012 mips32_op
= OPC_MOV_S
;
13014 case FLOAT_2BIT_FMT(MOV_FMT
, FMT_SDPS_D
):
13015 mips32_op
= OPC_MOV_D
;
13017 case FLOAT_2BIT_FMT(MOV_FMT
, FMT_SDPS_PS
):
13018 mips32_op
= OPC_MOV_PS
;
13021 /* Absolute value */
13022 case FLOAT_2BIT_FMT(ABS_FMT
, FMT_SDPS_S
):
13023 mips32_op
= OPC_ABS_S
;
13025 case FLOAT_2BIT_FMT(ABS_FMT
, FMT_SDPS_D
):
13026 mips32_op
= OPC_ABS_D
;
13028 case FLOAT_2BIT_FMT(ABS_FMT
, FMT_SDPS_PS
):
13029 mips32_op
= OPC_ABS_PS
;
13033 case FLOAT_2BIT_FMT(NEG_FMT
, FMT_SDPS_S
):
13034 mips32_op
= OPC_NEG_S
;
13036 case FLOAT_2BIT_FMT(NEG_FMT
, FMT_SDPS_D
):
13037 mips32_op
= OPC_NEG_D
;
13039 case FLOAT_2BIT_FMT(NEG_FMT
, FMT_SDPS_PS
):
13040 mips32_op
= OPC_NEG_PS
;
13043 /* Reciprocal square root step */
13044 case FLOAT_2BIT_FMT(RSQRT1_FMT
, FMT_SDPS_S
):
13045 mips32_op
= OPC_RSQRT1_S
;
13047 case FLOAT_2BIT_FMT(RSQRT1_FMT
, FMT_SDPS_D
):
13048 mips32_op
= OPC_RSQRT1_D
;
13050 case FLOAT_2BIT_FMT(RSQRT1_FMT
, FMT_SDPS_PS
):
13051 mips32_op
= OPC_RSQRT1_PS
;
13054 /* Reciprocal step */
13055 case FLOAT_2BIT_FMT(RECIP1_FMT
, FMT_SDPS_S
):
13056 mips32_op
= OPC_RECIP1_S
;
13058 case FLOAT_2BIT_FMT(RECIP1_FMT
, FMT_SDPS_D
):
13059 mips32_op
= OPC_RECIP1_S
;
13061 case FLOAT_2BIT_FMT(RECIP1_FMT
, FMT_SDPS_PS
):
13062 mips32_op
= OPC_RECIP1_PS
;
13065 /* Conversions from double */
13066 case FLOAT_2BIT_FMT(CVT_D
, FMT_SWL_S
):
13067 mips32_op
= OPC_CVT_D_S
;
13069 case FLOAT_2BIT_FMT(CVT_D
, FMT_SWL_W
):
13070 mips32_op
= OPC_CVT_D_W
;
13072 case FLOAT_2BIT_FMT(CVT_D
, FMT_SWL_L
):
13073 mips32_op
= OPC_CVT_D_L
;
13076 /* Conversions from single */
13077 case FLOAT_2BIT_FMT(CVT_S
, FMT_DWL_D
):
13078 mips32_op
= OPC_CVT_S_D
;
13080 case FLOAT_2BIT_FMT(CVT_S
, FMT_DWL_W
):
13081 mips32_op
= OPC_CVT_S_W
;
13083 case FLOAT_2BIT_FMT(CVT_S
, FMT_DWL_L
):
13084 mips32_op
= OPC_CVT_S_L
;
13086 gen_farith(ctx
, mips32_op
, -1, rs
, rt
, 0);
13089 /* Conditional moves on floating-point codes */
13090 case COND_FLOAT_MOV(MOVT
, 0):
13091 case COND_FLOAT_MOV(MOVT
, 1):
13092 case COND_FLOAT_MOV(MOVT
, 2):
13093 case COND_FLOAT_MOV(MOVT
, 3):
13094 case COND_FLOAT_MOV(MOVT
, 4):
13095 case COND_FLOAT_MOV(MOVT
, 5):
13096 case COND_FLOAT_MOV(MOVT
, 6):
13097 case COND_FLOAT_MOV(MOVT
, 7):
13098 gen_movci(ctx
, rt
, rs
, (ctx
->opcode
>> 13) & 0x7, 1);
13100 case COND_FLOAT_MOV(MOVF
, 0):
13101 case COND_FLOAT_MOV(MOVF
, 1):
13102 case COND_FLOAT_MOV(MOVF
, 2):
13103 case COND_FLOAT_MOV(MOVF
, 3):
13104 case COND_FLOAT_MOV(MOVF
, 4):
13105 case COND_FLOAT_MOV(MOVF
, 5):
13106 case COND_FLOAT_MOV(MOVF
, 6):
13107 case COND_FLOAT_MOV(MOVF
, 7):
13108 gen_movci(ctx
, rt
, rs
, (ctx
->opcode
>> 13) & 0x7, 0);
13111 MIPS_INVAL("pool32fxf");
13112 generate_exception(ctx
, EXCP_RI
);
13117 static void decode_micromips32_opc (CPUMIPSState
*env
, DisasContext
*ctx
,
13122 int rt
, rs
, rd
, rr
;
13124 uint32_t op
, minor
, mips32_op
;
13125 uint32_t cond
, fmt
, cc
;
13127 insn
= cpu_lduw_code(env
, ctx
->pc
+ 2);
13128 ctx
->opcode
= (ctx
->opcode
<< 16) | insn
;
13130 rt
= (ctx
->opcode
>> 21) & 0x1f;
13131 rs
= (ctx
->opcode
>> 16) & 0x1f;
13132 rd
= (ctx
->opcode
>> 11) & 0x1f;
13133 rr
= (ctx
->opcode
>> 6) & 0x1f;
13134 imm
= (int16_t) ctx
->opcode
;
13136 op
= (ctx
->opcode
>> 26) & 0x3f;
13139 minor
= ctx
->opcode
& 0x3f;
13142 minor
= (ctx
->opcode
>> 6) & 0xf;
13145 mips32_op
= OPC_SLL
;
13148 mips32_op
= OPC_SRA
;
13151 mips32_op
= OPC_SRL
;
13154 mips32_op
= OPC_ROTR
;
13156 gen_shift_imm(ctx
, mips32_op
, rt
, rs
, rd
);
13159 goto pool32a_invalid
;
13163 minor
= (ctx
->opcode
>> 6) & 0xf;
13167 mips32_op
= OPC_ADD
;
13170 mips32_op
= OPC_ADDU
;
13173 mips32_op
= OPC_SUB
;
13176 mips32_op
= OPC_SUBU
;
13179 mips32_op
= OPC_MUL
;
13181 gen_arith(ctx
, mips32_op
, rd
, rs
, rt
);
13185 mips32_op
= OPC_SLLV
;
13188 mips32_op
= OPC_SRLV
;
13191 mips32_op
= OPC_SRAV
;
13194 mips32_op
= OPC_ROTRV
;
13196 gen_shift(ctx
, mips32_op
, rd
, rs
, rt
);
13198 /* Logical operations */
13200 mips32_op
= OPC_AND
;
13203 mips32_op
= OPC_OR
;
13206 mips32_op
= OPC_NOR
;
13209 mips32_op
= OPC_XOR
;
13211 gen_logic(ctx
, mips32_op
, rd
, rs
, rt
);
13213 /* Set less than */
13215 mips32_op
= OPC_SLT
;
13218 mips32_op
= OPC_SLTU
;
13220 gen_slt(ctx
, mips32_op
, rd
, rs
, rt
);
13223 goto pool32a_invalid
;
13227 minor
= (ctx
->opcode
>> 6) & 0xf;
13229 /* Conditional moves */
13231 mips32_op
= OPC_MOVN
;
13234 mips32_op
= OPC_MOVZ
;
13236 gen_cond_move(ctx
, mips32_op
, rd
, rs
, rt
);
13239 gen_ldxs(ctx
, rs
, rt
, rd
);
13242 goto pool32a_invalid
;
13246 gen_bitops(ctx
, OPC_INS
, rt
, rs
, rr
, rd
);
13249 gen_bitops(ctx
, OPC_EXT
, rt
, rs
, rr
, rd
);
13252 gen_pool32axf(env
, ctx
, rt
, rs
);
13255 generate_exception(ctx
, EXCP_BREAK
);
13259 MIPS_INVAL("pool32a");
13260 generate_exception(ctx
, EXCP_RI
);
13265 minor
= (ctx
->opcode
>> 12) & 0xf;
13268 check_cp0_enabled(ctx
);
13269 /* Treat as no-op. */
13273 /* COP2: Not implemented. */
13274 generate_exception_err(ctx
, EXCP_CpU
, 2);
13276 #ifdef TARGET_MIPS64
13279 check_insn(ctx
, ISA_MIPS3
);
13280 check_mips_64(ctx
);
13285 gen_ldst_pair(ctx
, minor
, rt
, rs
, SIMM(ctx
->opcode
, 0, 12));
13287 #ifdef TARGET_MIPS64
13290 check_insn(ctx
, ISA_MIPS3
);
13291 check_mips_64(ctx
);
13296 gen_ldst_multiple(ctx
, minor
, rt
, rs
, SIMM(ctx
->opcode
, 0, 12));
13299 MIPS_INVAL("pool32b");
13300 generate_exception(ctx
, EXCP_RI
);
13305 if (ctx
->CP0_Config1
& (1 << CP0C1_FP
)) {
13306 minor
= ctx
->opcode
& 0x3f;
13307 check_cp1_enabled(ctx
);
13310 mips32_op
= OPC_ALNV_PS
;
13313 mips32_op
= OPC_MADD_S
;
13316 mips32_op
= OPC_MADD_D
;
13319 mips32_op
= OPC_MADD_PS
;
13322 mips32_op
= OPC_MSUB_S
;
13325 mips32_op
= OPC_MSUB_D
;
13328 mips32_op
= OPC_MSUB_PS
;
13331 mips32_op
= OPC_NMADD_S
;
13334 mips32_op
= OPC_NMADD_D
;
13337 mips32_op
= OPC_NMADD_PS
;
13340 mips32_op
= OPC_NMSUB_S
;
13343 mips32_op
= OPC_NMSUB_D
;
13346 mips32_op
= OPC_NMSUB_PS
;
13348 gen_flt3_arith(ctx
, mips32_op
, rd
, rr
, rs
, rt
);
13350 case CABS_COND_FMT
:
13351 cond
= (ctx
->opcode
>> 6) & 0xf;
13352 cc
= (ctx
->opcode
>> 13) & 0x7;
13353 fmt
= (ctx
->opcode
>> 10) & 0x3;
13356 gen_cmpabs_s(ctx
, cond
, rt
, rs
, cc
);
13359 gen_cmpabs_d(ctx
, cond
, rt
, rs
, cc
);
13362 gen_cmpabs_ps(ctx
, cond
, rt
, rs
, cc
);
13365 goto pool32f_invalid
;
13369 cond
= (ctx
->opcode
>> 6) & 0xf;
13370 cc
= (ctx
->opcode
>> 13) & 0x7;
13371 fmt
= (ctx
->opcode
>> 10) & 0x3;
13374 gen_cmp_s(ctx
, cond
, rt
, rs
, cc
);
13377 gen_cmp_d(ctx
, cond
, rt
, rs
, cc
);
13380 gen_cmp_ps(ctx
, cond
, rt
, rs
, cc
);
13383 goto pool32f_invalid
;
13387 gen_pool32fxf(ctx
, rt
, rs
);
13391 switch ((ctx
->opcode
>> 6) & 0x7) {
13393 mips32_op
= OPC_PLL_PS
;
13396 mips32_op
= OPC_PLU_PS
;
13399 mips32_op
= OPC_PUL_PS
;
13402 mips32_op
= OPC_PUU_PS
;
13405 mips32_op
= OPC_CVT_PS_S
;
13407 gen_farith(ctx
, mips32_op
, rt
, rs
, rd
, 0);
13410 goto pool32f_invalid
;
13415 switch ((ctx
->opcode
>> 6) & 0x7) {
13417 mips32_op
= OPC_LWXC1
;
13420 mips32_op
= OPC_SWXC1
;
13423 mips32_op
= OPC_LDXC1
;
13426 mips32_op
= OPC_SDXC1
;
13429 mips32_op
= OPC_LUXC1
;
13432 mips32_op
= OPC_SUXC1
;
13434 gen_flt3_ldst(ctx
, mips32_op
, rd
, rd
, rt
, rs
);
13437 goto pool32f_invalid
;
13442 fmt
= (ctx
->opcode
>> 9) & 0x3;
13443 switch ((ctx
->opcode
>> 6) & 0x7) {
13447 mips32_op
= OPC_RSQRT2_S
;
13450 mips32_op
= OPC_RSQRT2_D
;
13453 mips32_op
= OPC_RSQRT2_PS
;
13456 goto pool32f_invalid
;
13462 mips32_op
= OPC_RECIP2_S
;
13465 mips32_op
= OPC_RECIP2_D
;
13468 mips32_op
= OPC_RECIP2_PS
;
13471 goto pool32f_invalid
;
13475 mips32_op
= OPC_ADDR_PS
;
13478 mips32_op
= OPC_MULR_PS
;
13480 gen_farith(ctx
, mips32_op
, rt
, rs
, rd
, 0);
13483 goto pool32f_invalid
;
13487 /* MOV[FT].fmt and PREFX */
13488 cc
= (ctx
->opcode
>> 13) & 0x7;
13489 fmt
= (ctx
->opcode
>> 9) & 0x3;
13490 switch ((ctx
->opcode
>> 6) & 0x7) {
13494 gen_movcf_s(rs
, rt
, cc
, 0);
13497 gen_movcf_d(ctx
, rs
, rt
, cc
, 0);
13500 gen_movcf_ps(ctx
, rs
, rt
, cc
, 0);
13503 goto pool32f_invalid
;
13509 gen_movcf_s(rs
, rt
, cc
, 1);
13512 gen_movcf_d(ctx
, rs
, rt
, cc
, 1);
13515 gen_movcf_ps(ctx
, rs
, rt
, cc
, 1);
13518 goto pool32f_invalid
;
13524 goto pool32f_invalid
;
13527 #define FINSN_3ARG_SDPS(prfx) \
13528 switch ((ctx->opcode >> 8) & 0x3) { \
13530 mips32_op = OPC_##prfx##_S; \
13533 mips32_op = OPC_##prfx##_D; \
13535 case FMT_SDPS_PS: \
13536 mips32_op = OPC_##prfx##_PS; \
13539 goto pool32f_invalid; \
13542 /* regular FP ops */
13543 switch ((ctx
->opcode
>> 6) & 0x3) {
13545 FINSN_3ARG_SDPS(ADD
);
13548 FINSN_3ARG_SDPS(SUB
);
13551 FINSN_3ARG_SDPS(MUL
);
13554 fmt
= (ctx
->opcode
>> 8) & 0x3;
13556 mips32_op
= OPC_DIV_D
;
13557 } else if (fmt
== 0) {
13558 mips32_op
= OPC_DIV_S
;
13560 goto pool32f_invalid
;
13564 goto pool32f_invalid
;
13569 switch ((ctx
->opcode
>> 6) & 0x3) {
13571 FINSN_3ARG_SDPS(MOVN
);
13574 FINSN_3ARG_SDPS(MOVZ
);
13577 goto pool32f_invalid
;
13581 gen_farith(ctx
, mips32_op
, rt
, rs
, rd
, 0);
13585 MIPS_INVAL("pool32f");
13586 generate_exception(ctx
, EXCP_RI
);
13590 generate_exception_err(ctx
, EXCP_CpU
, 1);
13594 minor
= (ctx
->opcode
>> 21) & 0x1f;
13597 gen_compute_branch(ctx
, OPC_BLTZ
, 4, rs
, -1, imm
<< 1, 4);
13600 gen_compute_branch(ctx
, OPC_BLTZAL
, 4, rs
, -1, imm
<< 1, 4);
13601 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
13604 gen_compute_branch(ctx
, OPC_BLTZAL
, 4, rs
, -1, imm
<< 1, 2);
13605 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
13608 gen_compute_branch(ctx
, OPC_BGEZ
, 4, rs
, -1, imm
<< 1, 4);
13611 gen_compute_branch(ctx
, OPC_BGEZAL
, 4, rs
, -1, imm
<< 1, 4);
13612 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
13615 gen_compute_branch(ctx
, OPC_BGEZAL
, 4, rs
, -1, imm
<< 1, 2);
13616 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
13619 gen_compute_branch(ctx
, OPC_BLEZ
, 4, rs
, -1, imm
<< 1, 4);
13622 gen_compute_branch(ctx
, OPC_BGTZ
, 4, rs
, -1, imm
<< 1, 4);
13627 mips32_op
= OPC_TLTI
;
13630 mips32_op
= OPC_TGEI
;
13633 mips32_op
= OPC_TLTIU
;
13636 mips32_op
= OPC_TGEIU
;
13639 mips32_op
= OPC_TNEI
;
13642 mips32_op
= OPC_TEQI
;
13644 gen_trap(ctx
, mips32_op
, rs
, -1, imm
);
13649 gen_compute_branch(ctx
, minor
== BNEZC
? OPC_BNE
: OPC_BEQ
,
13650 4, rs
, 0, imm
<< 1, 0);
13651 /* Compact branches don't have a delay slot, so just let
13652 the normal delay slot handling take us to the branch
13656 gen_logic_imm(ctx
, OPC_LUI
, rs
, 0, imm
);
13659 /* Break the TB to be able to sync copied instructions
13661 ctx
->bstate
= BS_STOP
;
13665 /* COP2: Not implemented. */
13666 generate_exception_err(ctx
, EXCP_CpU
, 2);
13669 mips32_op
= (ctx
->opcode
& (1 << 16)) ? OPC_BC1FANY2
: OPC_BC1F
;
13672 mips32_op
= (ctx
->opcode
& (1 << 16)) ? OPC_BC1TANY2
: OPC_BC1T
;
13675 mips32_op
= OPC_BC1FANY4
;
13678 mips32_op
= OPC_BC1TANY4
;
13681 check_insn(ctx
, ASE_MIPS3D
);
13684 if (env
->CP0_Config1
& (1 << CP0C1_FP
)) {
13685 check_cp1_enabled(ctx
);
13686 gen_compute_branch1(ctx
, mips32_op
,
13687 (ctx
->opcode
>> 18) & 0x7, imm
<< 1);
13689 generate_exception_err(ctx
, EXCP_CpU
, 1);
13694 /* MIPS DSP: not implemented */
13697 MIPS_INVAL("pool32i");
13698 generate_exception(ctx
, EXCP_RI
);
13703 minor
= (ctx
->opcode
>> 12) & 0xf;
13706 mips32_op
= OPC_LWL
;
13709 mips32_op
= OPC_SWL
;
13712 mips32_op
= OPC_LWR
;
13715 mips32_op
= OPC_SWR
;
13717 #if defined(TARGET_MIPS64)
13719 check_insn(ctx
, ISA_MIPS3
);
13720 check_mips_64(ctx
);
13721 mips32_op
= OPC_LDL
;
13724 check_insn(ctx
, ISA_MIPS3
);
13725 check_mips_64(ctx
);
13726 mips32_op
= OPC_SDL
;
13729 check_insn(ctx
, ISA_MIPS3
);
13730 check_mips_64(ctx
);
13731 mips32_op
= OPC_LDR
;
13734 check_insn(ctx
, ISA_MIPS3
);
13735 check_mips_64(ctx
);
13736 mips32_op
= OPC_SDR
;
13739 check_insn(ctx
, ISA_MIPS3
);
13740 check_mips_64(ctx
);
13741 mips32_op
= OPC_LWU
;
13744 check_insn(ctx
, ISA_MIPS3
);
13745 check_mips_64(ctx
);
13746 mips32_op
= OPC_LLD
;
13750 mips32_op
= OPC_LL
;
13753 gen_ld(ctx
, mips32_op
, rt
, rs
, SIMM(ctx
->opcode
, 0, 12));
13756 gen_st(ctx
, mips32_op
, rt
, rs
, SIMM(ctx
->opcode
, 0, 12));
13759 gen_st_cond(ctx
, OPC_SC
, rt
, rs
, SIMM(ctx
->opcode
, 0, 12));
13761 #if defined(TARGET_MIPS64)
13763 check_insn(ctx
, ISA_MIPS3
);
13764 check_mips_64(ctx
);
13765 gen_st_cond(ctx
, OPC_SCD
, rt
, rs
, SIMM(ctx
->opcode
, 0, 12));
13769 /* Treat as no-op */
13772 MIPS_INVAL("pool32c");
13773 generate_exception(ctx
, EXCP_RI
);
13778 mips32_op
= OPC_ADDI
;
13781 mips32_op
= OPC_ADDIU
;
13783 gen_arith_imm(ctx
, mips32_op
, rt
, rs
, imm
);
13786 /* Logical operations */
13788 mips32_op
= OPC_ORI
;
13791 mips32_op
= OPC_XORI
;
13794 mips32_op
= OPC_ANDI
;
13796 gen_logic_imm(ctx
, mips32_op
, rt
, rs
, imm
);
13799 /* Set less than immediate */
13801 mips32_op
= OPC_SLTI
;
13804 mips32_op
= OPC_SLTIU
;
13806 gen_slt_imm(ctx
, mips32_op
, rt
, rs
, imm
);
13809 offset
= (int32_t)(ctx
->opcode
& 0x3FFFFFF) << 2;
13810 gen_compute_branch(ctx
, OPC_JALX
, 4, rt
, rs
, offset
, 4);
13811 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
13814 offset
= (int32_t)(ctx
->opcode
& 0x3FFFFFF) << 1;
13815 gen_compute_branch(ctx
, OPC_JAL
, 4, rt
, rs
, offset
, 2);
13816 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
13819 gen_compute_branch(ctx
, OPC_BEQ
, 4, rt
, rs
, imm
<< 1, 4);
13822 gen_compute_branch(ctx
, OPC_BNE
, 4, rt
, rs
, imm
<< 1, 4);
13825 gen_compute_branch(ctx
, OPC_J
, 4, rt
, rs
,
13826 (int32_t)(ctx
->opcode
& 0x3FFFFFF) << 1, 4);
13829 gen_compute_branch(ctx
, OPC_JAL
, 4, rt
, rs
,
13830 (int32_t)(ctx
->opcode
& 0x3FFFFFF) << 1, 4);
13831 ctx
->hflags
|= MIPS_HFLAG_BDS_STRICT
;
13833 /* Floating point (COP1) */
13835 mips32_op
= OPC_LWC1
;
13838 mips32_op
= OPC_LDC1
;
13841 mips32_op
= OPC_SWC1
;
13844 mips32_op
= OPC_SDC1
;
13846 gen_cop1_ldst(ctx
, mips32_op
, rt
, rs
, imm
);
13850 int reg
= mmreg(ZIMM(ctx
->opcode
, 23, 3));
13851 int offset
= SIMM(ctx
->opcode
, 0, 23) << 2;
13853 gen_addiupc(ctx
, reg
, offset
, 0, 0);
13856 /* Loads and stores */
13858 mips32_op
= OPC_LB
;
13861 mips32_op
= OPC_LBU
;
13864 mips32_op
= OPC_LH
;
13867 mips32_op
= OPC_LHU
;
13870 mips32_op
= OPC_LW
;
13872 #ifdef TARGET_MIPS64
13874 check_insn(ctx
, ISA_MIPS3
);
13875 check_mips_64(ctx
);
13876 mips32_op
= OPC_LD
;
13879 check_insn(ctx
, ISA_MIPS3
);
13880 check_mips_64(ctx
);
13881 mips32_op
= OPC_SD
;
13885 mips32_op
= OPC_SB
;
13888 mips32_op
= OPC_SH
;
13891 mips32_op
= OPC_SW
;
13894 gen_ld(ctx
, mips32_op
, rt
, rs
, imm
);
13897 gen_st(ctx
, mips32_op
, rt
, rs
, imm
);
13900 generate_exception(ctx
, EXCP_RI
);
13905 static int decode_micromips_opc (CPUMIPSState
*env
, DisasContext
*ctx
)
13909 /* make sure instructions are on a halfword boundary */
13910 if (ctx
->pc
& 0x1) {
13911 env
->CP0_BadVAddr
= ctx
->pc
;
13912 generate_exception(ctx
, EXCP_AdEL
);
13913 ctx
->bstate
= BS_STOP
;
13917 op
= (ctx
->opcode
>> 10) & 0x3f;
13918 /* Enforce properly-sized instructions in a delay slot */
13919 if (ctx
->hflags
& MIPS_HFLAG_BDS_STRICT
) {
13920 switch (op
& 0x7) { /* MSB-3..MSB-5 */
13922 /* POOL32A, POOL32B, POOL32I, POOL32C */
13924 /* ADDI32, ADDIU32, ORI32, XORI32, SLTI32, SLTIU32, ANDI32, JALX32 */
13926 /* LBU32, LHU32, POOL32F, JALS32, BEQ32, BNE32, J32, JAL32 */
13928 /* SB32, SH32, ADDIUPC, SWC132, SDC132, SW32 */
13930 /* LB32, LH32, LWC132, LDC132, LW32 */
13931 if (ctx
->hflags
& MIPS_HFLAG_BDS16
) {
13932 generate_exception(ctx
, EXCP_RI
);
13933 /* Just stop translation; the user is confused. */
13934 ctx
->bstate
= BS_STOP
;
13939 /* POOL16A, POOL16B, POOL16C, LWGP16, POOL16F */
13941 /* LBU16, LHU16, LWSP16, LW16, SB16, SH16, SWSP16, SW16 */
13943 /* MOVE16, ANDI16, POOL16D, POOL16E, BEQZ16, BNEZ16, B16, LI16 */
13944 if (ctx
->hflags
& MIPS_HFLAG_BDS32
) {
13945 generate_exception(ctx
, EXCP_RI
);
13946 /* Just stop translation; the user is confused. */
13947 ctx
->bstate
= BS_STOP
;
13957 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
13958 int rs1
= mmreg(uMIPS_RS1(ctx
->opcode
));
13959 int rs2
= mmreg(uMIPS_RS2(ctx
->opcode
));
13962 switch (ctx
->opcode
& 0x1) {
13971 gen_arith(ctx
, opc
, rd
, rs1
, rs2
);
13976 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
13977 int rs
= mmreg(uMIPS_RS(ctx
->opcode
));
13978 int amount
= (ctx
->opcode
>> 1) & 0x7;
13980 amount
= amount
== 0 ? 8 : amount
;
13982 switch (ctx
->opcode
& 0x1) {
13991 gen_shift_imm(ctx
, opc
, rd
, rs
, amount
);
13995 gen_pool16c_insn(ctx
);
13999 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
14000 int rb
= 28; /* GP */
14001 int16_t offset
= SIMM(ctx
->opcode
, 0, 7) << 2;
14003 gen_ld(ctx
, OPC_LW
, rd
, rb
, offset
);
14007 if (ctx
->opcode
& 1) {
14008 generate_exception(ctx
, EXCP_RI
);
14011 int enc_dest
= uMIPS_RD(ctx
->opcode
);
14012 int enc_rt
= uMIPS_RS2(ctx
->opcode
);
14013 int enc_rs
= uMIPS_RS1(ctx
->opcode
);
14014 int rd
, rs
, re
, rt
;
14015 static const int rd_enc
[] = { 5, 5, 6, 4, 4, 4, 4, 4 };
14016 static const int re_enc
[] = { 6, 7, 7, 21, 22, 5, 6, 7 };
14017 static const int rs_rt_enc
[] = { 0, 17, 2, 3, 16, 18, 19, 20 };
14019 rd
= rd_enc
[enc_dest
];
14020 re
= re_enc
[enc_dest
];
14021 rs
= rs_rt_enc
[enc_rs
];
14022 rt
= rs_rt_enc
[enc_rt
];
14024 gen_arith(ctx
, OPC_ADDU
, rd
, rs
, 0);
14025 gen_arith(ctx
, OPC_ADDU
, re
, rt
, 0);
14030 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
14031 int rb
= mmreg(uMIPS_RS(ctx
->opcode
));
14032 int16_t offset
= ZIMM(ctx
->opcode
, 0, 4);
14033 offset
= (offset
== 0xf ? -1 : offset
);
14035 gen_ld(ctx
, OPC_LBU
, rd
, rb
, offset
);
14040 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
14041 int rb
= mmreg(uMIPS_RS(ctx
->opcode
));
14042 int16_t offset
= ZIMM(ctx
->opcode
, 0, 4) << 1;
14044 gen_ld(ctx
, OPC_LHU
, rd
, rb
, offset
);
14049 int rd
= (ctx
->opcode
>> 5) & 0x1f;
14050 int rb
= 29; /* SP */
14051 int16_t offset
= ZIMM(ctx
->opcode
, 0, 5) << 2;
14053 gen_ld(ctx
, OPC_LW
, rd
, rb
, offset
);
14058 int rd
= mmreg(uMIPS_RD(ctx
->opcode
));
14059 int rb
= mmreg(uMIPS_RS(ctx
->opcode
));
14060 int16_t offset
= ZIMM(ctx
->opcode
, 0, 4) << 2;
14062 gen_ld(ctx
, OPC_LW
, rd
, rb
, offset
);
14067 int rd
= mmreg2(uMIPS_RD(ctx
->opcode
));
14068 int rb
= mmreg(uMIPS_RS(ctx
->opcode
));
14069 int16_t offset
= ZIMM(ctx
->opcode
, 0, 4);
14071 gen_st(ctx
, OPC_SB
, rd
, rb
, offset
);
14076 int rd
= mmreg2(uMIPS_RD(ctx
->opcode
));
14077 int rb
= mmreg(uMIPS_RS(ctx
->opcode
));
14078 int16_t offset
= ZIMM(ctx
->opcode
, 0, 4) << 1;
14080 gen_st(ctx
, OPC_SH
, rd
, rb
, offset
);
14085 int rd
= (ctx
->opcode
>> 5) & 0x1f;
14086 int rb
= 29; /* SP */
14087 int16_t offset
= ZIMM(ctx
->opcode
, 0, 5) << 2;
14089 gen_st(ctx
, OPC_SW
, rd
, rb
, offset
);
14094 int rd
= mmreg2(uMIPS_RD(ctx
->opcode
));
14095 int rb
= mmreg(uMIPS_RS(ctx
->opcode
));
14096 int16_t offset
= ZIMM(ctx
->opcode
, 0, 4) << 2;
14098 gen_st(ctx
, OPC_SW
, rd
, rb
, offset
);
14103 int rd
= uMIPS_RD5(ctx
->opcode
);
14104 int rs
= uMIPS_RS5(ctx
->opcode
);
14106 gen_arith(ctx
, OPC_ADDU
, rd
, rs
, 0);
14113 switch (ctx
->opcode
& 0x1) {
14123 switch (ctx
->opcode
& 0x1) {
14128 gen_addiur1sp(ctx
);
14133 gen_compute_branch(ctx
, OPC_BEQ
, 2, 0, 0,
14134 SIMM(ctx
->opcode
, 0, 10) << 1, 4);
14138 gen_compute_branch(ctx
, op
== BNEZ16
? OPC_BNE
: OPC_BEQ
, 2,
14139 mmreg(uMIPS_RD(ctx
->opcode
)),
14140 0, SIMM(ctx
->opcode
, 0, 7) << 1, 4);
14144 int reg
= mmreg(uMIPS_RD(ctx
->opcode
));
14145 int imm
= ZIMM(ctx
->opcode
, 0, 7);
14147 imm
= (imm
== 0x7f ? -1 : imm
);
14148 tcg_gen_movi_tl(cpu_gpr
[reg
], imm
);
14158 generate_exception(ctx
, EXCP_RI
);
14161 decode_micromips32_opc (env
, ctx
, op
);
14168 /* SmartMIPS extension to MIPS32 */
14170 #if defined(TARGET_MIPS64)
14172 /* MDMX extension to MIPS64 */
14176 /* MIPSDSP functions. */
14177 static void gen_mipsdsp_ld(DisasContext
*ctx
, uint32_t opc
,
14178 int rd
, int base
, int offset
)
14180 const char *opn
= "ldx";
14184 t0
= tcg_temp_new();
14187 gen_load_gpr(t0
, offset
);
14188 } else if (offset
== 0) {
14189 gen_load_gpr(t0
, base
);
14191 gen_op_addr_add(ctx
, t0
, cpu_gpr
[base
], cpu_gpr
[offset
]);
14196 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_UB
);
14197 gen_store_gpr(t0
, rd
);
14201 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TESW
);
14202 gen_store_gpr(t0
, rd
);
14206 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TESL
);
14207 gen_store_gpr(t0
, rd
);
14210 #if defined(TARGET_MIPS64)
14212 tcg_gen_qemu_ld_tl(t0
, t0
, ctx
->mem_idx
, MO_TEQ
);
14213 gen_store_gpr(t0
, rd
);
14218 (void)opn
; /* avoid a compiler warning */
14219 MIPS_DEBUG("%s %s, %s(%s)", opn
,
14220 regnames
[rd
], regnames
[offset
], regnames
[base
]);
14224 static void gen_mipsdsp_arith(DisasContext
*ctx
, uint32_t op1
, uint32_t op2
,
14225 int ret
, int v1
, int v2
)
14227 const char *opn
= "mipsdsp arith";
14232 /* Treat as NOP. */
14237 v1_t
= tcg_temp_new();
14238 v2_t
= tcg_temp_new();
14240 gen_load_gpr(v1_t
, v1
);
14241 gen_load_gpr(v2_t
, v2
);
14244 /* OPC_MULT_G_2E is equal OPC_ADDUH_QB_DSP */
14245 case OPC_MULT_G_2E
:
14249 gen_helper_adduh_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
14251 case OPC_ADDUH_R_QB
:
14252 gen_helper_adduh_r_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
14255 gen_helper_addqh_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14257 case OPC_ADDQH_R_PH
:
14258 gen_helper_addqh_r_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14261 gen_helper_addqh_w(cpu_gpr
[ret
], v1_t
, v2_t
);
14263 case OPC_ADDQH_R_W
:
14264 gen_helper_addqh_r_w(cpu_gpr
[ret
], v1_t
, v2_t
);
14267 gen_helper_subuh_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
14269 case OPC_SUBUH_R_QB
:
14270 gen_helper_subuh_r_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
14273 gen_helper_subqh_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14275 case OPC_SUBQH_R_PH
:
14276 gen_helper_subqh_r_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14279 gen_helper_subqh_w(cpu_gpr
[ret
], v1_t
, v2_t
);
14281 case OPC_SUBQH_R_W
:
14282 gen_helper_subqh_r_w(cpu_gpr
[ret
], v1_t
, v2_t
);
14286 case OPC_ABSQ_S_PH_DSP
:
14288 case OPC_ABSQ_S_QB
:
14290 gen_helper_absq_s_qb(cpu_gpr
[ret
], v2_t
, cpu_env
);
14292 case OPC_ABSQ_S_PH
:
14294 gen_helper_absq_s_ph(cpu_gpr
[ret
], v2_t
, cpu_env
);
14298 gen_helper_absq_s_w(cpu_gpr
[ret
], v2_t
, cpu_env
);
14300 case OPC_PRECEQ_W_PHL
:
14302 tcg_gen_andi_tl(cpu_gpr
[ret
], v2_t
, 0xFFFF0000);
14303 tcg_gen_ext32s_tl(cpu_gpr
[ret
], cpu_gpr
[ret
]);
14305 case OPC_PRECEQ_W_PHR
:
14307 tcg_gen_andi_tl(cpu_gpr
[ret
], v2_t
, 0x0000FFFF);
14308 tcg_gen_shli_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], 16);
14309 tcg_gen_ext32s_tl(cpu_gpr
[ret
], cpu_gpr
[ret
]);
14311 case OPC_PRECEQU_PH_QBL
:
14313 gen_helper_precequ_ph_qbl(cpu_gpr
[ret
], v2_t
);
14315 case OPC_PRECEQU_PH_QBR
:
14317 gen_helper_precequ_ph_qbr(cpu_gpr
[ret
], v2_t
);
14319 case OPC_PRECEQU_PH_QBLA
:
14321 gen_helper_precequ_ph_qbla(cpu_gpr
[ret
], v2_t
);
14323 case OPC_PRECEQU_PH_QBRA
:
14325 gen_helper_precequ_ph_qbra(cpu_gpr
[ret
], v2_t
);
14327 case OPC_PRECEU_PH_QBL
:
14329 gen_helper_preceu_ph_qbl(cpu_gpr
[ret
], v2_t
);
14331 case OPC_PRECEU_PH_QBR
:
14333 gen_helper_preceu_ph_qbr(cpu_gpr
[ret
], v2_t
);
14335 case OPC_PRECEU_PH_QBLA
:
14337 gen_helper_preceu_ph_qbla(cpu_gpr
[ret
], v2_t
);
14339 case OPC_PRECEU_PH_QBRA
:
14341 gen_helper_preceu_ph_qbra(cpu_gpr
[ret
], v2_t
);
14345 case OPC_ADDU_QB_DSP
:
14349 gen_helper_addq_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14351 case OPC_ADDQ_S_PH
:
14353 gen_helper_addq_s_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14357 gen_helper_addq_s_w(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14361 gen_helper_addu_qb(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14363 case OPC_ADDU_S_QB
:
14365 gen_helper_addu_s_qb(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14369 gen_helper_addu_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14371 case OPC_ADDU_S_PH
:
14373 gen_helper_addu_s_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14377 gen_helper_subq_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14379 case OPC_SUBQ_S_PH
:
14381 gen_helper_subq_s_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14385 gen_helper_subq_s_w(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14389 gen_helper_subu_qb(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14391 case OPC_SUBU_S_QB
:
14393 gen_helper_subu_s_qb(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14397 gen_helper_subu_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14399 case OPC_SUBU_S_PH
:
14401 gen_helper_subu_s_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14405 gen_helper_addsc(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14409 gen_helper_addwc(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14413 gen_helper_modsub(cpu_gpr
[ret
], v1_t
, v2_t
);
14415 case OPC_RADDU_W_QB
:
14417 gen_helper_raddu_w_qb(cpu_gpr
[ret
], v1_t
);
14421 case OPC_CMPU_EQ_QB_DSP
:
14423 case OPC_PRECR_QB_PH
:
14425 gen_helper_precr_qb_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14427 case OPC_PRECRQ_QB_PH
:
14429 gen_helper_precrq_qb_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14431 case OPC_PRECR_SRA_PH_W
:
14434 TCGv_i32 sa_t
= tcg_const_i32(v2
);
14435 gen_helper_precr_sra_ph_w(cpu_gpr
[ret
], sa_t
, v1_t
,
14437 tcg_temp_free_i32(sa_t
);
14440 case OPC_PRECR_SRA_R_PH_W
:
14443 TCGv_i32 sa_t
= tcg_const_i32(v2
);
14444 gen_helper_precr_sra_r_ph_w(cpu_gpr
[ret
], sa_t
, v1_t
,
14446 tcg_temp_free_i32(sa_t
);
14449 case OPC_PRECRQ_PH_W
:
14451 gen_helper_precrq_ph_w(cpu_gpr
[ret
], v1_t
, v2_t
);
14453 case OPC_PRECRQ_RS_PH_W
:
14455 gen_helper_precrq_rs_ph_w(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14457 case OPC_PRECRQU_S_QB_PH
:
14459 gen_helper_precrqu_s_qb_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14463 #ifdef TARGET_MIPS64
14464 case OPC_ABSQ_S_QH_DSP
:
14466 case OPC_PRECEQ_L_PWL
:
14468 tcg_gen_andi_tl(cpu_gpr
[ret
], v2_t
, 0xFFFFFFFF00000000ull
);
14470 case OPC_PRECEQ_L_PWR
:
14472 tcg_gen_shli_tl(cpu_gpr
[ret
], v2_t
, 32);
14474 case OPC_PRECEQ_PW_QHL
:
14476 gen_helper_preceq_pw_qhl(cpu_gpr
[ret
], v2_t
);
14478 case OPC_PRECEQ_PW_QHR
:
14480 gen_helper_preceq_pw_qhr(cpu_gpr
[ret
], v2_t
);
14482 case OPC_PRECEQ_PW_QHLA
:
14484 gen_helper_preceq_pw_qhla(cpu_gpr
[ret
], v2_t
);
14486 case OPC_PRECEQ_PW_QHRA
:
14488 gen_helper_preceq_pw_qhra(cpu_gpr
[ret
], v2_t
);
14490 case OPC_PRECEQU_QH_OBL
:
14492 gen_helper_precequ_qh_obl(cpu_gpr
[ret
], v2_t
);
14494 case OPC_PRECEQU_QH_OBR
:
14496 gen_helper_precequ_qh_obr(cpu_gpr
[ret
], v2_t
);
14498 case OPC_PRECEQU_QH_OBLA
:
14500 gen_helper_precequ_qh_obla(cpu_gpr
[ret
], v2_t
);
14502 case OPC_PRECEQU_QH_OBRA
:
14504 gen_helper_precequ_qh_obra(cpu_gpr
[ret
], v2_t
);
14506 case OPC_PRECEU_QH_OBL
:
14508 gen_helper_preceu_qh_obl(cpu_gpr
[ret
], v2_t
);
14510 case OPC_PRECEU_QH_OBR
:
14512 gen_helper_preceu_qh_obr(cpu_gpr
[ret
], v2_t
);
14514 case OPC_PRECEU_QH_OBLA
:
14516 gen_helper_preceu_qh_obla(cpu_gpr
[ret
], v2_t
);
14518 case OPC_PRECEU_QH_OBRA
:
14520 gen_helper_preceu_qh_obra(cpu_gpr
[ret
], v2_t
);
14522 case OPC_ABSQ_S_OB
:
14524 gen_helper_absq_s_ob(cpu_gpr
[ret
], v2_t
, cpu_env
);
14526 case OPC_ABSQ_S_PW
:
14528 gen_helper_absq_s_pw(cpu_gpr
[ret
], v2_t
, cpu_env
);
14530 case OPC_ABSQ_S_QH
:
14532 gen_helper_absq_s_qh(cpu_gpr
[ret
], v2_t
, cpu_env
);
14536 case OPC_ADDU_OB_DSP
:
14538 case OPC_RADDU_L_OB
:
14540 gen_helper_raddu_l_ob(cpu_gpr
[ret
], v1_t
);
14544 gen_helper_subq_pw(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14546 case OPC_SUBQ_S_PW
:
14548 gen_helper_subq_s_pw(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14552 gen_helper_subq_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14554 case OPC_SUBQ_S_QH
:
14556 gen_helper_subq_s_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14560 gen_helper_subu_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14562 case OPC_SUBU_S_OB
:
14564 gen_helper_subu_s_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14568 gen_helper_subu_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14570 case OPC_SUBU_S_QH
:
14572 gen_helper_subu_s_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14576 gen_helper_subuh_ob(cpu_gpr
[ret
], v1_t
, v2_t
);
14578 case OPC_SUBUH_R_OB
:
14580 gen_helper_subuh_r_ob(cpu_gpr
[ret
], v1_t
, v2_t
);
14584 gen_helper_addq_pw(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14586 case OPC_ADDQ_S_PW
:
14588 gen_helper_addq_s_pw(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14592 gen_helper_addq_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14594 case OPC_ADDQ_S_QH
:
14596 gen_helper_addq_s_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14600 gen_helper_addu_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14602 case OPC_ADDU_S_OB
:
14604 gen_helper_addu_s_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14608 gen_helper_addu_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14610 case OPC_ADDU_S_QH
:
14612 gen_helper_addu_s_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14616 gen_helper_adduh_ob(cpu_gpr
[ret
], v1_t
, v2_t
);
14618 case OPC_ADDUH_R_OB
:
14620 gen_helper_adduh_r_ob(cpu_gpr
[ret
], v1_t
, v2_t
);
14624 case OPC_CMPU_EQ_OB_DSP
:
14626 case OPC_PRECR_OB_QH
:
14628 gen_helper_precr_ob_qh(cpu_gpr
[ret
], v1_t
, v2_t
);
14630 case OPC_PRECR_SRA_QH_PW
:
14633 TCGv_i32 ret_t
= tcg_const_i32(ret
);
14634 gen_helper_precr_sra_qh_pw(v2_t
, v1_t
, v2_t
, ret_t
);
14635 tcg_temp_free_i32(ret_t
);
14638 case OPC_PRECR_SRA_R_QH_PW
:
14641 TCGv_i32 sa_v
= tcg_const_i32(ret
);
14642 gen_helper_precr_sra_r_qh_pw(v2_t
, v1_t
, v2_t
, sa_v
);
14643 tcg_temp_free_i32(sa_v
);
14646 case OPC_PRECRQ_OB_QH
:
14648 gen_helper_precrq_ob_qh(cpu_gpr
[ret
], v1_t
, v2_t
);
14650 case OPC_PRECRQ_PW_L
:
14652 gen_helper_precrq_pw_l(cpu_gpr
[ret
], v1_t
, v2_t
);
14654 case OPC_PRECRQ_QH_PW
:
14656 gen_helper_precrq_qh_pw(cpu_gpr
[ret
], v1_t
, v2_t
);
14658 case OPC_PRECRQ_RS_QH_PW
:
14660 gen_helper_precrq_rs_qh_pw(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14662 case OPC_PRECRQU_S_OB_QH
:
14664 gen_helper_precrqu_s_ob_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14671 tcg_temp_free(v1_t
);
14672 tcg_temp_free(v2_t
);
14674 (void)opn
; /* avoid a compiler warning */
14675 MIPS_DEBUG("%s", opn
);
14678 static void gen_mipsdsp_shift(DisasContext
*ctx
, uint32_t opc
,
14679 int ret
, int v1
, int v2
)
14682 const char *opn
= "mipsdsp shift";
14688 /* Treat as NOP. */
14693 t0
= tcg_temp_new();
14694 v1_t
= tcg_temp_new();
14695 v2_t
= tcg_temp_new();
14697 tcg_gen_movi_tl(t0
, v1
);
14698 gen_load_gpr(v1_t
, v1
);
14699 gen_load_gpr(v2_t
, v2
);
14702 case OPC_SHLL_QB_DSP
:
14704 op2
= MASK_SHLL_QB(ctx
->opcode
);
14708 gen_helper_shll_qb(cpu_gpr
[ret
], t0
, v2_t
, cpu_env
);
14712 gen_helper_shll_qb(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14716 gen_helper_shll_ph(cpu_gpr
[ret
], t0
, v2_t
, cpu_env
);
14720 gen_helper_shll_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14722 case OPC_SHLL_S_PH
:
14724 gen_helper_shll_s_ph(cpu_gpr
[ret
], t0
, v2_t
, cpu_env
);
14726 case OPC_SHLLV_S_PH
:
14728 gen_helper_shll_s_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14732 gen_helper_shll_s_w(cpu_gpr
[ret
], t0
, v2_t
, cpu_env
);
14734 case OPC_SHLLV_S_W
:
14736 gen_helper_shll_s_w(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14740 gen_helper_shrl_qb(cpu_gpr
[ret
], t0
, v2_t
);
14744 gen_helper_shrl_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
14748 gen_helper_shrl_ph(cpu_gpr
[ret
], t0
, v2_t
);
14752 gen_helper_shrl_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14756 gen_helper_shra_qb(cpu_gpr
[ret
], t0
, v2_t
);
14758 case OPC_SHRA_R_QB
:
14760 gen_helper_shra_r_qb(cpu_gpr
[ret
], t0
, v2_t
);
14764 gen_helper_shra_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
14766 case OPC_SHRAV_R_QB
:
14768 gen_helper_shra_r_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
14772 gen_helper_shra_ph(cpu_gpr
[ret
], t0
, v2_t
);
14774 case OPC_SHRA_R_PH
:
14776 gen_helper_shra_r_ph(cpu_gpr
[ret
], t0
, v2_t
);
14780 gen_helper_shra_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14782 case OPC_SHRAV_R_PH
:
14784 gen_helper_shra_r_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
14788 gen_helper_shra_r_w(cpu_gpr
[ret
], t0
, v2_t
);
14790 case OPC_SHRAV_R_W
:
14792 gen_helper_shra_r_w(cpu_gpr
[ret
], v1_t
, v2_t
);
14794 default: /* Invalid */
14795 MIPS_INVAL("MASK SHLL.QB");
14796 generate_exception(ctx
, EXCP_RI
);
14801 #ifdef TARGET_MIPS64
14802 case OPC_SHLL_OB_DSP
:
14803 op2
= MASK_SHLL_OB(ctx
->opcode
);
14807 gen_helper_shll_pw(cpu_gpr
[ret
], v2_t
, t0
, cpu_env
);
14811 gen_helper_shll_pw(cpu_gpr
[ret
], v2_t
, v1_t
, cpu_env
);
14813 case OPC_SHLL_S_PW
:
14815 gen_helper_shll_s_pw(cpu_gpr
[ret
], v2_t
, t0
, cpu_env
);
14817 case OPC_SHLLV_S_PW
:
14819 gen_helper_shll_s_pw(cpu_gpr
[ret
], v2_t
, v1_t
, cpu_env
);
14823 gen_helper_shll_ob(cpu_gpr
[ret
], v2_t
, t0
, cpu_env
);
14827 gen_helper_shll_ob(cpu_gpr
[ret
], v2_t
, v1_t
, cpu_env
);
14831 gen_helper_shll_qh(cpu_gpr
[ret
], v2_t
, t0
, cpu_env
);
14835 gen_helper_shll_qh(cpu_gpr
[ret
], v2_t
, v1_t
, cpu_env
);
14837 case OPC_SHLL_S_QH
:
14839 gen_helper_shll_s_qh(cpu_gpr
[ret
], v2_t
, t0
, cpu_env
);
14841 case OPC_SHLLV_S_QH
:
14843 gen_helper_shll_s_qh(cpu_gpr
[ret
], v2_t
, v1_t
, cpu_env
);
14847 gen_helper_shra_ob(cpu_gpr
[ret
], v2_t
, t0
);
14851 gen_helper_shra_ob(cpu_gpr
[ret
], v2_t
, v1_t
);
14853 case OPC_SHRA_R_OB
:
14855 gen_helper_shra_r_ob(cpu_gpr
[ret
], v2_t
, t0
);
14857 case OPC_SHRAV_R_OB
:
14859 gen_helper_shra_r_ob(cpu_gpr
[ret
], v2_t
, v1_t
);
14863 gen_helper_shra_pw(cpu_gpr
[ret
], v2_t
, t0
);
14867 gen_helper_shra_pw(cpu_gpr
[ret
], v2_t
, v1_t
);
14869 case OPC_SHRA_R_PW
:
14871 gen_helper_shra_r_pw(cpu_gpr
[ret
], v2_t
, t0
);
14873 case OPC_SHRAV_R_PW
:
14875 gen_helper_shra_r_pw(cpu_gpr
[ret
], v2_t
, v1_t
);
14879 gen_helper_shra_qh(cpu_gpr
[ret
], v2_t
, t0
);
14883 gen_helper_shra_qh(cpu_gpr
[ret
], v2_t
, v1_t
);
14885 case OPC_SHRA_R_QH
:
14887 gen_helper_shra_r_qh(cpu_gpr
[ret
], v2_t
, t0
);
14889 case OPC_SHRAV_R_QH
:
14891 gen_helper_shra_r_qh(cpu_gpr
[ret
], v2_t
, v1_t
);
14895 gen_helper_shrl_ob(cpu_gpr
[ret
], v2_t
, t0
);
14899 gen_helper_shrl_ob(cpu_gpr
[ret
], v2_t
, v1_t
);
14903 gen_helper_shrl_qh(cpu_gpr
[ret
], v2_t
, t0
);
14907 gen_helper_shrl_qh(cpu_gpr
[ret
], v2_t
, v1_t
);
14909 default: /* Invalid */
14910 MIPS_INVAL("MASK SHLL.OB");
14911 generate_exception(ctx
, EXCP_RI
);
14919 tcg_temp_free(v1_t
);
14920 tcg_temp_free(v2_t
);
14921 (void)opn
; /* avoid a compiler warning */
14922 MIPS_DEBUG("%s", opn
);
14925 static void gen_mipsdsp_multiply(DisasContext
*ctx
, uint32_t op1
, uint32_t op2
,
14926 int ret
, int v1
, int v2
, int check_ret
)
14928 const char *opn
= "mipsdsp multiply";
14933 if ((ret
== 0) && (check_ret
== 1)) {
14934 /* Treat as NOP. */
14939 t0
= tcg_temp_new_i32();
14940 v1_t
= tcg_temp_new();
14941 v2_t
= tcg_temp_new();
14943 tcg_gen_movi_i32(t0
, ret
);
14944 gen_load_gpr(v1_t
, v1
);
14945 gen_load_gpr(v2_t
, v2
);
14948 /* OPC_MULT_G_2E, OPC_ADDUH_QB_DSP, OPC_MUL_PH_DSP have
14949 * the same mask and op1. */
14950 case OPC_MULT_G_2E
:
14954 gen_helper_mul_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14957 gen_helper_mul_s_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14960 gen_helper_mulq_s_w(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14962 case OPC_MULQ_RS_W
:
14963 gen_helper_mulq_rs_w(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
14967 case OPC_DPA_W_PH_DSP
:
14969 case OPC_DPAU_H_QBL
:
14971 gen_helper_dpau_h_qbl(t0
, v1_t
, v2_t
, cpu_env
);
14973 case OPC_DPAU_H_QBR
:
14975 gen_helper_dpau_h_qbr(t0
, v1_t
, v2_t
, cpu_env
);
14977 case OPC_DPSU_H_QBL
:
14979 gen_helper_dpsu_h_qbl(t0
, v1_t
, v2_t
, cpu_env
);
14981 case OPC_DPSU_H_QBR
:
14983 gen_helper_dpsu_h_qbr(t0
, v1_t
, v2_t
, cpu_env
);
14987 gen_helper_dpa_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
14989 case OPC_DPAX_W_PH
:
14991 gen_helper_dpax_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
14993 case OPC_DPAQ_S_W_PH
:
14995 gen_helper_dpaq_s_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
14997 case OPC_DPAQX_S_W_PH
:
14999 gen_helper_dpaqx_s_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15001 case OPC_DPAQX_SA_W_PH
:
15003 gen_helper_dpaqx_sa_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15007 gen_helper_dps_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15009 case OPC_DPSX_W_PH
:
15011 gen_helper_dpsx_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15013 case OPC_DPSQ_S_W_PH
:
15015 gen_helper_dpsq_s_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15017 case OPC_DPSQX_S_W_PH
:
15019 gen_helper_dpsqx_s_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15021 case OPC_DPSQX_SA_W_PH
:
15023 gen_helper_dpsqx_sa_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15025 case OPC_MULSAQ_S_W_PH
:
15027 gen_helper_mulsaq_s_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15029 case OPC_DPAQ_SA_L_W
:
15031 gen_helper_dpaq_sa_l_w(t0
, v1_t
, v2_t
, cpu_env
);
15033 case OPC_DPSQ_SA_L_W
:
15035 gen_helper_dpsq_sa_l_w(t0
, v1_t
, v2_t
, cpu_env
);
15037 case OPC_MAQ_S_W_PHL
:
15039 gen_helper_maq_s_w_phl(t0
, v1_t
, v2_t
, cpu_env
);
15041 case OPC_MAQ_S_W_PHR
:
15043 gen_helper_maq_s_w_phr(t0
, v1_t
, v2_t
, cpu_env
);
15045 case OPC_MAQ_SA_W_PHL
:
15047 gen_helper_maq_sa_w_phl(t0
, v1_t
, v2_t
, cpu_env
);
15049 case OPC_MAQ_SA_W_PHR
:
15051 gen_helper_maq_sa_w_phr(t0
, v1_t
, v2_t
, cpu_env
);
15053 case OPC_MULSA_W_PH
:
15055 gen_helper_mulsa_w_ph(t0
, v1_t
, v2_t
, cpu_env
);
15059 #ifdef TARGET_MIPS64
15060 case OPC_DPAQ_W_QH_DSP
:
15062 int ac
= ret
& 0x03;
15063 tcg_gen_movi_i32(t0
, ac
);
15068 gen_helper_dmadd(v1_t
, v2_t
, t0
, cpu_env
);
15072 gen_helper_dmaddu(v1_t
, v2_t
, t0
, cpu_env
);
15076 gen_helper_dmsub(v1_t
, v2_t
, t0
, cpu_env
);
15080 gen_helper_dmsubu(v1_t
, v2_t
, t0
, cpu_env
);
15084 gen_helper_dpa_w_qh(v1_t
, v2_t
, t0
, cpu_env
);
15086 case OPC_DPAQ_S_W_QH
:
15088 gen_helper_dpaq_s_w_qh(v1_t
, v2_t
, t0
, cpu_env
);
15090 case OPC_DPAQ_SA_L_PW
:
15092 gen_helper_dpaq_sa_l_pw(v1_t
, v2_t
, t0
, cpu_env
);
15094 case OPC_DPAU_H_OBL
:
15096 gen_helper_dpau_h_obl(v1_t
, v2_t
, t0
, cpu_env
);
15098 case OPC_DPAU_H_OBR
:
15100 gen_helper_dpau_h_obr(v1_t
, v2_t
, t0
, cpu_env
);
15104 gen_helper_dps_w_qh(v1_t
, v2_t
, t0
, cpu_env
);
15106 case OPC_DPSQ_S_W_QH
:
15108 gen_helper_dpsq_s_w_qh(v1_t
, v2_t
, t0
, cpu_env
);
15110 case OPC_DPSQ_SA_L_PW
:
15112 gen_helper_dpsq_sa_l_pw(v1_t
, v2_t
, t0
, cpu_env
);
15114 case OPC_DPSU_H_OBL
:
15116 gen_helper_dpsu_h_obl(v1_t
, v2_t
, t0
, cpu_env
);
15118 case OPC_DPSU_H_OBR
:
15120 gen_helper_dpsu_h_obr(v1_t
, v2_t
, t0
, cpu_env
);
15122 case OPC_MAQ_S_L_PWL
:
15124 gen_helper_maq_s_l_pwl(v1_t
, v2_t
, t0
, cpu_env
);
15126 case OPC_MAQ_S_L_PWR
:
15128 gen_helper_maq_s_l_pwr(v1_t
, v2_t
, t0
, cpu_env
);
15130 case OPC_MAQ_S_W_QHLL
:
15132 gen_helper_maq_s_w_qhll(v1_t
, v2_t
, t0
, cpu_env
);
15134 case OPC_MAQ_SA_W_QHLL
:
15136 gen_helper_maq_sa_w_qhll(v1_t
, v2_t
, t0
, cpu_env
);
15138 case OPC_MAQ_S_W_QHLR
:
15140 gen_helper_maq_s_w_qhlr(v1_t
, v2_t
, t0
, cpu_env
);
15142 case OPC_MAQ_SA_W_QHLR
:
15144 gen_helper_maq_sa_w_qhlr(v1_t
, v2_t
, t0
, cpu_env
);
15146 case OPC_MAQ_S_W_QHRL
:
15148 gen_helper_maq_s_w_qhrl(v1_t
, v2_t
, t0
, cpu_env
);
15150 case OPC_MAQ_SA_W_QHRL
:
15152 gen_helper_maq_sa_w_qhrl(v1_t
, v2_t
, t0
, cpu_env
);
15154 case OPC_MAQ_S_W_QHRR
:
15156 gen_helper_maq_s_w_qhrr(v1_t
, v2_t
, t0
, cpu_env
);
15158 case OPC_MAQ_SA_W_QHRR
:
15160 gen_helper_maq_sa_w_qhrr(v1_t
, v2_t
, t0
, cpu_env
);
15162 case OPC_MULSAQ_S_L_PW
:
15164 gen_helper_mulsaq_s_l_pw(v1_t
, v2_t
, t0
, cpu_env
);
15166 case OPC_MULSAQ_S_W_QH
:
15168 gen_helper_mulsaq_s_w_qh(v1_t
, v2_t
, t0
, cpu_env
);
15174 case OPC_ADDU_QB_DSP
:
15176 case OPC_MULEU_S_PH_QBL
:
15178 gen_helper_muleu_s_ph_qbl(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15180 case OPC_MULEU_S_PH_QBR
:
15182 gen_helper_muleu_s_ph_qbr(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15184 case OPC_MULQ_RS_PH
:
15186 gen_helper_mulq_rs_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15188 case OPC_MULEQ_S_W_PHL
:
15190 gen_helper_muleq_s_w_phl(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15192 case OPC_MULEQ_S_W_PHR
:
15194 gen_helper_muleq_s_w_phr(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15196 case OPC_MULQ_S_PH
:
15198 gen_helper_mulq_s_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15202 #ifdef TARGET_MIPS64
15203 case OPC_ADDU_OB_DSP
:
15205 case OPC_MULEQ_S_PW_QHL
:
15207 gen_helper_muleq_s_pw_qhl(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15209 case OPC_MULEQ_S_PW_QHR
:
15211 gen_helper_muleq_s_pw_qhr(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15213 case OPC_MULEU_S_QH_OBL
:
15215 gen_helper_muleu_s_qh_obl(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15217 case OPC_MULEU_S_QH_OBR
:
15219 gen_helper_muleu_s_qh_obr(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15221 case OPC_MULQ_RS_QH
:
15223 gen_helper_mulq_rs_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15230 tcg_temp_free_i32(t0
);
15231 tcg_temp_free(v1_t
);
15232 tcg_temp_free(v2_t
);
15234 (void)opn
; /* avoid a compiler warning */
15235 MIPS_DEBUG("%s", opn
);
15239 static void gen_mipsdsp_bitinsn(DisasContext
*ctx
, uint32_t op1
, uint32_t op2
,
15242 const char *opn
= "mipsdsp Bit/ Manipulation";
15248 /* Treat as NOP. */
15253 t0
= tcg_temp_new();
15254 val_t
= tcg_temp_new();
15255 gen_load_gpr(val_t
, val
);
15258 case OPC_ABSQ_S_PH_DSP
:
15262 gen_helper_bitrev(cpu_gpr
[ret
], val_t
);
15267 target_long result
;
15268 imm
= (ctx
->opcode
>> 16) & 0xFF;
15269 result
= (uint32_t)imm
<< 24 |
15270 (uint32_t)imm
<< 16 |
15271 (uint32_t)imm
<< 8 |
15273 result
= (int32_t)result
;
15274 tcg_gen_movi_tl(cpu_gpr
[ret
], result
);
15279 tcg_gen_ext8u_tl(cpu_gpr
[ret
], val_t
);
15280 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 8);
15281 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15282 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 16);
15283 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15284 tcg_gen_ext32s_tl(cpu_gpr
[ret
], cpu_gpr
[ret
]);
15289 imm
= (ctx
->opcode
>> 16) & 0x03FF;
15290 imm
= (int16_t)(imm
<< 6) >> 6;
15291 tcg_gen_movi_tl(cpu_gpr
[ret
], \
15292 (target_long
)((int32_t)imm
<< 16 | \
15298 tcg_gen_ext16u_tl(cpu_gpr
[ret
], val_t
);
15299 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 16);
15300 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15301 tcg_gen_ext32s_tl(cpu_gpr
[ret
], cpu_gpr
[ret
]);
15305 #ifdef TARGET_MIPS64
15306 case OPC_ABSQ_S_QH_DSP
:
15313 imm
= (ctx
->opcode
>> 16) & 0xFF;
15314 temp
= ((uint64_t)imm
<< 8) | (uint64_t)imm
;
15315 temp
= (temp
<< 16) | temp
;
15316 temp
= (temp
<< 32) | temp
;
15317 tcg_gen_movi_tl(cpu_gpr
[ret
], temp
);
15325 imm
= (ctx
->opcode
>> 16) & 0x03FF;
15326 imm
= (int16_t)(imm
<< 6) >> 6;
15327 temp
= ((target_long
)imm
<< 32) \
15328 | ((target_long
)imm
& 0xFFFFFFFF);
15329 tcg_gen_movi_tl(cpu_gpr
[ret
], temp
);
15337 imm
= (ctx
->opcode
>> 16) & 0x03FF;
15338 imm
= (int16_t)(imm
<< 6) >> 6;
15340 temp
= ((uint64_t)(uint16_t)imm
<< 48) |
15341 ((uint64_t)(uint16_t)imm
<< 32) |
15342 ((uint64_t)(uint16_t)imm
<< 16) |
15343 (uint64_t)(uint16_t)imm
;
15344 tcg_gen_movi_tl(cpu_gpr
[ret
], temp
);
15349 tcg_gen_ext8u_tl(cpu_gpr
[ret
], val_t
);
15350 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 8);
15351 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15352 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 16);
15353 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15354 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 32);
15355 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15359 tcg_gen_ext32u_i64(cpu_gpr
[ret
], val_t
);
15360 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 32);
15361 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15365 tcg_gen_ext16u_tl(cpu_gpr
[ret
], val_t
);
15366 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 16);
15367 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15368 tcg_gen_shli_tl(t0
, cpu_gpr
[ret
], 32);
15369 tcg_gen_or_tl(cpu_gpr
[ret
], cpu_gpr
[ret
], t0
);
15376 tcg_temp_free(val_t
);
15378 (void)opn
; /* avoid a compiler warning */
15379 MIPS_DEBUG("%s", opn
);
15382 static void gen_mipsdsp_add_cmp_pick(DisasContext
*ctx
,
15383 uint32_t op1
, uint32_t op2
,
15384 int ret
, int v1
, int v2
, int check_ret
)
15386 const char *opn
= "mipsdsp add compare pick";
15391 if ((ret
== 0) && (check_ret
== 1)) {
15392 /* Treat as NOP. */
15397 t1
= tcg_temp_new();
15398 v1_t
= tcg_temp_new();
15399 v2_t
= tcg_temp_new();
15401 gen_load_gpr(v1_t
, v1
);
15402 gen_load_gpr(v2_t
, v2
);
15405 case OPC_CMPU_EQ_QB_DSP
:
15407 case OPC_CMPU_EQ_QB
:
15409 gen_helper_cmpu_eq_qb(v1_t
, v2_t
, cpu_env
);
15411 case OPC_CMPU_LT_QB
:
15413 gen_helper_cmpu_lt_qb(v1_t
, v2_t
, cpu_env
);
15415 case OPC_CMPU_LE_QB
:
15417 gen_helper_cmpu_le_qb(v1_t
, v2_t
, cpu_env
);
15419 case OPC_CMPGU_EQ_QB
:
15421 gen_helper_cmpgu_eq_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
15423 case OPC_CMPGU_LT_QB
:
15425 gen_helper_cmpgu_lt_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
15427 case OPC_CMPGU_LE_QB
:
15429 gen_helper_cmpgu_le_qb(cpu_gpr
[ret
], v1_t
, v2_t
);
15431 case OPC_CMPGDU_EQ_QB
:
15433 gen_helper_cmpgu_eq_qb(t1
, v1_t
, v2_t
);
15434 tcg_gen_mov_tl(cpu_gpr
[ret
], t1
);
15435 tcg_gen_andi_tl(cpu_dspctrl
, cpu_dspctrl
, 0xF0FFFFFF);
15436 tcg_gen_shli_tl(t1
, t1
, 24);
15437 tcg_gen_or_tl(cpu_dspctrl
, cpu_dspctrl
, t1
);
15439 case OPC_CMPGDU_LT_QB
:
15441 gen_helper_cmpgu_lt_qb(t1
, v1_t
, v2_t
);
15442 tcg_gen_mov_tl(cpu_gpr
[ret
], t1
);
15443 tcg_gen_andi_tl(cpu_dspctrl
, cpu_dspctrl
, 0xF0FFFFFF);
15444 tcg_gen_shli_tl(t1
, t1
, 24);
15445 tcg_gen_or_tl(cpu_dspctrl
, cpu_dspctrl
, t1
);
15447 case OPC_CMPGDU_LE_QB
:
15449 gen_helper_cmpgu_le_qb(t1
, v1_t
, v2_t
);
15450 tcg_gen_mov_tl(cpu_gpr
[ret
], t1
);
15451 tcg_gen_andi_tl(cpu_dspctrl
, cpu_dspctrl
, 0xF0FFFFFF);
15452 tcg_gen_shli_tl(t1
, t1
, 24);
15453 tcg_gen_or_tl(cpu_dspctrl
, cpu_dspctrl
, t1
);
15455 case OPC_CMP_EQ_PH
:
15457 gen_helper_cmp_eq_ph(v1_t
, v2_t
, cpu_env
);
15459 case OPC_CMP_LT_PH
:
15461 gen_helper_cmp_lt_ph(v1_t
, v2_t
, cpu_env
);
15463 case OPC_CMP_LE_PH
:
15465 gen_helper_cmp_le_ph(v1_t
, v2_t
, cpu_env
);
15469 gen_helper_pick_qb(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15473 gen_helper_pick_ph(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15475 case OPC_PACKRL_PH
:
15477 gen_helper_packrl_ph(cpu_gpr
[ret
], v1_t
, v2_t
);
15481 #ifdef TARGET_MIPS64
15482 case OPC_CMPU_EQ_OB_DSP
:
15484 case OPC_CMP_EQ_PW
:
15486 gen_helper_cmp_eq_pw(v1_t
, v2_t
, cpu_env
);
15488 case OPC_CMP_LT_PW
:
15490 gen_helper_cmp_lt_pw(v1_t
, v2_t
, cpu_env
);
15492 case OPC_CMP_LE_PW
:
15494 gen_helper_cmp_le_pw(v1_t
, v2_t
, cpu_env
);
15496 case OPC_CMP_EQ_QH
:
15498 gen_helper_cmp_eq_qh(v1_t
, v2_t
, cpu_env
);
15500 case OPC_CMP_LT_QH
:
15502 gen_helper_cmp_lt_qh(v1_t
, v2_t
, cpu_env
);
15504 case OPC_CMP_LE_QH
:
15506 gen_helper_cmp_le_qh(v1_t
, v2_t
, cpu_env
);
15508 case OPC_CMPGDU_EQ_OB
:
15510 gen_helper_cmpgdu_eq_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15512 case OPC_CMPGDU_LT_OB
:
15514 gen_helper_cmpgdu_lt_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15516 case OPC_CMPGDU_LE_OB
:
15518 gen_helper_cmpgdu_le_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15520 case OPC_CMPGU_EQ_OB
:
15522 gen_helper_cmpgu_eq_ob(cpu_gpr
[ret
], v1_t
, v2_t
);
15524 case OPC_CMPGU_LT_OB
:
15526 gen_helper_cmpgu_lt_ob(cpu_gpr
[ret
], v1_t
, v2_t
);
15528 case OPC_CMPGU_LE_OB
:
15530 gen_helper_cmpgu_le_ob(cpu_gpr
[ret
], v1_t
, v2_t
);
15532 case OPC_CMPU_EQ_OB
:
15534 gen_helper_cmpu_eq_ob(v1_t
, v2_t
, cpu_env
);
15536 case OPC_CMPU_LT_OB
:
15538 gen_helper_cmpu_lt_ob(v1_t
, v2_t
, cpu_env
);
15540 case OPC_CMPU_LE_OB
:
15542 gen_helper_cmpu_le_ob(v1_t
, v2_t
, cpu_env
);
15544 case OPC_PACKRL_PW
:
15546 gen_helper_packrl_pw(cpu_gpr
[ret
], v1_t
, v2_t
);
15550 gen_helper_pick_ob(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15554 gen_helper_pick_pw(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15558 gen_helper_pick_qh(cpu_gpr
[ret
], v1_t
, v2_t
, cpu_env
);
15566 tcg_temp_free(v1_t
);
15567 tcg_temp_free(v2_t
);
15569 (void)opn
; /* avoid a compiler warning */
15570 MIPS_DEBUG("%s", opn
);
15573 static void gen_mipsdsp_append(CPUMIPSState
*env
, DisasContext
*ctx
,
15574 uint32_t op1
, int rt
, int rs
, int sa
)
15576 const char *opn
= "mipsdsp append/dappend";
15582 /* Treat as NOP. */
15587 t0
= tcg_temp_new();
15588 gen_load_gpr(t0
, rs
);
15591 case OPC_APPEND_DSP
:
15592 switch (MASK_APPEND(ctx
->opcode
)) {
15595 tcg_gen_deposit_tl(cpu_gpr
[rt
], t0
, cpu_gpr
[rt
], sa
, 32 - sa
);
15597 tcg_gen_ext32s_tl(cpu_gpr
[rt
], cpu_gpr
[rt
]);
15601 tcg_gen_ext32u_tl(cpu_gpr
[rt
], cpu_gpr
[rt
]);
15602 tcg_gen_shri_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], sa
);
15603 tcg_gen_shli_tl(t0
, t0
, 32 - sa
);
15604 tcg_gen_or_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], t0
);
15606 tcg_gen_ext32s_tl(cpu_gpr
[rt
], cpu_gpr
[rt
]);
15610 if (sa
!= 0 && sa
!= 2) {
15611 tcg_gen_shli_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], 8 * sa
);
15612 tcg_gen_ext32u_tl(t0
, t0
);
15613 tcg_gen_shri_tl(t0
, t0
, 8 * (4 - sa
));
15614 tcg_gen_or_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], t0
);
15616 tcg_gen_ext32s_tl(cpu_gpr
[rt
], cpu_gpr
[rt
]);
15618 default: /* Invalid */
15619 MIPS_INVAL("MASK APPEND");
15620 generate_exception(ctx
, EXCP_RI
);
15624 #ifdef TARGET_MIPS64
15625 case OPC_DAPPEND_DSP
:
15626 switch (MASK_DAPPEND(ctx
->opcode
)) {
15629 tcg_gen_deposit_tl(cpu_gpr
[rt
], t0
, cpu_gpr
[rt
], sa
, 64 - sa
);
15633 tcg_gen_shri_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], 0x20 | sa
);
15634 tcg_gen_shli_tl(t0
, t0
, 64 - (0x20 | sa
));
15635 tcg_gen_or_tl(cpu_gpr
[rt
], t0
, t0
);
15639 tcg_gen_shri_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], sa
);
15640 tcg_gen_shli_tl(t0
, t0
, 64 - sa
);
15641 tcg_gen_or_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], t0
);
15646 if (sa
!= 0 && sa
!= 2 && sa
!= 4) {
15647 tcg_gen_shli_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], 8 * sa
);
15648 tcg_gen_shri_tl(t0
, t0
, 8 * (8 - sa
));
15649 tcg_gen_or_tl(cpu_gpr
[rt
], cpu_gpr
[rt
], t0
);
15652 default: /* Invalid */
15653 MIPS_INVAL("MASK DAPPEND");
15654 generate_exception(ctx
, EXCP_RI
);
15661 (void)opn
; /* avoid a compiler warning */
15662 MIPS_DEBUG("%s", opn
);
15665 static void gen_mipsdsp_accinsn(DisasContext
*ctx
, uint32_t op1
, uint32_t op2
,
15666 int ret
, int v1
, int v2
, int check_ret
)
15669 const char *opn
= "mipsdsp accumulator";
15676 if ((ret
== 0) && (check_ret
== 1)) {
15677 /* Treat as NOP. */
15682 t0
= tcg_temp_new();
15683 t1
= tcg_temp_new();
15684 v1_t
= tcg_temp_new();
15685 v2_t
= tcg_temp_new();
15687 gen_load_gpr(v1_t
, v1
);
15688 gen_load_gpr(v2_t
, v2
);
15691 case OPC_EXTR_W_DSP
:
15695 tcg_gen_movi_tl(t0
, v2
);
15696 tcg_gen_movi_tl(t1
, v1
);
15697 gen_helper_extr_w(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15700 tcg_gen_movi_tl(t0
, v2
);
15701 tcg_gen_movi_tl(t1
, v1
);
15702 gen_helper_extr_r_w(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15704 case OPC_EXTR_RS_W
:
15705 tcg_gen_movi_tl(t0
, v2
);
15706 tcg_gen_movi_tl(t1
, v1
);
15707 gen_helper_extr_rs_w(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15710 tcg_gen_movi_tl(t0
, v2
);
15711 tcg_gen_movi_tl(t1
, v1
);
15712 gen_helper_extr_s_h(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15714 case OPC_EXTRV_S_H
:
15715 tcg_gen_movi_tl(t0
, v2
);
15716 gen_helper_extr_s_h(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15719 tcg_gen_movi_tl(t0
, v2
);
15720 gen_helper_extr_w(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15722 case OPC_EXTRV_R_W
:
15723 tcg_gen_movi_tl(t0
, v2
);
15724 gen_helper_extr_r_w(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15726 case OPC_EXTRV_RS_W
:
15727 tcg_gen_movi_tl(t0
, v2
);
15728 gen_helper_extr_rs_w(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15731 tcg_gen_movi_tl(t0
, v2
);
15732 tcg_gen_movi_tl(t1
, v1
);
15733 gen_helper_extp(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15736 tcg_gen_movi_tl(t0
, v2
);
15737 gen_helper_extp(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15740 tcg_gen_movi_tl(t0
, v2
);
15741 tcg_gen_movi_tl(t1
, v1
);
15742 gen_helper_extpdp(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15745 tcg_gen_movi_tl(t0
, v2
);
15746 gen_helper_extpdp(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15749 imm
= (ctx
->opcode
>> 20) & 0x3F;
15750 tcg_gen_movi_tl(t0
, ret
);
15751 tcg_gen_movi_tl(t1
, imm
);
15752 gen_helper_shilo(t0
, t1
, cpu_env
);
15755 tcg_gen_movi_tl(t0
, ret
);
15756 gen_helper_shilo(t0
, v1_t
, cpu_env
);
15759 tcg_gen_movi_tl(t0
, ret
);
15760 gen_helper_mthlip(t0
, v1_t
, cpu_env
);
15763 imm
= (ctx
->opcode
>> 11) & 0x3FF;
15764 tcg_gen_movi_tl(t0
, imm
);
15765 gen_helper_wrdsp(v1_t
, t0
, cpu_env
);
15768 imm
= (ctx
->opcode
>> 16) & 0x03FF;
15769 tcg_gen_movi_tl(t0
, imm
);
15770 gen_helper_rddsp(cpu_gpr
[ret
], t0
, cpu_env
);
15774 #ifdef TARGET_MIPS64
15775 case OPC_DEXTR_W_DSP
:
15779 tcg_gen_movi_tl(t0
, ret
);
15780 gen_helper_dmthlip(v1_t
, t0
, cpu_env
);
15784 int shift
= (ctx
->opcode
>> 19) & 0x7F;
15785 int ac
= (ctx
->opcode
>> 11) & 0x03;
15786 tcg_gen_movi_tl(t0
, shift
);
15787 tcg_gen_movi_tl(t1
, ac
);
15788 gen_helper_dshilo(t0
, t1
, cpu_env
);
15793 int ac
= (ctx
->opcode
>> 11) & 0x03;
15794 tcg_gen_movi_tl(t0
, ac
);
15795 gen_helper_dshilo(v1_t
, t0
, cpu_env
);
15799 tcg_gen_movi_tl(t0
, v2
);
15800 tcg_gen_movi_tl(t1
, v1
);
15802 gen_helper_dextp(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15805 tcg_gen_movi_tl(t0
, v2
);
15806 gen_helper_dextp(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15809 tcg_gen_movi_tl(t0
, v2
);
15810 tcg_gen_movi_tl(t1
, v1
);
15811 gen_helper_dextpdp(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15814 tcg_gen_movi_tl(t0
, v2
);
15815 gen_helper_dextpdp(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15818 tcg_gen_movi_tl(t0
, v2
);
15819 tcg_gen_movi_tl(t1
, v1
);
15820 gen_helper_dextr_l(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15822 case OPC_DEXTR_R_L
:
15823 tcg_gen_movi_tl(t0
, v2
);
15824 tcg_gen_movi_tl(t1
, v1
);
15825 gen_helper_dextr_r_l(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15827 case OPC_DEXTR_RS_L
:
15828 tcg_gen_movi_tl(t0
, v2
);
15829 tcg_gen_movi_tl(t1
, v1
);
15830 gen_helper_dextr_rs_l(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15833 tcg_gen_movi_tl(t0
, v2
);
15834 tcg_gen_movi_tl(t1
, v1
);
15835 gen_helper_dextr_w(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15837 case OPC_DEXTR_R_W
:
15838 tcg_gen_movi_tl(t0
, v2
);
15839 tcg_gen_movi_tl(t1
, v1
);
15840 gen_helper_dextr_r_w(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15842 case OPC_DEXTR_RS_W
:
15843 tcg_gen_movi_tl(t0
, v2
);
15844 tcg_gen_movi_tl(t1
, v1
);
15845 gen_helper_dextr_rs_w(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15847 case OPC_DEXTR_S_H
:
15848 tcg_gen_movi_tl(t0
, v2
);
15849 tcg_gen_movi_tl(t1
, v1
);
15850 gen_helper_dextr_s_h(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15852 case OPC_DEXTRV_S_H
:
15853 tcg_gen_movi_tl(t0
, v2
);
15854 tcg_gen_movi_tl(t1
, v1
);
15855 gen_helper_dextr_s_h(cpu_gpr
[ret
], t0
, t1
, cpu_env
);
15858 tcg_gen_movi_tl(t0
, v2
);
15859 gen_helper_dextr_l(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15861 case OPC_DEXTRV_R_L
:
15862 tcg_gen_movi_tl(t0
, v2
);
15863 gen_helper_dextr_r_l(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15865 case OPC_DEXTRV_RS_L
:
15866 tcg_gen_movi_tl(t0
, v2
);
15867 gen_helper_dextr_rs_l(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15870 tcg_gen_movi_tl(t0
, v2
);
15871 gen_helper_dextr_w(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15873 case OPC_DEXTRV_R_W
:
15874 tcg_gen_movi_tl(t0
, v2
);
15875 gen_helper_dextr_r_w(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15877 case OPC_DEXTRV_RS_W
:
15878 tcg_gen_movi_tl(t0
, v2
);
15879 gen_helper_dextr_rs_w(cpu_gpr
[ret
], t0
, v1_t
, cpu_env
);
15888 tcg_temp_free(v1_t
);
15889 tcg_temp_free(v2_t
);
15891 (void)opn
; /* avoid a compiler warning */
15892 MIPS_DEBUG("%s", opn
);
15895 /* End MIPSDSP functions. */
15897 /* Compact Branches */
15898 static void gen_compute_compact_branch(DisasContext
*ctx
, uint32_t opc
,
15899 int rs
, int rt
, int32_t offset
)
15901 int bcond_compute
= 0;
15902 TCGv t0
= tcg_temp_new();
15903 TCGv t1
= tcg_temp_new();
15905 if (ctx
->hflags
& MIPS_HFLAG_BMASK
) {
15906 #ifdef MIPS_DEBUG_DISAS
15907 LOG_DISAS("Branch in delay / forbidden slot at PC 0x" TARGET_FMT_lx
15910 generate_exception(ctx
, EXCP_RI
);
15914 /* Load needed operands and calculate btarget */
15916 /* compact branch */
15917 case OPC_BOVC
: /* OPC_BEQZALC, OPC_BEQC */
15918 case OPC_BNVC
: /* OPC_BNEZALC, OPC_BNEC */
15919 gen_load_gpr(t0
, rs
);
15920 gen_load_gpr(t1
, rt
);
15922 ctx
->btarget
= addr_add(ctx
, ctx
->pc
+ 4, offset
);
15923 if (rs
<= rt
&& rs
== 0) {
15924 /* OPC_BEQZALC, OPC_BNEZALC */
15925 tcg_gen_movi_tl(cpu_gpr
[31], ctx
->pc
+ 4);
15928 case OPC_BLEZC
: /* OPC_BGEZC, OPC_BGEC */
15929 case OPC_BGTZC
: /* OPC_BLTZC, OPC_BLTC */
15930 gen_load_gpr(t0
, rs
);
15931 gen_load_gpr(t1
, rt
);
15933 ctx
->btarget
= addr_add(ctx
, ctx
->pc
+ 4, offset
);
15935 case OPC_BLEZALC
: /* OPC_BGEZALC, OPC_BGEUC */
15936 case OPC_BGTZALC
: /* OPC_BLTZALC, OPC_BLTUC */
15937 if (rs
== 0 || rs
== rt
) {
15938 /* OPC_BLEZALC, OPC_BGEZALC */
15939 /* OPC_BGTZALC, OPC_BLTZALC */
15940 tcg_gen_movi_tl(cpu_gpr
[31], ctx
->pc
+ 4);
15942 gen_load_gpr(t0
, rs
);
15943 gen_load_gpr(t1
, rt
);
15945 ctx
->btarget
= addr_add(ctx
, ctx
->pc
+ 4, offset
);
15949 ctx
->btarget
= addr_add(ctx
, ctx
->pc
+ 4, offset
);
15954 /* OPC_BEQZC, OPC_BNEZC */
15955 gen_load_gpr(t0
, rs
);
15957 ctx
->btarget
= addr_add(ctx
, ctx
->pc
+ 4, offset
);
15959 /* OPC_JIC, OPC_JIALC */
15960 TCGv tbase
= tcg_temp_new();
15961 TCGv toffset
= tcg_temp_new();
15963 gen_load_gpr(tbase
, rt
);
15964 tcg_gen_movi_tl(toffset
, offset
);
15965 gen_op_addr_add(ctx
, btarget
, tbase
, toffset
);
15966 tcg_temp_free(tbase
);
15967 tcg_temp_free(toffset
);
15971 MIPS_INVAL("Compact branch/jump");
15972 generate_exception(ctx
, EXCP_RI
);
15976 if (bcond_compute
== 0) {
15977 /* Uncoditional compact branch */
15980 tcg_gen_movi_tl(cpu_gpr
[31], ctx
->pc
+ 4);
15983 ctx
->hflags
|= MIPS_HFLAG_BR
;
15986 tcg_gen_movi_tl(cpu_gpr
[31], ctx
->pc
+ 4);
15989 ctx
->hflags
|= MIPS_HFLAG_B
;
15992 MIPS_INVAL("Compact branch/jump");
15993 generate_exception(ctx
, EXCP_RI
);
15997 /* Generating branch here as compact branches don't have delay slot */
15998 gen_branch(ctx
, 4);
16000 /* Conditional compact branch */
16001 int fs
= gen_new_label();
16002 save_cpu_state(ctx
, 0);
16005 case OPC_BLEZALC
: /* OPC_BGEZALC, OPC_BGEUC */
16006 if (rs
== 0 && rt
!= 0) {
16008 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_LE
), t1
, 0, fs
);
16009 } else if (rs
!= 0 && rt
!= 0 && rs
== rt
) {
16011 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_GE
), t1
, 0, fs
);
16014 tcg_gen_brcond_tl(tcg_invert_cond(TCG_COND_GEU
), t0
, t1
, fs
);
16017 case OPC_BGTZALC
: /* OPC_BLTZALC, OPC_BLTUC */
16018 if (rs
== 0 && rt
!= 0) {
16020 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_GT
), t1
, 0, fs
);
16021 } else if (rs
!= 0 && rt
!= 0 && rs
== rt
) {
16023 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_LT
), t1
, 0, fs
);
16026 tcg_gen_brcond_tl(tcg_invert_cond(TCG_COND_LTU
), t0
, t1
, fs
);
16029 case OPC_BLEZC
: /* OPC_BGEZC, OPC_BGEC */
16030 if (rs
== 0 && rt
!= 0) {
16032 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_LE
), t1
, 0, fs
);
16033 } else if (rs
!= 0 && rt
!= 0 && rs
== rt
) {
16035 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_GE
), t1
, 0, fs
);
16038 tcg_gen_brcond_tl(tcg_invert_cond(TCG_COND_GE
), t0
, t1
, fs
);
16041 case OPC_BGTZC
: /* OPC_BLTZC, OPC_BLTC */
16042 if (rs
== 0 && rt
!= 0) {
16044 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_GT
), t1
, 0, fs
);
16045 } else if (rs
!= 0 && rt
!= 0 && rs
== rt
) {
16047 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_LT
), t1
, 0, fs
);
16050 tcg_gen_brcond_tl(tcg_invert_cond(TCG_COND_LT
), t0
, t1
, fs
);
16053 case OPC_BOVC
: /* OPC_BEQZALC, OPC_BEQC */
16054 case OPC_BNVC
: /* OPC_BNEZALC, OPC_BNEC */
16056 /* OPC_BOVC, OPC_BNVC */
16057 TCGv t2
= tcg_temp_new();
16058 TCGv t3
= tcg_temp_new();
16059 TCGv t4
= tcg_temp_new();
16060 TCGv input_overflow
= tcg_temp_new();
16062 gen_load_gpr(t0
, rs
);
16063 gen_load_gpr(t1
, rt
);
16064 tcg_gen_ext32s_tl(t2
, t0
);
16065 tcg_gen_setcond_tl(TCG_COND_NE
, input_overflow
, t2
, t0
);
16066 tcg_gen_ext32s_tl(t3
, t1
);
16067 tcg_gen_setcond_tl(TCG_COND_NE
, t4
, t3
, t1
);
16068 tcg_gen_or_tl(input_overflow
, input_overflow
, t4
);
16070 tcg_gen_add_tl(t4
, t2
, t3
);
16071 tcg_gen_ext32s_tl(t4
, t4
);
16072 tcg_gen_xor_tl(t2
, t2
, t3
);
16073 tcg_gen_xor_tl(t3
, t4
, t3
);
16074 tcg_gen_andc_tl(t2
, t3
, t2
);
16075 tcg_gen_setcondi_tl(TCG_COND_LT
, t4
, t2
, 0);
16076 tcg_gen_or_tl(t4
, t4
, input_overflow
);
16077 if (opc
== OPC_BOVC
) {
16079 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_NE
), t4
, 0, fs
);
16082 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_EQ
), t4
, 0, fs
);
16084 tcg_temp_free(input_overflow
);
16088 } else if (rs
< rt
&& rs
== 0) {
16089 /* OPC_BEQZALC, OPC_BNEZALC */
16090 if (opc
== OPC_BEQZALC
) {
16092 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_EQ
), t1
, 0, fs
);
16095 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_NE
), t1
, 0, fs
);
16098 /* OPC_BEQC, OPC_BNEC */
16099 if (opc
== OPC_BEQC
) {
16101 tcg_gen_brcond_tl(tcg_invert_cond(TCG_COND_EQ
), t0
, t1
, fs
);
16104 tcg_gen_brcond_tl(tcg_invert_cond(TCG_COND_NE
), t0
, t1
, fs
);
16109 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_EQ
), t0
, 0, fs
);
16112 tcg_gen_brcondi_tl(tcg_invert_cond(TCG_COND_NE
), t0
, 0, fs
);
16115 MIPS_INVAL("Compact conditional branch/jump");
16116 generate_exception(ctx
, EXCP_RI
);
16120 /* Generating branch here as compact branches don't have delay slot */
16121 gen_goto_tb(ctx
, 1, ctx
->btarget
);
16124 ctx
->hflags
|= MIPS_HFLAG_FBNSLOT
;
16125 MIPS_DEBUG("Compact conditional branch");
16133 static void decode_opc_special_r6(CPUMIPSState
*env
, DisasContext
*ctx
)
16135 int rs
, rt
, rd
, sa
;
16138 rs
= (ctx
->opcode
>> 21) & 0x1f;
16139 rt
= (ctx
->opcode
>> 16) & 0x1f;
16140 rd
= (ctx
->opcode
>> 11) & 0x1f;
16141 sa
= (ctx
->opcode
>> 6) & 0x1f;
16143 op1
= MASK_SPECIAL(ctx
->opcode
);
16147 int imm2
= extract32(ctx
->opcode
, 6, 3);
16148 TCGv t0
= tcg_temp_new();
16149 TCGv t1
= tcg_temp_new();
16150 gen_load_gpr(t0
, rs
);
16151 gen_load_gpr(t1
, rt
);
16152 tcg_gen_shli_tl(t0
, t0
, imm2
+ 1);
16153 tcg_gen_add_tl(t0
, t0
, t1
);
16154 tcg_gen_ext32s_tl(cpu_gpr
[rd
], t0
);
16159 case OPC_MULT
... OPC_DIVU
:
16160 op2
= MASK_R6_MULDIV(ctx
->opcode
);
16170 gen_r6_muldiv(ctx
, op2
, rd
, rs
, rt
);
16173 MIPS_INVAL("special_r6 muldiv");
16174 generate_exception(ctx
, EXCP_RI
);
16180 gen_cond_move(ctx
, op1
, rd
, rs
, rt
);
16184 if (rt
== 0 && sa
== 1) {
16185 /* Major opcode and function field is shared with preR6 MFHI/MTHI.
16186 We need additionally to check other fields */
16187 gen_cl(ctx
, op1
, rd
, rs
);
16189 generate_exception(ctx
, EXCP_RI
);
16193 if (ctx
->hflags
& MIPS_HFLAG_SBRI
) {
16194 generate_exception(ctx
, EXCP_RI
);
16196 generate_exception(ctx
, EXCP_DBp
);
16199 #if defined(TARGET_MIPS64)
16201 check_mips_64(ctx
);
16203 int imm2
= extract32(ctx
->opcode
, 6, 3);
16204 TCGv t0
= tcg_temp_new();
16205 TCGv t1
= tcg_temp_new();
16206 gen_load_gpr(t0
, rs
);
16207 gen_load_gpr(t1
, rt
);
16208 tcg_gen_shli_tl(t0
, t0
, imm2
+ 1);
16209 tcg_gen_add_tl(cpu_gpr
[rd
], t0
, t1
);
16216 if (rt
== 0 && sa
== 1) {
16217 /* Major opcode and function field is shared with preR6 MFHI/MTHI.
16218 We need additionally to check other fields */
16219 check_mips_64(ctx
);
16220 gen_cl(ctx
, op1
, rd
, rs
);
16222 generate_exception(ctx
, EXCP_RI
);
16225 case OPC_DMULT
... OPC_DDIVU
:
16226 op2
= MASK_R6_MULDIV(ctx
->opcode
);
16236 check_mips_64(ctx
);
16237 gen_r6_muldiv(ctx
, op2
, rd
, rs
, rt
);
16240 MIPS_INVAL("special_r6 muldiv");
16241 generate_exception(ctx
, EXCP_RI
);
16246 default: /* Invalid */
16247 MIPS_INVAL("special_r6");
16248 generate_exception(ctx
, EXCP_RI
);
16253 static void decode_opc_special_legacy(CPUMIPSState
*env
, DisasContext
*ctx
)
16255 int rs
, rt
, rd
, sa
;
16258 rs
= (ctx
->opcode
>> 21) & 0x1f;
16259 rt
= (ctx
->opcode
>> 16) & 0x1f;
16260 rd
= (ctx
->opcode
>> 11) & 0x1f;
16261 sa
= (ctx
->opcode
>> 6) & 0x1f;
16263 op1
= MASK_SPECIAL(ctx
->opcode
);
16265 case OPC_MOVN
: /* Conditional move */
16267 check_insn(ctx
, ISA_MIPS4
| ISA_MIPS32
|
16268 INSN_LOONGSON2E
| INSN_LOONGSON2F
);
16269 gen_cond_move(ctx
, op1
, rd
, rs
, rt
);
16271 case OPC_MFHI
: /* Move from HI/LO */
16273 gen_HILO(ctx
, op1
, rs
& 3, rd
);
16276 case OPC_MTLO
: /* Move to HI/LO */
16277 gen_HILO(ctx
, op1
, rd
& 3, rs
);
16280 check_insn(ctx
, ISA_MIPS4
| ISA_MIPS32
);
16281 if (env
->CP0_Config1
& (1 << CP0C1_FP
)) {
16282 check_cp1_enabled(ctx
);
16283 gen_movci(ctx
, rd
, rs
, (ctx
->opcode
>> 18) & 0x7,
16284 (ctx
->opcode
>> 16) & 1);
16286 generate_exception_err(ctx
, EXCP_CpU
, 1);
16292 check_insn(ctx
, INSN_VR54XX
);
16293 op1
= MASK_MUL_VR54XX(ctx
->opcode
);
16294 gen_mul_vr54xx(ctx
, op1
, rd
, rs
, rt
);
16296 gen_muldiv(ctx
, op1
, rd
& 3, rs
, rt
);
16301 gen_muldiv(ctx
, op1
, 0, rs
, rt
);
16303 #if defined(TARGET_MIPS64)
16304 case OPC_DMULT
... OPC_DDIVU
:
16305 check_insn(ctx
, ISA_MIPS3
);
16306 check_mips_64(ctx
);
16307 gen_muldiv(ctx
, op1
, 0, rs
, rt
);
16311 gen_compute_branch(ctx
, op1
, 4, rs
, rd
, sa
, 4);
16314 #ifdef MIPS_STRICT_STANDARD
16315 MIPS_INVAL("SPIM");
16316 generate_exception(ctx
, EXCP_RI
);
16318 /* Implemented as RI exception for now. */
16319 MIPS_INVAL("spim (unofficial)");
16320 generate_exception(ctx
, EXCP_RI
);
16323 default: /* Invalid */
16324 MIPS_INVAL("special_legacy");
16325 generate_exception(ctx
, EXCP_RI
);
16330 static void decode_opc_special(CPUMIPSState
*env
, DisasContext
*ctx
)
16332 int rs
, rt
, rd
, sa
;
16335 rs
= (ctx
->opcode
>> 21) & 0x1f;
16336 rt
= (ctx
->opcode
>> 16) & 0x1f;
16337 rd
= (ctx
->opcode
>> 11) & 0x1f;
16338 sa
= (ctx
->opcode
>> 6) & 0x1f;
16340 op1
= MASK_SPECIAL(ctx
->opcode
);
16342 case OPC_SLL
: /* Shift with immediate */
16343 if (sa
== 5 && rd
== 0 &&
16344 rs
== 0 && rt
== 0) { /* PAUSE */
16345 if ((ctx
->insn_flags
& ISA_MIPS32R6
) &&
16346 (ctx
->hflags
& MIPS_HFLAG_BMASK
)) {
16347 MIPS_DEBUG("CTI in delay / forbidden slot");
16348 generate_exception(ctx
, EXCP_RI
);
16354 gen_shift_imm(ctx
, op1
, rd
, rt
, sa
);
16357 switch ((ctx
->opcode
>> 21) & 0x1f) {
16359 /* rotr is decoded as srl on non-R2 CPUs */
16360 if (ctx
->insn_flags
& ISA_MIPS32R2
) {
16365 gen_shift_imm(ctx
, op1
, rd
, rt
, sa
);
16368 generate_exception(ctx
, EXCP_RI
);
16372 case OPC_ADD
... OPC_SUBU
:
16373 gen_arith(ctx
, op1
, rd
, rs
, rt
);
16375 case OPC_SLLV
: /* Shifts */
16377 gen_shift(ctx
, op1
, rd
, rs
, rt
);
16380 switch ((ctx
->opcode
>> 6) & 0x1f) {
16382 /* rotrv is decoded as srlv on non-R2 CPUs */
16383 if (ctx
->insn_flags
& ISA_MIPS32R2
) {
16388 gen_shift(ctx
, op1
, rd
, rs
, rt
);
16391 generate_exception(ctx
, EXCP_RI
);
16395 case OPC_SLT
: /* Set on less than */
16397 gen_slt(ctx
, op1
, rd
, rs
, rt
);
16399 case OPC_AND
: /* Logic*/
16403 gen_logic(ctx
, op1
, rd
, rs
, rt
);
16406 gen_compute_branch(ctx
, op1
, 4, rs
, rd
, sa
, 4);
16408 case OPC_TGE
... OPC_TEQ
: /* Traps */
16410 check_insn(ctx
, ISA_MIPS2
);
16411 gen_trap(ctx
, op1
, rs
, rt
, -1);
16413 case OPC_LSA
: /* OPC_PMON */
16414 if ((ctx
->insn_flags
& ISA_MIPS32R6
) ||
16415 (env
->CP0_Config3
& (1 << CP0C3_MSAP
))) {
16416 decode_opc_special_r6(env
, ctx
);
16418 /* Pmon entry point, also R4010 selsl */
16419 #ifdef MIPS_STRICT_STANDARD
16420 MIPS_INVAL("PMON / selsl");
16421 generate_exception(ctx
, EXCP_RI
);
16423 gen_helper_0e0i(pmon
, sa
);
16428 generate_exception(ctx
, EXCP_SYSCALL
);
16429 ctx
->bstate
= BS_STOP
;
16432 generate_exception(ctx
, EXCP_BREAK
);
16435 check_insn(ctx
, ISA_MIPS2
);
16436 /* Treat as NOP. */
16439 #if defined(TARGET_MIPS64)
16440 /* MIPS64 specific opcodes */
16445 check_insn(ctx
, ISA_MIPS3
);
16446 check_mips_64(ctx
);
16447 gen_shift_imm(ctx
, op1
, rd
, rt
, sa
);
16450 switch ((ctx
->opcode
>> 21) & 0x1f) {
16452 /* drotr is decoded as dsrl on non-R2 CPUs */
16453 if (ctx
->insn_flags
& ISA_MIPS32R2
) {
16458 check_insn(ctx
, ISA_MIPS3
);
16459 check_mips_64(ctx
);
16460 gen_shift_imm(ctx
, op1
, rd
, rt
, sa
);
16463 generate_exception(ctx
, EXCP_RI
);
16468 switch ((ctx
->opcode
>> 21) & 0x1f) {
16470 /* drotr32 is decoded as dsrl32 on non-R2 CPUs */
16471 if (ctx
->insn_flags
& ISA_MIPS32R2
) {
16476 check_insn(ctx
, ISA_MIPS3
);
16477 check_mips_64(ctx
);
16478 gen_shift_imm(ctx
, op1
, rd
, rt
, sa
);
16481 generate_exception(ctx
, EXCP_RI
);
16485 case OPC_DADD
... OPC_DSUBU
:
16486 check_insn(ctx
, ISA_MIPS3
);
16487 check_mips_64(ctx
);
16488 gen_arith(ctx
, op1
, rd
, rs
, rt
);
16492 check_insn(ctx
, ISA_MIPS3
);
16493 check_mips_64(ctx
);
16494 gen_shift(ctx
, op1
, rd
, rs
, rt
);
16497 switch ((ctx
->opcode
>> 6) & 0x1f) {
16499 /* drotrv is decoded as dsrlv on non-R2 CPUs */
16500 if (ctx
->insn_flags
& ISA_MIPS32R2
) {
16505 check_insn(ctx
, ISA_MIPS3
);
16506 check_mips_64(ctx
);
16507 gen_shift(ctx
, op1
, rd
, rs
, rt
);
16510 generate_exception(ctx
, EXCP_RI
);
16515 if ((ctx
->insn_flags
& ISA_MIPS32R6
) ||
16516 (env
->CP0_Config3
& (1 << CP0C3_MSAP
))) {
16517 decode_opc_special_r6(env
, ctx
);
16522 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
16523 decode_opc_special_r6(env
, ctx
);
16525 decode_opc_special_legacy(env
, ctx
);
16530 static void decode_opc_special2_legacy(CPUMIPSState
*env
, DisasContext
*ctx
)
16535 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
16537 rs
= (ctx
->opcode
>> 21) & 0x1f;
16538 rt
= (ctx
->opcode
>> 16) & 0x1f;
16539 rd
= (ctx
->opcode
>> 11) & 0x1f;
16541 op1
= MASK_SPECIAL2(ctx
->opcode
);
16543 case OPC_MADD
... OPC_MADDU
: /* Multiply and add/sub */
16544 case OPC_MSUB
... OPC_MSUBU
:
16545 check_insn(ctx
, ISA_MIPS32
);
16546 gen_muldiv(ctx
, op1
, rd
& 3, rs
, rt
);
16549 gen_arith(ctx
, op1
, rd
, rs
, rt
);
16552 case OPC_DIVU_G_2F
:
16553 case OPC_MULT_G_2F
:
16554 case OPC_MULTU_G_2F
:
16556 case OPC_MODU_G_2F
:
16557 check_insn(ctx
, INSN_LOONGSON2F
);
16558 gen_loongson_integer(ctx
, op1
, rd
, rs
, rt
);
16562 check_insn(ctx
, ISA_MIPS32
);
16563 gen_cl(ctx
, op1
, rd
, rs
);
16566 /* XXX: not clear which exception should be raised
16567 * when in debug mode...
16569 check_insn(ctx
, ISA_MIPS32
);
16570 if (!(ctx
->hflags
& MIPS_HFLAG_DM
)) {
16571 generate_exception(ctx
, EXCP_DBp
);
16573 generate_exception(ctx
, EXCP_DBp
);
16575 /* Treat as NOP. */
16577 #if defined(TARGET_MIPS64)
16580 check_insn(ctx
, ISA_MIPS64
);
16581 check_mips_64(ctx
);
16582 gen_cl(ctx
, op1
, rd
, rs
);
16584 case OPC_DMULT_G_2F
:
16585 case OPC_DMULTU_G_2F
:
16586 case OPC_DDIV_G_2F
:
16587 case OPC_DDIVU_G_2F
:
16588 case OPC_DMOD_G_2F
:
16589 case OPC_DMODU_G_2F
:
16590 check_insn(ctx
, INSN_LOONGSON2F
);
16591 gen_loongson_integer(ctx
, op1
, rd
, rs
, rt
);
16594 default: /* Invalid */
16595 MIPS_INVAL("special2_legacy");
16596 generate_exception(ctx
, EXCP_RI
);
16601 static void decode_opc_special3_r6(CPUMIPSState
*env
, DisasContext
*ctx
)
16603 int rs
, rt
, rd
, sa
;
16607 rs
= (ctx
->opcode
>> 21) & 0x1f;
16608 rt
= (ctx
->opcode
>> 16) & 0x1f;
16609 rd
= (ctx
->opcode
>> 11) & 0x1f;
16610 sa
= (ctx
->opcode
>> 6) & 0x1f;
16611 imm
= (int16_t)ctx
->opcode
>> 7;
16613 op1
= MASK_SPECIAL3(ctx
->opcode
);
16617 /* hint codes 24-31 are reserved and signal RI */
16618 generate_exception(ctx
, EXCP_RI
);
16620 /* Treat as NOP. */
16623 /* Treat as NOP. */
16626 gen_st_cond(ctx
, op1
, rt
, rs
, imm
);
16629 gen_ld(ctx
, op1
, rt
, rs
, imm
);
16634 /* Treat as NOP. */
16637 TCGv t0
= tcg_temp_new();
16638 gen_load_gpr(t0
, rt
);
16640 op2
= MASK_BSHFL(ctx
->opcode
);
16642 case OPC_ALIGN
... OPC_ALIGN_END
:
16645 tcg_gen_mov_tl(cpu_gpr
[rd
], t0
);
16647 TCGv t1
= tcg_temp_new();
16648 TCGv_i64 t2
= tcg_temp_new_i64();
16649 gen_load_gpr(t1
, rs
);
16650 tcg_gen_concat_tl_i64(t2
, t1
, t0
);
16651 tcg_gen_shri_i64(t2
, t2
, 8 * (4 - sa
));
16652 #if defined(TARGET_MIPS64)
16653 tcg_gen_ext32s_i64(cpu_gpr
[rd
], t2
);
16655 tcg_gen_trunc_i64_i32(cpu_gpr
[rd
], t2
);
16657 tcg_temp_free_i64(t2
);
16662 gen_helper_bitswap(cpu_gpr
[rd
], t0
);
16668 #if defined(TARGET_MIPS64)
16670 gen_st_cond(ctx
, op1
, rt
, rs
, imm
);
16673 gen_ld(ctx
, op1
, rt
, rs
, imm
);
16676 check_mips_64(ctx
);
16679 /* Treat as NOP. */
16682 TCGv t0
= tcg_temp_new();
16683 gen_load_gpr(t0
, rt
);
16685 op2
= MASK_DBSHFL(ctx
->opcode
);
16687 case OPC_DALIGN
... OPC_DALIGN_END
:
16690 tcg_gen_mov_tl(cpu_gpr
[rd
], t0
);
16692 TCGv t1
= tcg_temp_new();
16693 gen_load_gpr(t1
, rs
);
16694 tcg_gen_shli_tl(t0
, t0
, 8 * sa
);
16695 tcg_gen_shri_tl(t1
, t1
, 8 * (8 - sa
));
16696 tcg_gen_or_tl(cpu_gpr
[rd
], t1
, t0
);
16701 gen_helper_dbitswap(cpu_gpr
[rd
], t0
);
16708 default: /* Invalid */
16709 MIPS_INVAL("special3_r6");
16710 generate_exception(ctx
, EXCP_RI
);
16715 static void decode_opc_special3_legacy(CPUMIPSState
*env
, DisasContext
*ctx
)
16720 rs
= (ctx
->opcode
>> 21) & 0x1f;
16721 rt
= (ctx
->opcode
>> 16) & 0x1f;
16722 rd
= (ctx
->opcode
>> 11) & 0x1f;
16724 op1
= MASK_SPECIAL3(ctx
->opcode
);
16726 case OPC_DIV_G_2E
... OPC_DIVU_G_2E
:
16727 case OPC_MOD_G_2E
... OPC_MODU_G_2E
:
16728 case OPC_MULT_G_2E
... OPC_MULTU_G_2E
:
16729 /* OPC_MULT_G_2E, OPC_ADDUH_QB_DSP, OPC_MUL_PH_DSP have
16730 * the same mask and op1. */
16731 if ((ctx
->insn_flags
& ASE_DSPR2
) && (op1
== OPC_MULT_G_2E
)) {
16732 op2
= MASK_ADDUH_QB(ctx
->opcode
);
16735 case OPC_ADDUH_R_QB
:
16737 case OPC_ADDQH_R_PH
:
16739 case OPC_ADDQH_R_W
:
16741 case OPC_SUBUH_R_QB
:
16743 case OPC_SUBQH_R_PH
:
16745 case OPC_SUBQH_R_W
:
16746 gen_mipsdsp_arith(ctx
, op1
, op2
, rd
, rs
, rt
);
16751 case OPC_MULQ_RS_W
:
16752 gen_mipsdsp_multiply(ctx
, op1
, op2
, rd
, rs
, rt
, 1);
16755 MIPS_INVAL("MASK ADDUH.QB");
16756 generate_exception(ctx
, EXCP_RI
);
16759 } else if (ctx
->insn_flags
& INSN_LOONGSON2E
) {
16760 gen_loongson_integer(ctx
, op1
, rd
, rs
, rt
);
16762 generate_exception(ctx
, EXCP_RI
);
16766 op2
= MASK_LX(ctx
->opcode
);
16768 #if defined(TARGET_MIPS64)
16774 gen_mipsdsp_ld(ctx
, op2
, rd
, rs
, rt
);
16776 default: /* Invalid */
16777 MIPS_INVAL("MASK LX");
16778 generate_exception(ctx
, EXCP_RI
);
16782 case OPC_ABSQ_S_PH_DSP
:
16783 op2
= MASK_ABSQ_S_PH(ctx
->opcode
);
16785 case OPC_ABSQ_S_QB
:
16786 case OPC_ABSQ_S_PH
:
16788 case OPC_PRECEQ_W_PHL
:
16789 case OPC_PRECEQ_W_PHR
:
16790 case OPC_PRECEQU_PH_QBL
:
16791 case OPC_PRECEQU_PH_QBR
:
16792 case OPC_PRECEQU_PH_QBLA
:
16793 case OPC_PRECEQU_PH_QBRA
:
16794 case OPC_PRECEU_PH_QBL
:
16795 case OPC_PRECEU_PH_QBR
:
16796 case OPC_PRECEU_PH_QBLA
:
16797 case OPC_PRECEU_PH_QBRA
:
16798 gen_mipsdsp_arith(ctx
, op1
, op2
, rd
, rs
, rt
);
16805 gen_mipsdsp_bitinsn(ctx
, op1
, op2
, rd
, rt
);
16808 MIPS_INVAL("MASK ABSQ_S.PH");
16809 generate_exception(ctx
, EXCP_RI
);
16813 case OPC_ADDU_QB_DSP
:
16814 op2
= MASK_ADDU_QB(ctx
->opcode
);
16817 case OPC_ADDQ_S_PH
:
16820 case OPC_ADDU_S_QB
:
16822 case OPC_ADDU_S_PH
:
16824 case OPC_SUBQ_S_PH
:
16827 case OPC_SUBU_S_QB
:
16829 case OPC_SUBU_S_PH
:
16833 case OPC_RADDU_W_QB
:
16834 gen_mipsdsp_arith(ctx
, op1
, op2
, rd
, rs
, rt
);
16836 case OPC_MULEU_S_PH_QBL
:
16837 case OPC_MULEU_S_PH_QBR
:
16838 case OPC_MULQ_RS_PH
:
16839 case OPC_MULEQ_S_W_PHL
:
16840 case OPC_MULEQ_S_W_PHR
:
16841 case OPC_MULQ_S_PH
:
16842 gen_mipsdsp_multiply(ctx
, op1
, op2
, rd
, rs
, rt
, 1);
16844 default: /* Invalid */
16845 MIPS_INVAL("MASK ADDU.QB");
16846 generate_exception(ctx
, EXCP_RI
);
16851 case OPC_CMPU_EQ_QB_DSP
:
16852 op2
= MASK_CMPU_EQ_QB(ctx
->opcode
);
16854 case OPC_PRECR_SRA_PH_W
:
16855 case OPC_PRECR_SRA_R_PH_W
:
16856 gen_mipsdsp_arith(ctx
, op1
, op2
, rt
, rs
, rd
);
16858 case OPC_PRECR_QB_PH
:
16859 case OPC_PRECRQ_QB_PH
:
16860 case OPC_PRECRQ_PH_W
:
16861 case OPC_PRECRQ_RS_PH_W
:
16862 case OPC_PRECRQU_S_QB_PH
:
16863 gen_mipsdsp_arith(ctx
, op1
, op2
, rd
, rs
, rt
);
16865 case OPC_CMPU_EQ_QB
:
16866 case OPC_CMPU_LT_QB
:
16867 case OPC_CMPU_LE_QB
:
16868 case OPC_CMP_EQ_PH
:
16869 case OPC_CMP_LT_PH
:
16870 case OPC_CMP_LE_PH
:
16871 gen_mipsdsp_add_cmp_pick(ctx
, op1
, op2
, rd
, rs
, rt
, 0);
16873 case OPC_CMPGU_EQ_QB
:
16874 case OPC_CMPGU_LT_QB
:
16875 case OPC_CMPGU_LE_QB
:
16876 case OPC_CMPGDU_EQ_QB
:
16877 case OPC_CMPGDU_LT_QB
:
16878 case OPC_CMPGDU_LE_QB
:
16881 case OPC_PACKRL_PH
:
16882 gen_mipsdsp_add_cmp_pick(ctx
, op1
, op2
, rd
, rs
, rt
, 1);
16884 default: /* Invalid */
16885 MIPS_INVAL("MASK CMPU.EQ.QB");
16886 generate_exception(ctx
, EXCP_RI
);
16890 case OPC_SHLL_QB_DSP
:
16891 gen_mipsdsp_shift(ctx
, op1
, rd
, rs
, rt
);
16893 case OPC_DPA_W_PH_DSP
:
16894 op2
= MASK_DPA_W_PH(ctx
->opcode
);
16896 case OPC_DPAU_H_QBL
:
16897 case OPC_DPAU_H_QBR
:
16898 case OPC_DPSU_H_QBL
:
16899 case OPC_DPSU_H_QBR
:
16901 case OPC_DPAX_W_PH
:
16902 case OPC_DPAQ_S_W_PH
:
16903 case OPC_DPAQX_S_W_PH
:
16904 case OPC_DPAQX_SA_W_PH
:
16906 case OPC_DPSX_W_PH
:
16907 case OPC_DPSQ_S_W_PH
:
16908 case OPC_DPSQX_S_W_PH
:
16909 case OPC_DPSQX_SA_W_PH
:
16910 case OPC_MULSAQ_S_W_PH
:
16911 case OPC_DPAQ_SA_L_W
:
16912 case OPC_DPSQ_SA_L_W
:
16913 case OPC_MAQ_S_W_PHL
:
16914 case OPC_MAQ_S_W_PHR
:
16915 case OPC_MAQ_SA_W_PHL
:
16916 case OPC_MAQ_SA_W_PHR
:
16917 case OPC_MULSA_W_PH
:
16918 gen_mipsdsp_multiply(ctx
, op1
, op2
, rd
, rs
, rt
, 0);
16920 default: /* Invalid */
16921 MIPS_INVAL("MASK DPAW.PH");
16922 generate_exception(ctx
, EXCP_RI
);
16927 op2
= MASK_INSV(ctx
->opcode
);
16939 t0
= tcg_temp_new();
16940 t1
= tcg_temp_new();
16942 gen_load_gpr(t0
, rt
);
16943 gen_load_gpr(t1
, rs
);
16945 gen_helper_insv(cpu_gpr
[rt
], cpu_env
, t1
, t0
);
16951 default: /* Invalid */
16952 MIPS_INVAL("MASK INSV");
16953 generate_exception(ctx
, EXCP_RI
);
16957 case OPC_APPEND_DSP
:
16958 gen_mipsdsp_append(env
, ctx
, op1
, rt
, rs
, rd
);
16960 case OPC_EXTR_W_DSP
:
16961 op2
= MASK_EXTR_W(ctx
->opcode
);
16965 case OPC_EXTR_RS_W
:
16967 case OPC_EXTRV_S_H
:
16969 case OPC_EXTRV_R_W
:
16970 case OPC_EXTRV_RS_W
:
16975 gen_mipsdsp_accinsn(ctx
, op1
, op2
, rt
, rs
, rd
, 1);
16978 gen_mipsdsp_accinsn(ctx
, op1
, op2
, rd
, rs
, rt
, 1);
16984 gen_mipsdsp_accinsn(ctx
, op1
, op2
, rd
, rs
, rt
, 0);
16986 default: /* Invalid */
16987 MIPS_INVAL("MASK EXTR.W");
16988 generate_exception(ctx
, EXCP_RI
);
16992 #if defined(TARGET_MIPS64)
16993 case OPC_DDIV_G_2E
... OPC_DDIVU_G_2E
:
16994 case OPC_DMULT_G_2E
... OPC_DMULTU_G_2E
:
16995 case OPC_DMOD_G_2E
... OPC_DMODU_G_2E
:
16996 check_insn(ctx
, INSN_LOONGSON2E
);
16997 gen_loongson_integer(ctx
, op1
, rd
, rs
, rt
);
16999 case OPC_ABSQ_S_QH_DSP
:
17000 op2
= MASK_ABSQ_S_QH(ctx
->opcode
);
17002 case OPC_PRECEQ_L_PWL
:
17003 case OPC_PRECEQ_L_PWR
:
17004 case OPC_PRECEQ_PW_QHL
:
17005 case OPC_PRECEQ_PW_QHR
:
17006 case OPC_PRECEQ_PW_QHLA
:
17007 case OPC_PRECEQ_PW_QHRA
:
17008 case OPC_PRECEQU_QH_OBL
:
17009 case OPC_PRECEQU_QH_OBR
:
17010 case OPC_PRECEQU_QH_OBLA
:
17011 case OPC_PRECEQU_QH_OBRA
:
17012 case OPC_PRECEU_QH_OBL
:
17013 case OPC_PRECEU_QH_OBR
:
17014 case OPC_PRECEU_QH_OBLA
:
17015 case OPC_PRECEU_QH_OBRA
:
17016 case OPC_ABSQ_S_OB
:
17017 case OPC_ABSQ_S_PW
:
17018 case OPC_ABSQ_S_QH
:
17019 gen_mipsdsp_arith(ctx
, op1
, op2
, rd
, rs
, rt
);
17027 gen_mipsdsp_bitinsn(ctx
, op1
, op2
, rd
, rt
);
17029 default: /* Invalid */
17030 MIPS_INVAL("MASK ABSQ_S.QH");
17031 generate_exception(ctx
, EXCP_RI
);
17035 case OPC_ADDU_OB_DSP
:
17036 op2
= MASK_ADDU_OB(ctx
->opcode
);
17038 case OPC_RADDU_L_OB
:
17040 case OPC_SUBQ_S_PW
:
17042 case OPC_SUBQ_S_QH
:
17044 case OPC_SUBU_S_OB
:
17046 case OPC_SUBU_S_QH
:
17048 case OPC_SUBUH_R_OB
:
17050 case OPC_ADDQ_S_PW
:
17052 case OPC_ADDQ_S_QH
:
17054 case OPC_ADDU_S_OB
:
17056 case OPC_ADDU_S_QH
:
17058 case OPC_ADDUH_R_OB
:
17059 gen_mipsdsp_arith(ctx
, op1
, op2
, rd
, rs
, rt
);
17061 case OPC_MULEQ_S_PW_QHL
:
17062 case OPC_MULEQ_S_PW_QHR
:
17063 case OPC_MULEU_S_QH_OBL
:
17064 case OPC_MULEU_S_QH_OBR
:
17065 case OPC_MULQ_RS_QH
:
17066 gen_mipsdsp_multiply(ctx
, op1
, op2
, rd
, rs
, rt
, 1);
17068 default: /* Invalid */
17069 MIPS_INVAL("MASK ADDU.OB");
17070 generate_exception(ctx
, EXCP_RI
);
17074 case OPC_CMPU_EQ_OB_DSP
:
17075 op2
= MASK_CMPU_EQ_OB(ctx
->opcode
);
17077 case OPC_PRECR_SRA_QH_PW
:
17078 case OPC_PRECR_SRA_R_QH_PW
:
17079 /* Return value is rt. */
17080 gen_mipsdsp_arith(ctx
, op1
, op2
, rt
, rs
, rd
);
17082 case OPC_PRECR_OB_QH
:
17083 case OPC_PRECRQ_OB_QH
:
17084 case OPC_PRECRQ_PW_L
:
17085 case OPC_PRECRQ_QH_PW
:
17086 case OPC_PRECRQ_RS_QH_PW
:
17087 case OPC_PRECRQU_S_OB_QH
:
17088 gen_mipsdsp_arith(ctx
, op1
, op2
, rd
, rs
, rt
);
17090 case OPC_CMPU_EQ_OB
:
17091 case OPC_CMPU_LT_OB
:
17092 case OPC_CMPU_LE_OB
:
17093 case OPC_CMP_EQ_QH
:
17094 case OPC_CMP_LT_QH
:
17095 case OPC_CMP_LE_QH
:
17096 case OPC_CMP_EQ_PW
:
17097 case OPC_CMP_LT_PW
:
17098 case OPC_CMP_LE_PW
:
17099 gen_mipsdsp_add_cmp_pick(ctx
, op1
, op2
, rd
, rs
, rt
, 0);
17101 case OPC_CMPGDU_EQ_OB
:
17102 case OPC_CMPGDU_LT_OB
:
17103 case OPC_CMPGDU_LE_OB
:
17104 case OPC_CMPGU_EQ_OB
:
17105 case OPC_CMPGU_LT_OB
:
17106 case OPC_CMPGU_LE_OB
:
17107 case OPC_PACKRL_PW
:
17111 gen_mipsdsp_add_cmp_pick(ctx
, op1
, op2
, rd
, rs
, rt
, 1);
17113 default: /* Invalid */
17114 MIPS_INVAL("MASK CMPU_EQ.OB");
17115 generate_exception(ctx
, EXCP_RI
);
17119 case OPC_DAPPEND_DSP
:
17120 gen_mipsdsp_append(env
, ctx
, op1
, rt
, rs
, rd
);
17122 case OPC_DEXTR_W_DSP
:
17123 op2
= MASK_DEXTR_W(ctx
->opcode
);
17130 case OPC_DEXTR_R_L
:
17131 case OPC_DEXTR_RS_L
:
17133 case OPC_DEXTR_R_W
:
17134 case OPC_DEXTR_RS_W
:
17135 case OPC_DEXTR_S_H
:
17137 case OPC_DEXTRV_R_L
:
17138 case OPC_DEXTRV_RS_L
:
17139 case OPC_DEXTRV_S_H
:
17141 case OPC_DEXTRV_R_W
:
17142 case OPC_DEXTRV_RS_W
:
17143 gen_mipsdsp_accinsn(ctx
, op1
, op2
, rt
, rs
, rd
, 1);
17148 gen_mipsdsp_accinsn(ctx
, op1
, op2
, rd
, rs
, rt
, 0);
17150 default: /* Invalid */
17151 MIPS_INVAL("MASK EXTR.W");
17152 generate_exception(ctx
, EXCP_RI
);
17156 case OPC_DPAQ_W_QH_DSP
:
17157 op2
= MASK_DPAQ_W_QH(ctx
->opcode
);
17159 case OPC_DPAU_H_OBL
:
17160 case OPC_DPAU_H_OBR
:
17161 case OPC_DPSU_H_OBL
:
17162 case OPC_DPSU_H_OBR
:
17164 case OPC_DPAQ_S_W_QH
:
17166 case OPC_DPSQ_S_W_QH
:
17167 case OPC_MULSAQ_S_W_QH
:
17168 case OPC_DPAQ_SA_L_PW
:
17169 case OPC_DPSQ_SA_L_PW
:
17170 case OPC_MULSAQ_S_L_PW
:
17171 gen_mipsdsp_multiply(ctx
, op1
, op2
, rd
, rs
, rt
, 0);
17173 case OPC_MAQ_S_W_QHLL
:
17174 case OPC_MAQ_S_W_QHLR
:
17175 case OPC_MAQ_S_W_QHRL
:
17176 case OPC_MAQ_S_W_QHRR
:
17177 case OPC_MAQ_SA_W_QHLL
:
17178 case OPC_MAQ_SA_W_QHLR
:
17179 case OPC_MAQ_SA_W_QHRL
:
17180 case OPC_MAQ_SA_W_QHRR
:
17181 case OPC_MAQ_S_L_PWL
:
17182 case OPC_MAQ_S_L_PWR
:
17187 gen_mipsdsp_multiply(ctx
, op1
, op2
, rd
, rs
, rt
, 0);
17189 default: /* Invalid */
17190 MIPS_INVAL("MASK DPAQ.W.QH");
17191 generate_exception(ctx
, EXCP_RI
);
17195 case OPC_DINSV_DSP
:
17196 op2
= MASK_INSV(ctx
->opcode
);
17208 t0
= tcg_temp_new();
17209 t1
= tcg_temp_new();
17211 gen_load_gpr(t0
, rt
);
17212 gen_load_gpr(t1
, rs
);
17214 gen_helper_dinsv(cpu_gpr
[rt
], cpu_env
, t1
, t0
);
17220 default: /* Invalid */
17221 MIPS_INVAL("MASK DINSV");
17222 generate_exception(ctx
, EXCP_RI
);
17226 case OPC_SHLL_OB_DSP
:
17227 gen_mipsdsp_shift(ctx
, op1
, rd
, rs
, rt
);
17230 default: /* Invalid */
17231 MIPS_INVAL("special3_legacy");
17232 generate_exception(ctx
, EXCP_RI
);
17237 static void decode_opc_special3(CPUMIPSState
*env
, DisasContext
*ctx
)
17239 int rs
, rt
, rd
, sa
;
17242 rs
= (ctx
->opcode
>> 21) & 0x1f;
17243 rt
= (ctx
->opcode
>> 16) & 0x1f;
17244 rd
= (ctx
->opcode
>> 11) & 0x1f;
17245 sa
= (ctx
->opcode
>> 6) & 0x1f;
17247 op1
= MASK_SPECIAL3(ctx
->opcode
);
17251 check_insn(ctx
, ISA_MIPS32R2
);
17252 gen_bitops(ctx
, op1
, rt
, rs
, sa
, rd
);
17255 op2
= MASK_BSHFL(ctx
->opcode
);
17257 case OPC_ALIGN
... OPC_ALIGN_END
:
17259 check_insn(ctx
, ISA_MIPS32R6
);
17260 decode_opc_special3_r6(env
, ctx
);
17263 check_insn(ctx
, ISA_MIPS32R2
);
17264 gen_bshfl(ctx
, op2
, rt
, rd
);
17268 #if defined(TARGET_MIPS64)
17269 case OPC_DEXTM
... OPC_DEXT
:
17270 case OPC_DINSM
... OPC_DINS
:
17271 check_insn(ctx
, ISA_MIPS64R2
);
17272 check_mips_64(ctx
);
17273 gen_bitops(ctx
, op1
, rt
, rs
, sa
, rd
);
17276 op2
= MASK_DBSHFL(ctx
->opcode
);
17278 case OPC_DALIGN
... OPC_DALIGN_END
:
17280 check_insn(ctx
, ISA_MIPS32R6
);
17281 decode_opc_special3_r6(env
, ctx
);
17284 check_insn(ctx
, ISA_MIPS64R2
);
17285 check_mips_64(ctx
);
17286 op2
= MASK_DBSHFL(ctx
->opcode
);
17287 gen_bshfl(ctx
, op2
, rt
, rd
);
17293 gen_rdhwr(ctx
, rt
, rd
);
17296 check_insn(ctx
, ASE_MT
);
17298 TCGv t0
= tcg_temp_new();
17299 TCGv t1
= tcg_temp_new();
17301 gen_load_gpr(t0
, rt
);
17302 gen_load_gpr(t1
, rs
);
17303 gen_helper_fork(t0
, t1
);
17309 check_insn(ctx
, ASE_MT
);
17311 TCGv t0
= tcg_temp_new();
17313 save_cpu_state(ctx
, 1);
17314 gen_load_gpr(t0
, rs
);
17315 gen_helper_yield(t0
, cpu_env
, t0
);
17316 gen_store_gpr(t0
, rd
);
17321 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
17322 decode_opc_special3_r6(env
, ctx
);
17324 decode_opc_special3_legacy(env
, ctx
);
17329 /* MIPS SIMD Architecture (MSA) */
17330 static inline int check_msa_access(DisasContext
*ctx
)
17332 if (unlikely((ctx
->hflags
& MIPS_HFLAG_FPU
) &&
17333 !(ctx
->hflags
& MIPS_HFLAG_F64
))) {
17334 generate_exception(ctx
, EXCP_RI
);
17338 if (unlikely(!(ctx
->hflags
& MIPS_HFLAG_MSA
))) {
17339 if (ctx
->insn_flags
& ASE_MSA
) {
17340 generate_exception(ctx
, EXCP_MSADIS
);
17343 generate_exception(ctx
, EXCP_RI
);
17350 static void gen_check_zero_element(TCGv tresult
, uint8_t df
, uint8_t wt
)
17352 /* generates tcg ops to check if any element is 0 */
17353 /* Note this function only works with MSA_WRLEN = 128 */
17354 uint64_t eval_zero_or_big
= 0;
17355 uint64_t eval_big
= 0;
17356 TCGv_i64 t0
= tcg_temp_new_i64();
17357 TCGv_i64 t1
= tcg_temp_new_i64();
17360 eval_zero_or_big
= 0x0101010101010101ULL
;
17361 eval_big
= 0x8080808080808080ULL
;
17364 eval_zero_or_big
= 0x0001000100010001ULL
;
17365 eval_big
= 0x8000800080008000ULL
;
17368 eval_zero_or_big
= 0x0000000100000001ULL
;
17369 eval_big
= 0x8000000080000000ULL
;
17372 eval_zero_or_big
= 0x0000000000000001ULL
;
17373 eval_big
= 0x8000000000000000ULL
;
17376 tcg_gen_subi_i64(t0
, msa_wr_d
[wt
<<1], eval_zero_or_big
);
17377 tcg_gen_andc_i64(t0
, t0
, msa_wr_d
[wt
<<1]);
17378 tcg_gen_andi_i64(t0
, t0
, eval_big
);
17379 tcg_gen_subi_i64(t1
, msa_wr_d
[(wt
<<1)+1], eval_zero_or_big
);
17380 tcg_gen_andc_i64(t1
, t1
, msa_wr_d
[(wt
<<1)+1]);
17381 tcg_gen_andi_i64(t1
, t1
, eval_big
);
17382 tcg_gen_or_i64(t0
, t0
, t1
);
17383 /* if all bits are zero then all elements are not zero */
17384 /* if some bit is non-zero then some element is zero */
17385 tcg_gen_setcondi_i64(TCG_COND_NE
, t0
, t0
, 0);
17386 tcg_gen_trunc_i64_tl(tresult
, t0
);
17387 tcg_temp_free_i64(t0
);
17388 tcg_temp_free_i64(t1
);
17391 static void gen_msa_branch(CPUMIPSState
*env
, DisasContext
*ctx
, uint32_t op1
)
17393 uint8_t df
= (ctx
->opcode
>> 21) & 0x3;
17394 uint8_t wt
= (ctx
->opcode
>> 16) & 0x1f;
17395 int64_t s16
= (int16_t)ctx
->opcode
;
17397 check_msa_access(ctx
);
17399 if (ctx
->insn_flags
& ISA_MIPS32R6
&& ctx
->hflags
& MIPS_HFLAG_BMASK
) {
17400 MIPS_DEBUG("CTI in delay / forbidden slot");
17401 generate_exception(ctx
, EXCP_RI
);
17408 TCGv_i64 t0
= tcg_temp_new_i64();
17409 tcg_gen_or_i64(t0
, msa_wr_d
[wt
<<1], msa_wr_d
[(wt
<<1)+1]);
17410 tcg_gen_setcondi_i64((op1
== OPC_BZ_V
) ?
17411 TCG_COND_EQ
: TCG_COND_NE
, t0
, t0
, 0);
17412 tcg_gen_trunc_i64_tl(bcond
, t0
);
17413 tcg_temp_free_i64(t0
);
17420 gen_check_zero_element(bcond
, df
, wt
);
17426 gen_check_zero_element(bcond
, df
, wt
);
17427 tcg_gen_setcondi_tl(TCG_COND_EQ
, bcond
, bcond
, 0);
17431 ctx
->btarget
= ctx
->pc
+ (s16
<< 2) + 4;
17433 ctx
->hflags
|= MIPS_HFLAG_BC
;
17434 ctx
->hflags
|= MIPS_HFLAG_BDS32
;
17437 static void gen_msa_i8(CPUMIPSState
*env
, DisasContext
*ctx
)
17439 #define MASK_MSA_I8(op) (MASK_MSA_MINOR(op) | (op & (0x03 << 24)))
17440 uint8_t i8
= (ctx
->opcode
>> 16) & 0xff;
17441 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
17442 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
17444 TCGv_i32 twd
= tcg_const_i32(wd
);
17445 TCGv_i32 tws
= tcg_const_i32(ws
);
17446 TCGv_i32 ti8
= tcg_const_i32(i8
);
17448 switch (MASK_MSA_I8(ctx
->opcode
)) {
17450 gen_helper_msa_andi_b(cpu_env
, twd
, tws
, ti8
);
17453 gen_helper_msa_ori_b(cpu_env
, twd
, tws
, ti8
);
17456 gen_helper_msa_nori_b(cpu_env
, twd
, tws
, ti8
);
17459 gen_helper_msa_xori_b(cpu_env
, twd
, tws
, ti8
);
17462 gen_helper_msa_bmnzi_b(cpu_env
, twd
, tws
, ti8
);
17465 gen_helper_msa_bmzi_b(cpu_env
, twd
, tws
, ti8
);
17468 gen_helper_msa_bseli_b(cpu_env
, twd
, tws
, ti8
);
17474 uint8_t df
= (ctx
->opcode
>> 24) & 0x3;
17475 if (df
== DF_DOUBLE
) {
17476 generate_exception(ctx
, EXCP_RI
);
17478 TCGv_i32 tdf
= tcg_const_i32(df
);
17479 gen_helper_msa_shf_df(cpu_env
, tdf
, twd
, tws
, ti8
);
17480 tcg_temp_free_i32(tdf
);
17485 MIPS_INVAL("MSA instruction");
17486 generate_exception(ctx
, EXCP_RI
);
17490 tcg_temp_free_i32(twd
);
17491 tcg_temp_free_i32(tws
);
17492 tcg_temp_free_i32(ti8
);
17495 static void gen_msa_i5(CPUMIPSState
*env
, DisasContext
*ctx
)
17497 #define MASK_MSA_I5(op) (MASK_MSA_MINOR(op) | (op & (0x7 << 23)))
17498 uint8_t df
= (ctx
->opcode
>> 21) & 0x3;
17499 int8_t s5
= (int8_t) sextract32(ctx
->opcode
, 16, 5);
17500 uint8_t u5
= (ctx
->opcode
>> 16) & 0x1f;
17501 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
17502 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
17504 TCGv_i32 tdf
= tcg_const_i32(df
);
17505 TCGv_i32 twd
= tcg_const_i32(wd
);
17506 TCGv_i32 tws
= tcg_const_i32(ws
);
17507 TCGv_i32 timm
= tcg_temp_new_i32();
17508 tcg_gen_movi_i32(timm
, u5
);
17510 switch (MASK_MSA_I5(ctx
->opcode
)) {
17512 gen_helper_msa_addvi_df(cpu_env
, tdf
, twd
, tws
, timm
);
17515 gen_helper_msa_subvi_df(cpu_env
, tdf
, twd
, tws
, timm
);
17517 case OPC_MAXI_S_df
:
17518 tcg_gen_movi_i32(timm
, s5
);
17519 gen_helper_msa_maxi_s_df(cpu_env
, tdf
, twd
, tws
, timm
);
17521 case OPC_MAXI_U_df
:
17522 gen_helper_msa_maxi_u_df(cpu_env
, tdf
, twd
, tws
, timm
);
17524 case OPC_MINI_S_df
:
17525 tcg_gen_movi_i32(timm
, s5
);
17526 gen_helper_msa_mini_s_df(cpu_env
, tdf
, twd
, tws
, timm
);
17528 case OPC_MINI_U_df
:
17529 gen_helper_msa_mini_u_df(cpu_env
, tdf
, twd
, tws
, timm
);
17532 tcg_gen_movi_i32(timm
, s5
);
17533 gen_helper_msa_ceqi_df(cpu_env
, tdf
, twd
, tws
, timm
);
17535 case OPC_CLTI_S_df
:
17536 tcg_gen_movi_i32(timm
, s5
);
17537 gen_helper_msa_clti_s_df(cpu_env
, tdf
, twd
, tws
, timm
);
17539 case OPC_CLTI_U_df
:
17540 gen_helper_msa_clti_u_df(cpu_env
, tdf
, twd
, tws
, timm
);
17542 case OPC_CLEI_S_df
:
17543 tcg_gen_movi_i32(timm
, s5
);
17544 gen_helper_msa_clei_s_df(cpu_env
, tdf
, twd
, tws
, timm
);
17546 case OPC_CLEI_U_df
:
17547 gen_helper_msa_clei_u_df(cpu_env
, tdf
, twd
, tws
, timm
);
17551 int32_t s10
= sextract32(ctx
->opcode
, 11, 10);
17552 tcg_gen_movi_i32(timm
, s10
);
17553 gen_helper_msa_ldi_df(cpu_env
, tdf
, twd
, timm
);
17557 MIPS_INVAL("MSA instruction");
17558 generate_exception(ctx
, EXCP_RI
);
17562 tcg_temp_free_i32(tdf
);
17563 tcg_temp_free_i32(twd
);
17564 tcg_temp_free_i32(tws
);
17565 tcg_temp_free_i32(timm
);
17568 static void gen_msa_bit(CPUMIPSState
*env
, DisasContext
*ctx
)
17570 #define MASK_MSA_BIT(op) (MASK_MSA_MINOR(op) | (op & (0x7 << 23)))
17571 uint8_t dfm
= (ctx
->opcode
>> 16) & 0x7f;
17572 uint32_t df
= 0, m
= 0;
17573 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
17574 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
17581 if ((dfm
& 0x40) == 0x00) {
17584 } else if ((dfm
& 0x60) == 0x40) {
17587 } else if ((dfm
& 0x70) == 0x60) {
17590 } else if ((dfm
& 0x78) == 0x70) {
17594 generate_exception(ctx
, EXCP_RI
);
17598 tdf
= tcg_const_i32(df
);
17599 tm
= tcg_const_i32(m
);
17600 twd
= tcg_const_i32(wd
);
17601 tws
= tcg_const_i32(ws
);
17603 switch (MASK_MSA_BIT(ctx
->opcode
)) {
17605 gen_helper_msa_slli_df(cpu_env
, tdf
, twd
, tws
, tm
);
17608 gen_helper_msa_srai_df(cpu_env
, tdf
, twd
, tws
, tm
);
17611 gen_helper_msa_srli_df(cpu_env
, tdf
, twd
, tws
, tm
);
17614 gen_helper_msa_bclri_df(cpu_env
, tdf
, twd
, tws
, tm
);
17617 gen_helper_msa_bseti_df(cpu_env
, tdf
, twd
, tws
, tm
);
17620 gen_helper_msa_bnegi_df(cpu_env
, tdf
, twd
, tws
, tm
);
17622 case OPC_BINSLI_df
:
17623 gen_helper_msa_binsli_df(cpu_env
, tdf
, twd
, tws
, tm
);
17625 case OPC_BINSRI_df
:
17626 gen_helper_msa_binsri_df(cpu_env
, tdf
, twd
, tws
, tm
);
17629 gen_helper_msa_sat_s_df(cpu_env
, tdf
, twd
, tws
, tm
);
17632 gen_helper_msa_sat_u_df(cpu_env
, tdf
, twd
, tws
, tm
);
17635 gen_helper_msa_srari_df(cpu_env
, tdf
, twd
, tws
, tm
);
17638 gen_helper_msa_srlri_df(cpu_env
, tdf
, twd
, tws
, tm
);
17641 MIPS_INVAL("MSA instruction");
17642 generate_exception(ctx
, EXCP_RI
);
17646 tcg_temp_free_i32(tdf
);
17647 tcg_temp_free_i32(tm
);
17648 tcg_temp_free_i32(twd
);
17649 tcg_temp_free_i32(tws
);
17652 static void gen_msa_3r(CPUMIPSState
*env
, DisasContext
*ctx
)
17654 #define MASK_MSA_3R(op) (MASK_MSA_MINOR(op) | (op & (0x7 << 23)))
17655 uint8_t df
= (ctx
->opcode
>> 21) & 0x3;
17656 uint8_t wt
= (ctx
->opcode
>> 16) & 0x1f;
17657 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
17658 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
17660 TCGv_i32 tdf
= tcg_const_i32(df
);
17661 TCGv_i32 twd
= tcg_const_i32(wd
);
17662 TCGv_i32 tws
= tcg_const_i32(ws
);
17663 TCGv_i32 twt
= tcg_const_i32(wt
);
17665 switch (MASK_MSA_3R(ctx
->opcode
)) {
17667 gen_helper_msa_sll_df(cpu_env
, tdf
, twd
, tws
, twt
);
17670 gen_helper_msa_addv_df(cpu_env
, tdf
, twd
, tws
, twt
);
17673 gen_helper_msa_ceq_df(cpu_env
, tdf
, twd
, tws
, twt
);
17676 gen_helper_msa_add_a_df(cpu_env
, tdf
, twd
, tws
, twt
);
17678 case OPC_SUBS_S_df
:
17679 gen_helper_msa_subs_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17682 gen_helper_msa_mulv_df(cpu_env
, tdf
, twd
, tws
, twt
);
17685 gen_helper_msa_sld_df(cpu_env
, tdf
, twd
, tws
, twt
);
17688 gen_helper_msa_vshf_df(cpu_env
, tdf
, twd
, tws
, twt
);
17691 gen_helper_msa_sra_df(cpu_env
, tdf
, twd
, tws
, twt
);
17694 gen_helper_msa_subv_df(cpu_env
, tdf
, twd
, tws
, twt
);
17696 case OPC_ADDS_A_df
:
17697 gen_helper_msa_adds_a_df(cpu_env
, tdf
, twd
, tws
, twt
);
17699 case OPC_SUBS_U_df
:
17700 gen_helper_msa_subs_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17703 gen_helper_msa_maddv_df(cpu_env
, tdf
, twd
, tws
, twt
);
17706 gen_helper_msa_splat_df(cpu_env
, tdf
, twd
, tws
, twt
);
17709 gen_helper_msa_srar_df(cpu_env
, tdf
, twd
, tws
, twt
);
17712 gen_helper_msa_srl_df(cpu_env
, tdf
, twd
, tws
, twt
);
17715 gen_helper_msa_max_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17718 gen_helper_msa_clt_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17720 case OPC_ADDS_S_df
:
17721 gen_helper_msa_adds_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17723 case OPC_SUBSUS_U_df
:
17724 gen_helper_msa_subsus_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17727 gen_helper_msa_msubv_df(cpu_env
, tdf
, twd
, tws
, twt
);
17730 gen_helper_msa_pckev_df(cpu_env
, tdf
, twd
, tws
, twt
);
17733 gen_helper_msa_srlr_df(cpu_env
, tdf
, twd
, tws
, twt
);
17736 gen_helper_msa_bclr_df(cpu_env
, tdf
, twd
, tws
, twt
);
17739 gen_helper_msa_max_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17742 gen_helper_msa_clt_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17744 case OPC_ADDS_U_df
:
17745 gen_helper_msa_adds_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17747 case OPC_SUBSUU_S_df
:
17748 gen_helper_msa_subsuu_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17751 gen_helper_msa_pckod_df(cpu_env
, tdf
, twd
, tws
, twt
);
17754 gen_helper_msa_bset_df(cpu_env
, tdf
, twd
, tws
, twt
);
17757 gen_helper_msa_min_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17760 gen_helper_msa_cle_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17763 gen_helper_msa_ave_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17765 case OPC_ASUB_S_df
:
17766 gen_helper_msa_asub_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17769 gen_helper_msa_div_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17772 gen_helper_msa_ilvl_df(cpu_env
, tdf
, twd
, tws
, twt
);
17775 gen_helper_msa_bneg_df(cpu_env
, tdf
, twd
, tws
, twt
);
17778 gen_helper_msa_min_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17781 gen_helper_msa_cle_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17784 gen_helper_msa_ave_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17786 case OPC_ASUB_U_df
:
17787 gen_helper_msa_asub_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17790 gen_helper_msa_div_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17793 gen_helper_msa_ilvr_df(cpu_env
, tdf
, twd
, tws
, twt
);
17796 gen_helper_msa_binsl_df(cpu_env
, tdf
, twd
, tws
, twt
);
17799 gen_helper_msa_max_a_df(cpu_env
, tdf
, twd
, tws
, twt
);
17801 case OPC_AVER_S_df
:
17802 gen_helper_msa_aver_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17805 gen_helper_msa_mod_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17808 gen_helper_msa_ilvev_df(cpu_env
, tdf
, twd
, tws
, twt
);
17811 gen_helper_msa_binsr_df(cpu_env
, tdf
, twd
, tws
, twt
);
17814 gen_helper_msa_min_a_df(cpu_env
, tdf
, twd
, tws
, twt
);
17816 case OPC_AVER_U_df
:
17817 gen_helper_msa_aver_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17820 gen_helper_msa_mod_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17823 gen_helper_msa_ilvod_df(cpu_env
, tdf
, twd
, tws
, twt
);
17826 case OPC_DOTP_S_df
:
17827 case OPC_DOTP_U_df
:
17828 case OPC_DPADD_S_df
:
17829 case OPC_DPADD_U_df
:
17830 case OPC_DPSUB_S_df
:
17831 case OPC_HADD_S_df
:
17832 case OPC_DPSUB_U_df
:
17833 case OPC_HADD_U_df
:
17834 case OPC_HSUB_S_df
:
17835 case OPC_HSUB_U_df
:
17836 if (df
== DF_BYTE
) {
17837 generate_exception(ctx
, EXCP_RI
);
17839 switch (MASK_MSA_3R(ctx
->opcode
)) {
17840 case OPC_DOTP_S_df
:
17841 gen_helper_msa_dotp_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17843 case OPC_DOTP_U_df
:
17844 gen_helper_msa_dotp_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17846 case OPC_DPADD_S_df
:
17847 gen_helper_msa_dpadd_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17849 case OPC_DPADD_U_df
:
17850 gen_helper_msa_dpadd_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17852 case OPC_DPSUB_S_df
:
17853 gen_helper_msa_dpsub_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17855 case OPC_HADD_S_df
:
17856 gen_helper_msa_hadd_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17858 case OPC_DPSUB_U_df
:
17859 gen_helper_msa_dpsub_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17861 case OPC_HADD_U_df
:
17862 gen_helper_msa_hadd_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17864 case OPC_HSUB_S_df
:
17865 gen_helper_msa_hsub_s_df(cpu_env
, tdf
, twd
, tws
, twt
);
17867 case OPC_HSUB_U_df
:
17868 gen_helper_msa_hsub_u_df(cpu_env
, tdf
, twd
, tws
, twt
);
17873 MIPS_INVAL("MSA instruction");
17874 generate_exception(ctx
, EXCP_RI
);
17877 tcg_temp_free_i32(twd
);
17878 tcg_temp_free_i32(tws
);
17879 tcg_temp_free_i32(twt
);
17880 tcg_temp_free_i32(tdf
);
17883 static void gen_msa_elm_3e(CPUMIPSState
*env
, DisasContext
*ctx
)
17885 #define MASK_MSA_ELM_DF3E(op) (MASK_MSA_MINOR(op) | (op & (0x3FF << 16)))
17886 uint8_t source
= (ctx
->opcode
>> 11) & 0x1f;
17887 uint8_t dest
= (ctx
->opcode
>> 6) & 0x1f;
17888 TCGv telm
= tcg_temp_new();
17889 TCGv_i32 tsr
= tcg_const_i32(source
);
17890 TCGv_i32 tdt
= tcg_const_i32(dest
);
17892 switch (MASK_MSA_ELM_DF3E(ctx
->opcode
)) {
17894 gen_load_gpr(telm
, source
);
17895 gen_helper_msa_ctcmsa(cpu_env
, telm
, tdt
);
17898 gen_helper_msa_cfcmsa(telm
, cpu_env
, tsr
);
17899 gen_store_gpr(telm
, dest
);
17902 gen_helper_msa_move_v(cpu_env
, tdt
, tsr
);
17905 MIPS_INVAL("MSA instruction");
17906 generate_exception(ctx
, EXCP_RI
);
17910 tcg_temp_free(telm
);
17911 tcg_temp_free_i32(tdt
);
17912 tcg_temp_free_i32(tsr
);
17915 static void gen_msa_elm_df(CPUMIPSState
*env
, DisasContext
*ctx
, uint32_t df
,
17918 #define MASK_MSA_ELM(op) (MASK_MSA_MINOR(op) | (op & (0xf << 22)))
17919 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
17920 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
17922 TCGv_i32 tws
= tcg_const_i32(ws
);
17923 TCGv_i32 twd
= tcg_const_i32(wd
);
17924 TCGv_i32 tn
= tcg_const_i32(n
);
17925 TCGv_i32 tdf
= tcg_const_i32(df
);
17927 switch (MASK_MSA_ELM(ctx
->opcode
)) {
17929 gen_helper_msa_sldi_df(cpu_env
, tdf
, twd
, tws
, tn
);
17931 case OPC_SPLATI_df
:
17932 gen_helper_msa_splati_df(cpu_env
, tdf
, twd
, tws
, tn
);
17935 gen_helper_msa_insve_df(cpu_env
, tdf
, twd
, tws
, tn
);
17937 case OPC_COPY_S_df
:
17938 case OPC_COPY_U_df
:
17939 case OPC_INSERT_df
:
17940 #if !defined(TARGET_MIPS64)
17941 /* Double format valid only for MIPS64 */
17942 if (df
== DF_DOUBLE
) {
17943 generate_exception(ctx
, EXCP_RI
);
17947 switch (MASK_MSA_ELM(ctx
->opcode
)) {
17948 case OPC_COPY_S_df
:
17949 gen_helper_msa_copy_s_df(cpu_env
, tdf
, twd
, tws
, tn
);
17951 case OPC_COPY_U_df
:
17952 gen_helper_msa_copy_u_df(cpu_env
, tdf
, twd
, tws
, tn
);
17954 case OPC_INSERT_df
:
17955 gen_helper_msa_insert_df(cpu_env
, tdf
, twd
, tws
, tn
);
17960 MIPS_INVAL("MSA instruction");
17961 generate_exception(ctx
, EXCP_RI
);
17963 tcg_temp_free_i32(twd
);
17964 tcg_temp_free_i32(tws
);
17965 tcg_temp_free_i32(tn
);
17966 tcg_temp_free_i32(tdf
);
17969 static void gen_msa_elm(CPUMIPSState
*env
, DisasContext
*ctx
)
17971 uint8_t dfn
= (ctx
->opcode
>> 16) & 0x3f;
17972 uint32_t df
= 0, n
= 0;
17974 if ((dfn
& 0x30) == 0x00) {
17977 } else if ((dfn
& 0x38) == 0x20) {
17980 } else if ((dfn
& 0x3c) == 0x30) {
17983 } else if ((dfn
& 0x3e) == 0x38) {
17986 } else if (dfn
== 0x3E) {
17987 /* CTCMSA, CFCMSA, MOVE.V */
17988 gen_msa_elm_3e(env
, ctx
);
17991 generate_exception(ctx
, EXCP_RI
);
17995 gen_msa_elm_df(env
, ctx
, df
, n
);
17998 static void gen_msa_3rf(CPUMIPSState
*env
, DisasContext
*ctx
)
18000 #define MASK_MSA_3RF(op) (MASK_MSA_MINOR(op) | (op & (0xf << 22)))
18001 uint8_t df
= (ctx
->opcode
>> 21) & 0x1;
18002 uint8_t wt
= (ctx
->opcode
>> 16) & 0x1f;
18003 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
18004 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
18006 TCGv_i32 twd
= tcg_const_i32(wd
);
18007 TCGv_i32 tws
= tcg_const_i32(ws
);
18008 TCGv_i32 twt
= tcg_const_i32(wt
);
18009 TCGv_i32 tdf
= tcg_temp_new_i32();
18011 /* adjust df value for floating-point instruction */
18012 tcg_gen_movi_i32(tdf
, df
+ 2);
18014 switch (MASK_MSA_3RF(ctx
->opcode
)) {
18016 gen_helper_msa_fcaf_df(cpu_env
, tdf
, twd
, tws
, twt
);
18019 gen_helper_msa_fadd_df(cpu_env
, tdf
, twd
, tws
, twt
);
18022 gen_helper_msa_fcun_df(cpu_env
, tdf
, twd
, tws
, twt
);
18025 gen_helper_msa_fsub_df(cpu_env
, tdf
, twd
, tws
, twt
);
18028 gen_helper_msa_fcor_df(cpu_env
, tdf
, twd
, tws
, twt
);
18031 gen_helper_msa_fceq_df(cpu_env
, tdf
, twd
, tws
, twt
);
18034 gen_helper_msa_fmul_df(cpu_env
, tdf
, twd
, tws
, twt
);
18037 gen_helper_msa_fcune_df(cpu_env
, tdf
, twd
, tws
, twt
);
18040 gen_helper_msa_fcueq_df(cpu_env
, tdf
, twd
, tws
, twt
);
18043 gen_helper_msa_fdiv_df(cpu_env
, tdf
, twd
, tws
, twt
);
18046 gen_helper_msa_fcne_df(cpu_env
, tdf
, twd
, tws
, twt
);
18049 gen_helper_msa_fclt_df(cpu_env
, tdf
, twd
, tws
, twt
);
18052 gen_helper_msa_fmadd_df(cpu_env
, tdf
, twd
, tws
, twt
);
18055 tcg_gen_movi_i32(tdf
, df
+ 1);
18056 gen_helper_msa_mul_q_df(cpu_env
, tdf
, twd
, tws
, twt
);
18059 gen_helper_msa_fcult_df(cpu_env
, tdf
, twd
, tws
, twt
);
18062 gen_helper_msa_fmsub_df(cpu_env
, tdf
, twd
, tws
, twt
);
18064 case OPC_MADD_Q_df
:
18065 tcg_gen_movi_i32(tdf
, df
+ 1);
18066 gen_helper_msa_madd_q_df(cpu_env
, tdf
, twd
, tws
, twt
);
18069 gen_helper_msa_fcle_df(cpu_env
, tdf
, twd
, tws
, twt
);
18071 case OPC_MSUB_Q_df
:
18072 tcg_gen_movi_i32(tdf
, df
+ 1);
18073 gen_helper_msa_msub_q_df(cpu_env
, tdf
, twd
, tws
, twt
);
18076 gen_helper_msa_fcule_df(cpu_env
, tdf
, twd
, tws
, twt
);
18079 gen_helper_msa_fexp2_df(cpu_env
, tdf
, twd
, tws
, twt
);
18082 gen_helper_msa_fsaf_df(cpu_env
, tdf
, twd
, tws
, twt
);
18085 gen_helper_msa_fexdo_df(cpu_env
, tdf
, twd
, tws
, twt
);
18088 gen_helper_msa_fsun_df(cpu_env
, tdf
, twd
, tws
, twt
);
18091 gen_helper_msa_fsor_df(cpu_env
, tdf
, twd
, tws
, twt
);
18094 gen_helper_msa_fseq_df(cpu_env
, tdf
, twd
, tws
, twt
);
18097 gen_helper_msa_ftq_df(cpu_env
, tdf
, twd
, tws
, twt
);
18100 gen_helper_msa_fsune_df(cpu_env
, tdf
, twd
, tws
, twt
);
18103 gen_helper_msa_fsueq_df(cpu_env
, tdf
, twd
, tws
, twt
);
18106 gen_helper_msa_fsne_df(cpu_env
, tdf
, twd
, tws
, twt
);
18109 gen_helper_msa_fslt_df(cpu_env
, tdf
, twd
, tws
, twt
);
18112 gen_helper_msa_fmin_df(cpu_env
, tdf
, twd
, tws
, twt
);
18114 case OPC_MULR_Q_df
:
18115 tcg_gen_movi_i32(tdf
, df
+ 1);
18116 gen_helper_msa_mulr_q_df(cpu_env
, tdf
, twd
, tws
, twt
);
18119 gen_helper_msa_fsult_df(cpu_env
, tdf
, twd
, tws
, twt
);
18121 case OPC_FMIN_A_df
:
18122 gen_helper_msa_fmin_a_df(cpu_env
, tdf
, twd
, tws
, twt
);
18124 case OPC_MADDR_Q_df
:
18125 tcg_gen_movi_i32(tdf
, df
+ 1);
18126 gen_helper_msa_maddr_q_df(cpu_env
, tdf
, twd
, tws
, twt
);
18129 gen_helper_msa_fsle_df(cpu_env
, tdf
, twd
, tws
, twt
);
18132 gen_helper_msa_fmax_df(cpu_env
, tdf
, twd
, tws
, twt
);
18134 case OPC_MSUBR_Q_df
:
18135 tcg_gen_movi_i32(tdf
, df
+ 1);
18136 gen_helper_msa_msubr_q_df(cpu_env
, tdf
, twd
, tws
, twt
);
18139 gen_helper_msa_fsule_df(cpu_env
, tdf
, twd
, tws
, twt
);
18141 case OPC_FMAX_A_df
:
18142 gen_helper_msa_fmax_a_df(cpu_env
, tdf
, twd
, tws
, twt
);
18145 MIPS_INVAL("MSA instruction");
18146 generate_exception(ctx
, EXCP_RI
);
18150 tcg_temp_free_i32(twd
);
18151 tcg_temp_free_i32(tws
);
18152 tcg_temp_free_i32(twt
);
18153 tcg_temp_free_i32(tdf
);
18156 static void gen_msa_2r(CPUMIPSState
*env
, DisasContext
*ctx
)
18158 #define MASK_MSA_2R(op) (MASK_MSA_MINOR(op) | (op & (0x1f << 21)) | \
18159 (op & (0x7 << 18)))
18160 uint8_t wt
= (ctx
->opcode
>> 16) & 0x1f;
18161 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
18162 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
18163 uint8_t df
= (ctx
->opcode
>> 16) & 0x3;
18164 TCGv_i32 twd
= tcg_const_i32(wd
);
18165 TCGv_i32 tws
= tcg_const_i32(ws
);
18166 TCGv_i32 twt
= tcg_const_i32(wt
);
18167 TCGv_i32 tdf
= tcg_const_i32(df
);
18169 switch (MASK_MSA_2R(ctx
->opcode
)) {
18171 #if !defined(TARGET_MIPS64)
18172 /* Double format valid only for MIPS64 */
18173 if (df
== DF_DOUBLE
) {
18174 generate_exception(ctx
, EXCP_RI
);
18178 gen_helper_msa_fill_df(cpu_env
, tdf
, twd
, tws
); /* trs */
18181 gen_helper_msa_pcnt_df(cpu_env
, tdf
, twd
, tws
);
18184 gen_helper_msa_nloc_df(cpu_env
, tdf
, twd
, tws
);
18187 gen_helper_msa_nlzc_df(cpu_env
, tdf
, twd
, tws
);
18190 MIPS_INVAL("MSA instruction");
18191 generate_exception(ctx
, EXCP_RI
);
18195 tcg_temp_free_i32(twd
);
18196 tcg_temp_free_i32(tws
);
18197 tcg_temp_free_i32(twt
);
18198 tcg_temp_free_i32(tdf
);
18201 static void gen_msa_2rf(CPUMIPSState
*env
, DisasContext
*ctx
)
18203 #define MASK_MSA_2RF(op) (MASK_MSA_MINOR(op) | (op & (0x1f << 21)) | \
18204 (op & (0xf << 17)))
18205 uint8_t wt
= (ctx
->opcode
>> 16) & 0x1f;
18206 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
18207 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
18208 uint8_t df
= (ctx
->opcode
>> 16) & 0x1;
18209 TCGv_i32 twd
= tcg_const_i32(wd
);
18210 TCGv_i32 tws
= tcg_const_i32(ws
);
18211 TCGv_i32 twt
= tcg_const_i32(wt
);
18212 /* adjust df value for floating-point instruction */
18213 TCGv_i32 tdf
= tcg_const_i32(df
+ 2);
18215 switch (MASK_MSA_2RF(ctx
->opcode
)) {
18216 case OPC_FCLASS_df
:
18217 gen_helper_msa_fclass_df(cpu_env
, tdf
, twd
, tws
);
18219 case OPC_FTRUNC_S_df
:
18220 gen_helper_msa_ftrunc_s_df(cpu_env
, tdf
, twd
, tws
);
18222 case OPC_FTRUNC_U_df
:
18223 gen_helper_msa_ftrunc_u_df(cpu_env
, tdf
, twd
, tws
);
18226 gen_helper_msa_fsqrt_df(cpu_env
, tdf
, twd
, tws
);
18228 case OPC_FRSQRT_df
:
18229 gen_helper_msa_frsqrt_df(cpu_env
, tdf
, twd
, tws
);
18232 gen_helper_msa_frcp_df(cpu_env
, tdf
, twd
, tws
);
18235 gen_helper_msa_frint_df(cpu_env
, tdf
, twd
, tws
);
18238 gen_helper_msa_flog2_df(cpu_env
, tdf
, twd
, tws
);
18240 case OPC_FEXUPL_df
:
18241 gen_helper_msa_fexupl_df(cpu_env
, tdf
, twd
, tws
);
18243 case OPC_FEXUPR_df
:
18244 gen_helper_msa_fexupr_df(cpu_env
, tdf
, twd
, tws
);
18247 gen_helper_msa_ffql_df(cpu_env
, tdf
, twd
, tws
);
18250 gen_helper_msa_ffqr_df(cpu_env
, tdf
, twd
, tws
);
18252 case OPC_FTINT_S_df
:
18253 gen_helper_msa_ftint_s_df(cpu_env
, tdf
, twd
, tws
);
18255 case OPC_FTINT_U_df
:
18256 gen_helper_msa_ftint_u_df(cpu_env
, tdf
, twd
, tws
);
18258 case OPC_FFINT_S_df
:
18259 gen_helper_msa_ffint_s_df(cpu_env
, tdf
, twd
, tws
);
18261 case OPC_FFINT_U_df
:
18262 gen_helper_msa_ffint_u_df(cpu_env
, tdf
, twd
, tws
);
18266 tcg_temp_free_i32(twd
);
18267 tcg_temp_free_i32(tws
);
18268 tcg_temp_free_i32(twt
);
18269 tcg_temp_free_i32(tdf
);
18272 static void gen_msa_vec_v(CPUMIPSState
*env
, DisasContext
*ctx
)
18274 #define MASK_MSA_VEC(op) (MASK_MSA_MINOR(op) | (op & (0x1f << 21)))
18275 uint8_t wt
= (ctx
->opcode
>> 16) & 0x1f;
18276 uint8_t ws
= (ctx
->opcode
>> 11) & 0x1f;
18277 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
18278 TCGv_i32 twd
= tcg_const_i32(wd
);
18279 TCGv_i32 tws
= tcg_const_i32(ws
);
18280 TCGv_i32 twt
= tcg_const_i32(wt
);
18282 switch (MASK_MSA_VEC(ctx
->opcode
)) {
18284 gen_helper_msa_and_v(cpu_env
, twd
, tws
, twt
);
18287 gen_helper_msa_or_v(cpu_env
, twd
, tws
, twt
);
18290 gen_helper_msa_nor_v(cpu_env
, twd
, tws
, twt
);
18293 gen_helper_msa_xor_v(cpu_env
, twd
, tws
, twt
);
18296 gen_helper_msa_bmnz_v(cpu_env
, twd
, tws
, twt
);
18299 gen_helper_msa_bmz_v(cpu_env
, twd
, tws
, twt
);
18302 gen_helper_msa_bsel_v(cpu_env
, twd
, tws
, twt
);
18305 MIPS_INVAL("MSA instruction");
18306 generate_exception(ctx
, EXCP_RI
);
18310 tcg_temp_free_i32(twd
);
18311 tcg_temp_free_i32(tws
);
18312 tcg_temp_free_i32(twt
);
18315 static void gen_msa_vec(CPUMIPSState
*env
, DisasContext
*ctx
)
18317 switch (MASK_MSA_VEC(ctx
->opcode
)) {
18325 gen_msa_vec_v(env
, ctx
);
18328 gen_msa_2r(env
, ctx
);
18331 gen_msa_2rf(env
, ctx
);
18334 MIPS_INVAL("MSA instruction");
18335 generate_exception(ctx
, EXCP_RI
);
18340 static void gen_msa(CPUMIPSState
*env
, DisasContext
*ctx
)
18342 uint32_t opcode
= ctx
->opcode
;
18343 check_insn(ctx
, ASE_MSA
);
18344 check_msa_access(ctx
);
18346 switch (MASK_MSA_MINOR(opcode
)) {
18347 case OPC_MSA_I8_00
:
18348 case OPC_MSA_I8_01
:
18349 case OPC_MSA_I8_02
:
18350 gen_msa_i8(env
, ctx
);
18352 case OPC_MSA_I5_06
:
18353 case OPC_MSA_I5_07
:
18354 gen_msa_i5(env
, ctx
);
18356 case OPC_MSA_BIT_09
:
18357 case OPC_MSA_BIT_0A
:
18358 gen_msa_bit(env
, ctx
);
18360 case OPC_MSA_3R_0D
:
18361 case OPC_MSA_3R_0E
:
18362 case OPC_MSA_3R_0F
:
18363 case OPC_MSA_3R_10
:
18364 case OPC_MSA_3R_11
:
18365 case OPC_MSA_3R_12
:
18366 case OPC_MSA_3R_13
:
18367 case OPC_MSA_3R_14
:
18368 case OPC_MSA_3R_15
:
18369 gen_msa_3r(env
, ctx
);
18372 gen_msa_elm(env
, ctx
);
18374 case OPC_MSA_3RF_1A
:
18375 case OPC_MSA_3RF_1B
:
18376 case OPC_MSA_3RF_1C
:
18377 gen_msa_3rf(env
, ctx
);
18380 gen_msa_vec(env
, ctx
);
18391 int32_t s10
= sextract32(ctx
->opcode
, 16, 10);
18392 uint8_t rs
= (ctx
->opcode
>> 11) & 0x1f;
18393 uint8_t wd
= (ctx
->opcode
>> 6) & 0x1f;
18394 uint8_t df
= (ctx
->opcode
>> 0) & 0x3;
18396 TCGv_i32 tdf
= tcg_const_i32(df
);
18397 TCGv_i32 twd
= tcg_const_i32(wd
);
18398 TCGv_i32 trs
= tcg_const_i32(rs
);
18399 TCGv_i32 ts10
= tcg_const_i32(s10
);
18401 switch (MASK_MSA_MINOR(opcode
)) {
18406 gen_helper_msa_ld_df(cpu_env
, tdf
, twd
, trs
, ts10
);
18412 gen_helper_msa_st_df(cpu_env
, tdf
, twd
, trs
, ts10
);
18416 tcg_temp_free_i32(twd
);
18417 tcg_temp_free_i32(tdf
);
18418 tcg_temp_free_i32(trs
);
18419 tcg_temp_free_i32(ts10
);
18423 MIPS_INVAL("MSA instruction");
18424 generate_exception(ctx
, EXCP_RI
);
18430 static void decode_opc(CPUMIPSState
*env
, DisasContext
*ctx
)
18433 int rs
, rt
, rd
, sa
;
18437 /* make sure instructions are on a word boundary */
18438 if (ctx
->pc
& 0x3) {
18439 env
->CP0_BadVAddr
= ctx
->pc
;
18440 generate_exception_err(ctx
, EXCP_AdEL
, EXCP_INST_NOTAVAIL
);
18444 /* Handle blikely not taken case */
18445 if ((ctx
->hflags
& MIPS_HFLAG_BMASK_BASE
) == MIPS_HFLAG_BL
) {
18446 int l1
= gen_new_label();
18448 MIPS_DEBUG("blikely condition (" TARGET_FMT_lx
")", ctx
->pc
+ 4);
18449 tcg_gen_brcondi_tl(TCG_COND_NE
, bcond
, 0, l1
);
18450 tcg_gen_movi_i32(hflags
, ctx
->hflags
& ~MIPS_HFLAG_BMASK
);
18451 gen_goto_tb(ctx
, 1, ctx
->pc
+ 4);
18455 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
| CPU_LOG_TB_OP_OPT
))) {
18456 tcg_gen_debug_insn_start(ctx
->pc
);
18459 op
= MASK_OP_MAJOR(ctx
->opcode
);
18460 rs
= (ctx
->opcode
>> 21) & 0x1f;
18461 rt
= (ctx
->opcode
>> 16) & 0x1f;
18462 rd
= (ctx
->opcode
>> 11) & 0x1f;
18463 sa
= (ctx
->opcode
>> 6) & 0x1f;
18464 imm
= (int16_t)ctx
->opcode
;
18467 decode_opc_special(env
, ctx
);
18470 decode_opc_special2_legacy(env
, ctx
);
18473 decode_opc_special3(env
, ctx
);
18476 op1
= MASK_REGIMM(ctx
->opcode
);
18478 case OPC_BLTZL
: /* REGIMM branches */
18482 check_insn(ctx
, ISA_MIPS2
);
18483 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18487 gen_compute_branch(ctx
, op1
, 4, rs
, -1, imm
<< 2, 4);
18491 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18493 /* OPC_NAL, OPC_BAL */
18494 gen_compute_branch(ctx
, op1
, 4, 0, -1, imm
<< 2, 4);
18496 generate_exception(ctx
, EXCP_RI
);
18499 gen_compute_branch(ctx
, op1
, 4, rs
, -1, imm
<< 2, 4);
18502 case OPC_TGEI
... OPC_TEQI
: /* REGIMM traps */
18504 check_insn(ctx
, ISA_MIPS2
);
18505 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18506 gen_trap(ctx
, op1
, rs
, -1, imm
);
18509 check_insn(ctx
, ISA_MIPS32R2
);
18510 /* Break the TB to be able to sync copied instructions
18512 ctx
->bstate
= BS_STOP
;
18514 case OPC_BPOSGE32
: /* MIPS DSP branch */
18515 #if defined(TARGET_MIPS64)
18519 gen_compute_branch(ctx
, op1
, 4, -1, -2, (int32_t)imm
<< 2, 4);
18521 #if defined(TARGET_MIPS64)
18523 check_insn(ctx
, ISA_MIPS32R6
);
18524 check_mips_64(ctx
);
18526 tcg_gen_addi_tl(cpu_gpr
[rs
], cpu_gpr
[rs
], (int64_t)imm
<< 32);
18528 MIPS_DEBUG("dahi %s, %04x", regnames
[rs
], imm
);
18531 check_insn(ctx
, ISA_MIPS32R6
);
18532 check_mips_64(ctx
);
18534 tcg_gen_addi_tl(cpu_gpr
[rs
], cpu_gpr
[rs
], (int64_t)imm
<< 48);
18536 MIPS_DEBUG("dati %s, %04x", regnames
[rs
], imm
);
18539 default: /* Invalid */
18540 MIPS_INVAL("regimm");
18541 generate_exception(ctx
, EXCP_RI
);
18546 check_cp0_enabled(ctx
);
18547 op1
= MASK_CP0(ctx
->opcode
);
18553 #if defined(TARGET_MIPS64)
18557 #ifndef CONFIG_USER_ONLY
18558 gen_cp0(env
, ctx
, op1
, rt
, rd
);
18559 #endif /* !CONFIG_USER_ONLY */
18561 case OPC_C0_FIRST
... OPC_C0_LAST
:
18562 #ifndef CONFIG_USER_ONLY
18563 gen_cp0(env
, ctx
, MASK_C0(ctx
->opcode
), rt
, rd
);
18564 #endif /* !CONFIG_USER_ONLY */
18567 #ifndef CONFIG_USER_ONLY
18570 TCGv t0
= tcg_temp_new();
18572 op2
= MASK_MFMC0(ctx
->opcode
);
18575 check_insn(ctx
, ASE_MT
);
18576 gen_helper_dmt(t0
);
18577 gen_store_gpr(t0
, rt
);
18580 check_insn(ctx
, ASE_MT
);
18581 gen_helper_emt(t0
);
18582 gen_store_gpr(t0
, rt
);
18585 check_insn(ctx
, ASE_MT
);
18586 gen_helper_dvpe(t0
, cpu_env
);
18587 gen_store_gpr(t0
, rt
);
18590 check_insn(ctx
, ASE_MT
);
18591 gen_helper_evpe(t0
, cpu_env
);
18592 gen_store_gpr(t0
, rt
);
18595 check_insn(ctx
, ISA_MIPS32R2
);
18596 save_cpu_state(ctx
, 1);
18597 gen_helper_di(t0
, cpu_env
);
18598 gen_store_gpr(t0
, rt
);
18599 /* Stop translation as we may have switched
18600 the execution mode. */
18601 ctx
->bstate
= BS_STOP
;
18604 check_insn(ctx
, ISA_MIPS32R2
);
18605 save_cpu_state(ctx
, 1);
18606 gen_helper_ei(t0
, cpu_env
);
18607 gen_store_gpr(t0
, rt
);
18608 /* Stop translation as we may have switched
18609 the execution mode. */
18610 ctx
->bstate
= BS_STOP
;
18612 default: /* Invalid */
18613 MIPS_INVAL("mfmc0");
18614 generate_exception(ctx
, EXCP_RI
);
18619 #endif /* !CONFIG_USER_ONLY */
18622 check_insn(ctx
, ISA_MIPS32R2
);
18623 gen_load_srsgpr(rt
, rd
);
18626 check_insn(ctx
, ISA_MIPS32R2
);
18627 gen_store_srsgpr(rt
, rd
);
18631 generate_exception(ctx
, EXCP_RI
);
18635 case OPC_BOVC
: /* OPC_BEQZALC, OPC_BEQC, OPC_ADDI */
18636 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18637 /* OPC_BOVC, OPC_BEQZALC, OPC_BEQC */
18638 gen_compute_compact_branch(ctx
, op
, rs
, rt
, imm
<< 2);
18641 /* Arithmetic with immediate opcode */
18642 gen_arith_imm(ctx
, op
, rt
, rs
, imm
);
18646 gen_arith_imm(ctx
, op
, rt
, rs
, imm
);
18648 case OPC_SLTI
: /* Set on less than with immediate opcode */
18650 gen_slt_imm(ctx
, op
, rt
, rs
, imm
);
18652 case OPC_ANDI
: /* Arithmetic with immediate opcode */
18653 case OPC_LUI
: /* OPC_AUI */
18656 gen_logic_imm(ctx
, op
, rt
, rs
, imm
);
18658 case OPC_J
... OPC_JAL
: /* Jump */
18659 offset
= (int32_t)(ctx
->opcode
& 0x3FFFFFF) << 2;
18660 gen_compute_branch(ctx
, op
, 4, rs
, rt
, offset
, 4);
18663 case OPC_BLEZC
: /* OPC_BGEZC, OPC_BGEC, OPC_BLEZL */
18664 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18666 generate_exception(ctx
, EXCP_RI
);
18669 /* OPC_BLEZC, OPC_BGEZC, OPC_BGEC */
18670 gen_compute_compact_branch(ctx
, op
, rs
, rt
, imm
<< 2);
18673 gen_compute_branch(ctx
, op
, 4, rs
, rt
, imm
<< 2, 4);
18676 case OPC_BGTZC
: /* OPC_BLTZC, OPC_BLTC, OPC_BGTZL */
18677 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18679 generate_exception(ctx
, EXCP_RI
);
18682 /* OPC_BGTZC, OPC_BLTZC, OPC_BLTC */
18683 gen_compute_compact_branch(ctx
, op
, rs
, rt
, imm
<< 2);
18686 gen_compute_branch(ctx
, op
, 4, rs
, rt
, imm
<< 2, 4);
18689 case OPC_BLEZALC
: /* OPC_BGEZALC, OPC_BGEUC, OPC_BLEZ */
18692 gen_compute_branch(ctx
, op
, 4, rs
, rt
, imm
<< 2, 4);
18694 check_insn(ctx
, ISA_MIPS32R6
);
18695 /* OPC_BLEZALC, OPC_BGEZALC, OPC_BGEUC */
18696 gen_compute_compact_branch(ctx
, op
, rs
, rt
, imm
<< 2);
18699 case OPC_BGTZALC
: /* OPC_BLTZALC, OPC_BLTUC, OPC_BGTZ */
18702 gen_compute_branch(ctx
, op
, 4, rs
, rt
, imm
<< 2, 4);
18704 check_insn(ctx
, ISA_MIPS32R6
);
18705 /* OPC_BGTZALC, OPC_BLTZALC, OPC_BLTUC */
18706 gen_compute_compact_branch(ctx
, op
, rs
, rt
, imm
<< 2);
18711 check_insn(ctx
, ISA_MIPS2
);
18712 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18716 gen_compute_branch(ctx
, op
, 4, rs
, rt
, imm
<< 2, 4);
18718 case OPC_LL
: /* Load and stores */
18719 check_insn(ctx
, ISA_MIPS2
);
18723 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18725 case OPC_LB
... OPC_LH
:
18726 case OPC_LW
... OPC_LHU
:
18727 gen_ld(ctx
, op
, rt
, rs
, imm
);
18731 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18733 case OPC_SB
... OPC_SH
:
18735 gen_st(ctx
, op
, rt
, rs
, imm
);
18738 check_insn(ctx
, ISA_MIPS2
);
18739 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18740 gen_st_cond(ctx
, op
, rt
, rs
, imm
);
18743 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18744 check_cp0_enabled(ctx
);
18745 check_insn(ctx
, ISA_MIPS3
| ISA_MIPS32
);
18746 /* Treat as NOP. */
18749 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18750 check_insn(ctx
, ISA_MIPS4
| ISA_MIPS32
);
18751 /* Treat as NOP. */
18754 /* Floating point (COP1). */
18759 gen_cop1_ldst(ctx
, op
, rt
, rs
, imm
);
18763 op1
= MASK_CP1(ctx
->opcode
);
18768 check_cp1_enabled(ctx
);
18769 check_insn(ctx
, ISA_MIPS32R2
);
18774 check_cp1_enabled(ctx
);
18775 gen_cp1(ctx
, op1
, rt
, rd
);
18777 #if defined(TARGET_MIPS64)
18780 check_cp1_enabled(ctx
);
18781 check_insn(ctx
, ISA_MIPS3
);
18782 check_mips_64(ctx
);
18783 gen_cp1(ctx
, op1
, rt
, rd
);
18786 case OPC_BC1EQZ
: /* OPC_BC1ANY2 */
18787 check_cp1_enabled(ctx
);
18788 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18790 gen_compute_branch1_r6(ctx
, MASK_CP1(ctx
->opcode
),
18795 check_insn(ctx
, ASE_MIPS3D
);
18796 gen_compute_branch1(ctx
, MASK_BC1(ctx
->opcode
),
18797 (rt
>> 2) & 0x7, imm
<< 2);
18801 check_cp1_enabled(ctx
);
18802 check_insn(ctx
, ISA_MIPS32R6
);
18803 gen_compute_branch1_r6(ctx
, MASK_CP1(ctx
->opcode
),
18807 check_cp1_enabled(ctx
);
18808 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18810 check_insn(ctx
, ASE_MIPS3D
);
18813 check_cp1_enabled(ctx
);
18814 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18815 gen_compute_branch1(ctx
, MASK_BC1(ctx
->opcode
),
18816 (rt
>> 2) & 0x7, imm
<< 2);
18819 check_cp1_enabled(ctx
);
18820 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18824 check_cp1_enabled(ctx
);
18825 gen_farith(ctx
, ctx
->opcode
& FOP(0x3f, 0x1f), rt
, rd
, sa
,
18831 int r6_op
= ctx
->opcode
& FOP(0x3f, 0x1f);
18832 check_cp1_enabled(ctx
);
18833 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18835 case R6_OPC_CMP_AF_S
:
18836 case R6_OPC_CMP_UN_S
:
18837 case R6_OPC_CMP_EQ_S
:
18838 case R6_OPC_CMP_UEQ_S
:
18839 case R6_OPC_CMP_LT_S
:
18840 case R6_OPC_CMP_ULT_S
:
18841 case R6_OPC_CMP_LE_S
:
18842 case R6_OPC_CMP_ULE_S
:
18843 case R6_OPC_CMP_SAF_S
:
18844 case R6_OPC_CMP_SUN_S
:
18845 case R6_OPC_CMP_SEQ_S
:
18846 case R6_OPC_CMP_SEUQ_S
:
18847 case R6_OPC_CMP_SLT_S
:
18848 case R6_OPC_CMP_SULT_S
:
18849 case R6_OPC_CMP_SLE_S
:
18850 case R6_OPC_CMP_SULE_S
:
18851 case R6_OPC_CMP_OR_S
:
18852 case R6_OPC_CMP_UNE_S
:
18853 case R6_OPC_CMP_NE_S
:
18854 case R6_OPC_CMP_SOR_S
:
18855 case R6_OPC_CMP_SUNE_S
:
18856 case R6_OPC_CMP_SNE_S
:
18857 gen_r6_cmp_s(ctx
, ctx
->opcode
& 0x1f, rt
, rd
, sa
);
18859 case R6_OPC_CMP_AF_D
:
18860 case R6_OPC_CMP_UN_D
:
18861 case R6_OPC_CMP_EQ_D
:
18862 case R6_OPC_CMP_UEQ_D
:
18863 case R6_OPC_CMP_LT_D
:
18864 case R6_OPC_CMP_ULT_D
:
18865 case R6_OPC_CMP_LE_D
:
18866 case R6_OPC_CMP_ULE_D
:
18867 case R6_OPC_CMP_SAF_D
:
18868 case R6_OPC_CMP_SUN_D
:
18869 case R6_OPC_CMP_SEQ_D
:
18870 case R6_OPC_CMP_SEUQ_D
:
18871 case R6_OPC_CMP_SLT_D
:
18872 case R6_OPC_CMP_SULT_D
:
18873 case R6_OPC_CMP_SLE_D
:
18874 case R6_OPC_CMP_SULE_D
:
18875 case R6_OPC_CMP_OR_D
:
18876 case R6_OPC_CMP_UNE_D
:
18877 case R6_OPC_CMP_NE_D
:
18878 case R6_OPC_CMP_SOR_D
:
18879 case R6_OPC_CMP_SUNE_D
:
18880 case R6_OPC_CMP_SNE_D
:
18881 gen_r6_cmp_d(ctx
, ctx
->opcode
& 0x1f, rt
, rd
, sa
);
18884 gen_farith(ctx
, ctx
->opcode
& FOP(0x3f, 0x1f),
18885 rt
, rd
, sa
, (imm
>> 8) & 0x7);
18890 gen_farith(ctx
, ctx
->opcode
& FOP(0x3f, 0x1f), rt
, rd
, sa
,
18905 check_insn(ctx
, ASE_MSA
);
18906 gen_msa_branch(env
, ctx
, op1
);
18910 generate_exception(ctx
, EXCP_RI
);
18915 /* Compact branches [R6] and COP2 [non-R6] */
18916 case OPC_BC
: /* OPC_LWC2 */
18917 case OPC_BALC
: /* OPC_SWC2 */
18918 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18919 /* OPC_BC, OPC_BALC */
18920 gen_compute_compact_branch(ctx
, op
, 0, 0,
18921 sextract32(ctx
->opcode
<< 2, 0, 28));
18923 /* OPC_LWC2, OPC_SWC2 */
18924 /* COP2: Not implemented. */
18925 generate_exception_err(ctx
, EXCP_CpU
, 2);
18928 case OPC_BEQZC
: /* OPC_JIC, OPC_LDC2 */
18929 case OPC_BNEZC
: /* OPC_JIALC, OPC_SDC2 */
18930 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
18932 /* OPC_BEQZC, OPC_BNEZC */
18933 gen_compute_compact_branch(ctx
, op
, rs
, 0,
18934 sextract32(ctx
->opcode
<< 2, 0, 23));
18936 /* OPC_JIC, OPC_JIALC */
18937 gen_compute_compact_branch(ctx
, op
, 0, rt
, imm
);
18940 /* OPC_LWC2, OPC_SWC2 */
18941 /* COP2: Not implemented. */
18942 generate_exception_err(ctx
, EXCP_CpU
, 2);
18946 check_insn(ctx
, INSN_LOONGSON2F
);
18947 /* Note that these instructions use different fields. */
18948 gen_loongson_multimedia(ctx
, sa
, rd
, rt
);
18952 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
18953 if (ctx
->CP0_Config1
& (1 << CP0C1_FP
)) {
18954 check_cp1_enabled(ctx
);
18955 op1
= MASK_CP3(ctx
->opcode
);
18959 check_insn(ctx
, ISA_MIPS5
| ISA_MIPS32R2
);
18965 check_insn(ctx
, ISA_MIPS4
| ISA_MIPS32R2
);
18966 gen_flt3_ldst(ctx
, op1
, sa
, rd
, rs
, rt
);
18969 check_insn(ctx
, ISA_MIPS4
| ISA_MIPS32R2
);
18970 /* Treat as NOP. */
18973 check_insn(ctx
, ISA_MIPS5
| ISA_MIPS32R2
);
18987 check_insn(ctx
, ISA_MIPS4
| ISA_MIPS32R2
);
18988 gen_flt3_arith(ctx
, op1
, sa
, rs
, rd
, rt
);
18992 generate_exception (ctx
, EXCP_RI
);
18996 generate_exception_err(ctx
, EXCP_CpU
, 1);
19000 #if defined(TARGET_MIPS64)
19001 /* MIPS64 opcodes */
19002 case OPC_LDL
... OPC_LDR
:
19004 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
19008 check_insn(ctx
, ISA_MIPS3
);
19009 check_mips_64(ctx
);
19010 gen_ld(ctx
, op
, rt
, rs
, imm
);
19012 case OPC_SDL
... OPC_SDR
:
19013 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
19016 check_insn(ctx
, ISA_MIPS3
);
19017 check_mips_64(ctx
);
19018 gen_st(ctx
, op
, rt
, rs
, imm
);
19021 check_insn_opc_removed(ctx
, ISA_MIPS32R6
);
19022 check_insn(ctx
, ISA_MIPS3
);
19023 check_mips_64(ctx
);
19024 gen_st_cond(ctx
, op
, rt
, rs
, imm
);
19026 case OPC_BNVC
: /* OPC_BNEZALC, OPC_BNEC, OPC_DADDI */
19027 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
19028 /* OPC_BNVC, OPC_BNEZALC, OPC_BNEC */
19029 gen_compute_compact_branch(ctx
, op
, rs
, rt
, imm
<< 2);
19032 check_insn(ctx
, ISA_MIPS3
);
19033 check_mips_64(ctx
);
19034 gen_arith_imm(ctx
, op
, rt
, rs
, imm
);
19038 check_insn(ctx
, ISA_MIPS3
);
19039 check_mips_64(ctx
);
19040 gen_arith_imm(ctx
, op
, rt
, rs
, imm
);
19043 case OPC_BNVC
: /* OPC_BNEZALC, OPC_BNEC */
19044 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
19045 gen_compute_compact_branch(ctx
, op
, rs
, rt
, imm
<< 2);
19047 MIPS_INVAL("major opcode");
19048 generate_exception(ctx
, EXCP_RI
);
19052 case OPC_DAUI
: /* OPC_JALX */
19053 if (ctx
->insn_flags
& ISA_MIPS32R6
) {
19054 #if defined(TARGET_MIPS64)
19056 check_mips_64(ctx
);
19058 TCGv t0
= tcg_temp_new();
19059 gen_load_gpr(t0
, rs
);
19060 tcg_gen_addi_tl(cpu_gpr
[rt
], t0
, imm
<< 16);
19063 MIPS_DEBUG("daui %s, %s, %04x", regnames
[rt
], regnames
[rs
], imm
);
19065 generate_exception(ctx
, EXCP_RI
);
19066 MIPS_INVAL("major opcode");
19070 check_insn(ctx
, ASE_MIPS16
| ASE_MICROMIPS
);
19071 offset
= (int32_t)(ctx
->opcode
& 0x3FFFFFF) << 2;
19072 gen_compute_branch(ctx
, op
, 4, rs
, rt
, offset
, 4);
19075 case OPC_MSA
: /* OPC_MDMX */
19076 /* MDMX: Not implemented. */
19080 check_insn(ctx
, ISA_MIPS32R6
);
19081 gen_pcrel(ctx
, rs
, imm
);
19083 default: /* Invalid */
19084 MIPS_INVAL("major opcode");
19085 generate_exception(ctx
, EXCP_RI
);
19091 gen_intermediate_code_internal(MIPSCPU
*cpu
, TranslationBlock
*tb
,
19094 CPUState
*cs
= CPU(cpu
);
19095 CPUMIPSState
*env
= &cpu
->env
;
19097 target_ulong pc_start
;
19098 target_ulong next_page_start
;
19107 qemu_log("search pc %d\n", search_pc
);
19110 next_page_start
= (pc_start
& TARGET_PAGE_MASK
) + TARGET_PAGE_SIZE
;
19113 ctx
.singlestep_enabled
= cs
->singlestep_enabled
;
19114 ctx
.insn_flags
= env
->insn_flags
;
19115 ctx
.CP0_Config1
= env
->CP0_Config1
;
19117 ctx
.bstate
= BS_NONE
;
19118 ctx
.kscrexist
= (env
->CP0_Config4
>> CP0C4_KScrExist
) & 0xff;
19119 ctx
.rxi
= (env
->CP0_Config3
>> CP0C3_RXI
) & 1;
19120 ctx
.ie
= (env
->CP0_Config4
>> CP0C4_IE
) & 3;
19121 ctx
.bi
= (env
->CP0_Config3
>> CP0C3_BI
) & 1;
19122 ctx
.bp
= (env
->CP0_Config3
>> CP0C3_BP
) & 1;
19123 /* Restore delay slot state from the tb context. */
19124 ctx
.hflags
= (uint32_t)tb
->flags
; /* FIXME: maybe use 64 bits here? */
19125 ctx
.ulri
= (env
->CP0_Config3
>> CP0C3_ULRI
) & 1;
19126 restore_cpu_state(env
, &ctx
);
19127 #ifdef CONFIG_USER_ONLY
19128 ctx
.mem_idx
= MIPS_HFLAG_UM
;
19130 ctx
.mem_idx
= ctx
.hflags
& MIPS_HFLAG_KSU
;
19133 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
19134 if (max_insns
== 0)
19135 max_insns
= CF_COUNT_MASK
;
19136 LOG_DISAS("\ntb %p idx %d hflags %04x\n", tb
, ctx
.mem_idx
, ctx
.hflags
);
19138 while (ctx
.bstate
== BS_NONE
) {
19139 if (unlikely(!QTAILQ_EMPTY(&cs
->breakpoints
))) {
19140 QTAILQ_FOREACH(bp
, &cs
->breakpoints
, entry
) {
19141 if (bp
->pc
== ctx
.pc
) {
19142 save_cpu_state(&ctx
, 1);
19143 ctx
.bstate
= BS_BRANCH
;
19144 gen_helper_0e0i(raise_exception
, EXCP_DEBUG
);
19145 /* Include the breakpoint location or the tb won't
19146 * be flushed when it must be. */
19148 goto done_generating
;
19154 j
= tcg_op_buf_count();
19158 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
19160 tcg_ctx
.gen_opc_pc
[lj
] = ctx
.pc
;
19161 gen_opc_hflags
[lj
] = ctx
.hflags
& MIPS_HFLAG_BMASK
;
19162 gen_opc_btarget
[lj
] = ctx
.btarget
;
19163 tcg_ctx
.gen_opc_instr_start
[lj
] = 1;
19164 tcg_ctx
.gen_opc_icount
[lj
] = num_insns
;
19166 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
19169 is_slot
= ctx
.hflags
& MIPS_HFLAG_BMASK
;
19170 if (!(ctx
.hflags
& MIPS_HFLAG_M16
)) {
19171 ctx
.opcode
= cpu_ldl_code(env
, ctx
.pc
);
19173 decode_opc(env
, &ctx
);
19174 } else if (ctx
.insn_flags
& ASE_MICROMIPS
) {
19175 ctx
.opcode
= cpu_lduw_code(env
, ctx
.pc
);
19176 insn_bytes
= decode_micromips_opc(env
, &ctx
);
19177 } else if (ctx
.insn_flags
& ASE_MIPS16
) {
19178 ctx
.opcode
= cpu_lduw_code(env
, ctx
.pc
);
19179 insn_bytes
= decode_mips16_opc(env
, &ctx
);
19181 generate_exception(&ctx
, EXCP_RI
);
19182 ctx
.bstate
= BS_STOP
;
19186 if (ctx
.hflags
& MIPS_HFLAG_BMASK
) {
19187 if (!(ctx
.hflags
& (MIPS_HFLAG_BDS16
| MIPS_HFLAG_BDS32
|
19188 MIPS_HFLAG_FBNSLOT
))) {
19189 /* force to generate branch as there is neither delay nor
19195 gen_branch(&ctx
, insn_bytes
);
19197 ctx
.pc
+= insn_bytes
;
19201 /* Execute a branch and its delay slot as a single instruction.
19202 This is what GDB expects and is consistent with what the
19203 hardware does (e.g. if a delay slot instruction faults, the
19204 reported PC is the PC of the branch). */
19205 if (cs
->singlestep_enabled
&& (ctx
.hflags
& MIPS_HFLAG_BMASK
) == 0) {
19209 if (ctx
.pc
>= next_page_start
) {
19213 if (tcg_op_buf_full()) {
19217 if (num_insns
>= max_insns
)
19223 if (tb
->cflags
& CF_LAST_IO
) {
19226 if (cs
->singlestep_enabled
&& ctx
.bstate
!= BS_BRANCH
) {
19227 save_cpu_state(&ctx
, ctx
.bstate
!= BS_EXCP
);
19228 gen_helper_0e0i(raise_exception
, EXCP_DEBUG
);
19230 switch (ctx
.bstate
) {
19232 gen_goto_tb(&ctx
, 0, ctx
.pc
);
19235 save_cpu_state(&ctx
, 0);
19236 gen_goto_tb(&ctx
, 0, ctx
.pc
);
19239 tcg_gen_exit_tb(0);
19247 gen_tb_end(tb
, num_insns
);
19250 j
= tcg_op_buf_count();
19253 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
19255 tb
->size
= ctx
.pc
- pc_start
;
19256 tb
->icount
= num_insns
;
19260 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
19261 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
19262 log_target_disas(env
, pc_start
, ctx
.pc
- pc_start
, 0);
19268 void gen_intermediate_code (CPUMIPSState
*env
, struct TranslationBlock
*tb
)
19270 gen_intermediate_code_internal(mips_env_get_cpu(env
), tb
, false);
19273 void gen_intermediate_code_pc (CPUMIPSState
*env
, struct TranslationBlock
*tb
)
19275 gen_intermediate_code_internal(mips_env_get_cpu(env
), tb
, true);
19278 static void fpu_dump_state(CPUMIPSState
*env
, FILE *f
, fprintf_function fpu_fprintf
,
19282 int is_fpu64
= !!(env
->hflags
& MIPS_HFLAG_F64
);
19284 #define printfpr(fp) \
19287 fpu_fprintf(f, "w:%08x d:%016" PRIx64 \
19288 " fd:%13g fs:%13g psu: %13g\n", \
19289 (fp)->w[FP_ENDIAN_IDX], (fp)->d, \
19290 (double)(fp)->fd, \
19291 (double)(fp)->fs[FP_ENDIAN_IDX], \
19292 (double)(fp)->fs[!FP_ENDIAN_IDX]); \
19295 tmp.w[FP_ENDIAN_IDX] = (fp)->w[FP_ENDIAN_IDX]; \
19296 tmp.w[!FP_ENDIAN_IDX] = ((fp) + 1)->w[FP_ENDIAN_IDX]; \
19297 fpu_fprintf(f, "w:%08x d:%016" PRIx64 \
19298 " fd:%13g fs:%13g psu:%13g\n", \
19299 tmp.w[FP_ENDIAN_IDX], tmp.d, \
19301 (double)tmp.fs[FP_ENDIAN_IDX], \
19302 (double)tmp.fs[!FP_ENDIAN_IDX]); \
19307 fpu_fprintf(f
, "CP1 FCR0 0x%08x FCR31 0x%08x SR.FR %d fp_status 0x%02x\n",
19308 env
->active_fpu
.fcr0
, env
->active_fpu
.fcr31
, is_fpu64
,
19309 get_float_exception_flags(&env
->active_fpu
.fp_status
));
19310 for (i
= 0; i
< 32; (is_fpu64
) ? i
++ : (i
+= 2)) {
19311 fpu_fprintf(f
, "%3s: ", fregnames
[i
]);
19312 printfpr(&env
->active_fpu
.fpr
[i
]);
19318 #if defined(TARGET_MIPS64) && defined(MIPS_DEBUG_SIGN_EXTENSIONS)
19319 /* Debug help: The architecture requires 32bit code to maintain proper
19320 sign-extended values on 64bit machines. */
19322 #define SIGN_EXT_P(val) ((((val) & ~0x7fffffff) == 0) || (((val) & ~0x7fffffff) == ~0x7fffffff))
19325 cpu_mips_check_sign_extensions (CPUMIPSState
*env
, FILE *f
,
19326 fprintf_function cpu_fprintf
,
19331 if (!SIGN_EXT_P(env
->active_tc
.PC
))
19332 cpu_fprintf(f
, "BROKEN: pc=0x" TARGET_FMT_lx
"\n", env
->active_tc
.PC
);
19333 if (!SIGN_EXT_P(env
->active_tc
.HI
[0]))
19334 cpu_fprintf(f
, "BROKEN: HI=0x" TARGET_FMT_lx
"\n", env
->active_tc
.HI
[0]);
19335 if (!SIGN_EXT_P(env
->active_tc
.LO
[0]))
19336 cpu_fprintf(f
, "BROKEN: LO=0x" TARGET_FMT_lx
"\n", env
->active_tc
.LO
[0]);
19337 if (!SIGN_EXT_P(env
->btarget
))
19338 cpu_fprintf(f
, "BROKEN: btarget=0x" TARGET_FMT_lx
"\n", env
->btarget
);
19340 for (i
= 0; i
< 32; i
++) {
19341 if (!SIGN_EXT_P(env
->active_tc
.gpr
[i
]))
19342 cpu_fprintf(f
, "BROKEN: %s=0x" TARGET_FMT_lx
"\n", regnames
[i
], env
->active_tc
.gpr
[i
]);
19345 if (!SIGN_EXT_P(env
->CP0_EPC
))
19346 cpu_fprintf(f
, "BROKEN: EPC=0x" TARGET_FMT_lx
"\n", env
->CP0_EPC
);
19347 if (!SIGN_EXT_P(env
->lladdr
))
19348 cpu_fprintf(f
, "BROKEN: LLAddr=0x" TARGET_FMT_lx
"\n", env
->lladdr
);
19352 void mips_cpu_dump_state(CPUState
*cs
, FILE *f
, fprintf_function cpu_fprintf
,
19355 MIPSCPU
*cpu
= MIPS_CPU(cs
);
19356 CPUMIPSState
*env
= &cpu
->env
;
19359 cpu_fprintf(f
, "pc=0x" TARGET_FMT_lx
" HI=0x" TARGET_FMT_lx
19360 " LO=0x" TARGET_FMT_lx
" ds %04x "
19361 TARGET_FMT_lx
" " TARGET_FMT_ld
"\n",
19362 env
->active_tc
.PC
, env
->active_tc
.HI
[0], env
->active_tc
.LO
[0],
19363 env
->hflags
, env
->btarget
, env
->bcond
);
19364 for (i
= 0; i
< 32; i
++) {
19366 cpu_fprintf(f
, "GPR%02d:", i
);
19367 cpu_fprintf(f
, " %s " TARGET_FMT_lx
, regnames
[i
], env
->active_tc
.gpr
[i
]);
19369 cpu_fprintf(f
, "\n");
19372 cpu_fprintf(f
, "CP0 Status 0x%08x Cause 0x%08x EPC 0x" TARGET_FMT_lx
"\n",
19373 env
->CP0_Status
, env
->CP0_Cause
, env
->CP0_EPC
);
19374 cpu_fprintf(f
, " Config0 0x%08x Config1 0x%08x LLAddr 0x" TARGET_FMT_lx
"\n",
19375 env
->CP0_Config0
, env
->CP0_Config1
, env
->lladdr
);
19376 cpu_fprintf(f
, " Config2 0x%08x Config3 0x%08x\n",
19377 env
->CP0_Config2
, env
->CP0_Config3
);
19378 cpu_fprintf(f
, " Config4 0x%08x Config5 0x%08x\n",
19379 env
->CP0_Config4
, env
->CP0_Config5
);
19380 if (env
->hflags
& MIPS_HFLAG_FPU
)
19381 fpu_dump_state(env
, f
, cpu_fprintf
, flags
);
19382 #if defined(TARGET_MIPS64) && defined(MIPS_DEBUG_SIGN_EXTENSIONS)
19383 cpu_mips_check_sign_extensions(env
, f
, cpu_fprintf
, flags
);
19387 void mips_tcg_init(void)
19392 /* Initialize various static tables. */
19396 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
19397 TCGV_UNUSED(cpu_gpr
[0]);
19398 for (i
= 1; i
< 32; i
++)
19399 cpu_gpr
[i
] = tcg_global_mem_new(TCG_AREG0
,
19400 offsetof(CPUMIPSState
, active_tc
.gpr
[i
]),
19403 for (i
= 0; i
< 32; i
++) {
19404 int off
= offsetof(CPUMIPSState
, active_fpu
.fpr
[i
].wr
.d
[0]);
19406 tcg_global_mem_new_i64(TCG_AREG0
, off
, msaregnames
[i
* 2]);
19407 /* The scalar floating-point unit (FPU) registers are mapped on
19408 * the MSA vector registers. */
19409 fpu_f64
[i
] = msa_wr_d
[i
* 2];
19410 off
= offsetof(CPUMIPSState
, active_fpu
.fpr
[i
].wr
.d
[1]);
19411 msa_wr_d
[i
* 2 + 1] =
19412 tcg_global_mem_new_i64(TCG_AREG0
, off
, msaregnames
[i
* 2 + 1]);
19415 cpu_PC
= tcg_global_mem_new(TCG_AREG0
,
19416 offsetof(CPUMIPSState
, active_tc
.PC
), "PC");
19417 for (i
= 0; i
< MIPS_DSP_ACC
; i
++) {
19418 cpu_HI
[i
] = tcg_global_mem_new(TCG_AREG0
,
19419 offsetof(CPUMIPSState
, active_tc
.HI
[i
]),
19421 cpu_LO
[i
] = tcg_global_mem_new(TCG_AREG0
,
19422 offsetof(CPUMIPSState
, active_tc
.LO
[i
]),
19425 cpu_dspctrl
= tcg_global_mem_new(TCG_AREG0
,
19426 offsetof(CPUMIPSState
, active_tc
.DSPControl
),
19428 bcond
= tcg_global_mem_new(TCG_AREG0
,
19429 offsetof(CPUMIPSState
, bcond
), "bcond");
19430 btarget
= tcg_global_mem_new(TCG_AREG0
,
19431 offsetof(CPUMIPSState
, btarget
), "btarget");
19432 hflags
= tcg_global_mem_new_i32(TCG_AREG0
,
19433 offsetof(CPUMIPSState
, hflags
), "hflags");
19435 fpu_fcr0
= tcg_global_mem_new_i32(TCG_AREG0
,
19436 offsetof(CPUMIPSState
, active_fpu
.fcr0
),
19438 fpu_fcr31
= tcg_global_mem_new_i32(TCG_AREG0
,
19439 offsetof(CPUMIPSState
, active_fpu
.fcr31
),
19445 #include "translate_init.c"
19447 MIPSCPU
*cpu_mips_init(const char *cpu_model
)
19451 const mips_def_t
*def
;
19453 def
= cpu_mips_find_by_name(cpu_model
);
19456 cpu
= MIPS_CPU(object_new(TYPE_MIPS_CPU
));
19458 env
->cpu_model
= def
;
19460 #ifndef CONFIG_USER_ONLY
19461 mmu_init(env
, def
);
19463 fpu_init(env
, def
);
19464 mvp_init(env
, def
);
19466 object_property_set_bool(OBJECT(cpu
), true, "realized", NULL
);
19471 void cpu_state_reset(CPUMIPSState
*env
)
19473 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
19474 CPUState
*cs
= CPU(cpu
);
19476 /* Reset registers to their default values */
19477 env
->CP0_PRid
= env
->cpu_model
->CP0_PRid
;
19478 env
->CP0_Config0
= env
->cpu_model
->CP0_Config0
;
19479 #ifdef TARGET_WORDS_BIGENDIAN
19480 env
->CP0_Config0
|= (1 << CP0C0_BE
);
19482 env
->CP0_Config1
= env
->cpu_model
->CP0_Config1
;
19483 env
->CP0_Config2
= env
->cpu_model
->CP0_Config2
;
19484 env
->CP0_Config3
= env
->cpu_model
->CP0_Config3
;
19485 env
->CP0_Config4
= env
->cpu_model
->CP0_Config4
;
19486 env
->CP0_Config4_rw_bitmask
= env
->cpu_model
->CP0_Config4_rw_bitmask
;
19487 env
->CP0_Config5
= env
->cpu_model
->CP0_Config5
;
19488 env
->CP0_Config5_rw_bitmask
= env
->cpu_model
->CP0_Config5_rw_bitmask
;
19489 env
->CP0_Config6
= env
->cpu_model
->CP0_Config6
;
19490 env
->CP0_Config7
= env
->cpu_model
->CP0_Config7
;
19491 env
->CP0_LLAddr_rw_bitmask
= env
->cpu_model
->CP0_LLAddr_rw_bitmask
19492 << env
->cpu_model
->CP0_LLAddr_shift
;
19493 env
->CP0_LLAddr_shift
= env
->cpu_model
->CP0_LLAddr_shift
;
19494 env
->SYNCI_Step
= env
->cpu_model
->SYNCI_Step
;
19495 env
->CCRes
= env
->cpu_model
->CCRes
;
19496 env
->CP0_Status_rw_bitmask
= env
->cpu_model
->CP0_Status_rw_bitmask
;
19497 env
->CP0_TCStatus_rw_bitmask
= env
->cpu_model
->CP0_TCStatus_rw_bitmask
;
19498 env
->CP0_SRSCtl
= env
->cpu_model
->CP0_SRSCtl
;
19499 env
->current_tc
= 0;
19500 env
->SEGBITS
= env
->cpu_model
->SEGBITS
;
19501 env
->SEGMask
= (target_ulong
)((1ULL << env
->cpu_model
->SEGBITS
) - 1);
19502 #if defined(TARGET_MIPS64)
19503 if (env
->cpu_model
->insn_flags
& ISA_MIPS3
) {
19504 env
->SEGMask
|= 3ULL << 62;
19507 env
->PABITS
= env
->cpu_model
->PABITS
;
19508 env
->PAMask
= (target_ulong
)((1ULL << env
->cpu_model
->PABITS
) - 1);
19509 env
->CP0_SRSConf0_rw_bitmask
= env
->cpu_model
->CP0_SRSConf0_rw_bitmask
;
19510 env
->CP0_SRSConf0
= env
->cpu_model
->CP0_SRSConf0
;
19511 env
->CP0_SRSConf1_rw_bitmask
= env
->cpu_model
->CP0_SRSConf1_rw_bitmask
;
19512 env
->CP0_SRSConf1
= env
->cpu_model
->CP0_SRSConf1
;
19513 env
->CP0_SRSConf2_rw_bitmask
= env
->cpu_model
->CP0_SRSConf2_rw_bitmask
;
19514 env
->CP0_SRSConf2
= env
->cpu_model
->CP0_SRSConf2
;
19515 env
->CP0_SRSConf3_rw_bitmask
= env
->cpu_model
->CP0_SRSConf3_rw_bitmask
;
19516 env
->CP0_SRSConf3
= env
->cpu_model
->CP0_SRSConf3
;
19517 env
->CP0_SRSConf4_rw_bitmask
= env
->cpu_model
->CP0_SRSConf4_rw_bitmask
;
19518 env
->CP0_SRSConf4
= env
->cpu_model
->CP0_SRSConf4
;
19519 env
->CP0_PageGrain_rw_bitmask
= env
->cpu_model
->CP0_PageGrain_rw_bitmask
;
19520 env
->CP0_PageGrain
= env
->cpu_model
->CP0_PageGrain
;
19521 env
->active_fpu
.fcr0
= env
->cpu_model
->CP1_fcr0
;
19522 env
->msair
= env
->cpu_model
->MSAIR
;
19523 env
->insn_flags
= env
->cpu_model
->insn_flags
;
19525 #if defined(CONFIG_USER_ONLY)
19526 env
->CP0_Status
= (MIPS_HFLAG_UM
<< CP0St_KSU
);
19527 # ifdef TARGET_MIPS64
19528 /* Enable 64-bit register mode. */
19529 env
->CP0_Status
|= (1 << CP0St_PX
);
19531 # ifdef TARGET_ABI_MIPSN64
19532 /* Enable 64-bit address mode. */
19533 env
->CP0_Status
|= (1 << CP0St_UX
);
19535 /* Enable access to the CPUNum, SYNCI_Step, CC, and CCRes RDHWR
19536 hardware registers. */
19537 env
->CP0_HWREna
|= 0x0000000F;
19538 if (env
->CP0_Config1
& (1 << CP0C1_FP
)) {
19539 env
->CP0_Status
|= (1 << CP0St_CU1
);
19541 if (env
->CP0_Config3
& (1 << CP0C3_DSPP
)) {
19542 env
->CP0_Status
|= (1 << CP0St_MX
);
19544 # if defined(TARGET_MIPS64)
19545 /* For MIPS64, init FR bit to 1 if FPU unit is there and bit is writable. */
19546 if ((env
->CP0_Config1
& (1 << CP0C1_FP
)) &&
19547 (env
->CP0_Status_rw_bitmask
& (1 << CP0St_FR
))) {
19548 env
->CP0_Status
|= (1 << CP0St_FR
);
19552 if (env
->hflags
& MIPS_HFLAG_BMASK
) {
19553 /* If the exception was raised from a delay slot,
19554 come back to the jump. */
19555 env
->CP0_ErrorEPC
= (env
->active_tc
.PC
19556 - (env
->hflags
& MIPS_HFLAG_B16
? 2 : 4));
19558 env
->CP0_ErrorEPC
= env
->active_tc
.PC
;
19560 env
->active_tc
.PC
= (int32_t)0xBFC00000;
19561 env
->CP0_Random
= env
->tlb
->nb_tlb
- 1;
19562 env
->tlb
->tlb_in_use
= env
->tlb
->nb_tlb
;
19563 env
->CP0_Wired
= 0;
19564 env
->CP0_EBase
= (cs
->cpu_index
& 0x3FF);
19565 if (kvm_enabled()) {
19566 env
->CP0_EBase
|= 0x40000000;
19568 env
->CP0_EBase
|= 0x80000000;
19570 env
->CP0_Status
= (1 << CP0St_BEV
) | (1 << CP0St_ERL
);
19571 /* vectored interrupts not implemented, timer on int 7,
19572 no performance counters. */
19573 env
->CP0_IntCtl
= 0xe0000000;
19577 for (i
= 0; i
< 7; i
++) {
19578 env
->CP0_WatchLo
[i
] = 0;
19579 env
->CP0_WatchHi
[i
] = 0x80000000;
19581 env
->CP0_WatchLo
[7] = 0;
19582 env
->CP0_WatchHi
[7] = 0;
19584 /* Count register increments in debug mode, EJTAG version 1 */
19585 env
->CP0_Debug
= (1 << CP0DB_CNT
) | (0x1 << CP0DB_VER
);
19587 cpu_mips_store_count(env
, 1);
19589 if (env
->CP0_Config3
& (1 << CP0C3_MT
)) {
19592 /* Only TC0 on VPE 0 starts as active. */
19593 for (i
= 0; i
< ARRAY_SIZE(env
->tcs
); i
++) {
19594 env
->tcs
[i
].CP0_TCBind
= cs
->cpu_index
<< CP0TCBd_CurVPE
;
19595 env
->tcs
[i
].CP0_TCHalt
= 1;
19597 env
->active_tc
.CP0_TCHalt
= 1;
19600 if (cs
->cpu_index
== 0) {
19601 /* VPE0 starts up enabled. */
19602 env
->mvp
->CP0_MVPControl
|= (1 << CP0MVPCo_EVP
);
19603 env
->CP0_VPEConf0
|= (1 << CP0VPEC0_MVP
) | (1 << CP0VPEC0_VPA
);
19605 /* TC0 starts up unhalted. */
19607 env
->active_tc
.CP0_TCHalt
= 0;
19608 env
->tcs
[0].CP0_TCHalt
= 0;
19609 /* With thread 0 active. */
19610 env
->active_tc
.CP0_TCStatus
= (1 << CP0TCSt_A
);
19611 env
->tcs
[0].CP0_TCStatus
= (1 << CP0TCSt_A
);
19615 if ((env
->insn_flags
& ISA_MIPS32R6
) &&
19616 (env
->active_fpu
.fcr0
& (1 << FCR0_F64
))) {
19617 /* Status.FR = 0 mode in 64-bit FPU not allowed in R6 */
19618 env
->CP0_Status
|= (1 << CP0St_FR
);
19622 if (env
->CP0_Config3
& (1 << CP0C3_MSAP
)) {
19626 compute_hflags(env
);
19627 restore_rounding_mode(env
);
19628 restore_flush_mode(env
);
19629 cs
->exception_index
= EXCP_NONE
;
19632 void restore_state_to_opc(CPUMIPSState
*env
, TranslationBlock
*tb
, int pc_pos
)
19634 env
->active_tc
.PC
= tcg_ctx
.gen_opc_pc
[pc_pos
];
19635 env
->hflags
&= ~MIPS_HFLAG_BMASK
;
19636 env
->hflags
|= gen_opc_hflags
[pc_pos
];
19637 switch (env
->hflags
& MIPS_HFLAG_BMASK_BASE
) {
19638 case MIPS_HFLAG_BR
:
19640 case MIPS_HFLAG_BC
:
19641 case MIPS_HFLAG_BL
:
19643 env
->btarget
= gen_opc_btarget
[pc_pos
];