]> git.proxmox.com Git - mirror_qemu.git/blob - target/arm/translate.c
target/arm: Convert T16, Reverse bytes
[mirror_qemu.git] / target / arm / translate.c
1 /*
2 * ARM translation
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2005-2007 CodeSourcery
6 * Copyright (c) 2007 OpenedHand, Ltd.
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 */
21 #include "qemu/osdep.h"
22
23 #include "cpu.h"
24 #include "internals.h"
25 #include "disas/disas.h"
26 #include "exec/exec-all.h"
27 #include "tcg-op.h"
28 #include "tcg-op-gvec.h"
29 #include "qemu/log.h"
30 #include "qemu/bitops.h"
31 #include "arm_ldst.h"
32 #include "hw/semihosting/semihost.h"
33
34 #include "exec/helper-proto.h"
35 #include "exec/helper-gen.h"
36
37 #include "trace-tcg.h"
38 #include "exec/log.h"
39
40
41 #define ENABLE_ARCH_4T arm_dc_feature(s, ARM_FEATURE_V4T)
42 #define ENABLE_ARCH_5 arm_dc_feature(s, ARM_FEATURE_V5)
43 /* currently all emulated v5 cores are also v5TE, so don't bother */
44 #define ENABLE_ARCH_5TE arm_dc_feature(s, ARM_FEATURE_V5)
45 #define ENABLE_ARCH_5J dc_isar_feature(jazelle, s)
46 #define ENABLE_ARCH_6 arm_dc_feature(s, ARM_FEATURE_V6)
47 #define ENABLE_ARCH_6K arm_dc_feature(s, ARM_FEATURE_V6K)
48 #define ENABLE_ARCH_6T2 arm_dc_feature(s, ARM_FEATURE_THUMB2)
49 #define ENABLE_ARCH_7 arm_dc_feature(s, ARM_FEATURE_V7)
50 #define ENABLE_ARCH_8 arm_dc_feature(s, ARM_FEATURE_V8)
51
52 #define ARCH(x) do { if (!ENABLE_ARCH_##x) goto illegal_op; } while(0)
53
54 #include "translate.h"
55
56 #if defined(CONFIG_USER_ONLY)
57 #define IS_USER(s) 1
58 #else
59 #define IS_USER(s) (s->user)
60 #endif
61
62 /* We reuse the same 64-bit temporaries for efficiency. */
63 static TCGv_i64 cpu_V0, cpu_V1, cpu_M0;
64 static TCGv_i32 cpu_R[16];
65 TCGv_i32 cpu_CF, cpu_NF, cpu_VF, cpu_ZF;
66 TCGv_i64 cpu_exclusive_addr;
67 TCGv_i64 cpu_exclusive_val;
68
69 #include "exec/gen-icount.h"
70
71 static const char * const regnames[] =
72 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
73 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "pc" };
74
75 /* Function prototypes for gen_ functions calling Neon helpers. */
76 typedef void NeonGenThreeOpEnvFn(TCGv_i32, TCGv_env, TCGv_i32,
77 TCGv_i32, TCGv_i32);
78 /* Function prototypes for gen_ functions for fix point conversions */
79 typedef void VFPGenFixPointFn(TCGv_i32, TCGv_i32, TCGv_i32, TCGv_ptr);
80
81 /* initialize TCG globals. */
82 void arm_translate_init(void)
83 {
84 int i;
85
86 for (i = 0; i < 16; i++) {
87 cpu_R[i] = tcg_global_mem_new_i32(cpu_env,
88 offsetof(CPUARMState, regs[i]),
89 regnames[i]);
90 }
91 cpu_CF = tcg_global_mem_new_i32(cpu_env, offsetof(CPUARMState, CF), "CF");
92 cpu_NF = tcg_global_mem_new_i32(cpu_env, offsetof(CPUARMState, NF), "NF");
93 cpu_VF = tcg_global_mem_new_i32(cpu_env, offsetof(CPUARMState, VF), "VF");
94 cpu_ZF = tcg_global_mem_new_i32(cpu_env, offsetof(CPUARMState, ZF), "ZF");
95
96 cpu_exclusive_addr = tcg_global_mem_new_i64(cpu_env,
97 offsetof(CPUARMState, exclusive_addr), "exclusive_addr");
98 cpu_exclusive_val = tcg_global_mem_new_i64(cpu_env,
99 offsetof(CPUARMState, exclusive_val), "exclusive_val");
100
101 a64_translate_init();
102 }
103
104 /* Flags for the disas_set_da_iss info argument:
105 * lower bits hold the Rt register number, higher bits are flags.
106 */
107 typedef enum ISSInfo {
108 ISSNone = 0,
109 ISSRegMask = 0x1f,
110 ISSInvalid = (1 << 5),
111 ISSIsAcqRel = (1 << 6),
112 ISSIsWrite = (1 << 7),
113 ISSIs16Bit = (1 << 8),
114 } ISSInfo;
115
116 /* Save the syndrome information for a Data Abort */
117 static void disas_set_da_iss(DisasContext *s, MemOp memop, ISSInfo issinfo)
118 {
119 uint32_t syn;
120 int sas = memop & MO_SIZE;
121 bool sse = memop & MO_SIGN;
122 bool is_acqrel = issinfo & ISSIsAcqRel;
123 bool is_write = issinfo & ISSIsWrite;
124 bool is_16bit = issinfo & ISSIs16Bit;
125 int srt = issinfo & ISSRegMask;
126
127 if (issinfo & ISSInvalid) {
128 /* Some callsites want to conditionally provide ISS info,
129 * eg "only if this was not a writeback"
130 */
131 return;
132 }
133
134 if (srt == 15) {
135 /* For AArch32, insns where the src/dest is R15 never generate
136 * ISS information. Catching that here saves checking at all
137 * the call sites.
138 */
139 return;
140 }
141
142 syn = syn_data_abort_with_iss(0, sas, sse, srt, 0, is_acqrel,
143 0, 0, 0, is_write, 0, is_16bit);
144 disas_set_insn_syndrome(s, syn);
145 }
146
147 static inline int get_a32_user_mem_index(DisasContext *s)
148 {
149 /* Return the core mmu_idx to use for A32/T32 "unprivileged load/store"
150 * insns:
151 * if PL2, UNPREDICTABLE (we choose to implement as if PL0)
152 * otherwise, access as if at PL0.
153 */
154 switch (s->mmu_idx) {
155 case ARMMMUIdx_S1E2: /* this one is UNPREDICTABLE */
156 case ARMMMUIdx_S12NSE0:
157 case ARMMMUIdx_S12NSE1:
158 return arm_to_core_mmu_idx(ARMMMUIdx_S12NSE0);
159 case ARMMMUIdx_S1E3:
160 case ARMMMUIdx_S1SE0:
161 case ARMMMUIdx_S1SE1:
162 return arm_to_core_mmu_idx(ARMMMUIdx_S1SE0);
163 case ARMMMUIdx_MUser:
164 case ARMMMUIdx_MPriv:
165 return arm_to_core_mmu_idx(ARMMMUIdx_MUser);
166 case ARMMMUIdx_MUserNegPri:
167 case ARMMMUIdx_MPrivNegPri:
168 return arm_to_core_mmu_idx(ARMMMUIdx_MUserNegPri);
169 case ARMMMUIdx_MSUser:
170 case ARMMMUIdx_MSPriv:
171 return arm_to_core_mmu_idx(ARMMMUIdx_MSUser);
172 case ARMMMUIdx_MSUserNegPri:
173 case ARMMMUIdx_MSPrivNegPri:
174 return arm_to_core_mmu_idx(ARMMMUIdx_MSUserNegPri);
175 case ARMMMUIdx_S2NS:
176 default:
177 g_assert_not_reached();
178 }
179 }
180
181 static inline TCGv_i32 load_cpu_offset(int offset)
182 {
183 TCGv_i32 tmp = tcg_temp_new_i32();
184 tcg_gen_ld_i32(tmp, cpu_env, offset);
185 return tmp;
186 }
187
188 #define load_cpu_field(name) load_cpu_offset(offsetof(CPUARMState, name))
189
190 static inline void store_cpu_offset(TCGv_i32 var, int offset)
191 {
192 tcg_gen_st_i32(var, cpu_env, offset);
193 tcg_temp_free_i32(var);
194 }
195
196 #define store_cpu_field(var, name) \
197 store_cpu_offset(var, offsetof(CPUARMState, name))
198
199 /* The architectural value of PC. */
200 static uint32_t read_pc(DisasContext *s)
201 {
202 return s->pc_curr + (s->thumb ? 4 : 8);
203 }
204
205 /* Set a variable to the value of a CPU register. */
206 static void load_reg_var(DisasContext *s, TCGv_i32 var, int reg)
207 {
208 if (reg == 15) {
209 tcg_gen_movi_i32(var, read_pc(s));
210 } else {
211 tcg_gen_mov_i32(var, cpu_R[reg]);
212 }
213 }
214
215 /* Create a new temporary and set it to the value of a CPU register. */
216 static inline TCGv_i32 load_reg(DisasContext *s, int reg)
217 {
218 TCGv_i32 tmp = tcg_temp_new_i32();
219 load_reg_var(s, tmp, reg);
220 return tmp;
221 }
222
223 /*
224 * Create a new temp, REG + OFS, except PC is ALIGN(PC, 4).
225 * This is used for load/store for which use of PC implies (literal),
226 * or ADD that implies ADR.
227 */
228 static TCGv_i32 add_reg_for_lit(DisasContext *s, int reg, int ofs)
229 {
230 TCGv_i32 tmp = tcg_temp_new_i32();
231
232 if (reg == 15) {
233 tcg_gen_movi_i32(tmp, (read_pc(s) & ~3) + ofs);
234 } else {
235 tcg_gen_addi_i32(tmp, cpu_R[reg], ofs);
236 }
237 return tmp;
238 }
239
240 /* Set a CPU register. The source must be a temporary and will be
241 marked as dead. */
242 static void store_reg(DisasContext *s, int reg, TCGv_i32 var)
243 {
244 if (reg == 15) {
245 /* In Thumb mode, we must ignore bit 0.
246 * In ARM mode, for ARMv4 and ARMv5, it is UNPREDICTABLE if bits [1:0]
247 * are not 0b00, but for ARMv6 and above, we must ignore bits [1:0].
248 * We choose to ignore [1:0] in ARM mode for all architecture versions.
249 */
250 tcg_gen_andi_i32(var, var, s->thumb ? ~1 : ~3);
251 s->base.is_jmp = DISAS_JUMP;
252 }
253 tcg_gen_mov_i32(cpu_R[reg], var);
254 tcg_temp_free_i32(var);
255 }
256
257 /*
258 * Variant of store_reg which applies v8M stack-limit checks before updating
259 * SP. If the check fails this will result in an exception being taken.
260 * We disable the stack checks for CONFIG_USER_ONLY because we have
261 * no idea what the stack limits should be in that case.
262 * If stack checking is not being done this just acts like store_reg().
263 */
264 static void store_sp_checked(DisasContext *s, TCGv_i32 var)
265 {
266 #ifndef CONFIG_USER_ONLY
267 if (s->v8m_stackcheck) {
268 gen_helper_v8m_stackcheck(cpu_env, var);
269 }
270 #endif
271 store_reg(s, 13, var);
272 }
273
274 /* Value extensions. */
275 #define gen_uxtb(var) tcg_gen_ext8u_i32(var, var)
276 #define gen_uxth(var) tcg_gen_ext16u_i32(var, var)
277 #define gen_sxtb(var) tcg_gen_ext8s_i32(var, var)
278 #define gen_sxth(var) tcg_gen_ext16s_i32(var, var)
279
280 #define gen_sxtb16(var) gen_helper_sxtb16(var, var)
281 #define gen_uxtb16(var) gen_helper_uxtb16(var, var)
282
283
284 static inline void gen_set_cpsr(TCGv_i32 var, uint32_t mask)
285 {
286 TCGv_i32 tmp_mask = tcg_const_i32(mask);
287 gen_helper_cpsr_write(cpu_env, var, tmp_mask);
288 tcg_temp_free_i32(tmp_mask);
289 }
290 /* Set NZCV flags from the high 4 bits of var. */
291 #define gen_set_nzcv(var) gen_set_cpsr(var, CPSR_NZCV)
292
293 static void gen_exception_internal(int excp)
294 {
295 TCGv_i32 tcg_excp = tcg_const_i32(excp);
296
297 assert(excp_is_internal(excp));
298 gen_helper_exception_internal(cpu_env, tcg_excp);
299 tcg_temp_free_i32(tcg_excp);
300 }
301
302 static void gen_step_complete_exception(DisasContext *s)
303 {
304 /* We just completed step of an insn. Move from Active-not-pending
305 * to Active-pending, and then also take the swstep exception.
306 * This corresponds to making the (IMPDEF) choice to prioritize
307 * swstep exceptions over asynchronous exceptions taken to an exception
308 * level where debug is disabled. This choice has the advantage that
309 * we do not need to maintain internal state corresponding to the
310 * ISV/EX syndrome bits between completion of the step and generation
311 * of the exception, and our syndrome information is always correct.
312 */
313 gen_ss_advance(s);
314 gen_swstep_exception(s, 1, s->is_ldex);
315 s->base.is_jmp = DISAS_NORETURN;
316 }
317
318 static void gen_singlestep_exception(DisasContext *s)
319 {
320 /* Generate the right kind of exception for singlestep, which is
321 * either the architectural singlestep or EXCP_DEBUG for QEMU's
322 * gdb singlestepping.
323 */
324 if (s->ss_active) {
325 gen_step_complete_exception(s);
326 } else {
327 gen_exception_internal(EXCP_DEBUG);
328 }
329 }
330
331 static inline bool is_singlestepping(DisasContext *s)
332 {
333 /* Return true if we are singlestepping either because of
334 * architectural singlestep or QEMU gdbstub singlestep. This does
335 * not include the command line '-singlestep' mode which is rather
336 * misnamed as it only means "one instruction per TB" and doesn't
337 * affect the code we generate.
338 */
339 return s->base.singlestep_enabled || s->ss_active;
340 }
341
342 static void gen_smul_dual(TCGv_i32 a, TCGv_i32 b)
343 {
344 TCGv_i32 tmp1 = tcg_temp_new_i32();
345 TCGv_i32 tmp2 = tcg_temp_new_i32();
346 tcg_gen_ext16s_i32(tmp1, a);
347 tcg_gen_ext16s_i32(tmp2, b);
348 tcg_gen_mul_i32(tmp1, tmp1, tmp2);
349 tcg_temp_free_i32(tmp2);
350 tcg_gen_sari_i32(a, a, 16);
351 tcg_gen_sari_i32(b, b, 16);
352 tcg_gen_mul_i32(b, b, a);
353 tcg_gen_mov_i32(a, tmp1);
354 tcg_temp_free_i32(tmp1);
355 }
356
357 /* Byteswap each halfword. */
358 static void gen_rev16(TCGv_i32 dest, TCGv_i32 var)
359 {
360 TCGv_i32 tmp = tcg_temp_new_i32();
361 TCGv_i32 mask = tcg_const_i32(0x00ff00ff);
362 tcg_gen_shri_i32(tmp, var, 8);
363 tcg_gen_and_i32(tmp, tmp, mask);
364 tcg_gen_and_i32(var, var, mask);
365 tcg_gen_shli_i32(var, var, 8);
366 tcg_gen_or_i32(dest, var, tmp);
367 tcg_temp_free_i32(mask);
368 tcg_temp_free_i32(tmp);
369 }
370
371 /* Byteswap low halfword and sign extend. */
372 static void gen_revsh(TCGv_i32 dest, TCGv_i32 var)
373 {
374 tcg_gen_ext16u_i32(var, var);
375 tcg_gen_bswap16_i32(var, var);
376 tcg_gen_ext16s_i32(dest, var);
377 }
378
379 /* 32x32->64 multiply. Marks inputs as dead. */
380 static TCGv_i64 gen_mulu_i64_i32(TCGv_i32 a, TCGv_i32 b)
381 {
382 TCGv_i32 lo = tcg_temp_new_i32();
383 TCGv_i32 hi = tcg_temp_new_i32();
384 TCGv_i64 ret;
385
386 tcg_gen_mulu2_i32(lo, hi, a, b);
387 tcg_temp_free_i32(a);
388 tcg_temp_free_i32(b);
389
390 ret = tcg_temp_new_i64();
391 tcg_gen_concat_i32_i64(ret, lo, hi);
392 tcg_temp_free_i32(lo);
393 tcg_temp_free_i32(hi);
394
395 return ret;
396 }
397
398 static TCGv_i64 gen_muls_i64_i32(TCGv_i32 a, TCGv_i32 b)
399 {
400 TCGv_i32 lo = tcg_temp_new_i32();
401 TCGv_i32 hi = tcg_temp_new_i32();
402 TCGv_i64 ret;
403
404 tcg_gen_muls2_i32(lo, hi, a, b);
405 tcg_temp_free_i32(a);
406 tcg_temp_free_i32(b);
407
408 ret = tcg_temp_new_i64();
409 tcg_gen_concat_i32_i64(ret, lo, hi);
410 tcg_temp_free_i32(lo);
411 tcg_temp_free_i32(hi);
412
413 return ret;
414 }
415
416 /* Swap low and high halfwords. */
417 static void gen_swap_half(TCGv_i32 var)
418 {
419 tcg_gen_rotri_i32(var, var, 16);
420 }
421
422 /* Dual 16-bit add. Result placed in t0 and t1 is marked as dead.
423 tmp = (t0 ^ t1) & 0x8000;
424 t0 &= ~0x8000;
425 t1 &= ~0x8000;
426 t0 = (t0 + t1) ^ tmp;
427 */
428
429 static void gen_add16(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
430 {
431 TCGv_i32 tmp = tcg_temp_new_i32();
432 tcg_gen_xor_i32(tmp, t0, t1);
433 tcg_gen_andi_i32(tmp, tmp, 0x8000);
434 tcg_gen_andi_i32(t0, t0, ~0x8000);
435 tcg_gen_andi_i32(t1, t1, ~0x8000);
436 tcg_gen_add_i32(t0, t0, t1);
437 tcg_gen_xor_i32(dest, t0, tmp);
438 tcg_temp_free_i32(tmp);
439 }
440
441 /* Set N and Z flags from var. */
442 static inline void gen_logic_CC(TCGv_i32 var)
443 {
444 tcg_gen_mov_i32(cpu_NF, var);
445 tcg_gen_mov_i32(cpu_ZF, var);
446 }
447
448 /* dest = T0 + T1 + CF. */
449 static void gen_add_carry(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
450 {
451 tcg_gen_add_i32(dest, t0, t1);
452 tcg_gen_add_i32(dest, dest, cpu_CF);
453 }
454
455 /* dest = T0 - T1 + CF - 1. */
456 static void gen_sub_carry(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
457 {
458 tcg_gen_sub_i32(dest, t0, t1);
459 tcg_gen_add_i32(dest, dest, cpu_CF);
460 tcg_gen_subi_i32(dest, dest, 1);
461 }
462
463 /* dest = T0 + T1. Compute C, N, V and Z flags */
464 static void gen_add_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
465 {
466 TCGv_i32 tmp = tcg_temp_new_i32();
467 tcg_gen_movi_i32(tmp, 0);
468 tcg_gen_add2_i32(cpu_NF, cpu_CF, t0, tmp, t1, tmp);
469 tcg_gen_mov_i32(cpu_ZF, cpu_NF);
470 tcg_gen_xor_i32(cpu_VF, cpu_NF, t0);
471 tcg_gen_xor_i32(tmp, t0, t1);
472 tcg_gen_andc_i32(cpu_VF, cpu_VF, tmp);
473 tcg_temp_free_i32(tmp);
474 tcg_gen_mov_i32(dest, cpu_NF);
475 }
476
477 /* dest = T0 + T1 + CF. Compute C, N, V and Z flags */
478 static void gen_adc_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
479 {
480 TCGv_i32 tmp = tcg_temp_new_i32();
481 if (TCG_TARGET_HAS_add2_i32) {
482 tcg_gen_movi_i32(tmp, 0);
483 tcg_gen_add2_i32(cpu_NF, cpu_CF, t0, tmp, cpu_CF, tmp);
484 tcg_gen_add2_i32(cpu_NF, cpu_CF, cpu_NF, cpu_CF, t1, tmp);
485 } else {
486 TCGv_i64 q0 = tcg_temp_new_i64();
487 TCGv_i64 q1 = tcg_temp_new_i64();
488 tcg_gen_extu_i32_i64(q0, t0);
489 tcg_gen_extu_i32_i64(q1, t1);
490 tcg_gen_add_i64(q0, q0, q1);
491 tcg_gen_extu_i32_i64(q1, cpu_CF);
492 tcg_gen_add_i64(q0, q0, q1);
493 tcg_gen_extr_i64_i32(cpu_NF, cpu_CF, q0);
494 tcg_temp_free_i64(q0);
495 tcg_temp_free_i64(q1);
496 }
497 tcg_gen_mov_i32(cpu_ZF, cpu_NF);
498 tcg_gen_xor_i32(cpu_VF, cpu_NF, t0);
499 tcg_gen_xor_i32(tmp, t0, t1);
500 tcg_gen_andc_i32(cpu_VF, cpu_VF, tmp);
501 tcg_temp_free_i32(tmp);
502 tcg_gen_mov_i32(dest, cpu_NF);
503 }
504
505 /* dest = T0 - T1. Compute C, N, V and Z flags */
506 static void gen_sub_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
507 {
508 TCGv_i32 tmp;
509 tcg_gen_sub_i32(cpu_NF, t0, t1);
510 tcg_gen_mov_i32(cpu_ZF, cpu_NF);
511 tcg_gen_setcond_i32(TCG_COND_GEU, cpu_CF, t0, t1);
512 tcg_gen_xor_i32(cpu_VF, cpu_NF, t0);
513 tmp = tcg_temp_new_i32();
514 tcg_gen_xor_i32(tmp, t0, t1);
515 tcg_gen_and_i32(cpu_VF, cpu_VF, tmp);
516 tcg_temp_free_i32(tmp);
517 tcg_gen_mov_i32(dest, cpu_NF);
518 }
519
520 /* dest = T0 + ~T1 + CF. Compute C, N, V and Z flags */
521 static void gen_sbc_CC(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
522 {
523 TCGv_i32 tmp = tcg_temp_new_i32();
524 tcg_gen_not_i32(tmp, t1);
525 gen_adc_CC(dest, t0, tmp);
526 tcg_temp_free_i32(tmp);
527 }
528
529 #define GEN_SHIFT(name) \
530 static void gen_##name(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1) \
531 { \
532 TCGv_i32 tmp1, tmp2, tmp3; \
533 tmp1 = tcg_temp_new_i32(); \
534 tcg_gen_andi_i32(tmp1, t1, 0xff); \
535 tmp2 = tcg_const_i32(0); \
536 tmp3 = tcg_const_i32(0x1f); \
537 tcg_gen_movcond_i32(TCG_COND_GTU, tmp2, tmp1, tmp3, tmp2, t0); \
538 tcg_temp_free_i32(tmp3); \
539 tcg_gen_andi_i32(tmp1, tmp1, 0x1f); \
540 tcg_gen_##name##_i32(dest, tmp2, tmp1); \
541 tcg_temp_free_i32(tmp2); \
542 tcg_temp_free_i32(tmp1); \
543 }
544 GEN_SHIFT(shl)
545 GEN_SHIFT(shr)
546 #undef GEN_SHIFT
547
548 static void gen_sar(TCGv_i32 dest, TCGv_i32 t0, TCGv_i32 t1)
549 {
550 TCGv_i32 tmp1, tmp2;
551 tmp1 = tcg_temp_new_i32();
552 tcg_gen_andi_i32(tmp1, t1, 0xff);
553 tmp2 = tcg_const_i32(0x1f);
554 tcg_gen_movcond_i32(TCG_COND_GTU, tmp1, tmp1, tmp2, tmp2, tmp1);
555 tcg_temp_free_i32(tmp2);
556 tcg_gen_sar_i32(dest, t0, tmp1);
557 tcg_temp_free_i32(tmp1);
558 }
559
560 static void shifter_out_im(TCGv_i32 var, int shift)
561 {
562 tcg_gen_extract_i32(cpu_CF, var, shift, 1);
563 }
564
565 /* Shift by immediate. Includes special handling for shift == 0. */
566 static inline void gen_arm_shift_im(TCGv_i32 var, int shiftop,
567 int shift, int flags)
568 {
569 switch (shiftop) {
570 case 0: /* LSL */
571 if (shift != 0) {
572 if (flags)
573 shifter_out_im(var, 32 - shift);
574 tcg_gen_shli_i32(var, var, shift);
575 }
576 break;
577 case 1: /* LSR */
578 if (shift == 0) {
579 if (flags) {
580 tcg_gen_shri_i32(cpu_CF, var, 31);
581 }
582 tcg_gen_movi_i32(var, 0);
583 } else {
584 if (flags)
585 shifter_out_im(var, shift - 1);
586 tcg_gen_shri_i32(var, var, shift);
587 }
588 break;
589 case 2: /* ASR */
590 if (shift == 0)
591 shift = 32;
592 if (flags)
593 shifter_out_im(var, shift - 1);
594 if (shift == 32)
595 shift = 31;
596 tcg_gen_sari_i32(var, var, shift);
597 break;
598 case 3: /* ROR/RRX */
599 if (shift != 0) {
600 if (flags)
601 shifter_out_im(var, shift - 1);
602 tcg_gen_rotri_i32(var, var, shift); break;
603 } else {
604 TCGv_i32 tmp = tcg_temp_new_i32();
605 tcg_gen_shli_i32(tmp, cpu_CF, 31);
606 if (flags)
607 shifter_out_im(var, 0);
608 tcg_gen_shri_i32(var, var, 1);
609 tcg_gen_or_i32(var, var, tmp);
610 tcg_temp_free_i32(tmp);
611 }
612 }
613 };
614
615 static inline void gen_arm_shift_reg(TCGv_i32 var, int shiftop,
616 TCGv_i32 shift, int flags)
617 {
618 if (flags) {
619 switch (shiftop) {
620 case 0: gen_helper_shl_cc(var, cpu_env, var, shift); break;
621 case 1: gen_helper_shr_cc(var, cpu_env, var, shift); break;
622 case 2: gen_helper_sar_cc(var, cpu_env, var, shift); break;
623 case 3: gen_helper_ror_cc(var, cpu_env, var, shift); break;
624 }
625 } else {
626 switch (shiftop) {
627 case 0:
628 gen_shl(var, var, shift);
629 break;
630 case 1:
631 gen_shr(var, var, shift);
632 break;
633 case 2:
634 gen_sar(var, var, shift);
635 break;
636 case 3: tcg_gen_andi_i32(shift, shift, 0x1f);
637 tcg_gen_rotr_i32(var, var, shift); break;
638 }
639 }
640 tcg_temp_free_i32(shift);
641 }
642
643 /*
644 * Generate a conditional based on ARM condition code cc.
645 * This is common between ARM and Aarch64 targets.
646 */
647 void arm_test_cc(DisasCompare *cmp, int cc)
648 {
649 TCGv_i32 value;
650 TCGCond cond;
651 bool global = true;
652
653 switch (cc) {
654 case 0: /* eq: Z */
655 case 1: /* ne: !Z */
656 cond = TCG_COND_EQ;
657 value = cpu_ZF;
658 break;
659
660 case 2: /* cs: C */
661 case 3: /* cc: !C */
662 cond = TCG_COND_NE;
663 value = cpu_CF;
664 break;
665
666 case 4: /* mi: N */
667 case 5: /* pl: !N */
668 cond = TCG_COND_LT;
669 value = cpu_NF;
670 break;
671
672 case 6: /* vs: V */
673 case 7: /* vc: !V */
674 cond = TCG_COND_LT;
675 value = cpu_VF;
676 break;
677
678 case 8: /* hi: C && !Z */
679 case 9: /* ls: !C || Z -> !(C && !Z) */
680 cond = TCG_COND_NE;
681 value = tcg_temp_new_i32();
682 global = false;
683 /* CF is 1 for C, so -CF is an all-bits-set mask for C;
684 ZF is non-zero for !Z; so AND the two subexpressions. */
685 tcg_gen_neg_i32(value, cpu_CF);
686 tcg_gen_and_i32(value, value, cpu_ZF);
687 break;
688
689 case 10: /* ge: N == V -> N ^ V == 0 */
690 case 11: /* lt: N != V -> N ^ V != 0 */
691 /* Since we're only interested in the sign bit, == 0 is >= 0. */
692 cond = TCG_COND_GE;
693 value = tcg_temp_new_i32();
694 global = false;
695 tcg_gen_xor_i32(value, cpu_VF, cpu_NF);
696 break;
697
698 case 12: /* gt: !Z && N == V */
699 case 13: /* le: Z || N != V */
700 cond = TCG_COND_NE;
701 value = tcg_temp_new_i32();
702 global = false;
703 /* (N == V) is equal to the sign bit of ~(NF ^ VF). Propagate
704 * the sign bit then AND with ZF to yield the result. */
705 tcg_gen_xor_i32(value, cpu_VF, cpu_NF);
706 tcg_gen_sari_i32(value, value, 31);
707 tcg_gen_andc_i32(value, cpu_ZF, value);
708 break;
709
710 case 14: /* always */
711 case 15: /* always */
712 /* Use the ALWAYS condition, which will fold early.
713 * It doesn't matter what we use for the value. */
714 cond = TCG_COND_ALWAYS;
715 value = cpu_ZF;
716 goto no_invert;
717
718 default:
719 fprintf(stderr, "Bad condition code 0x%x\n", cc);
720 abort();
721 }
722
723 if (cc & 1) {
724 cond = tcg_invert_cond(cond);
725 }
726
727 no_invert:
728 cmp->cond = cond;
729 cmp->value = value;
730 cmp->value_global = global;
731 }
732
733 void arm_free_cc(DisasCompare *cmp)
734 {
735 if (!cmp->value_global) {
736 tcg_temp_free_i32(cmp->value);
737 }
738 }
739
740 void arm_jump_cc(DisasCompare *cmp, TCGLabel *label)
741 {
742 tcg_gen_brcondi_i32(cmp->cond, cmp->value, 0, label);
743 }
744
745 void arm_gen_test_cc(int cc, TCGLabel *label)
746 {
747 DisasCompare cmp;
748 arm_test_cc(&cmp, cc);
749 arm_jump_cc(&cmp, label);
750 arm_free_cc(&cmp);
751 }
752
753 static inline void gen_set_condexec(DisasContext *s)
754 {
755 if (s->condexec_mask) {
756 uint32_t val = (s->condexec_cond << 4) | (s->condexec_mask >> 1);
757 TCGv_i32 tmp = tcg_temp_new_i32();
758 tcg_gen_movi_i32(tmp, val);
759 store_cpu_field(tmp, condexec_bits);
760 }
761 }
762
763 static inline void gen_set_pc_im(DisasContext *s, target_ulong val)
764 {
765 tcg_gen_movi_i32(cpu_R[15], val);
766 }
767
768 /* Set PC and Thumb state from an immediate address. */
769 static inline void gen_bx_im(DisasContext *s, uint32_t addr)
770 {
771 TCGv_i32 tmp;
772
773 s->base.is_jmp = DISAS_JUMP;
774 if (s->thumb != (addr & 1)) {
775 tmp = tcg_temp_new_i32();
776 tcg_gen_movi_i32(tmp, addr & 1);
777 tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUARMState, thumb));
778 tcg_temp_free_i32(tmp);
779 }
780 tcg_gen_movi_i32(cpu_R[15], addr & ~1);
781 }
782
783 /* Set PC and Thumb state from var. var is marked as dead. */
784 static inline void gen_bx(DisasContext *s, TCGv_i32 var)
785 {
786 s->base.is_jmp = DISAS_JUMP;
787 tcg_gen_andi_i32(cpu_R[15], var, ~1);
788 tcg_gen_andi_i32(var, var, 1);
789 store_cpu_field(var, thumb);
790 }
791
792 /*
793 * Set PC and Thumb state from var. var is marked as dead.
794 * For M-profile CPUs, include logic to detect exception-return
795 * branches and handle them. This is needed for Thumb POP/LDM to PC, LDR to PC,
796 * and BX reg, and no others, and happens only for code in Handler mode.
797 * The Security Extension also requires us to check for the FNC_RETURN
798 * which signals a function return from non-secure state; this can happen
799 * in both Handler and Thread mode.
800 * To avoid having to do multiple comparisons in inline generated code,
801 * we make the check we do here loose, so it will match for EXC_RETURN
802 * in Thread mode. For system emulation do_v7m_exception_exit() checks
803 * for these spurious cases and returns without doing anything (giving
804 * the same behaviour as for a branch to a non-magic address).
805 *
806 * In linux-user mode it is unclear what the right behaviour for an
807 * attempted FNC_RETURN should be, because in real hardware this will go
808 * directly to Secure code (ie not the Linux kernel) which will then treat
809 * the error in any way it chooses. For QEMU we opt to make the FNC_RETURN
810 * attempt behave the way it would on a CPU without the security extension,
811 * which is to say "like a normal branch". That means we can simply treat
812 * all branches as normal with no magic address behaviour.
813 */
814 static inline void gen_bx_excret(DisasContext *s, TCGv_i32 var)
815 {
816 /* Generate the same code here as for a simple bx, but flag via
817 * s->base.is_jmp that we need to do the rest of the work later.
818 */
819 gen_bx(s, var);
820 #ifndef CONFIG_USER_ONLY
821 if (arm_dc_feature(s, ARM_FEATURE_M_SECURITY) ||
822 (s->v7m_handler_mode && arm_dc_feature(s, ARM_FEATURE_M))) {
823 s->base.is_jmp = DISAS_BX_EXCRET;
824 }
825 #endif
826 }
827
828 static inline void gen_bx_excret_final_code(DisasContext *s)
829 {
830 /* Generate the code to finish possible exception return and end the TB */
831 TCGLabel *excret_label = gen_new_label();
832 uint32_t min_magic;
833
834 if (arm_dc_feature(s, ARM_FEATURE_M_SECURITY)) {
835 /* Covers FNC_RETURN and EXC_RETURN magic */
836 min_magic = FNC_RETURN_MIN_MAGIC;
837 } else {
838 /* EXC_RETURN magic only */
839 min_magic = EXC_RETURN_MIN_MAGIC;
840 }
841
842 /* Is the new PC value in the magic range indicating exception return? */
843 tcg_gen_brcondi_i32(TCG_COND_GEU, cpu_R[15], min_magic, excret_label);
844 /* No: end the TB as we would for a DISAS_JMP */
845 if (is_singlestepping(s)) {
846 gen_singlestep_exception(s);
847 } else {
848 tcg_gen_exit_tb(NULL, 0);
849 }
850 gen_set_label(excret_label);
851 /* Yes: this is an exception return.
852 * At this point in runtime env->regs[15] and env->thumb will hold
853 * the exception-return magic number, which do_v7m_exception_exit()
854 * will read. Nothing else will be able to see those values because
855 * the cpu-exec main loop guarantees that we will always go straight
856 * from raising the exception to the exception-handling code.
857 *
858 * gen_ss_advance(s) does nothing on M profile currently but
859 * calling it is conceptually the right thing as we have executed
860 * this instruction (compare SWI, HVC, SMC handling).
861 */
862 gen_ss_advance(s);
863 gen_exception_internal(EXCP_EXCEPTION_EXIT);
864 }
865
866 static inline void gen_bxns(DisasContext *s, int rm)
867 {
868 TCGv_i32 var = load_reg(s, rm);
869
870 /* The bxns helper may raise an EXCEPTION_EXIT exception, so in theory
871 * we need to sync state before calling it, but:
872 * - we don't need to do gen_set_pc_im() because the bxns helper will
873 * always set the PC itself
874 * - we don't need to do gen_set_condexec() because BXNS is UNPREDICTABLE
875 * unless it's outside an IT block or the last insn in an IT block,
876 * so we know that condexec == 0 (already set at the top of the TB)
877 * is correct in the non-UNPREDICTABLE cases, and we can choose
878 * "zeroes the IT bits" as our UNPREDICTABLE behaviour otherwise.
879 */
880 gen_helper_v7m_bxns(cpu_env, var);
881 tcg_temp_free_i32(var);
882 s->base.is_jmp = DISAS_EXIT;
883 }
884
885 static inline void gen_blxns(DisasContext *s, int rm)
886 {
887 TCGv_i32 var = load_reg(s, rm);
888
889 /* We don't need to sync condexec state, for the same reason as bxns.
890 * We do however need to set the PC, because the blxns helper reads it.
891 * The blxns helper may throw an exception.
892 */
893 gen_set_pc_im(s, s->base.pc_next);
894 gen_helper_v7m_blxns(cpu_env, var);
895 tcg_temp_free_i32(var);
896 s->base.is_jmp = DISAS_EXIT;
897 }
898
899 /* Variant of store_reg which uses branch&exchange logic when storing
900 to r15 in ARM architecture v7 and above. The source must be a temporary
901 and will be marked as dead. */
902 static inline void store_reg_bx(DisasContext *s, int reg, TCGv_i32 var)
903 {
904 if (reg == 15 && ENABLE_ARCH_7) {
905 gen_bx(s, var);
906 } else {
907 store_reg(s, reg, var);
908 }
909 }
910
911 /* Variant of store_reg which uses branch&exchange logic when storing
912 * to r15 in ARM architecture v5T and above. This is used for storing
913 * the results of a LDR/LDM/POP into r15, and corresponds to the cases
914 * in the ARM ARM which use the LoadWritePC() pseudocode function. */
915 static inline void store_reg_from_load(DisasContext *s, int reg, TCGv_i32 var)
916 {
917 if (reg == 15 && ENABLE_ARCH_5) {
918 gen_bx_excret(s, var);
919 } else {
920 store_reg(s, reg, var);
921 }
922 }
923
924 #ifdef CONFIG_USER_ONLY
925 #define IS_USER_ONLY 1
926 #else
927 #define IS_USER_ONLY 0
928 #endif
929
930 /* Abstractions of "generate code to do a guest load/store for
931 * AArch32", where a vaddr is always 32 bits (and is zero
932 * extended if we're a 64 bit core) and data is also
933 * 32 bits unless specifically doing a 64 bit access.
934 * These functions work like tcg_gen_qemu_{ld,st}* except
935 * that the address argument is TCGv_i32 rather than TCGv.
936 */
937
938 static inline TCGv gen_aa32_addr(DisasContext *s, TCGv_i32 a32, MemOp op)
939 {
940 TCGv addr = tcg_temp_new();
941 tcg_gen_extu_i32_tl(addr, a32);
942
943 /* Not needed for user-mode BE32, where we use MO_BE instead. */
944 if (!IS_USER_ONLY && s->sctlr_b && (op & MO_SIZE) < MO_32) {
945 tcg_gen_xori_tl(addr, addr, 4 - (1 << (op & MO_SIZE)));
946 }
947 return addr;
948 }
949
950 static void gen_aa32_ld_i32(DisasContext *s, TCGv_i32 val, TCGv_i32 a32,
951 int index, MemOp opc)
952 {
953 TCGv addr;
954
955 if (arm_dc_feature(s, ARM_FEATURE_M) &&
956 !arm_dc_feature(s, ARM_FEATURE_M_MAIN)) {
957 opc |= MO_ALIGN;
958 }
959
960 addr = gen_aa32_addr(s, a32, opc);
961 tcg_gen_qemu_ld_i32(val, addr, index, opc);
962 tcg_temp_free(addr);
963 }
964
965 static void gen_aa32_st_i32(DisasContext *s, TCGv_i32 val, TCGv_i32 a32,
966 int index, MemOp opc)
967 {
968 TCGv addr;
969
970 if (arm_dc_feature(s, ARM_FEATURE_M) &&
971 !arm_dc_feature(s, ARM_FEATURE_M_MAIN)) {
972 opc |= MO_ALIGN;
973 }
974
975 addr = gen_aa32_addr(s, a32, opc);
976 tcg_gen_qemu_st_i32(val, addr, index, opc);
977 tcg_temp_free(addr);
978 }
979
980 #define DO_GEN_LD(SUFF, OPC) \
981 static inline void gen_aa32_ld##SUFF(DisasContext *s, TCGv_i32 val, \
982 TCGv_i32 a32, int index) \
983 { \
984 gen_aa32_ld_i32(s, val, a32, index, OPC | s->be_data); \
985 } \
986 static inline void gen_aa32_ld##SUFF##_iss(DisasContext *s, \
987 TCGv_i32 val, \
988 TCGv_i32 a32, int index, \
989 ISSInfo issinfo) \
990 { \
991 gen_aa32_ld##SUFF(s, val, a32, index); \
992 disas_set_da_iss(s, OPC, issinfo); \
993 }
994
995 #define DO_GEN_ST(SUFF, OPC) \
996 static inline void gen_aa32_st##SUFF(DisasContext *s, TCGv_i32 val, \
997 TCGv_i32 a32, int index) \
998 { \
999 gen_aa32_st_i32(s, val, a32, index, OPC | s->be_data); \
1000 } \
1001 static inline void gen_aa32_st##SUFF##_iss(DisasContext *s, \
1002 TCGv_i32 val, \
1003 TCGv_i32 a32, int index, \
1004 ISSInfo issinfo) \
1005 { \
1006 gen_aa32_st##SUFF(s, val, a32, index); \
1007 disas_set_da_iss(s, OPC, issinfo | ISSIsWrite); \
1008 }
1009
1010 static inline void gen_aa32_frob64(DisasContext *s, TCGv_i64 val)
1011 {
1012 /* Not needed for user-mode BE32, where we use MO_BE instead. */
1013 if (!IS_USER_ONLY && s->sctlr_b) {
1014 tcg_gen_rotri_i64(val, val, 32);
1015 }
1016 }
1017
1018 static void gen_aa32_ld_i64(DisasContext *s, TCGv_i64 val, TCGv_i32 a32,
1019 int index, MemOp opc)
1020 {
1021 TCGv addr = gen_aa32_addr(s, a32, opc);
1022 tcg_gen_qemu_ld_i64(val, addr, index, opc);
1023 gen_aa32_frob64(s, val);
1024 tcg_temp_free(addr);
1025 }
1026
1027 static inline void gen_aa32_ld64(DisasContext *s, TCGv_i64 val,
1028 TCGv_i32 a32, int index)
1029 {
1030 gen_aa32_ld_i64(s, val, a32, index, MO_Q | s->be_data);
1031 }
1032
1033 static void gen_aa32_st_i64(DisasContext *s, TCGv_i64 val, TCGv_i32 a32,
1034 int index, MemOp opc)
1035 {
1036 TCGv addr = gen_aa32_addr(s, a32, opc);
1037
1038 /* Not needed for user-mode BE32, where we use MO_BE instead. */
1039 if (!IS_USER_ONLY && s->sctlr_b) {
1040 TCGv_i64 tmp = tcg_temp_new_i64();
1041 tcg_gen_rotri_i64(tmp, val, 32);
1042 tcg_gen_qemu_st_i64(tmp, addr, index, opc);
1043 tcg_temp_free_i64(tmp);
1044 } else {
1045 tcg_gen_qemu_st_i64(val, addr, index, opc);
1046 }
1047 tcg_temp_free(addr);
1048 }
1049
1050 static inline void gen_aa32_st64(DisasContext *s, TCGv_i64 val,
1051 TCGv_i32 a32, int index)
1052 {
1053 gen_aa32_st_i64(s, val, a32, index, MO_Q | s->be_data);
1054 }
1055
1056 DO_GEN_LD(8s, MO_SB)
1057 DO_GEN_LD(8u, MO_UB)
1058 DO_GEN_LD(16s, MO_SW)
1059 DO_GEN_LD(16u, MO_UW)
1060 DO_GEN_LD(32u, MO_UL)
1061 DO_GEN_ST(8, MO_UB)
1062 DO_GEN_ST(16, MO_UW)
1063 DO_GEN_ST(32, MO_UL)
1064
1065 static inline void gen_hvc(DisasContext *s, int imm16)
1066 {
1067 /* The pre HVC helper handles cases when HVC gets trapped
1068 * as an undefined insn by runtime configuration (ie before
1069 * the insn really executes).
1070 */
1071 gen_set_pc_im(s, s->pc_curr);
1072 gen_helper_pre_hvc(cpu_env);
1073 /* Otherwise we will treat this as a real exception which
1074 * happens after execution of the insn. (The distinction matters
1075 * for the PC value reported to the exception handler and also
1076 * for single stepping.)
1077 */
1078 s->svc_imm = imm16;
1079 gen_set_pc_im(s, s->base.pc_next);
1080 s->base.is_jmp = DISAS_HVC;
1081 }
1082
1083 static inline void gen_smc(DisasContext *s)
1084 {
1085 /* As with HVC, we may take an exception either before or after
1086 * the insn executes.
1087 */
1088 TCGv_i32 tmp;
1089
1090 gen_set_pc_im(s, s->pc_curr);
1091 tmp = tcg_const_i32(syn_aa32_smc());
1092 gen_helper_pre_smc(cpu_env, tmp);
1093 tcg_temp_free_i32(tmp);
1094 gen_set_pc_im(s, s->base.pc_next);
1095 s->base.is_jmp = DISAS_SMC;
1096 }
1097
1098 static void gen_exception_internal_insn(DisasContext *s, uint32_t pc, int excp)
1099 {
1100 gen_set_condexec(s);
1101 gen_set_pc_im(s, pc);
1102 gen_exception_internal(excp);
1103 s->base.is_jmp = DISAS_NORETURN;
1104 }
1105
1106 static void gen_exception_insn(DisasContext *s, uint32_t pc, int excp,
1107 int syn, uint32_t target_el)
1108 {
1109 gen_set_condexec(s);
1110 gen_set_pc_im(s, pc);
1111 gen_exception(excp, syn, target_el);
1112 s->base.is_jmp = DISAS_NORETURN;
1113 }
1114
1115 static void gen_exception_bkpt_insn(DisasContext *s, uint32_t syn)
1116 {
1117 TCGv_i32 tcg_syn;
1118
1119 gen_set_condexec(s);
1120 gen_set_pc_im(s, s->pc_curr);
1121 tcg_syn = tcg_const_i32(syn);
1122 gen_helper_exception_bkpt_insn(cpu_env, tcg_syn);
1123 tcg_temp_free_i32(tcg_syn);
1124 s->base.is_jmp = DISAS_NORETURN;
1125 }
1126
1127 static void unallocated_encoding(DisasContext *s)
1128 {
1129 /* Unallocated and reserved encodings are uncategorized */
1130 gen_exception_insn(s, s->pc_curr, EXCP_UDEF, syn_uncategorized(),
1131 default_exception_el(s));
1132 }
1133
1134 /* Force a TB lookup after an instruction that changes the CPU state. */
1135 static inline void gen_lookup_tb(DisasContext *s)
1136 {
1137 tcg_gen_movi_i32(cpu_R[15], s->base.pc_next);
1138 s->base.is_jmp = DISAS_EXIT;
1139 }
1140
1141 static inline void gen_hlt(DisasContext *s, int imm)
1142 {
1143 /* HLT. This has two purposes.
1144 * Architecturally, it is an external halting debug instruction.
1145 * Since QEMU doesn't implement external debug, we treat this as
1146 * it is required for halting debug disabled: it will UNDEF.
1147 * Secondly, "HLT 0x3C" is a T32 semihosting trap instruction,
1148 * and "HLT 0xF000" is an A32 semihosting syscall. These traps
1149 * must trigger semihosting even for ARMv7 and earlier, where
1150 * HLT was an undefined encoding.
1151 * In system mode, we don't allow userspace access to
1152 * semihosting, to provide some semblance of security
1153 * (and for consistency with our 32-bit semihosting).
1154 */
1155 if (semihosting_enabled() &&
1156 #ifndef CONFIG_USER_ONLY
1157 s->current_el != 0 &&
1158 #endif
1159 (imm == (s->thumb ? 0x3c : 0xf000))) {
1160 gen_exception_internal_insn(s, s->base.pc_next, EXCP_SEMIHOST);
1161 return;
1162 }
1163
1164 unallocated_encoding(s);
1165 }
1166
1167 static TCGv_ptr get_fpstatus_ptr(int neon)
1168 {
1169 TCGv_ptr statusptr = tcg_temp_new_ptr();
1170 int offset;
1171 if (neon) {
1172 offset = offsetof(CPUARMState, vfp.standard_fp_status);
1173 } else {
1174 offset = offsetof(CPUARMState, vfp.fp_status);
1175 }
1176 tcg_gen_addi_ptr(statusptr, cpu_env, offset);
1177 return statusptr;
1178 }
1179
1180 static inline long vfp_reg_offset(bool dp, unsigned reg)
1181 {
1182 if (dp) {
1183 return offsetof(CPUARMState, vfp.zregs[reg >> 1].d[reg & 1]);
1184 } else {
1185 long ofs = offsetof(CPUARMState, vfp.zregs[reg >> 2].d[(reg >> 1) & 1]);
1186 if (reg & 1) {
1187 ofs += offsetof(CPU_DoubleU, l.upper);
1188 } else {
1189 ofs += offsetof(CPU_DoubleU, l.lower);
1190 }
1191 return ofs;
1192 }
1193 }
1194
1195 /* Return the offset of a 32-bit piece of a NEON register.
1196 zero is the least significant end of the register. */
1197 static inline long
1198 neon_reg_offset (int reg, int n)
1199 {
1200 int sreg;
1201 sreg = reg * 2 + n;
1202 return vfp_reg_offset(0, sreg);
1203 }
1204
1205 /* Return the offset of a 2**SIZE piece of a NEON register, at index ELE,
1206 * where 0 is the least significant end of the register.
1207 */
1208 static inline long
1209 neon_element_offset(int reg, int element, MemOp size)
1210 {
1211 int element_size = 1 << size;
1212 int ofs = element * element_size;
1213 #ifdef HOST_WORDS_BIGENDIAN
1214 /* Calculate the offset assuming fully little-endian,
1215 * then XOR to account for the order of the 8-byte units.
1216 */
1217 if (element_size < 8) {
1218 ofs ^= 8 - element_size;
1219 }
1220 #endif
1221 return neon_reg_offset(reg, 0) + ofs;
1222 }
1223
1224 static TCGv_i32 neon_load_reg(int reg, int pass)
1225 {
1226 TCGv_i32 tmp = tcg_temp_new_i32();
1227 tcg_gen_ld_i32(tmp, cpu_env, neon_reg_offset(reg, pass));
1228 return tmp;
1229 }
1230
1231 static void neon_load_element(TCGv_i32 var, int reg, int ele, MemOp mop)
1232 {
1233 long offset = neon_element_offset(reg, ele, mop & MO_SIZE);
1234
1235 switch (mop) {
1236 case MO_UB:
1237 tcg_gen_ld8u_i32(var, cpu_env, offset);
1238 break;
1239 case MO_UW:
1240 tcg_gen_ld16u_i32(var, cpu_env, offset);
1241 break;
1242 case MO_UL:
1243 tcg_gen_ld_i32(var, cpu_env, offset);
1244 break;
1245 default:
1246 g_assert_not_reached();
1247 }
1248 }
1249
1250 static void neon_load_element64(TCGv_i64 var, int reg, int ele, MemOp mop)
1251 {
1252 long offset = neon_element_offset(reg, ele, mop & MO_SIZE);
1253
1254 switch (mop) {
1255 case MO_UB:
1256 tcg_gen_ld8u_i64(var, cpu_env, offset);
1257 break;
1258 case MO_UW:
1259 tcg_gen_ld16u_i64(var, cpu_env, offset);
1260 break;
1261 case MO_UL:
1262 tcg_gen_ld32u_i64(var, cpu_env, offset);
1263 break;
1264 case MO_Q:
1265 tcg_gen_ld_i64(var, cpu_env, offset);
1266 break;
1267 default:
1268 g_assert_not_reached();
1269 }
1270 }
1271
1272 static void neon_store_reg(int reg, int pass, TCGv_i32 var)
1273 {
1274 tcg_gen_st_i32(var, cpu_env, neon_reg_offset(reg, pass));
1275 tcg_temp_free_i32(var);
1276 }
1277
1278 static void neon_store_element(int reg, int ele, MemOp size, TCGv_i32 var)
1279 {
1280 long offset = neon_element_offset(reg, ele, size);
1281
1282 switch (size) {
1283 case MO_8:
1284 tcg_gen_st8_i32(var, cpu_env, offset);
1285 break;
1286 case MO_16:
1287 tcg_gen_st16_i32(var, cpu_env, offset);
1288 break;
1289 case MO_32:
1290 tcg_gen_st_i32(var, cpu_env, offset);
1291 break;
1292 default:
1293 g_assert_not_reached();
1294 }
1295 }
1296
1297 static void neon_store_element64(int reg, int ele, MemOp size, TCGv_i64 var)
1298 {
1299 long offset = neon_element_offset(reg, ele, size);
1300
1301 switch (size) {
1302 case MO_8:
1303 tcg_gen_st8_i64(var, cpu_env, offset);
1304 break;
1305 case MO_16:
1306 tcg_gen_st16_i64(var, cpu_env, offset);
1307 break;
1308 case MO_32:
1309 tcg_gen_st32_i64(var, cpu_env, offset);
1310 break;
1311 case MO_64:
1312 tcg_gen_st_i64(var, cpu_env, offset);
1313 break;
1314 default:
1315 g_assert_not_reached();
1316 }
1317 }
1318
1319 static inline void neon_load_reg64(TCGv_i64 var, int reg)
1320 {
1321 tcg_gen_ld_i64(var, cpu_env, vfp_reg_offset(1, reg));
1322 }
1323
1324 static inline void neon_store_reg64(TCGv_i64 var, int reg)
1325 {
1326 tcg_gen_st_i64(var, cpu_env, vfp_reg_offset(1, reg));
1327 }
1328
1329 static inline void neon_load_reg32(TCGv_i32 var, int reg)
1330 {
1331 tcg_gen_ld_i32(var, cpu_env, vfp_reg_offset(false, reg));
1332 }
1333
1334 static inline void neon_store_reg32(TCGv_i32 var, int reg)
1335 {
1336 tcg_gen_st_i32(var, cpu_env, vfp_reg_offset(false, reg));
1337 }
1338
1339 static TCGv_ptr vfp_reg_ptr(bool dp, int reg)
1340 {
1341 TCGv_ptr ret = tcg_temp_new_ptr();
1342 tcg_gen_addi_ptr(ret, cpu_env, vfp_reg_offset(dp, reg));
1343 return ret;
1344 }
1345
1346 #define ARM_CP_RW_BIT (1 << 20)
1347
1348 /* Include the VFP decoder */
1349 #include "translate-vfp.inc.c"
1350
1351 static inline void iwmmxt_load_reg(TCGv_i64 var, int reg)
1352 {
1353 tcg_gen_ld_i64(var, cpu_env, offsetof(CPUARMState, iwmmxt.regs[reg]));
1354 }
1355
1356 static inline void iwmmxt_store_reg(TCGv_i64 var, int reg)
1357 {
1358 tcg_gen_st_i64(var, cpu_env, offsetof(CPUARMState, iwmmxt.regs[reg]));
1359 }
1360
1361 static inline TCGv_i32 iwmmxt_load_creg(int reg)
1362 {
1363 TCGv_i32 var = tcg_temp_new_i32();
1364 tcg_gen_ld_i32(var, cpu_env, offsetof(CPUARMState, iwmmxt.cregs[reg]));
1365 return var;
1366 }
1367
1368 static inline void iwmmxt_store_creg(int reg, TCGv_i32 var)
1369 {
1370 tcg_gen_st_i32(var, cpu_env, offsetof(CPUARMState, iwmmxt.cregs[reg]));
1371 tcg_temp_free_i32(var);
1372 }
1373
1374 static inline void gen_op_iwmmxt_movq_wRn_M0(int rn)
1375 {
1376 iwmmxt_store_reg(cpu_M0, rn);
1377 }
1378
1379 static inline void gen_op_iwmmxt_movq_M0_wRn(int rn)
1380 {
1381 iwmmxt_load_reg(cpu_M0, rn);
1382 }
1383
1384 static inline void gen_op_iwmmxt_orq_M0_wRn(int rn)
1385 {
1386 iwmmxt_load_reg(cpu_V1, rn);
1387 tcg_gen_or_i64(cpu_M0, cpu_M0, cpu_V1);
1388 }
1389
1390 static inline void gen_op_iwmmxt_andq_M0_wRn(int rn)
1391 {
1392 iwmmxt_load_reg(cpu_V1, rn);
1393 tcg_gen_and_i64(cpu_M0, cpu_M0, cpu_V1);
1394 }
1395
1396 static inline void gen_op_iwmmxt_xorq_M0_wRn(int rn)
1397 {
1398 iwmmxt_load_reg(cpu_V1, rn);
1399 tcg_gen_xor_i64(cpu_M0, cpu_M0, cpu_V1);
1400 }
1401
1402 #define IWMMXT_OP(name) \
1403 static inline void gen_op_iwmmxt_##name##_M0_wRn(int rn) \
1404 { \
1405 iwmmxt_load_reg(cpu_V1, rn); \
1406 gen_helper_iwmmxt_##name(cpu_M0, cpu_M0, cpu_V1); \
1407 }
1408
1409 #define IWMMXT_OP_ENV(name) \
1410 static inline void gen_op_iwmmxt_##name##_M0_wRn(int rn) \
1411 { \
1412 iwmmxt_load_reg(cpu_V1, rn); \
1413 gen_helper_iwmmxt_##name(cpu_M0, cpu_env, cpu_M0, cpu_V1); \
1414 }
1415
1416 #define IWMMXT_OP_ENV_SIZE(name) \
1417 IWMMXT_OP_ENV(name##b) \
1418 IWMMXT_OP_ENV(name##w) \
1419 IWMMXT_OP_ENV(name##l)
1420
1421 #define IWMMXT_OP_ENV1(name) \
1422 static inline void gen_op_iwmmxt_##name##_M0(void) \
1423 { \
1424 gen_helper_iwmmxt_##name(cpu_M0, cpu_env, cpu_M0); \
1425 }
1426
1427 IWMMXT_OP(maddsq)
1428 IWMMXT_OP(madduq)
1429 IWMMXT_OP(sadb)
1430 IWMMXT_OP(sadw)
1431 IWMMXT_OP(mulslw)
1432 IWMMXT_OP(mulshw)
1433 IWMMXT_OP(mululw)
1434 IWMMXT_OP(muluhw)
1435 IWMMXT_OP(macsw)
1436 IWMMXT_OP(macuw)
1437
1438 IWMMXT_OP_ENV_SIZE(unpackl)
1439 IWMMXT_OP_ENV_SIZE(unpackh)
1440
1441 IWMMXT_OP_ENV1(unpacklub)
1442 IWMMXT_OP_ENV1(unpackluw)
1443 IWMMXT_OP_ENV1(unpacklul)
1444 IWMMXT_OP_ENV1(unpackhub)
1445 IWMMXT_OP_ENV1(unpackhuw)
1446 IWMMXT_OP_ENV1(unpackhul)
1447 IWMMXT_OP_ENV1(unpacklsb)
1448 IWMMXT_OP_ENV1(unpacklsw)
1449 IWMMXT_OP_ENV1(unpacklsl)
1450 IWMMXT_OP_ENV1(unpackhsb)
1451 IWMMXT_OP_ENV1(unpackhsw)
1452 IWMMXT_OP_ENV1(unpackhsl)
1453
1454 IWMMXT_OP_ENV_SIZE(cmpeq)
1455 IWMMXT_OP_ENV_SIZE(cmpgtu)
1456 IWMMXT_OP_ENV_SIZE(cmpgts)
1457
1458 IWMMXT_OP_ENV_SIZE(mins)
1459 IWMMXT_OP_ENV_SIZE(minu)
1460 IWMMXT_OP_ENV_SIZE(maxs)
1461 IWMMXT_OP_ENV_SIZE(maxu)
1462
1463 IWMMXT_OP_ENV_SIZE(subn)
1464 IWMMXT_OP_ENV_SIZE(addn)
1465 IWMMXT_OP_ENV_SIZE(subu)
1466 IWMMXT_OP_ENV_SIZE(addu)
1467 IWMMXT_OP_ENV_SIZE(subs)
1468 IWMMXT_OP_ENV_SIZE(adds)
1469
1470 IWMMXT_OP_ENV(avgb0)
1471 IWMMXT_OP_ENV(avgb1)
1472 IWMMXT_OP_ENV(avgw0)
1473 IWMMXT_OP_ENV(avgw1)
1474
1475 IWMMXT_OP_ENV(packuw)
1476 IWMMXT_OP_ENV(packul)
1477 IWMMXT_OP_ENV(packuq)
1478 IWMMXT_OP_ENV(packsw)
1479 IWMMXT_OP_ENV(packsl)
1480 IWMMXT_OP_ENV(packsq)
1481
1482 static void gen_op_iwmmxt_set_mup(void)
1483 {
1484 TCGv_i32 tmp;
1485 tmp = load_cpu_field(iwmmxt.cregs[ARM_IWMMXT_wCon]);
1486 tcg_gen_ori_i32(tmp, tmp, 2);
1487 store_cpu_field(tmp, iwmmxt.cregs[ARM_IWMMXT_wCon]);
1488 }
1489
1490 static void gen_op_iwmmxt_set_cup(void)
1491 {
1492 TCGv_i32 tmp;
1493 tmp = load_cpu_field(iwmmxt.cregs[ARM_IWMMXT_wCon]);
1494 tcg_gen_ori_i32(tmp, tmp, 1);
1495 store_cpu_field(tmp, iwmmxt.cregs[ARM_IWMMXT_wCon]);
1496 }
1497
1498 static void gen_op_iwmmxt_setpsr_nz(void)
1499 {
1500 TCGv_i32 tmp = tcg_temp_new_i32();
1501 gen_helper_iwmmxt_setpsr_nz(tmp, cpu_M0);
1502 store_cpu_field(tmp, iwmmxt.cregs[ARM_IWMMXT_wCASF]);
1503 }
1504
1505 static inline void gen_op_iwmmxt_addl_M0_wRn(int rn)
1506 {
1507 iwmmxt_load_reg(cpu_V1, rn);
1508 tcg_gen_ext32u_i64(cpu_V1, cpu_V1);
1509 tcg_gen_add_i64(cpu_M0, cpu_M0, cpu_V1);
1510 }
1511
1512 static inline int gen_iwmmxt_address(DisasContext *s, uint32_t insn,
1513 TCGv_i32 dest)
1514 {
1515 int rd;
1516 uint32_t offset;
1517 TCGv_i32 tmp;
1518
1519 rd = (insn >> 16) & 0xf;
1520 tmp = load_reg(s, rd);
1521
1522 offset = (insn & 0xff) << ((insn >> 7) & 2);
1523 if (insn & (1 << 24)) {
1524 /* Pre indexed */
1525 if (insn & (1 << 23))
1526 tcg_gen_addi_i32(tmp, tmp, offset);
1527 else
1528 tcg_gen_addi_i32(tmp, tmp, -offset);
1529 tcg_gen_mov_i32(dest, tmp);
1530 if (insn & (1 << 21))
1531 store_reg(s, rd, tmp);
1532 else
1533 tcg_temp_free_i32(tmp);
1534 } else if (insn & (1 << 21)) {
1535 /* Post indexed */
1536 tcg_gen_mov_i32(dest, tmp);
1537 if (insn & (1 << 23))
1538 tcg_gen_addi_i32(tmp, tmp, offset);
1539 else
1540 tcg_gen_addi_i32(tmp, tmp, -offset);
1541 store_reg(s, rd, tmp);
1542 } else if (!(insn & (1 << 23)))
1543 return 1;
1544 return 0;
1545 }
1546
1547 static inline int gen_iwmmxt_shift(uint32_t insn, uint32_t mask, TCGv_i32 dest)
1548 {
1549 int rd = (insn >> 0) & 0xf;
1550 TCGv_i32 tmp;
1551
1552 if (insn & (1 << 8)) {
1553 if (rd < ARM_IWMMXT_wCGR0 || rd > ARM_IWMMXT_wCGR3) {
1554 return 1;
1555 } else {
1556 tmp = iwmmxt_load_creg(rd);
1557 }
1558 } else {
1559 tmp = tcg_temp_new_i32();
1560 iwmmxt_load_reg(cpu_V0, rd);
1561 tcg_gen_extrl_i64_i32(tmp, cpu_V0);
1562 }
1563 tcg_gen_andi_i32(tmp, tmp, mask);
1564 tcg_gen_mov_i32(dest, tmp);
1565 tcg_temp_free_i32(tmp);
1566 return 0;
1567 }
1568
1569 /* Disassemble an iwMMXt instruction. Returns nonzero if an error occurred
1570 (ie. an undefined instruction). */
1571 static int disas_iwmmxt_insn(DisasContext *s, uint32_t insn)
1572 {
1573 int rd, wrd;
1574 int rdhi, rdlo, rd0, rd1, i;
1575 TCGv_i32 addr;
1576 TCGv_i32 tmp, tmp2, tmp3;
1577
1578 if ((insn & 0x0e000e00) == 0x0c000000) {
1579 if ((insn & 0x0fe00ff0) == 0x0c400000) {
1580 wrd = insn & 0xf;
1581 rdlo = (insn >> 12) & 0xf;
1582 rdhi = (insn >> 16) & 0xf;
1583 if (insn & ARM_CP_RW_BIT) { /* TMRRC */
1584 iwmmxt_load_reg(cpu_V0, wrd);
1585 tcg_gen_extrl_i64_i32(cpu_R[rdlo], cpu_V0);
1586 tcg_gen_extrh_i64_i32(cpu_R[rdhi], cpu_V0);
1587 } else { /* TMCRR */
1588 tcg_gen_concat_i32_i64(cpu_V0, cpu_R[rdlo], cpu_R[rdhi]);
1589 iwmmxt_store_reg(cpu_V0, wrd);
1590 gen_op_iwmmxt_set_mup();
1591 }
1592 return 0;
1593 }
1594
1595 wrd = (insn >> 12) & 0xf;
1596 addr = tcg_temp_new_i32();
1597 if (gen_iwmmxt_address(s, insn, addr)) {
1598 tcg_temp_free_i32(addr);
1599 return 1;
1600 }
1601 if (insn & ARM_CP_RW_BIT) {
1602 if ((insn >> 28) == 0xf) { /* WLDRW wCx */
1603 tmp = tcg_temp_new_i32();
1604 gen_aa32_ld32u(s, tmp, addr, get_mem_index(s));
1605 iwmmxt_store_creg(wrd, tmp);
1606 } else {
1607 i = 1;
1608 if (insn & (1 << 8)) {
1609 if (insn & (1 << 22)) { /* WLDRD */
1610 gen_aa32_ld64(s, cpu_M0, addr, get_mem_index(s));
1611 i = 0;
1612 } else { /* WLDRW wRd */
1613 tmp = tcg_temp_new_i32();
1614 gen_aa32_ld32u(s, tmp, addr, get_mem_index(s));
1615 }
1616 } else {
1617 tmp = tcg_temp_new_i32();
1618 if (insn & (1 << 22)) { /* WLDRH */
1619 gen_aa32_ld16u(s, tmp, addr, get_mem_index(s));
1620 } else { /* WLDRB */
1621 gen_aa32_ld8u(s, tmp, addr, get_mem_index(s));
1622 }
1623 }
1624 if (i) {
1625 tcg_gen_extu_i32_i64(cpu_M0, tmp);
1626 tcg_temp_free_i32(tmp);
1627 }
1628 gen_op_iwmmxt_movq_wRn_M0(wrd);
1629 }
1630 } else {
1631 if ((insn >> 28) == 0xf) { /* WSTRW wCx */
1632 tmp = iwmmxt_load_creg(wrd);
1633 gen_aa32_st32(s, tmp, addr, get_mem_index(s));
1634 } else {
1635 gen_op_iwmmxt_movq_M0_wRn(wrd);
1636 tmp = tcg_temp_new_i32();
1637 if (insn & (1 << 8)) {
1638 if (insn & (1 << 22)) { /* WSTRD */
1639 gen_aa32_st64(s, cpu_M0, addr, get_mem_index(s));
1640 } else { /* WSTRW wRd */
1641 tcg_gen_extrl_i64_i32(tmp, cpu_M0);
1642 gen_aa32_st32(s, tmp, addr, get_mem_index(s));
1643 }
1644 } else {
1645 if (insn & (1 << 22)) { /* WSTRH */
1646 tcg_gen_extrl_i64_i32(tmp, cpu_M0);
1647 gen_aa32_st16(s, tmp, addr, get_mem_index(s));
1648 } else { /* WSTRB */
1649 tcg_gen_extrl_i64_i32(tmp, cpu_M0);
1650 gen_aa32_st8(s, tmp, addr, get_mem_index(s));
1651 }
1652 }
1653 }
1654 tcg_temp_free_i32(tmp);
1655 }
1656 tcg_temp_free_i32(addr);
1657 return 0;
1658 }
1659
1660 if ((insn & 0x0f000000) != 0x0e000000)
1661 return 1;
1662
1663 switch (((insn >> 12) & 0xf00) | ((insn >> 4) & 0xff)) {
1664 case 0x000: /* WOR */
1665 wrd = (insn >> 12) & 0xf;
1666 rd0 = (insn >> 0) & 0xf;
1667 rd1 = (insn >> 16) & 0xf;
1668 gen_op_iwmmxt_movq_M0_wRn(rd0);
1669 gen_op_iwmmxt_orq_M0_wRn(rd1);
1670 gen_op_iwmmxt_setpsr_nz();
1671 gen_op_iwmmxt_movq_wRn_M0(wrd);
1672 gen_op_iwmmxt_set_mup();
1673 gen_op_iwmmxt_set_cup();
1674 break;
1675 case 0x011: /* TMCR */
1676 if (insn & 0xf)
1677 return 1;
1678 rd = (insn >> 12) & 0xf;
1679 wrd = (insn >> 16) & 0xf;
1680 switch (wrd) {
1681 case ARM_IWMMXT_wCID:
1682 case ARM_IWMMXT_wCASF:
1683 break;
1684 case ARM_IWMMXT_wCon:
1685 gen_op_iwmmxt_set_cup();
1686 /* Fall through. */
1687 case ARM_IWMMXT_wCSSF:
1688 tmp = iwmmxt_load_creg(wrd);
1689 tmp2 = load_reg(s, rd);
1690 tcg_gen_andc_i32(tmp, tmp, tmp2);
1691 tcg_temp_free_i32(tmp2);
1692 iwmmxt_store_creg(wrd, tmp);
1693 break;
1694 case ARM_IWMMXT_wCGR0:
1695 case ARM_IWMMXT_wCGR1:
1696 case ARM_IWMMXT_wCGR2:
1697 case ARM_IWMMXT_wCGR3:
1698 gen_op_iwmmxt_set_cup();
1699 tmp = load_reg(s, rd);
1700 iwmmxt_store_creg(wrd, tmp);
1701 break;
1702 default:
1703 return 1;
1704 }
1705 break;
1706 case 0x100: /* WXOR */
1707 wrd = (insn >> 12) & 0xf;
1708 rd0 = (insn >> 0) & 0xf;
1709 rd1 = (insn >> 16) & 0xf;
1710 gen_op_iwmmxt_movq_M0_wRn(rd0);
1711 gen_op_iwmmxt_xorq_M0_wRn(rd1);
1712 gen_op_iwmmxt_setpsr_nz();
1713 gen_op_iwmmxt_movq_wRn_M0(wrd);
1714 gen_op_iwmmxt_set_mup();
1715 gen_op_iwmmxt_set_cup();
1716 break;
1717 case 0x111: /* TMRC */
1718 if (insn & 0xf)
1719 return 1;
1720 rd = (insn >> 12) & 0xf;
1721 wrd = (insn >> 16) & 0xf;
1722 tmp = iwmmxt_load_creg(wrd);
1723 store_reg(s, rd, tmp);
1724 break;
1725 case 0x300: /* WANDN */
1726 wrd = (insn >> 12) & 0xf;
1727 rd0 = (insn >> 0) & 0xf;
1728 rd1 = (insn >> 16) & 0xf;
1729 gen_op_iwmmxt_movq_M0_wRn(rd0);
1730 tcg_gen_neg_i64(cpu_M0, cpu_M0);
1731 gen_op_iwmmxt_andq_M0_wRn(rd1);
1732 gen_op_iwmmxt_setpsr_nz();
1733 gen_op_iwmmxt_movq_wRn_M0(wrd);
1734 gen_op_iwmmxt_set_mup();
1735 gen_op_iwmmxt_set_cup();
1736 break;
1737 case 0x200: /* WAND */
1738 wrd = (insn >> 12) & 0xf;
1739 rd0 = (insn >> 0) & 0xf;
1740 rd1 = (insn >> 16) & 0xf;
1741 gen_op_iwmmxt_movq_M0_wRn(rd0);
1742 gen_op_iwmmxt_andq_M0_wRn(rd1);
1743 gen_op_iwmmxt_setpsr_nz();
1744 gen_op_iwmmxt_movq_wRn_M0(wrd);
1745 gen_op_iwmmxt_set_mup();
1746 gen_op_iwmmxt_set_cup();
1747 break;
1748 case 0x810: case 0xa10: /* WMADD */
1749 wrd = (insn >> 12) & 0xf;
1750 rd0 = (insn >> 0) & 0xf;
1751 rd1 = (insn >> 16) & 0xf;
1752 gen_op_iwmmxt_movq_M0_wRn(rd0);
1753 if (insn & (1 << 21))
1754 gen_op_iwmmxt_maddsq_M0_wRn(rd1);
1755 else
1756 gen_op_iwmmxt_madduq_M0_wRn(rd1);
1757 gen_op_iwmmxt_movq_wRn_M0(wrd);
1758 gen_op_iwmmxt_set_mup();
1759 break;
1760 case 0x10e: case 0x50e: case 0x90e: case 0xd0e: /* WUNPCKIL */
1761 wrd = (insn >> 12) & 0xf;
1762 rd0 = (insn >> 16) & 0xf;
1763 rd1 = (insn >> 0) & 0xf;
1764 gen_op_iwmmxt_movq_M0_wRn(rd0);
1765 switch ((insn >> 22) & 3) {
1766 case 0:
1767 gen_op_iwmmxt_unpacklb_M0_wRn(rd1);
1768 break;
1769 case 1:
1770 gen_op_iwmmxt_unpacklw_M0_wRn(rd1);
1771 break;
1772 case 2:
1773 gen_op_iwmmxt_unpackll_M0_wRn(rd1);
1774 break;
1775 case 3:
1776 return 1;
1777 }
1778 gen_op_iwmmxt_movq_wRn_M0(wrd);
1779 gen_op_iwmmxt_set_mup();
1780 gen_op_iwmmxt_set_cup();
1781 break;
1782 case 0x10c: case 0x50c: case 0x90c: case 0xd0c: /* WUNPCKIH */
1783 wrd = (insn >> 12) & 0xf;
1784 rd0 = (insn >> 16) & 0xf;
1785 rd1 = (insn >> 0) & 0xf;
1786 gen_op_iwmmxt_movq_M0_wRn(rd0);
1787 switch ((insn >> 22) & 3) {
1788 case 0:
1789 gen_op_iwmmxt_unpackhb_M0_wRn(rd1);
1790 break;
1791 case 1:
1792 gen_op_iwmmxt_unpackhw_M0_wRn(rd1);
1793 break;
1794 case 2:
1795 gen_op_iwmmxt_unpackhl_M0_wRn(rd1);
1796 break;
1797 case 3:
1798 return 1;
1799 }
1800 gen_op_iwmmxt_movq_wRn_M0(wrd);
1801 gen_op_iwmmxt_set_mup();
1802 gen_op_iwmmxt_set_cup();
1803 break;
1804 case 0x012: case 0x112: case 0x412: case 0x512: /* WSAD */
1805 wrd = (insn >> 12) & 0xf;
1806 rd0 = (insn >> 16) & 0xf;
1807 rd1 = (insn >> 0) & 0xf;
1808 gen_op_iwmmxt_movq_M0_wRn(rd0);
1809 if (insn & (1 << 22))
1810 gen_op_iwmmxt_sadw_M0_wRn(rd1);
1811 else
1812 gen_op_iwmmxt_sadb_M0_wRn(rd1);
1813 if (!(insn & (1 << 20)))
1814 gen_op_iwmmxt_addl_M0_wRn(wrd);
1815 gen_op_iwmmxt_movq_wRn_M0(wrd);
1816 gen_op_iwmmxt_set_mup();
1817 break;
1818 case 0x010: case 0x110: case 0x210: case 0x310: /* WMUL */
1819 wrd = (insn >> 12) & 0xf;
1820 rd0 = (insn >> 16) & 0xf;
1821 rd1 = (insn >> 0) & 0xf;
1822 gen_op_iwmmxt_movq_M0_wRn(rd0);
1823 if (insn & (1 << 21)) {
1824 if (insn & (1 << 20))
1825 gen_op_iwmmxt_mulshw_M0_wRn(rd1);
1826 else
1827 gen_op_iwmmxt_mulslw_M0_wRn(rd1);
1828 } else {
1829 if (insn & (1 << 20))
1830 gen_op_iwmmxt_muluhw_M0_wRn(rd1);
1831 else
1832 gen_op_iwmmxt_mululw_M0_wRn(rd1);
1833 }
1834 gen_op_iwmmxt_movq_wRn_M0(wrd);
1835 gen_op_iwmmxt_set_mup();
1836 break;
1837 case 0x410: case 0x510: case 0x610: case 0x710: /* WMAC */
1838 wrd = (insn >> 12) & 0xf;
1839 rd0 = (insn >> 16) & 0xf;
1840 rd1 = (insn >> 0) & 0xf;
1841 gen_op_iwmmxt_movq_M0_wRn(rd0);
1842 if (insn & (1 << 21))
1843 gen_op_iwmmxt_macsw_M0_wRn(rd1);
1844 else
1845 gen_op_iwmmxt_macuw_M0_wRn(rd1);
1846 if (!(insn & (1 << 20))) {
1847 iwmmxt_load_reg(cpu_V1, wrd);
1848 tcg_gen_add_i64(cpu_M0, cpu_M0, cpu_V1);
1849 }
1850 gen_op_iwmmxt_movq_wRn_M0(wrd);
1851 gen_op_iwmmxt_set_mup();
1852 break;
1853 case 0x006: case 0x406: case 0x806: case 0xc06: /* WCMPEQ */
1854 wrd = (insn >> 12) & 0xf;
1855 rd0 = (insn >> 16) & 0xf;
1856 rd1 = (insn >> 0) & 0xf;
1857 gen_op_iwmmxt_movq_M0_wRn(rd0);
1858 switch ((insn >> 22) & 3) {
1859 case 0:
1860 gen_op_iwmmxt_cmpeqb_M0_wRn(rd1);
1861 break;
1862 case 1:
1863 gen_op_iwmmxt_cmpeqw_M0_wRn(rd1);
1864 break;
1865 case 2:
1866 gen_op_iwmmxt_cmpeql_M0_wRn(rd1);
1867 break;
1868 case 3:
1869 return 1;
1870 }
1871 gen_op_iwmmxt_movq_wRn_M0(wrd);
1872 gen_op_iwmmxt_set_mup();
1873 gen_op_iwmmxt_set_cup();
1874 break;
1875 case 0x800: case 0x900: case 0xc00: case 0xd00: /* WAVG2 */
1876 wrd = (insn >> 12) & 0xf;
1877 rd0 = (insn >> 16) & 0xf;
1878 rd1 = (insn >> 0) & 0xf;
1879 gen_op_iwmmxt_movq_M0_wRn(rd0);
1880 if (insn & (1 << 22)) {
1881 if (insn & (1 << 20))
1882 gen_op_iwmmxt_avgw1_M0_wRn(rd1);
1883 else
1884 gen_op_iwmmxt_avgw0_M0_wRn(rd1);
1885 } else {
1886 if (insn & (1 << 20))
1887 gen_op_iwmmxt_avgb1_M0_wRn(rd1);
1888 else
1889 gen_op_iwmmxt_avgb0_M0_wRn(rd1);
1890 }
1891 gen_op_iwmmxt_movq_wRn_M0(wrd);
1892 gen_op_iwmmxt_set_mup();
1893 gen_op_iwmmxt_set_cup();
1894 break;
1895 case 0x802: case 0x902: case 0xa02: case 0xb02: /* WALIGNR */
1896 wrd = (insn >> 12) & 0xf;
1897 rd0 = (insn >> 16) & 0xf;
1898 rd1 = (insn >> 0) & 0xf;
1899 gen_op_iwmmxt_movq_M0_wRn(rd0);
1900 tmp = iwmmxt_load_creg(ARM_IWMMXT_wCGR0 + ((insn >> 20) & 3));
1901 tcg_gen_andi_i32(tmp, tmp, 7);
1902 iwmmxt_load_reg(cpu_V1, rd1);
1903 gen_helper_iwmmxt_align(cpu_M0, cpu_M0, cpu_V1, tmp);
1904 tcg_temp_free_i32(tmp);
1905 gen_op_iwmmxt_movq_wRn_M0(wrd);
1906 gen_op_iwmmxt_set_mup();
1907 break;
1908 case 0x601: case 0x605: case 0x609: case 0x60d: /* TINSR */
1909 if (((insn >> 6) & 3) == 3)
1910 return 1;
1911 rd = (insn >> 12) & 0xf;
1912 wrd = (insn >> 16) & 0xf;
1913 tmp = load_reg(s, rd);
1914 gen_op_iwmmxt_movq_M0_wRn(wrd);
1915 switch ((insn >> 6) & 3) {
1916 case 0:
1917 tmp2 = tcg_const_i32(0xff);
1918 tmp3 = tcg_const_i32((insn & 7) << 3);
1919 break;
1920 case 1:
1921 tmp2 = tcg_const_i32(0xffff);
1922 tmp3 = tcg_const_i32((insn & 3) << 4);
1923 break;
1924 case 2:
1925 tmp2 = tcg_const_i32(0xffffffff);
1926 tmp3 = tcg_const_i32((insn & 1) << 5);
1927 break;
1928 default:
1929 tmp2 = NULL;
1930 tmp3 = NULL;
1931 }
1932 gen_helper_iwmmxt_insr(cpu_M0, cpu_M0, tmp, tmp2, tmp3);
1933 tcg_temp_free_i32(tmp3);
1934 tcg_temp_free_i32(tmp2);
1935 tcg_temp_free_i32(tmp);
1936 gen_op_iwmmxt_movq_wRn_M0(wrd);
1937 gen_op_iwmmxt_set_mup();
1938 break;
1939 case 0x107: case 0x507: case 0x907: case 0xd07: /* TEXTRM */
1940 rd = (insn >> 12) & 0xf;
1941 wrd = (insn >> 16) & 0xf;
1942 if (rd == 15 || ((insn >> 22) & 3) == 3)
1943 return 1;
1944 gen_op_iwmmxt_movq_M0_wRn(wrd);
1945 tmp = tcg_temp_new_i32();
1946 switch ((insn >> 22) & 3) {
1947 case 0:
1948 tcg_gen_shri_i64(cpu_M0, cpu_M0, (insn & 7) << 3);
1949 tcg_gen_extrl_i64_i32(tmp, cpu_M0);
1950 if (insn & 8) {
1951 tcg_gen_ext8s_i32(tmp, tmp);
1952 } else {
1953 tcg_gen_andi_i32(tmp, tmp, 0xff);
1954 }
1955 break;
1956 case 1:
1957 tcg_gen_shri_i64(cpu_M0, cpu_M0, (insn & 3) << 4);
1958 tcg_gen_extrl_i64_i32(tmp, cpu_M0);
1959 if (insn & 8) {
1960 tcg_gen_ext16s_i32(tmp, tmp);
1961 } else {
1962 tcg_gen_andi_i32(tmp, tmp, 0xffff);
1963 }
1964 break;
1965 case 2:
1966 tcg_gen_shri_i64(cpu_M0, cpu_M0, (insn & 1) << 5);
1967 tcg_gen_extrl_i64_i32(tmp, cpu_M0);
1968 break;
1969 }
1970 store_reg(s, rd, tmp);
1971 break;
1972 case 0x117: case 0x517: case 0x917: case 0xd17: /* TEXTRC */
1973 if ((insn & 0x000ff008) != 0x0003f000 || ((insn >> 22) & 3) == 3)
1974 return 1;
1975 tmp = iwmmxt_load_creg(ARM_IWMMXT_wCASF);
1976 switch ((insn >> 22) & 3) {
1977 case 0:
1978 tcg_gen_shri_i32(tmp, tmp, ((insn & 7) << 2) + 0);
1979 break;
1980 case 1:
1981 tcg_gen_shri_i32(tmp, tmp, ((insn & 3) << 3) + 4);
1982 break;
1983 case 2:
1984 tcg_gen_shri_i32(tmp, tmp, ((insn & 1) << 4) + 12);
1985 break;
1986 }
1987 tcg_gen_shli_i32(tmp, tmp, 28);
1988 gen_set_nzcv(tmp);
1989 tcg_temp_free_i32(tmp);
1990 break;
1991 case 0x401: case 0x405: case 0x409: case 0x40d: /* TBCST */
1992 if (((insn >> 6) & 3) == 3)
1993 return 1;
1994 rd = (insn >> 12) & 0xf;
1995 wrd = (insn >> 16) & 0xf;
1996 tmp = load_reg(s, rd);
1997 switch ((insn >> 6) & 3) {
1998 case 0:
1999 gen_helper_iwmmxt_bcstb(cpu_M0, tmp);
2000 break;
2001 case 1:
2002 gen_helper_iwmmxt_bcstw(cpu_M0, tmp);
2003 break;
2004 case 2:
2005 gen_helper_iwmmxt_bcstl(cpu_M0, tmp);
2006 break;
2007 }
2008 tcg_temp_free_i32(tmp);
2009 gen_op_iwmmxt_movq_wRn_M0(wrd);
2010 gen_op_iwmmxt_set_mup();
2011 break;
2012 case 0x113: case 0x513: case 0x913: case 0xd13: /* TANDC */
2013 if ((insn & 0x000ff00f) != 0x0003f000 || ((insn >> 22) & 3) == 3)
2014 return 1;
2015 tmp = iwmmxt_load_creg(ARM_IWMMXT_wCASF);
2016 tmp2 = tcg_temp_new_i32();
2017 tcg_gen_mov_i32(tmp2, tmp);
2018 switch ((insn >> 22) & 3) {
2019 case 0:
2020 for (i = 0; i < 7; i ++) {
2021 tcg_gen_shli_i32(tmp2, tmp2, 4);
2022 tcg_gen_and_i32(tmp, tmp, tmp2);
2023 }
2024 break;
2025 case 1:
2026 for (i = 0; i < 3; i ++) {
2027 tcg_gen_shli_i32(tmp2, tmp2, 8);
2028 tcg_gen_and_i32(tmp, tmp, tmp2);
2029 }
2030 break;
2031 case 2:
2032 tcg_gen_shli_i32(tmp2, tmp2, 16);
2033 tcg_gen_and_i32(tmp, tmp, tmp2);
2034 break;
2035 }
2036 gen_set_nzcv(tmp);
2037 tcg_temp_free_i32(tmp2);
2038 tcg_temp_free_i32(tmp);
2039 break;
2040 case 0x01c: case 0x41c: case 0x81c: case 0xc1c: /* WACC */
2041 wrd = (insn >> 12) & 0xf;
2042 rd0 = (insn >> 16) & 0xf;
2043 gen_op_iwmmxt_movq_M0_wRn(rd0);
2044 switch ((insn >> 22) & 3) {
2045 case 0:
2046 gen_helper_iwmmxt_addcb(cpu_M0, cpu_M0);
2047 break;
2048 case 1:
2049 gen_helper_iwmmxt_addcw(cpu_M0, cpu_M0);
2050 break;
2051 case 2:
2052 gen_helper_iwmmxt_addcl(cpu_M0, cpu_M0);
2053 break;
2054 case 3:
2055 return 1;
2056 }
2057 gen_op_iwmmxt_movq_wRn_M0(wrd);
2058 gen_op_iwmmxt_set_mup();
2059 break;
2060 case 0x115: case 0x515: case 0x915: case 0xd15: /* TORC */
2061 if ((insn & 0x000ff00f) != 0x0003f000 || ((insn >> 22) & 3) == 3)
2062 return 1;
2063 tmp = iwmmxt_load_creg(ARM_IWMMXT_wCASF);
2064 tmp2 = tcg_temp_new_i32();
2065 tcg_gen_mov_i32(tmp2, tmp);
2066 switch ((insn >> 22) & 3) {
2067 case 0:
2068 for (i = 0; i < 7; i ++) {
2069 tcg_gen_shli_i32(tmp2, tmp2, 4);
2070 tcg_gen_or_i32(tmp, tmp, tmp2);
2071 }
2072 break;
2073 case 1:
2074 for (i = 0; i < 3; i ++) {
2075 tcg_gen_shli_i32(tmp2, tmp2, 8);
2076 tcg_gen_or_i32(tmp, tmp, tmp2);
2077 }
2078 break;
2079 case 2:
2080 tcg_gen_shli_i32(tmp2, tmp2, 16);
2081 tcg_gen_or_i32(tmp, tmp, tmp2);
2082 break;
2083 }
2084 gen_set_nzcv(tmp);
2085 tcg_temp_free_i32(tmp2);
2086 tcg_temp_free_i32(tmp);
2087 break;
2088 case 0x103: case 0x503: case 0x903: case 0xd03: /* TMOVMSK */
2089 rd = (insn >> 12) & 0xf;
2090 rd0 = (insn >> 16) & 0xf;
2091 if ((insn & 0xf) != 0 || ((insn >> 22) & 3) == 3)
2092 return 1;
2093 gen_op_iwmmxt_movq_M0_wRn(rd0);
2094 tmp = tcg_temp_new_i32();
2095 switch ((insn >> 22) & 3) {
2096 case 0:
2097 gen_helper_iwmmxt_msbb(tmp, cpu_M0);
2098 break;
2099 case 1:
2100 gen_helper_iwmmxt_msbw(tmp, cpu_M0);
2101 break;
2102 case 2:
2103 gen_helper_iwmmxt_msbl(tmp, cpu_M0);
2104 break;
2105 }
2106 store_reg(s, rd, tmp);
2107 break;
2108 case 0x106: case 0x306: case 0x506: case 0x706: /* WCMPGT */
2109 case 0x906: case 0xb06: case 0xd06: case 0xf06:
2110 wrd = (insn >> 12) & 0xf;
2111 rd0 = (insn >> 16) & 0xf;
2112 rd1 = (insn >> 0) & 0xf;
2113 gen_op_iwmmxt_movq_M0_wRn(rd0);
2114 switch ((insn >> 22) & 3) {
2115 case 0:
2116 if (insn & (1 << 21))
2117 gen_op_iwmmxt_cmpgtsb_M0_wRn(rd1);
2118 else
2119 gen_op_iwmmxt_cmpgtub_M0_wRn(rd1);
2120 break;
2121 case 1:
2122 if (insn & (1 << 21))
2123 gen_op_iwmmxt_cmpgtsw_M0_wRn(rd1);
2124 else
2125 gen_op_iwmmxt_cmpgtuw_M0_wRn(rd1);
2126 break;
2127 case 2:
2128 if (insn & (1 << 21))
2129 gen_op_iwmmxt_cmpgtsl_M0_wRn(rd1);
2130 else
2131 gen_op_iwmmxt_cmpgtul_M0_wRn(rd1);
2132 break;
2133 case 3:
2134 return 1;
2135 }
2136 gen_op_iwmmxt_movq_wRn_M0(wrd);
2137 gen_op_iwmmxt_set_mup();
2138 gen_op_iwmmxt_set_cup();
2139 break;
2140 case 0x00e: case 0x20e: case 0x40e: case 0x60e: /* WUNPCKEL */
2141 case 0x80e: case 0xa0e: case 0xc0e: case 0xe0e:
2142 wrd = (insn >> 12) & 0xf;
2143 rd0 = (insn >> 16) & 0xf;
2144 gen_op_iwmmxt_movq_M0_wRn(rd0);
2145 switch ((insn >> 22) & 3) {
2146 case 0:
2147 if (insn & (1 << 21))
2148 gen_op_iwmmxt_unpacklsb_M0();
2149 else
2150 gen_op_iwmmxt_unpacklub_M0();
2151 break;
2152 case 1:
2153 if (insn & (1 << 21))
2154 gen_op_iwmmxt_unpacklsw_M0();
2155 else
2156 gen_op_iwmmxt_unpackluw_M0();
2157 break;
2158 case 2:
2159 if (insn & (1 << 21))
2160 gen_op_iwmmxt_unpacklsl_M0();
2161 else
2162 gen_op_iwmmxt_unpacklul_M0();
2163 break;
2164 case 3:
2165 return 1;
2166 }
2167 gen_op_iwmmxt_movq_wRn_M0(wrd);
2168 gen_op_iwmmxt_set_mup();
2169 gen_op_iwmmxt_set_cup();
2170 break;
2171 case 0x00c: case 0x20c: case 0x40c: case 0x60c: /* WUNPCKEH */
2172 case 0x80c: case 0xa0c: case 0xc0c: case 0xe0c:
2173 wrd = (insn >> 12) & 0xf;
2174 rd0 = (insn >> 16) & 0xf;
2175 gen_op_iwmmxt_movq_M0_wRn(rd0);
2176 switch ((insn >> 22) & 3) {
2177 case 0:
2178 if (insn & (1 << 21))
2179 gen_op_iwmmxt_unpackhsb_M0();
2180 else
2181 gen_op_iwmmxt_unpackhub_M0();
2182 break;
2183 case 1:
2184 if (insn & (1 << 21))
2185 gen_op_iwmmxt_unpackhsw_M0();
2186 else
2187 gen_op_iwmmxt_unpackhuw_M0();
2188 break;
2189 case 2:
2190 if (insn & (1 << 21))
2191 gen_op_iwmmxt_unpackhsl_M0();
2192 else
2193 gen_op_iwmmxt_unpackhul_M0();
2194 break;
2195 case 3:
2196 return 1;
2197 }
2198 gen_op_iwmmxt_movq_wRn_M0(wrd);
2199 gen_op_iwmmxt_set_mup();
2200 gen_op_iwmmxt_set_cup();
2201 break;
2202 case 0x204: case 0x604: case 0xa04: case 0xe04: /* WSRL */
2203 case 0x214: case 0x614: case 0xa14: case 0xe14:
2204 if (((insn >> 22) & 3) == 0)
2205 return 1;
2206 wrd = (insn >> 12) & 0xf;
2207 rd0 = (insn >> 16) & 0xf;
2208 gen_op_iwmmxt_movq_M0_wRn(rd0);
2209 tmp = tcg_temp_new_i32();
2210 if (gen_iwmmxt_shift(insn, 0xff, tmp)) {
2211 tcg_temp_free_i32(tmp);
2212 return 1;
2213 }
2214 switch ((insn >> 22) & 3) {
2215 case 1:
2216 gen_helper_iwmmxt_srlw(cpu_M0, cpu_env, cpu_M0, tmp);
2217 break;
2218 case 2:
2219 gen_helper_iwmmxt_srll(cpu_M0, cpu_env, cpu_M0, tmp);
2220 break;
2221 case 3:
2222 gen_helper_iwmmxt_srlq(cpu_M0, cpu_env, cpu_M0, tmp);
2223 break;
2224 }
2225 tcg_temp_free_i32(tmp);
2226 gen_op_iwmmxt_movq_wRn_M0(wrd);
2227 gen_op_iwmmxt_set_mup();
2228 gen_op_iwmmxt_set_cup();
2229 break;
2230 case 0x004: case 0x404: case 0x804: case 0xc04: /* WSRA */
2231 case 0x014: case 0x414: case 0x814: case 0xc14:
2232 if (((insn >> 22) & 3) == 0)
2233 return 1;
2234 wrd = (insn >> 12) & 0xf;
2235 rd0 = (insn >> 16) & 0xf;
2236 gen_op_iwmmxt_movq_M0_wRn(rd0);
2237 tmp = tcg_temp_new_i32();
2238 if (gen_iwmmxt_shift(insn, 0xff, tmp)) {
2239 tcg_temp_free_i32(tmp);
2240 return 1;
2241 }
2242 switch ((insn >> 22) & 3) {
2243 case 1:
2244 gen_helper_iwmmxt_sraw(cpu_M0, cpu_env, cpu_M0, tmp);
2245 break;
2246 case 2:
2247 gen_helper_iwmmxt_sral(cpu_M0, cpu_env, cpu_M0, tmp);
2248 break;
2249 case 3:
2250 gen_helper_iwmmxt_sraq(cpu_M0, cpu_env, cpu_M0, tmp);
2251 break;
2252 }
2253 tcg_temp_free_i32(tmp);
2254 gen_op_iwmmxt_movq_wRn_M0(wrd);
2255 gen_op_iwmmxt_set_mup();
2256 gen_op_iwmmxt_set_cup();
2257 break;
2258 case 0x104: case 0x504: case 0x904: case 0xd04: /* WSLL */
2259 case 0x114: case 0x514: case 0x914: case 0xd14:
2260 if (((insn >> 22) & 3) == 0)
2261 return 1;
2262 wrd = (insn >> 12) & 0xf;
2263 rd0 = (insn >> 16) & 0xf;
2264 gen_op_iwmmxt_movq_M0_wRn(rd0);
2265 tmp = tcg_temp_new_i32();
2266 if (gen_iwmmxt_shift(insn, 0xff, tmp)) {
2267 tcg_temp_free_i32(tmp);
2268 return 1;
2269 }
2270 switch ((insn >> 22) & 3) {
2271 case 1:
2272 gen_helper_iwmmxt_sllw(cpu_M0, cpu_env, cpu_M0, tmp);
2273 break;
2274 case 2:
2275 gen_helper_iwmmxt_slll(cpu_M0, cpu_env, cpu_M0, tmp);
2276 break;
2277 case 3:
2278 gen_helper_iwmmxt_sllq(cpu_M0, cpu_env, cpu_M0, tmp);
2279 break;
2280 }
2281 tcg_temp_free_i32(tmp);
2282 gen_op_iwmmxt_movq_wRn_M0(wrd);
2283 gen_op_iwmmxt_set_mup();
2284 gen_op_iwmmxt_set_cup();
2285 break;
2286 case 0x304: case 0x704: case 0xb04: case 0xf04: /* WROR */
2287 case 0x314: case 0x714: case 0xb14: case 0xf14:
2288 if (((insn >> 22) & 3) == 0)
2289 return 1;
2290 wrd = (insn >> 12) & 0xf;
2291 rd0 = (insn >> 16) & 0xf;
2292 gen_op_iwmmxt_movq_M0_wRn(rd0);
2293 tmp = tcg_temp_new_i32();
2294 switch ((insn >> 22) & 3) {
2295 case 1:
2296 if (gen_iwmmxt_shift(insn, 0xf, tmp)) {
2297 tcg_temp_free_i32(tmp);
2298 return 1;
2299 }
2300 gen_helper_iwmmxt_rorw(cpu_M0, cpu_env, cpu_M0, tmp);
2301 break;
2302 case 2:
2303 if (gen_iwmmxt_shift(insn, 0x1f, tmp)) {
2304 tcg_temp_free_i32(tmp);
2305 return 1;
2306 }
2307 gen_helper_iwmmxt_rorl(cpu_M0, cpu_env, cpu_M0, tmp);
2308 break;
2309 case 3:
2310 if (gen_iwmmxt_shift(insn, 0x3f, tmp)) {
2311 tcg_temp_free_i32(tmp);
2312 return 1;
2313 }
2314 gen_helper_iwmmxt_rorq(cpu_M0, cpu_env, cpu_M0, tmp);
2315 break;
2316 }
2317 tcg_temp_free_i32(tmp);
2318 gen_op_iwmmxt_movq_wRn_M0(wrd);
2319 gen_op_iwmmxt_set_mup();
2320 gen_op_iwmmxt_set_cup();
2321 break;
2322 case 0x116: case 0x316: case 0x516: case 0x716: /* WMIN */
2323 case 0x916: case 0xb16: case 0xd16: case 0xf16:
2324 wrd = (insn >> 12) & 0xf;
2325 rd0 = (insn >> 16) & 0xf;
2326 rd1 = (insn >> 0) & 0xf;
2327 gen_op_iwmmxt_movq_M0_wRn(rd0);
2328 switch ((insn >> 22) & 3) {
2329 case 0:
2330 if (insn & (1 << 21))
2331 gen_op_iwmmxt_minsb_M0_wRn(rd1);
2332 else
2333 gen_op_iwmmxt_minub_M0_wRn(rd1);
2334 break;
2335 case 1:
2336 if (insn & (1 << 21))
2337 gen_op_iwmmxt_minsw_M0_wRn(rd1);
2338 else
2339 gen_op_iwmmxt_minuw_M0_wRn(rd1);
2340 break;
2341 case 2:
2342 if (insn & (1 << 21))
2343 gen_op_iwmmxt_minsl_M0_wRn(rd1);
2344 else
2345 gen_op_iwmmxt_minul_M0_wRn(rd1);
2346 break;
2347 case 3:
2348 return 1;
2349 }
2350 gen_op_iwmmxt_movq_wRn_M0(wrd);
2351 gen_op_iwmmxt_set_mup();
2352 break;
2353 case 0x016: case 0x216: case 0x416: case 0x616: /* WMAX */
2354 case 0x816: case 0xa16: case 0xc16: case 0xe16:
2355 wrd = (insn >> 12) & 0xf;
2356 rd0 = (insn >> 16) & 0xf;
2357 rd1 = (insn >> 0) & 0xf;
2358 gen_op_iwmmxt_movq_M0_wRn(rd0);
2359 switch ((insn >> 22) & 3) {
2360 case 0:
2361 if (insn & (1 << 21))
2362 gen_op_iwmmxt_maxsb_M0_wRn(rd1);
2363 else
2364 gen_op_iwmmxt_maxub_M0_wRn(rd1);
2365 break;
2366 case 1:
2367 if (insn & (1 << 21))
2368 gen_op_iwmmxt_maxsw_M0_wRn(rd1);
2369 else
2370 gen_op_iwmmxt_maxuw_M0_wRn(rd1);
2371 break;
2372 case 2:
2373 if (insn & (1 << 21))
2374 gen_op_iwmmxt_maxsl_M0_wRn(rd1);
2375 else
2376 gen_op_iwmmxt_maxul_M0_wRn(rd1);
2377 break;
2378 case 3:
2379 return 1;
2380 }
2381 gen_op_iwmmxt_movq_wRn_M0(wrd);
2382 gen_op_iwmmxt_set_mup();
2383 break;
2384 case 0x002: case 0x102: case 0x202: case 0x302: /* WALIGNI */
2385 case 0x402: case 0x502: case 0x602: case 0x702:
2386 wrd = (insn >> 12) & 0xf;
2387 rd0 = (insn >> 16) & 0xf;
2388 rd1 = (insn >> 0) & 0xf;
2389 gen_op_iwmmxt_movq_M0_wRn(rd0);
2390 tmp = tcg_const_i32((insn >> 20) & 3);
2391 iwmmxt_load_reg(cpu_V1, rd1);
2392 gen_helper_iwmmxt_align(cpu_M0, cpu_M0, cpu_V1, tmp);
2393 tcg_temp_free_i32(tmp);
2394 gen_op_iwmmxt_movq_wRn_M0(wrd);
2395 gen_op_iwmmxt_set_mup();
2396 break;
2397 case 0x01a: case 0x11a: case 0x21a: case 0x31a: /* WSUB */
2398 case 0x41a: case 0x51a: case 0x61a: case 0x71a:
2399 case 0x81a: case 0x91a: case 0xa1a: case 0xb1a:
2400 case 0xc1a: case 0xd1a: case 0xe1a: case 0xf1a:
2401 wrd = (insn >> 12) & 0xf;
2402 rd0 = (insn >> 16) & 0xf;
2403 rd1 = (insn >> 0) & 0xf;
2404 gen_op_iwmmxt_movq_M0_wRn(rd0);
2405 switch ((insn >> 20) & 0xf) {
2406 case 0x0:
2407 gen_op_iwmmxt_subnb_M0_wRn(rd1);
2408 break;
2409 case 0x1:
2410 gen_op_iwmmxt_subub_M0_wRn(rd1);
2411 break;
2412 case 0x3:
2413 gen_op_iwmmxt_subsb_M0_wRn(rd1);
2414 break;
2415 case 0x4:
2416 gen_op_iwmmxt_subnw_M0_wRn(rd1);
2417 break;
2418 case 0x5:
2419 gen_op_iwmmxt_subuw_M0_wRn(rd1);
2420 break;
2421 case 0x7:
2422 gen_op_iwmmxt_subsw_M0_wRn(rd1);
2423 break;
2424 case 0x8:
2425 gen_op_iwmmxt_subnl_M0_wRn(rd1);
2426 break;
2427 case 0x9:
2428 gen_op_iwmmxt_subul_M0_wRn(rd1);
2429 break;
2430 case 0xb:
2431 gen_op_iwmmxt_subsl_M0_wRn(rd1);
2432 break;
2433 default:
2434 return 1;
2435 }
2436 gen_op_iwmmxt_movq_wRn_M0(wrd);
2437 gen_op_iwmmxt_set_mup();
2438 gen_op_iwmmxt_set_cup();
2439 break;
2440 case 0x01e: case 0x11e: case 0x21e: case 0x31e: /* WSHUFH */
2441 case 0x41e: case 0x51e: case 0x61e: case 0x71e:
2442 case 0x81e: case 0x91e: case 0xa1e: case 0xb1e:
2443 case 0xc1e: case 0xd1e: case 0xe1e: case 0xf1e:
2444 wrd = (insn >> 12) & 0xf;
2445 rd0 = (insn >> 16) & 0xf;
2446 gen_op_iwmmxt_movq_M0_wRn(rd0);
2447 tmp = tcg_const_i32(((insn >> 16) & 0xf0) | (insn & 0x0f));
2448 gen_helper_iwmmxt_shufh(cpu_M0, cpu_env, cpu_M0, tmp);
2449 tcg_temp_free_i32(tmp);
2450 gen_op_iwmmxt_movq_wRn_M0(wrd);
2451 gen_op_iwmmxt_set_mup();
2452 gen_op_iwmmxt_set_cup();
2453 break;
2454 case 0x018: case 0x118: case 0x218: case 0x318: /* WADD */
2455 case 0x418: case 0x518: case 0x618: case 0x718:
2456 case 0x818: case 0x918: case 0xa18: case 0xb18:
2457 case 0xc18: case 0xd18: case 0xe18: case 0xf18:
2458 wrd = (insn >> 12) & 0xf;
2459 rd0 = (insn >> 16) & 0xf;
2460 rd1 = (insn >> 0) & 0xf;
2461 gen_op_iwmmxt_movq_M0_wRn(rd0);
2462 switch ((insn >> 20) & 0xf) {
2463 case 0x0:
2464 gen_op_iwmmxt_addnb_M0_wRn(rd1);
2465 break;
2466 case 0x1:
2467 gen_op_iwmmxt_addub_M0_wRn(rd1);
2468 break;
2469 case 0x3:
2470 gen_op_iwmmxt_addsb_M0_wRn(rd1);
2471 break;
2472 case 0x4:
2473 gen_op_iwmmxt_addnw_M0_wRn(rd1);
2474 break;
2475 case 0x5:
2476 gen_op_iwmmxt_adduw_M0_wRn(rd1);
2477 break;
2478 case 0x7:
2479 gen_op_iwmmxt_addsw_M0_wRn(rd1);
2480 break;
2481 case 0x8:
2482 gen_op_iwmmxt_addnl_M0_wRn(rd1);
2483 break;
2484 case 0x9:
2485 gen_op_iwmmxt_addul_M0_wRn(rd1);
2486 break;
2487 case 0xb:
2488 gen_op_iwmmxt_addsl_M0_wRn(rd1);
2489 break;
2490 default:
2491 return 1;
2492 }
2493 gen_op_iwmmxt_movq_wRn_M0(wrd);
2494 gen_op_iwmmxt_set_mup();
2495 gen_op_iwmmxt_set_cup();
2496 break;
2497 case 0x008: case 0x108: case 0x208: case 0x308: /* WPACK */
2498 case 0x408: case 0x508: case 0x608: case 0x708:
2499 case 0x808: case 0x908: case 0xa08: case 0xb08:
2500 case 0xc08: case 0xd08: case 0xe08: case 0xf08:
2501 if (!(insn & (1 << 20)) || ((insn >> 22) & 3) == 0)
2502 return 1;
2503 wrd = (insn >> 12) & 0xf;
2504 rd0 = (insn >> 16) & 0xf;
2505 rd1 = (insn >> 0) & 0xf;
2506 gen_op_iwmmxt_movq_M0_wRn(rd0);
2507 switch ((insn >> 22) & 3) {
2508 case 1:
2509 if (insn & (1 << 21))
2510 gen_op_iwmmxt_packsw_M0_wRn(rd1);
2511 else
2512 gen_op_iwmmxt_packuw_M0_wRn(rd1);
2513 break;
2514 case 2:
2515 if (insn & (1 << 21))
2516 gen_op_iwmmxt_packsl_M0_wRn(rd1);
2517 else
2518 gen_op_iwmmxt_packul_M0_wRn(rd1);
2519 break;
2520 case 3:
2521 if (insn & (1 << 21))
2522 gen_op_iwmmxt_packsq_M0_wRn(rd1);
2523 else
2524 gen_op_iwmmxt_packuq_M0_wRn(rd1);
2525 break;
2526 }
2527 gen_op_iwmmxt_movq_wRn_M0(wrd);
2528 gen_op_iwmmxt_set_mup();
2529 gen_op_iwmmxt_set_cup();
2530 break;
2531 case 0x201: case 0x203: case 0x205: case 0x207:
2532 case 0x209: case 0x20b: case 0x20d: case 0x20f:
2533 case 0x211: case 0x213: case 0x215: case 0x217:
2534 case 0x219: case 0x21b: case 0x21d: case 0x21f:
2535 wrd = (insn >> 5) & 0xf;
2536 rd0 = (insn >> 12) & 0xf;
2537 rd1 = (insn >> 0) & 0xf;
2538 if (rd0 == 0xf || rd1 == 0xf)
2539 return 1;
2540 gen_op_iwmmxt_movq_M0_wRn(wrd);
2541 tmp = load_reg(s, rd0);
2542 tmp2 = load_reg(s, rd1);
2543 switch ((insn >> 16) & 0xf) {
2544 case 0x0: /* TMIA */
2545 gen_helper_iwmmxt_muladdsl(cpu_M0, cpu_M0, tmp, tmp2);
2546 break;
2547 case 0x8: /* TMIAPH */
2548 gen_helper_iwmmxt_muladdsw(cpu_M0, cpu_M0, tmp, tmp2);
2549 break;
2550 case 0xc: case 0xd: case 0xe: case 0xf: /* TMIAxy */
2551 if (insn & (1 << 16))
2552 tcg_gen_shri_i32(tmp, tmp, 16);
2553 if (insn & (1 << 17))
2554 tcg_gen_shri_i32(tmp2, tmp2, 16);
2555 gen_helper_iwmmxt_muladdswl(cpu_M0, cpu_M0, tmp, tmp2);
2556 break;
2557 default:
2558 tcg_temp_free_i32(tmp2);
2559 tcg_temp_free_i32(tmp);
2560 return 1;
2561 }
2562 tcg_temp_free_i32(tmp2);
2563 tcg_temp_free_i32(tmp);
2564 gen_op_iwmmxt_movq_wRn_M0(wrd);
2565 gen_op_iwmmxt_set_mup();
2566 break;
2567 default:
2568 return 1;
2569 }
2570
2571 return 0;
2572 }
2573
2574 /* Disassemble an XScale DSP instruction. Returns nonzero if an error occurred
2575 (ie. an undefined instruction). */
2576 static int disas_dsp_insn(DisasContext *s, uint32_t insn)
2577 {
2578 int acc, rd0, rd1, rdhi, rdlo;
2579 TCGv_i32 tmp, tmp2;
2580
2581 if ((insn & 0x0ff00f10) == 0x0e200010) {
2582 /* Multiply with Internal Accumulate Format */
2583 rd0 = (insn >> 12) & 0xf;
2584 rd1 = insn & 0xf;
2585 acc = (insn >> 5) & 7;
2586
2587 if (acc != 0)
2588 return 1;
2589
2590 tmp = load_reg(s, rd0);
2591 tmp2 = load_reg(s, rd1);
2592 switch ((insn >> 16) & 0xf) {
2593 case 0x0: /* MIA */
2594 gen_helper_iwmmxt_muladdsl(cpu_M0, cpu_M0, tmp, tmp2);
2595 break;
2596 case 0x8: /* MIAPH */
2597 gen_helper_iwmmxt_muladdsw(cpu_M0, cpu_M0, tmp, tmp2);
2598 break;
2599 case 0xc: /* MIABB */
2600 case 0xd: /* MIABT */
2601 case 0xe: /* MIATB */
2602 case 0xf: /* MIATT */
2603 if (insn & (1 << 16))
2604 tcg_gen_shri_i32(tmp, tmp, 16);
2605 if (insn & (1 << 17))
2606 tcg_gen_shri_i32(tmp2, tmp2, 16);
2607 gen_helper_iwmmxt_muladdswl(cpu_M0, cpu_M0, tmp, tmp2);
2608 break;
2609 default:
2610 return 1;
2611 }
2612 tcg_temp_free_i32(tmp2);
2613 tcg_temp_free_i32(tmp);
2614
2615 gen_op_iwmmxt_movq_wRn_M0(acc);
2616 return 0;
2617 }
2618
2619 if ((insn & 0x0fe00ff8) == 0x0c400000) {
2620 /* Internal Accumulator Access Format */
2621 rdhi = (insn >> 16) & 0xf;
2622 rdlo = (insn >> 12) & 0xf;
2623 acc = insn & 7;
2624
2625 if (acc != 0)
2626 return 1;
2627
2628 if (insn & ARM_CP_RW_BIT) { /* MRA */
2629 iwmmxt_load_reg(cpu_V0, acc);
2630 tcg_gen_extrl_i64_i32(cpu_R[rdlo], cpu_V0);
2631 tcg_gen_extrh_i64_i32(cpu_R[rdhi], cpu_V0);
2632 tcg_gen_andi_i32(cpu_R[rdhi], cpu_R[rdhi], (1 << (40 - 32)) - 1);
2633 } else { /* MAR */
2634 tcg_gen_concat_i32_i64(cpu_V0, cpu_R[rdlo], cpu_R[rdhi]);
2635 iwmmxt_store_reg(cpu_V0, acc);
2636 }
2637 return 0;
2638 }
2639
2640 return 1;
2641 }
2642
2643 #define VFP_REG_SHR(x, n) (((n) > 0) ? (x) >> (n) : (x) << -(n))
2644 #define VFP_SREG(insn, bigbit, smallbit) \
2645 ((VFP_REG_SHR(insn, bigbit - 1) & 0x1e) | (((insn) >> (smallbit)) & 1))
2646 #define VFP_DREG(reg, insn, bigbit, smallbit) do { \
2647 if (arm_dc_feature(s, ARM_FEATURE_VFP3)) { \
2648 reg = (((insn) >> (bigbit)) & 0x0f) \
2649 | (((insn) >> ((smallbit) - 4)) & 0x10); \
2650 } else { \
2651 if (insn & (1 << (smallbit))) \
2652 return 1; \
2653 reg = ((insn) >> (bigbit)) & 0x0f; \
2654 }} while (0)
2655
2656 #define VFP_SREG_D(insn) VFP_SREG(insn, 12, 22)
2657 #define VFP_DREG_D(reg, insn) VFP_DREG(reg, insn, 12, 22)
2658 #define VFP_SREG_N(insn) VFP_SREG(insn, 16, 7)
2659 #define VFP_DREG_N(reg, insn) VFP_DREG(reg, insn, 16, 7)
2660 #define VFP_SREG_M(insn) VFP_SREG(insn, 0, 5)
2661 #define VFP_DREG_M(reg, insn) VFP_DREG(reg, insn, 0, 5)
2662
2663 static void gen_neon_dup_low16(TCGv_i32 var)
2664 {
2665 TCGv_i32 tmp = tcg_temp_new_i32();
2666 tcg_gen_ext16u_i32(var, var);
2667 tcg_gen_shli_i32(tmp, var, 16);
2668 tcg_gen_or_i32(var, var, tmp);
2669 tcg_temp_free_i32(tmp);
2670 }
2671
2672 static void gen_neon_dup_high16(TCGv_i32 var)
2673 {
2674 TCGv_i32 tmp = tcg_temp_new_i32();
2675 tcg_gen_andi_i32(var, var, 0xffff0000);
2676 tcg_gen_shri_i32(tmp, var, 16);
2677 tcg_gen_or_i32(var, var, tmp);
2678 tcg_temp_free_i32(tmp);
2679 }
2680
2681 /*
2682 * Disassemble a VFP instruction. Returns nonzero if an error occurred
2683 * (ie. an undefined instruction).
2684 */
2685 static int disas_vfp_insn(DisasContext *s, uint32_t insn)
2686 {
2687 if (!arm_dc_feature(s, ARM_FEATURE_VFP)) {
2688 return 1;
2689 }
2690
2691 /*
2692 * If the decodetree decoder handles this insn it will always
2693 * emit code to either execute the insn or generate an appropriate
2694 * exception; so we don't need to ever return non-zero to tell
2695 * the calling code to emit an UNDEF exception.
2696 */
2697 if (extract32(insn, 28, 4) == 0xf) {
2698 if (disas_vfp_uncond(s, insn)) {
2699 return 0;
2700 }
2701 } else {
2702 if (disas_vfp(s, insn)) {
2703 return 0;
2704 }
2705 }
2706 /* If the decodetree decoder didn't handle this insn, it must be UNDEF */
2707 return 1;
2708 }
2709
2710 static inline bool use_goto_tb(DisasContext *s, target_ulong dest)
2711 {
2712 #ifndef CONFIG_USER_ONLY
2713 return (s->base.tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK) ||
2714 ((s->base.pc_next - 1) & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK);
2715 #else
2716 return true;
2717 #endif
2718 }
2719
2720 static void gen_goto_ptr(void)
2721 {
2722 tcg_gen_lookup_and_goto_ptr();
2723 }
2724
2725 /* This will end the TB but doesn't guarantee we'll return to
2726 * cpu_loop_exec. Any live exit_requests will be processed as we
2727 * enter the next TB.
2728 */
2729 static void gen_goto_tb(DisasContext *s, int n, target_ulong dest)
2730 {
2731 if (use_goto_tb(s, dest)) {
2732 tcg_gen_goto_tb(n);
2733 gen_set_pc_im(s, dest);
2734 tcg_gen_exit_tb(s->base.tb, n);
2735 } else {
2736 gen_set_pc_im(s, dest);
2737 gen_goto_ptr();
2738 }
2739 s->base.is_jmp = DISAS_NORETURN;
2740 }
2741
2742 static inline void gen_jmp (DisasContext *s, uint32_t dest)
2743 {
2744 if (unlikely(is_singlestepping(s))) {
2745 /* An indirect jump so that we still trigger the debug exception. */
2746 if (s->thumb)
2747 dest |= 1;
2748 gen_bx_im(s, dest);
2749 } else {
2750 gen_goto_tb(s, 0, dest);
2751 }
2752 }
2753
2754 static inline void gen_mulxy(TCGv_i32 t0, TCGv_i32 t1, int x, int y)
2755 {
2756 if (x)
2757 tcg_gen_sari_i32(t0, t0, 16);
2758 else
2759 gen_sxth(t0);
2760 if (y)
2761 tcg_gen_sari_i32(t1, t1, 16);
2762 else
2763 gen_sxth(t1);
2764 tcg_gen_mul_i32(t0, t0, t1);
2765 }
2766
2767 /* Return the mask of PSR bits set by a MSR instruction. */
2768 static uint32_t msr_mask(DisasContext *s, int flags, int spsr)
2769 {
2770 uint32_t mask;
2771
2772 mask = 0;
2773 if (flags & (1 << 0))
2774 mask |= 0xff;
2775 if (flags & (1 << 1))
2776 mask |= 0xff00;
2777 if (flags & (1 << 2))
2778 mask |= 0xff0000;
2779 if (flags & (1 << 3))
2780 mask |= 0xff000000;
2781
2782 /* Mask out undefined bits. */
2783 mask &= ~CPSR_RESERVED;
2784 if (!arm_dc_feature(s, ARM_FEATURE_V4T)) {
2785 mask &= ~CPSR_T;
2786 }
2787 if (!arm_dc_feature(s, ARM_FEATURE_V5)) {
2788 mask &= ~CPSR_Q; /* V5TE in reality*/
2789 }
2790 if (!arm_dc_feature(s, ARM_FEATURE_V6)) {
2791 mask &= ~(CPSR_E | CPSR_GE);
2792 }
2793 if (!arm_dc_feature(s, ARM_FEATURE_THUMB2)) {
2794 mask &= ~CPSR_IT;
2795 }
2796 /* Mask out execution state and reserved bits. */
2797 if (!spsr) {
2798 mask &= ~(CPSR_EXEC | CPSR_RESERVED);
2799 }
2800 /* Mask out privileged bits. */
2801 if (IS_USER(s))
2802 mask &= CPSR_USER;
2803 return mask;
2804 }
2805
2806 /* Returns nonzero if access to the PSR is not permitted. Marks t0 as dead. */
2807 static int gen_set_psr(DisasContext *s, uint32_t mask, int spsr, TCGv_i32 t0)
2808 {
2809 TCGv_i32 tmp;
2810 if (spsr) {
2811 /* ??? This is also undefined in system mode. */
2812 if (IS_USER(s))
2813 return 1;
2814
2815 tmp = load_cpu_field(spsr);
2816 tcg_gen_andi_i32(tmp, tmp, ~mask);
2817 tcg_gen_andi_i32(t0, t0, mask);
2818 tcg_gen_or_i32(tmp, tmp, t0);
2819 store_cpu_field(tmp, spsr);
2820 } else {
2821 gen_set_cpsr(t0, mask);
2822 }
2823 tcg_temp_free_i32(t0);
2824 gen_lookup_tb(s);
2825 return 0;
2826 }
2827
2828 /* Returns nonzero if access to the PSR is not permitted. */
2829 static int gen_set_psr_im(DisasContext *s, uint32_t mask, int spsr, uint32_t val)
2830 {
2831 TCGv_i32 tmp;
2832 tmp = tcg_temp_new_i32();
2833 tcg_gen_movi_i32(tmp, val);
2834 return gen_set_psr(s, mask, spsr, tmp);
2835 }
2836
2837 static bool msr_banked_access_decode(DisasContext *s, int r, int sysm, int rn,
2838 int *tgtmode, int *regno)
2839 {
2840 /* Decode the r and sysm fields of MSR/MRS banked accesses into
2841 * the target mode and register number, and identify the various
2842 * unpredictable cases.
2843 * MSR (banked) and MRS (banked) are CONSTRAINED UNPREDICTABLE if:
2844 * + executed in user mode
2845 * + using R15 as the src/dest register
2846 * + accessing an unimplemented register
2847 * + accessing a register that's inaccessible at current PL/security state*
2848 * + accessing a register that you could access with a different insn
2849 * We choose to UNDEF in all these cases.
2850 * Since we don't know which of the various AArch32 modes we are in
2851 * we have to defer some checks to runtime.
2852 * Accesses to Monitor mode registers from Secure EL1 (which implies
2853 * that EL3 is AArch64) must trap to EL3.
2854 *
2855 * If the access checks fail this function will emit code to take
2856 * an exception and return false. Otherwise it will return true,
2857 * and set *tgtmode and *regno appropriately.
2858 */
2859 int exc_target = default_exception_el(s);
2860
2861 /* These instructions are present only in ARMv8, or in ARMv7 with the
2862 * Virtualization Extensions.
2863 */
2864 if (!arm_dc_feature(s, ARM_FEATURE_V8) &&
2865 !arm_dc_feature(s, ARM_FEATURE_EL2)) {
2866 goto undef;
2867 }
2868
2869 if (IS_USER(s) || rn == 15) {
2870 goto undef;
2871 }
2872
2873 /* The table in the v8 ARM ARM section F5.2.3 describes the encoding
2874 * of registers into (r, sysm).
2875 */
2876 if (r) {
2877 /* SPSRs for other modes */
2878 switch (sysm) {
2879 case 0xe: /* SPSR_fiq */
2880 *tgtmode = ARM_CPU_MODE_FIQ;
2881 break;
2882 case 0x10: /* SPSR_irq */
2883 *tgtmode = ARM_CPU_MODE_IRQ;
2884 break;
2885 case 0x12: /* SPSR_svc */
2886 *tgtmode = ARM_CPU_MODE_SVC;
2887 break;
2888 case 0x14: /* SPSR_abt */
2889 *tgtmode = ARM_CPU_MODE_ABT;
2890 break;
2891 case 0x16: /* SPSR_und */
2892 *tgtmode = ARM_CPU_MODE_UND;
2893 break;
2894 case 0x1c: /* SPSR_mon */
2895 *tgtmode = ARM_CPU_MODE_MON;
2896 break;
2897 case 0x1e: /* SPSR_hyp */
2898 *tgtmode = ARM_CPU_MODE_HYP;
2899 break;
2900 default: /* unallocated */
2901 goto undef;
2902 }
2903 /* We arbitrarily assign SPSR a register number of 16. */
2904 *regno = 16;
2905 } else {
2906 /* general purpose registers for other modes */
2907 switch (sysm) {
2908 case 0x0 ... 0x6: /* 0b00xxx : r8_usr ... r14_usr */
2909 *tgtmode = ARM_CPU_MODE_USR;
2910 *regno = sysm + 8;
2911 break;
2912 case 0x8 ... 0xe: /* 0b01xxx : r8_fiq ... r14_fiq */
2913 *tgtmode = ARM_CPU_MODE_FIQ;
2914 *regno = sysm;
2915 break;
2916 case 0x10 ... 0x11: /* 0b1000x : r14_irq, r13_irq */
2917 *tgtmode = ARM_CPU_MODE_IRQ;
2918 *regno = sysm & 1 ? 13 : 14;
2919 break;
2920 case 0x12 ... 0x13: /* 0b1001x : r14_svc, r13_svc */
2921 *tgtmode = ARM_CPU_MODE_SVC;
2922 *regno = sysm & 1 ? 13 : 14;
2923 break;
2924 case 0x14 ... 0x15: /* 0b1010x : r14_abt, r13_abt */
2925 *tgtmode = ARM_CPU_MODE_ABT;
2926 *regno = sysm & 1 ? 13 : 14;
2927 break;
2928 case 0x16 ... 0x17: /* 0b1011x : r14_und, r13_und */
2929 *tgtmode = ARM_CPU_MODE_UND;
2930 *regno = sysm & 1 ? 13 : 14;
2931 break;
2932 case 0x1c ... 0x1d: /* 0b1110x : r14_mon, r13_mon */
2933 *tgtmode = ARM_CPU_MODE_MON;
2934 *regno = sysm & 1 ? 13 : 14;
2935 break;
2936 case 0x1e ... 0x1f: /* 0b1111x : elr_hyp, r13_hyp */
2937 *tgtmode = ARM_CPU_MODE_HYP;
2938 /* Arbitrarily pick 17 for ELR_Hyp (which is not a banked LR!) */
2939 *regno = sysm & 1 ? 13 : 17;
2940 break;
2941 default: /* unallocated */
2942 goto undef;
2943 }
2944 }
2945
2946 /* Catch the 'accessing inaccessible register' cases we can detect
2947 * at translate time.
2948 */
2949 switch (*tgtmode) {
2950 case ARM_CPU_MODE_MON:
2951 if (!arm_dc_feature(s, ARM_FEATURE_EL3) || s->ns) {
2952 goto undef;
2953 }
2954 if (s->current_el == 1) {
2955 /* If we're in Secure EL1 (which implies that EL3 is AArch64)
2956 * then accesses to Mon registers trap to EL3
2957 */
2958 exc_target = 3;
2959 goto undef;
2960 }
2961 break;
2962 case ARM_CPU_MODE_HYP:
2963 /*
2964 * SPSR_hyp and r13_hyp can only be accessed from Monitor mode
2965 * (and so we can forbid accesses from EL2 or below). elr_hyp
2966 * can be accessed also from Hyp mode, so forbid accesses from
2967 * EL0 or EL1.
2968 */
2969 if (!arm_dc_feature(s, ARM_FEATURE_EL2) || s->current_el < 2 ||
2970 (s->current_el < 3 && *regno != 17)) {
2971 goto undef;
2972 }
2973 break;
2974 default:
2975 break;
2976 }
2977
2978 return true;
2979
2980 undef:
2981 /* If we get here then some access check did not pass */
2982 gen_exception_insn(s, s->pc_curr, EXCP_UDEF,
2983 syn_uncategorized(), exc_target);
2984 return false;
2985 }
2986
2987 static void gen_msr_banked(DisasContext *s, int r, int sysm, int rn)
2988 {
2989 TCGv_i32 tcg_reg, tcg_tgtmode, tcg_regno;
2990 int tgtmode = 0, regno = 0;
2991
2992 if (!msr_banked_access_decode(s, r, sysm, rn, &tgtmode, &regno)) {
2993 return;
2994 }
2995
2996 /* Sync state because msr_banked() can raise exceptions */
2997 gen_set_condexec(s);
2998 gen_set_pc_im(s, s->pc_curr);
2999 tcg_reg = load_reg(s, rn);
3000 tcg_tgtmode = tcg_const_i32(tgtmode);
3001 tcg_regno = tcg_const_i32(regno);
3002 gen_helper_msr_banked(cpu_env, tcg_reg, tcg_tgtmode, tcg_regno);
3003 tcg_temp_free_i32(tcg_tgtmode);
3004 tcg_temp_free_i32(tcg_regno);
3005 tcg_temp_free_i32(tcg_reg);
3006 s->base.is_jmp = DISAS_UPDATE;
3007 }
3008
3009 static void gen_mrs_banked(DisasContext *s, int r, int sysm, int rn)
3010 {
3011 TCGv_i32 tcg_reg, tcg_tgtmode, tcg_regno;
3012 int tgtmode = 0, regno = 0;
3013
3014 if (!msr_banked_access_decode(s, r, sysm, rn, &tgtmode, &regno)) {
3015 return;
3016 }
3017
3018 /* Sync state because mrs_banked() can raise exceptions */
3019 gen_set_condexec(s);
3020 gen_set_pc_im(s, s->pc_curr);
3021 tcg_reg = tcg_temp_new_i32();
3022 tcg_tgtmode = tcg_const_i32(tgtmode);
3023 tcg_regno = tcg_const_i32(regno);
3024 gen_helper_mrs_banked(tcg_reg, cpu_env, tcg_tgtmode, tcg_regno);
3025 tcg_temp_free_i32(tcg_tgtmode);
3026 tcg_temp_free_i32(tcg_regno);
3027 store_reg(s, rn, tcg_reg);
3028 s->base.is_jmp = DISAS_UPDATE;
3029 }
3030
3031 /* Store value to PC as for an exception return (ie don't
3032 * mask bits). The subsequent call to gen_helper_cpsr_write_eret()
3033 * will do the masking based on the new value of the Thumb bit.
3034 */
3035 static void store_pc_exc_ret(DisasContext *s, TCGv_i32 pc)
3036 {
3037 tcg_gen_mov_i32(cpu_R[15], pc);
3038 tcg_temp_free_i32(pc);
3039 }
3040
3041 /* Generate a v6 exception return. Marks both values as dead. */
3042 static void gen_rfe(DisasContext *s, TCGv_i32 pc, TCGv_i32 cpsr)
3043 {
3044 store_pc_exc_ret(s, pc);
3045 /* The cpsr_write_eret helper will mask the low bits of PC
3046 * appropriately depending on the new Thumb bit, so it must
3047 * be called after storing the new PC.
3048 */
3049 if (tb_cflags(s->base.tb) & CF_USE_ICOUNT) {
3050 gen_io_start();
3051 }
3052 gen_helper_cpsr_write_eret(cpu_env, cpsr);
3053 tcg_temp_free_i32(cpsr);
3054 /* Must exit loop to check un-masked IRQs */
3055 s->base.is_jmp = DISAS_EXIT;
3056 }
3057
3058 /* Generate an old-style exception return. Marks pc as dead. */
3059 static void gen_exception_return(DisasContext *s, TCGv_i32 pc)
3060 {
3061 gen_rfe(s, pc, load_cpu_field(spsr));
3062 }
3063
3064 /*
3065 * For WFI we will halt the vCPU until an IRQ. For WFE and YIELD we
3066 * only call the helper when running single threaded TCG code to ensure
3067 * the next round-robin scheduled vCPU gets a crack. In MTTCG mode we
3068 * just skip this instruction. Currently the SEV/SEVL instructions
3069 * which are *one* of many ways to wake the CPU from WFE are not
3070 * implemented so we can't sleep like WFI does.
3071 */
3072 static void gen_nop_hint(DisasContext *s, int val)
3073 {
3074 switch (val) {
3075 /* When running in MTTCG we don't generate jumps to the yield and
3076 * WFE helpers as it won't affect the scheduling of other vCPUs.
3077 * If we wanted to more completely model WFE/SEV so we don't busy
3078 * spin unnecessarily we would need to do something more involved.
3079 */
3080 case 1: /* yield */
3081 if (!(tb_cflags(s->base.tb) & CF_PARALLEL)) {
3082 gen_set_pc_im(s, s->base.pc_next);
3083 s->base.is_jmp = DISAS_YIELD;
3084 }
3085 break;
3086 case 3: /* wfi */
3087 gen_set_pc_im(s, s->base.pc_next);
3088 s->base.is_jmp = DISAS_WFI;
3089 break;
3090 case 2: /* wfe */
3091 if (!(tb_cflags(s->base.tb) & CF_PARALLEL)) {
3092 gen_set_pc_im(s, s->base.pc_next);
3093 s->base.is_jmp = DISAS_WFE;
3094 }
3095 break;
3096 case 4: /* sev */
3097 case 5: /* sevl */
3098 /* TODO: Implement SEV, SEVL and WFE. May help SMP performance. */
3099 default: /* nop */
3100 break;
3101 }
3102 }
3103
3104 #define CPU_V001 cpu_V0, cpu_V0, cpu_V1
3105
3106 static inline void gen_neon_add(int size, TCGv_i32 t0, TCGv_i32 t1)
3107 {
3108 switch (size) {
3109 case 0: gen_helper_neon_add_u8(t0, t0, t1); break;
3110 case 1: gen_helper_neon_add_u16(t0, t0, t1); break;
3111 case 2: tcg_gen_add_i32(t0, t0, t1); break;
3112 default: abort();
3113 }
3114 }
3115
3116 static inline void gen_neon_rsb(int size, TCGv_i32 t0, TCGv_i32 t1)
3117 {
3118 switch (size) {
3119 case 0: gen_helper_neon_sub_u8(t0, t1, t0); break;
3120 case 1: gen_helper_neon_sub_u16(t0, t1, t0); break;
3121 case 2: tcg_gen_sub_i32(t0, t1, t0); break;
3122 default: return;
3123 }
3124 }
3125
3126 /* 32-bit pairwise ops end up the same as the elementwise versions. */
3127 #define gen_helper_neon_pmax_s32 tcg_gen_smax_i32
3128 #define gen_helper_neon_pmax_u32 tcg_gen_umax_i32
3129 #define gen_helper_neon_pmin_s32 tcg_gen_smin_i32
3130 #define gen_helper_neon_pmin_u32 tcg_gen_umin_i32
3131
3132 #define GEN_NEON_INTEGER_OP_ENV(name) do { \
3133 switch ((size << 1) | u) { \
3134 case 0: \
3135 gen_helper_neon_##name##_s8(tmp, cpu_env, tmp, tmp2); \
3136 break; \
3137 case 1: \
3138 gen_helper_neon_##name##_u8(tmp, cpu_env, tmp, tmp2); \
3139 break; \
3140 case 2: \
3141 gen_helper_neon_##name##_s16(tmp, cpu_env, tmp, tmp2); \
3142 break; \
3143 case 3: \
3144 gen_helper_neon_##name##_u16(tmp, cpu_env, tmp, tmp2); \
3145 break; \
3146 case 4: \
3147 gen_helper_neon_##name##_s32(tmp, cpu_env, tmp, tmp2); \
3148 break; \
3149 case 5: \
3150 gen_helper_neon_##name##_u32(tmp, cpu_env, tmp, tmp2); \
3151 break; \
3152 default: return 1; \
3153 }} while (0)
3154
3155 #define GEN_NEON_INTEGER_OP(name) do { \
3156 switch ((size << 1) | u) { \
3157 case 0: \
3158 gen_helper_neon_##name##_s8(tmp, tmp, tmp2); \
3159 break; \
3160 case 1: \
3161 gen_helper_neon_##name##_u8(tmp, tmp, tmp2); \
3162 break; \
3163 case 2: \
3164 gen_helper_neon_##name##_s16(tmp, tmp, tmp2); \
3165 break; \
3166 case 3: \
3167 gen_helper_neon_##name##_u16(tmp, tmp, tmp2); \
3168 break; \
3169 case 4: \
3170 gen_helper_neon_##name##_s32(tmp, tmp, tmp2); \
3171 break; \
3172 case 5: \
3173 gen_helper_neon_##name##_u32(tmp, tmp, tmp2); \
3174 break; \
3175 default: return 1; \
3176 }} while (0)
3177
3178 static TCGv_i32 neon_load_scratch(int scratch)
3179 {
3180 TCGv_i32 tmp = tcg_temp_new_i32();
3181 tcg_gen_ld_i32(tmp, cpu_env, offsetof(CPUARMState, vfp.scratch[scratch]));
3182 return tmp;
3183 }
3184
3185 static void neon_store_scratch(int scratch, TCGv_i32 var)
3186 {
3187 tcg_gen_st_i32(var, cpu_env, offsetof(CPUARMState, vfp.scratch[scratch]));
3188 tcg_temp_free_i32(var);
3189 }
3190
3191 static inline TCGv_i32 neon_get_scalar(int size, int reg)
3192 {
3193 TCGv_i32 tmp;
3194 if (size == 1) {
3195 tmp = neon_load_reg(reg & 7, reg >> 4);
3196 if (reg & 8) {
3197 gen_neon_dup_high16(tmp);
3198 } else {
3199 gen_neon_dup_low16(tmp);
3200 }
3201 } else {
3202 tmp = neon_load_reg(reg & 15, reg >> 4);
3203 }
3204 return tmp;
3205 }
3206
3207 static int gen_neon_unzip(int rd, int rm, int size, int q)
3208 {
3209 TCGv_ptr pd, pm;
3210
3211 if (!q && size == 2) {
3212 return 1;
3213 }
3214 pd = vfp_reg_ptr(true, rd);
3215 pm = vfp_reg_ptr(true, rm);
3216 if (q) {
3217 switch (size) {
3218 case 0:
3219 gen_helper_neon_qunzip8(pd, pm);
3220 break;
3221 case 1:
3222 gen_helper_neon_qunzip16(pd, pm);
3223 break;
3224 case 2:
3225 gen_helper_neon_qunzip32(pd, pm);
3226 break;
3227 default:
3228 abort();
3229 }
3230 } else {
3231 switch (size) {
3232 case 0:
3233 gen_helper_neon_unzip8(pd, pm);
3234 break;
3235 case 1:
3236 gen_helper_neon_unzip16(pd, pm);
3237 break;
3238 default:
3239 abort();
3240 }
3241 }
3242 tcg_temp_free_ptr(pd);
3243 tcg_temp_free_ptr(pm);
3244 return 0;
3245 }
3246
3247 static int gen_neon_zip(int rd, int rm, int size, int q)
3248 {
3249 TCGv_ptr pd, pm;
3250
3251 if (!q && size == 2) {
3252 return 1;
3253 }
3254 pd = vfp_reg_ptr(true, rd);
3255 pm = vfp_reg_ptr(true, rm);
3256 if (q) {
3257 switch (size) {
3258 case 0:
3259 gen_helper_neon_qzip8(pd, pm);
3260 break;
3261 case 1:
3262 gen_helper_neon_qzip16(pd, pm);
3263 break;
3264 case 2:
3265 gen_helper_neon_qzip32(pd, pm);
3266 break;
3267 default:
3268 abort();
3269 }
3270 } else {
3271 switch (size) {
3272 case 0:
3273 gen_helper_neon_zip8(pd, pm);
3274 break;
3275 case 1:
3276 gen_helper_neon_zip16(pd, pm);
3277 break;
3278 default:
3279 abort();
3280 }
3281 }
3282 tcg_temp_free_ptr(pd);
3283 tcg_temp_free_ptr(pm);
3284 return 0;
3285 }
3286
3287 static void gen_neon_trn_u8(TCGv_i32 t0, TCGv_i32 t1)
3288 {
3289 TCGv_i32 rd, tmp;
3290
3291 rd = tcg_temp_new_i32();
3292 tmp = tcg_temp_new_i32();
3293
3294 tcg_gen_shli_i32(rd, t0, 8);
3295 tcg_gen_andi_i32(rd, rd, 0xff00ff00);
3296 tcg_gen_andi_i32(tmp, t1, 0x00ff00ff);
3297 tcg_gen_or_i32(rd, rd, tmp);
3298
3299 tcg_gen_shri_i32(t1, t1, 8);
3300 tcg_gen_andi_i32(t1, t1, 0x00ff00ff);
3301 tcg_gen_andi_i32(tmp, t0, 0xff00ff00);
3302 tcg_gen_or_i32(t1, t1, tmp);
3303 tcg_gen_mov_i32(t0, rd);
3304
3305 tcg_temp_free_i32(tmp);
3306 tcg_temp_free_i32(rd);
3307 }
3308
3309 static void gen_neon_trn_u16(TCGv_i32 t0, TCGv_i32 t1)
3310 {
3311 TCGv_i32 rd, tmp;
3312
3313 rd = tcg_temp_new_i32();
3314 tmp = tcg_temp_new_i32();
3315
3316 tcg_gen_shli_i32(rd, t0, 16);
3317 tcg_gen_andi_i32(tmp, t1, 0xffff);
3318 tcg_gen_or_i32(rd, rd, tmp);
3319 tcg_gen_shri_i32(t1, t1, 16);
3320 tcg_gen_andi_i32(tmp, t0, 0xffff0000);
3321 tcg_gen_or_i32(t1, t1, tmp);
3322 tcg_gen_mov_i32(t0, rd);
3323
3324 tcg_temp_free_i32(tmp);
3325 tcg_temp_free_i32(rd);
3326 }
3327
3328
3329 static struct {
3330 int nregs;
3331 int interleave;
3332 int spacing;
3333 } const neon_ls_element_type[11] = {
3334 {1, 4, 1},
3335 {1, 4, 2},
3336 {4, 1, 1},
3337 {2, 2, 2},
3338 {1, 3, 1},
3339 {1, 3, 2},
3340 {3, 1, 1},
3341 {1, 1, 1},
3342 {1, 2, 1},
3343 {1, 2, 2},
3344 {2, 1, 1}
3345 };
3346
3347 /* Translate a NEON load/store element instruction. Return nonzero if the
3348 instruction is invalid. */
3349 static int disas_neon_ls_insn(DisasContext *s, uint32_t insn)
3350 {
3351 int rd, rn, rm;
3352 int op;
3353 int nregs;
3354 int interleave;
3355 int spacing;
3356 int stride;
3357 int size;
3358 int reg;
3359 int load;
3360 int n;
3361 int vec_size;
3362 int mmu_idx;
3363 MemOp endian;
3364 TCGv_i32 addr;
3365 TCGv_i32 tmp;
3366 TCGv_i32 tmp2;
3367 TCGv_i64 tmp64;
3368
3369 /* FIXME: this access check should not take precedence over UNDEF
3370 * for invalid encodings; we will generate incorrect syndrome information
3371 * for attempts to execute invalid vfp/neon encodings with FP disabled.
3372 */
3373 if (s->fp_excp_el) {
3374 gen_exception_insn(s, s->pc_curr, EXCP_UDEF,
3375 syn_simd_access_trap(1, 0xe, false), s->fp_excp_el);
3376 return 0;
3377 }
3378
3379 if (!s->vfp_enabled)
3380 return 1;
3381 VFP_DREG_D(rd, insn);
3382 rn = (insn >> 16) & 0xf;
3383 rm = insn & 0xf;
3384 load = (insn & (1 << 21)) != 0;
3385 endian = s->be_data;
3386 mmu_idx = get_mem_index(s);
3387 if ((insn & (1 << 23)) == 0) {
3388 /* Load store all elements. */
3389 op = (insn >> 8) & 0xf;
3390 size = (insn >> 6) & 3;
3391 if (op > 10)
3392 return 1;
3393 /* Catch UNDEF cases for bad values of align field */
3394 switch (op & 0xc) {
3395 case 4:
3396 if (((insn >> 5) & 1) == 1) {
3397 return 1;
3398 }
3399 break;
3400 case 8:
3401 if (((insn >> 4) & 3) == 3) {
3402 return 1;
3403 }
3404 break;
3405 default:
3406 break;
3407 }
3408 nregs = neon_ls_element_type[op].nregs;
3409 interleave = neon_ls_element_type[op].interleave;
3410 spacing = neon_ls_element_type[op].spacing;
3411 if (size == 3 && (interleave | spacing) != 1) {
3412 return 1;
3413 }
3414 /* For our purposes, bytes are always little-endian. */
3415 if (size == 0) {
3416 endian = MO_LE;
3417 }
3418 /* Consecutive little-endian elements from a single register
3419 * can be promoted to a larger little-endian operation.
3420 */
3421 if (interleave == 1 && endian == MO_LE) {
3422 size = 3;
3423 }
3424 tmp64 = tcg_temp_new_i64();
3425 addr = tcg_temp_new_i32();
3426 tmp2 = tcg_const_i32(1 << size);
3427 load_reg_var(s, addr, rn);
3428 for (reg = 0; reg < nregs; reg++) {
3429 for (n = 0; n < 8 >> size; n++) {
3430 int xs;
3431 for (xs = 0; xs < interleave; xs++) {
3432 int tt = rd + reg + spacing * xs;
3433
3434 if (load) {
3435 gen_aa32_ld_i64(s, tmp64, addr, mmu_idx, endian | size);
3436 neon_store_element64(tt, n, size, tmp64);
3437 } else {
3438 neon_load_element64(tmp64, tt, n, size);
3439 gen_aa32_st_i64(s, tmp64, addr, mmu_idx, endian | size);
3440 }
3441 tcg_gen_add_i32(addr, addr, tmp2);
3442 }
3443 }
3444 }
3445 tcg_temp_free_i32(addr);
3446 tcg_temp_free_i32(tmp2);
3447 tcg_temp_free_i64(tmp64);
3448 stride = nregs * interleave * 8;
3449 } else {
3450 size = (insn >> 10) & 3;
3451 if (size == 3) {
3452 /* Load single element to all lanes. */
3453 int a = (insn >> 4) & 1;
3454 if (!load) {
3455 return 1;
3456 }
3457 size = (insn >> 6) & 3;
3458 nregs = ((insn >> 8) & 3) + 1;
3459
3460 if (size == 3) {
3461 if (nregs != 4 || a == 0) {
3462 return 1;
3463 }
3464 /* For VLD4 size==3 a == 1 means 32 bits at 16 byte alignment */
3465 size = 2;
3466 }
3467 if (nregs == 1 && a == 1 && size == 0) {
3468 return 1;
3469 }
3470 if (nregs == 3 && a == 1) {
3471 return 1;
3472 }
3473 addr = tcg_temp_new_i32();
3474 load_reg_var(s, addr, rn);
3475
3476 /* VLD1 to all lanes: bit 5 indicates how many Dregs to write.
3477 * VLD2/3/4 to all lanes: bit 5 indicates register stride.
3478 */
3479 stride = (insn & (1 << 5)) ? 2 : 1;
3480 vec_size = nregs == 1 ? stride * 8 : 8;
3481
3482 tmp = tcg_temp_new_i32();
3483 for (reg = 0; reg < nregs; reg++) {
3484 gen_aa32_ld_i32(s, tmp, addr, get_mem_index(s),
3485 s->be_data | size);
3486 if ((rd & 1) && vec_size == 16) {
3487 /* We cannot write 16 bytes at once because the
3488 * destination is unaligned.
3489 */
3490 tcg_gen_gvec_dup_i32(size, neon_reg_offset(rd, 0),
3491 8, 8, tmp);
3492 tcg_gen_gvec_mov(0, neon_reg_offset(rd + 1, 0),
3493 neon_reg_offset(rd, 0), 8, 8);
3494 } else {
3495 tcg_gen_gvec_dup_i32(size, neon_reg_offset(rd, 0),
3496 vec_size, vec_size, tmp);
3497 }
3498 tcg_gen_addi_i32(addr, addr, 1 << size);
3499 rd += stride;
3500 }
3501 tcg_temp_free_i32(tmp);
3502 tcg_temp_free_i32(addr);
3503 stride = (1 << size) * nregs;
3504 } else {
3505 /* Single element. */
3506 int idx = (insn >> 4) & 0xf;
3507 int reg_idx;
3508 switch (size) {
3509 case 0:
3510 reg_idx = (insn >> 5) & 7;
3511 stride = 1;
3512 break;
3513 case 1:
3514 reg_idx = (insn >> 6) & 3;
3515 stride = (insn & (1 << 5)) ? 2 : 1;
3516 break;
3517 case 2:
3518 reg_idx = (insn >> 7) & 1;
3519 stride = (insn & (1 << 6)) ? 2 : 1;
3520 break;
3521 default:
3522 abort();
3523 }
3524 nregs = ((insn >> 8) & 3) + 1;
3525 /* Catch the UNDEF cases. This is unavoidably a bit messy. */
3526 switch (nregs) {
3527 case 1:
3528 if (((idx & (1 << size)) != 0) ||
3529 (size == 2 && ((idx & 3) == 1 || (idx & 3) == 2))) {
3530 return 1;
3531 }
3532 break;
3533 case 3:
3534 if ((idx & 1) != 0) {
3535 return 1;
3536 }
3537 /* fall through */
3538 case 2:
3539 if (size == 2 && (idx & 2) != 0) {
3540 return 1;
3541 }
3542 break;
3543 case 4:
3544 if ((size == 2) && ((idx & 3) == 3)) {
3545 return 1;
3546 }
3547 break;
3548 default:
3549 abort();
3550 }
3551 if ((rd + stride * (nregs - 1)) > 31) {
3552 /* Attempts to write off the end of the register file
3553 * are UNPREDICTABLE; we choose to UNDEF because otherwise
3554 * the neon_load_reg() would write off the end of the array.
3555 */
3556 return 1;
3557 }
3558 tmp = tcg_temp_new_i32();
3559 addr = tcg_temp_new_i32();
3560 load_reg_var(s, addr, rn);
3561 for (reg = 0; reg < nregs; reg++) {
3562 if (load) {
3563 gen_aa32_ld_i32(s, tmp, addr, get_mem_index(s),
3564 s->be_data | size);
3565 neon_store_element(rd, reg_idx, size, tmp);
3566 } else { /* Store */
3567 neon_load_element(tmp, rd, reg_idx, size);
3568 gen_aa32_st_i32(s, tmp, addr, get_mem_index(s),
3569 s->be_data | size);
3570 }
3571 rd += stride;
3572 tcg_gen_addi_i32(addr, addr, 1 << size);
3573 }
3574 tcg_temp_free_i32(addr);
3575 tcg_temp_free_i32(tmp);
3576 stride = nregs * (1 << size);
3577 }
3578 }
3579 if (rm != 15) {
3580 TCGv_i32 base;
3581
3582 base = load_reg(s, rn);
3583 if (rm == 13) {
3584 tcg_gen_addi_i32(base, base, stride);
3585 } else {
3586 TCGv_i32 index;
3587 index = load_reg(s, rm);
3588 tcg_gen_add_i32(base, base, index);
3589 tcg_temp_free_i32(index);
3590 }
3591 store_reg(s, rn, base);
3592 }
3593 return 0;
3594 }
3595
3596 static inline void gen_neon_narrow(int size, TCGv_i32 dest, TCGv_i64 src)
3597 {
3598 switch (size) {
3599 case 0: gen_helper_neon_narrow_u8(dest, src); break;
3600 case 1: gen_helper_neon_narrow_u16(dest, src); break;
3601 case 2: tcg_gen_extrl_i64_i32(dest, src); break;
3602 default: abort();
3603 }
3604 }
3605
3606 static inline void gen_neon_narrow_sats(int size, TCGv_i32 dest, TCGv_i64 src)
3607 {
3608 switch (size) {
3609 case 0: gen_helper_neon_narrow_sat_s8(dest, cpu_env, src); break;
3610 case 1: gen_helper_neon_narrow_sat_s16(dest, cpu_env, src); break;
3611 case 2: gen_helper_neon_narrow_sat_s32(dest, cpu_env, src); break;
3612 default: abort();
3613 }
3614 }
3615
3616 static inline void gen_neon_narrow_satu(int size, TCGv_i32 dest, TCGv_i64 src)
3617 {
3618 switch (size) {
3619 case 0: gen_helper_neon_narrow_sat_u8(dest, cpu_env, src); break;
3620 case 1: gen_helper_neon_narrow_sat_u16(dest, cpu_env, src); break;
3621 case 2: gen_helper_neon_narrow_sat_u32(dest, cpu_env, src); break;
3622 default: abort();
3623 }
3624 }
3625
3626 static inline void gen_neon_unarrow_sats(int size, TCGv_i32 dest, TCGv_i64 src)
3627 {
3628 switch (size) {
3629 case 0: gen_helper_neon_unarrow_sat8(dest, cpu_env, src); break;
3630 case 1: gen_helper_neon_unarrow_sat16(dest, cpu_env, src); break;
3631 case 2: gen_helper_neon_unarrow_sat32(dest, cpu_env, src); break;
3632 default: abort();
3633 }
3634 }
3635
3636 static inline void gen_neon_shift_narrow(int size, TCGv_i32 var, TCGv_i32 shift,
3637 int q, int u)
3638 {
3639 if (q) {
3640 if (u) {
3641 switch (size) {
3642 case 1: gen_helper_neon_rshl_u16(var, var, shift); break;
3643 case 2: gen_helper_neon_rshl_u32(var, var, shift); break;
3644 default: abort();
3645 }
3646 } else {
3647 switch (size) {
3648 case 1: gen_helper_neon_rshl_s16(var, var, shift); break;
3649 case 2: gen_helper_neon_rshl_s32(var, var, shift); break;
3650 default: abort();
3651 }
3652 }
3653 } else {
3654 if (u) {
3655 switch (size) {
3656 case 1: gen_helper_neon_shl_u16(var, var, shift); break;
3657 case 2: gen_helper_neon_shl_u32(var, var, shift); break;
3658 default: abort();
3659 }
3660 } else {
3661 switch (size) {
3662 case 1: gen_helper_neon_shl_s16(var, var, shift); break;
3663 case 2: gen_helper_neon_shl_s32(var, var, shift); break;
3664 default: abort();
3665 }
3666 }
3667 }
3668 }
3669
3670 static inline void gen_neon_widen(TCGv_i64 dest, TCGv_i32 src, int size, int u)
3671 {
3672 if (u) {
3673 switch (size) {
3674 case 0: gen_helper_neon_widen_u8(dest, src); break;
3675 case 1: gen_helper_neon_widen_u16(dest, src); break;
3676 case 2: tcg_gen_extu_i32_i64(dest, src); break;
3677 default: abort();
3678 }
3679 } else {
3680 switch (size) {
3681 case 0: gen_helper_neon_widen_s8(dest, src); break;
3682 case 1: gen_helper_neon_widen_s16(dest, src); break;
3683 case 2: tcg_gen_ext_i32_i64(dest, src); break;
3684 default: abort();
3685 }
3686 }
3687 tcg_temp_free_i32(src);
3688 }
3689
3690 static inline void gen_neon_addl(int size)
3691 {
3692 switch (size) {
3693 case 0: gen_helper_neon_addl_u16(CPU_V001); break;
3694 case 1: gen_helper_neon_addl_u32(CPU_V001); break;
3695 case 2: tcg_gen_add_i64(CPU_V001); break;
3696 default: abort();
3697 }
3698 }
3699
3700 static inline void gen_neon_subl(int size)
3701 {
3702 switch (size) {
3703 case 0: gen_helper_neon_subl_u16(CPU_V001); break;
3704 case 1: gen_helper_neon_subl_u32(CPU_V001); break;
3705 case 2: tcg_gen_sub_i64(CPU_V001); break;
3706 default: abort();
3707 }
3708 }
3709
3710 static inline void gen_neon_negl(TCGv_i64 var, int size)
3711 {
3712 switch (size) {
3713 case 0: gen_helper_neon_negl_u16(var, var); break;
3714 case 1: gen_helper_neon_negl_u32(var, var); break;
3715 case 2:
3716 tcg_gen_neg_i64(var, var);
3717 break;
3718 default: abort();
3719 }
3720 }
3721
3722 static inline void gen_neon_addl_saturate(TCGv_i64 op0, TCGv_i64 op1, int size)
3723 {
3724 switch (size) {
3725 case 1: gen_helper_neon_addl_saturate_s32(op0, cpu_env, op0, op1); break;
3726 case 2: gen_helper_neon_addl_saturate_s64(op0, cpu_env, op0, op1); break;
3727 default: abort();
3728 }
3729 }
3730
3731 static inline void gen_neon_mull(TCGv_i64 dest, TCGv_i32 a, TCGv_i32 b,
3732 int size, int u)
3733 {
3734 TCGv_i64 tmp;
3735
3736 switch ((size << 1) | u) {
3737 case 0: gen_helper_neon_mull_s8(dest, a, b); break;
3738 case 1: gen_helper_neon_mull_u8(dest, a, b); break;
3739 case 2: gen_helper_neon_mull_s16(dest, a, b); break;
3740 case 3: gen_helper_neon_mull_u16(dest, a, b); break;
3741 case 4:
3742 tmp = gen_muls_i64_i32(a, b);
3743 tcg_gen_mov_i64(dest, tmp);
3744 tcg_temp_free_i64(tmp);
3745 break;
3746 case 5:
3747 tmp = gen_mulu_i64_i32(a, b);
3748 tcg_gen_mov_i64(dest, tmp);
3749 tcg_temp_free_i64(tmp);
3750 break;
3751 default: abort();
3752 }
3753
3754 /* gen_helper_neon_mull_[su]{8|16} do not free their parameters.
3755 Don't forget to clean them now. */
3756 if (size < 2) {
3757 tcg_temp_free_i32(a);
3758 tcg_temp_free_i32(b);
3759 }
3760 }
3761
3762 static void gen_neon_narrow_op(int op, int u, int size,
3763 TCGv_i32 dest, TCGv_i64 src)
3764 {
3765 if (op) {
3766 if (u) {
3767 gen_neon_unarrow_sats(size, dest, src);
3768 } else {
3769 gen_neon_narrow(size, dest, src);
3770 }
3771 } else {
3772 if (u) {
3773 gen_neon_narrow_satu(size, dest, src);
3774 } else {
3775 gen_neon_narrow_sats(size, dest, src);
3776 }
3777 }
3778 }
3779
3780 /* Symbolic constants for op fields for Neon 3-register same-length.
3781 * The values correspond to bits [11:8,4]; see the ARM ARM DDI0406B
3782 * table A7-9.
3783 */
3784 #define NEON_3R_VHADD 0
3785 #define NEON_3R_VQADD 1
3786 #define NEON_3R_VRHADD 2
3787 #define NEON_3R_LOGIC 3 /* VAND,VBIC,VORR,VMOV,VORN,VEOR,VBIF,VBIT,VBSL */
3788 #define NEON_3R_VHSUB 4
3789 #define NEON_3R_VQSUB 5
3790 #define NEON_3R_VCGT 6
3791 #define NEON_3R_VCGE 7
3792 #define NEON_3R_VSHL 8
3793 #define NEON_3R_VQSHL 9
3794 #define NEON_3R_VRSHL 10
3795 #define NEON_3R_VQRSHL 11
3796 #define NEON_3R_VMAX 12
3797 #define NEON_3R_VMIN 13
3798 #define NEON_3R_VABD 14
3799 #define NEON_3R_VABA 15
3800 #define NEON_3R_VADD_VSUB 16
3801 #define NEON_3R_VTST_VCEQ 17
3802 #define NEON_3R_VML 18 /* VMLA, VMLS */
3803 #define NEON_3R_VMUL 19
3804 #define NEON_3R_VPMAX 20
3805 #define NEON_3R_VPMIN 21
3806 #define NEON_3R_VQDMULH_VQRDMULH 22
3807 #define NEON_3R_VPADD_VQRDMLAH 23
3808 #define NEON_3R_SHA 24 /* SHA1C,SHA1P,SHA1M,SHA1SU0,SHA256H{2},SHA256SU1 */
3809 #define NEON_3R_VFM_VQRDMLSH 25 /* VFMA, VFMS, VQRDMLSH */
3810 #define NEON_3R_FLOAT_ARITH 26 /* float VADD, VSUB, VPADD, VABD */
3811 #define NEON_3R_FLOAT_MULTIPLY 27 /* float VMLA, VMLS, VMUL */
3812 #define NEON_3R_FLOAT_CMP 28 /* float VCEQ, VCGE, VCGT */
3813 #define NEON_3R_FLOAT_ACMP 29 /* float VACGE, VACGT, VACLE, VACLT */
3814 #define NEON_3R_FLOAT_MINMAX 30 /* float VMIN, VMAX */
3815 #define NEON_3R_FLOAT_MISC 31 /* float VRECPS, VRSQRTS, VMAXNM/MINNM */
3816
3817 static const uint8_t neon_3r_sizes[] = {
3818 [NEON_3R_VHADD] = 0x7,
3819 [NEON_3R_VQADD] = 0xf,
3820 [NEON_3R_VRHADD] = 0x7,
3821 [NEON_3R_LOGIC] = 0xf, /* size field encodes op type */
3822 [NEON_3R_VHSUB] = 0x7,
3823 [NEON_3R_VQSUB] = 0xf,
3824 [NEON_3R_VCGT] = 0x7,
3825 [NEON_3R_VCGE] = 0x7,
3826 [NEON_3R_VSHL] = 0xf,
3827 [NEON_3R_VQSHL] = 0xf,
3828 [NEON_3R_VRSHL] = 0xf,
3829 [NEON_3R_VQRSHL] = 0xf,
3830 [NEON_3R_VMAX] = 0x7,
3831 [NEON_3R_VMIN] = 0x7,
3832 [NEON_3R_VABD] = 0x7,
3833 [NEON_3R_VABA] = 0x7,
3834 [NEON_3R_VADD_VSUB] = 0xf,
3835 [NEON_3R_VTST_VCEQ] = 0x7,
3836 [NEON_3R_VML] = 0x7,
3837 [NEON_3R_VMUL] = 0x7,
3838 [NEON_3R_VPMAX] = 0x7,
3839 [NEON_3R_VPMIN] = 0x7,
3840 [NEON_3R_VQDMULH_VQRDMULH] = 0x6,
3841 [NEON_3R_VPADD_VQRDMLAH] = 0x7,
3842 [NEON_3R_SHA] = 0xf, /* size field encodes op type */
3843 [NEON_3R_VFM_VQRDMLSH] = 0x7, /* For VFM, size bit 1 encodes op */
3844 [NEON_3R_FLOAT_ARITH] = 0x5, /* size bit 1 encodes op */
3845 [NEON_3R_FLOAT_MULTIPLY] = 0x5, /* size bit 1 encodes op */
3846 [NEON_3R_FLOAT_CMP] = 0x5, /* size bit 1 encodes op */
3847 [NEON_3R_FLOAT_ACMP] = 0x5, /* size bit 1 encodes op */
3848 [NEON_3R_FLOAT_MINMAX] = 0x5, /* size bit 1 encodes op */
3849 [NEON_3R_FLOAT_MISC] = 0x5, /* size bit 1 encodes op */
3850 };
3851
3852 /* Symbolic constants for op fields for Neon 2-register miscellaneous.
3853 * The values correspond to bits [17:16,10:7]; see the ARM ARM DDI0406B
3854 * table A7-13.
3855 */
3856 #define NEON_2RM_VREV64 0
3857 #define NEON_2RM_VREV32 1
3858 #define NEON_2RM_VREV16 2
3859 #define NEON_2RM_VPADDL 4
3860 #define NEON_2RM_VPADDL_U 5
3861 #define NEON_2RM_AESE 6 /* Includes AESD */
3862 #define NEON_2RM_AESMC 7 /* Includes AESIMC */
3863 #define NEON_2RM_VCLS 8
3864 #define NEON_2RM_VCLZ 9
3865 #define NEON_2RM_VCNT 10
3866 #define NEON_2RM_VMVN 11
3867 #define NEON_2RM_VPADAL 12
3868 #define NEON_2RM_VPADAL_U 13
3869 #define NEON_2RM_VQABS 14
3870 #define NEON_2RM_VQNEG 15
3871 #define NEON_2RM_VCGT0 16
3872 #define NEON_2RM_VCGE0 17
3873 #define NEON_2RM_VCEQ0 18
3874 #define NEON_2RM_VCLE0 19
3875 #define NEON_2RM_VCLT0 20
3876 #define NEON_2RM_SHA1H 21
3877 #define NEON_2RM_VABS 22
3878 #define NEON_2RM_VNEG 23
3879 #define NEON_2RM_VCGT0_F 24
3880 #define NEON_2RM_VCGE0_F 25
3881 #define NEON_2RM_VCEQ0_F 26
3882 #define NEON_2RM_VCLE0_F 27
3883 #define NEON_2RM_VCLT0_F 28
3884 #define NEON_2RM_VABS_F 30
3885 #define NEON_2RM_VNEG_F 31
3886 #define NEON_2RM_VSWP 32
3887 #define NEON_2RM_VTRN 33
3888 #define NEON_2RM_VUZP 34
3889 #define NEON_2RM_VZIP 35
3890 #define NEON_2RM_VMOVN 36 /* Includes VQMOVN, VQMOVUN */
3891 #define NEON_2RM_VQMOVN 37 /* Includes VQMOVUN */
3892 #define NEON_2RM_VSHLL 38
3893 #define NEON_2RM_SHA1SU1 39 /* Includes SHA256SU0 */
3894 #define NEON_2RM_VRINTN 40
3895 #define NEON_2RM_VRINTX 41
3896 #define NEON_2RM_VRINTA 42
3897 #define NEON_2RM_VRINTZ 43
3898 #define NEON_2RM_VCVT_F16_F32 44
3899 #define NEON_2RM_VRINTM 45
3900 #define NEON_2RM_VCVT_F32_F16 46
3901 #define NEON_2RM_VRINTP 47
3902 #define NEON_2RM_VCVTAU 48
3903 #define NEON_2RM_VCVTAS 49
3904 #define NEON_2RM_VCVTNU 50
3905 #define NEON_2RM_VCVTNS 51
3906 #define NEON_2RM_VCVTPU 52
3907 #define NEON_2RM_VCVTPS 53
3908 #define NEON_2RM_VCVTMU 54
3909 #define NEON_2RM_VCVTMS 55
3910 #define NEON_2RM_VRECPE 56
3911 #define NEON_2RM_VRSQRTE 57
3912 #define NEON_2RM_VRECPE_F 58
3913 #define NEON_2RM_VRSQRTE_F 59
3914 #define NEON_2RM_VCVT_FS 60
3915 #define NEON_2RM_VCVT_FU 61
3916 #define NEON_2RM_VCVT_SF 62
3917 #define NEON_2RM_VCVT_UF 63
3918
3919 static bool neon_2rm_is_v8_op(int op)
3920 {
3921 /* Return true if this neon 2reg-misc op is ARMv8 and up */
3922 switch (op) {
3923 case NEON_2RM_VRINTN:
3924 case NEON_2RM_VRINTA:
3925 case NEON_2RM_VRINTM:
3926 case NEON_2RM_VRINTP:
3927 case NEON_2RM_VRINTZ:
3928 case NEON_2RM_VRINTX:
3929 case NEON_2RM_VCVTAU:
3930 case NEON_2RM_VCVTAS:
3931 case NEON_2RM_VCVTNU:
3932 case NEON_2RM_VCVTNS:
3933 case NEON_2RM_VCVTPU:
3934 case NEON_2RM_VCVTPS:
3935 case NEON_2RM_VCVTMU:
3936 case NEON_2RM_VCVTMS:
3937 return true;
3938 default:
3939 return false;
3940 }
3941 }
3942
3943 /* Each entry in this array has bit n set if the insn allows
3944 * size value n (otherwise it will UNDEF). Since unallocated
3945 * op values will have no bits set they always UNDEF.
3946 */
3947 static const uint8_t neon_2rm_sizes[] = {
3948 [NEON_2RM_VREV64] = 0x7,
3949 [NEON_2RM_VREV32] = 0x3,
3950 [NEON_2RM_VREV16] = 0x1,
3951 [NEON_2RM_VPADDL] = 0x7,
3952 [NEON_2RM_VPADDL_U] = 0x7,
3953 [NEON_2RM_AESE] = 0x1,
3954 [NEON_2RM_AESMC] = 0x1,
3955 [NEON_2RM_VCLS] = 0x7,
3956 [NEON_2RM_VCLZ] = 0x7,
3957 [NEON_2RM_VCNT] = 0x1,
3958 [NEON_2RM_VMVN] = 0x1,
3959 [NEON_2RM_VPADAL] = 0x7,
3960 [NEON_2RM_VPADAL_U] = 0x7,
3961 [NEON_2RM_VQABS] = 0x7,
3962 [NEON_2RM_VQNEG] = 0x7,
3963 [NEON_2RM_VCGT0] = 0x7,
3964 [NEON_2RM_VCGE0] = 0x7,
3965 [NEON_2RM_VCEQ0] = 0x7,
3966 [NEON_2RM_VCLE0] = 0x7,
3967 [NEON_2RM_VCLT0] = 0x7,
3968 [NEON_2RM_SHA1H] = 0x4,
3969 [NEON_2RM_VABS] = 0x7,
3970 [NEON_2RM_VNEG] = 0x7,
3971 [NEON_2RM_VCGT0_F] = 0x4,
3972 [NEON_2RM_VCGE0_F] = 0x4,
3973 [NEON_2RM_VCEQ0_F] = 0x4,
3974 [NEON_2RM_VCLE0_F] = 0x4,
3975 [NEON_2RM_VCLT0_F] = 0x4,
3976 [NEON_2RM_VABS_F] = 0x4,
3977 [NEON_2RM_VNEG_F] = 0x4,
3978 [NEON_2RM_VSWP] = 0x1,
3979 [NEON_2RM_VTRN] = 0x7,
3980 [NEON_2RM_VUZP] = 0x7,
3981 [NEON_2RM_VZIP] = 0x7,
3982 [NEON_2RM_VMOVN] = 0x7,
3983 [NEON_2RM_VQMOVN] = 0x7,
3984 [NEON_2RM_VSHLL] = 0x7,
3985 [NEON_2RM_SHA1SU1] = 0x4,
3986 [NEON_2RM_VRINTN] = 0x4,
3987 [NEON_2RM_VRINTX] = 0x4,
3988 [NEON_2RM_VRINTA] = 0x4,
3989 [NEON_2RM_VRINTZ] = 0x4,
3990 [NEON_2RM_VCVT_F16_F32] = 0x2,
3991 [NEON_2RM_VRINTM] = 0x4,
3992 [NEON_2RM_VCVT_F32_F16] = 0x2,
3993 [NEON_2RM_VRINTP] = 0x4,
3994 [NEON_2RM_VCVTAU] = 0x4,
3995 [NEON_2RM_VCVTAS] = 0x4,
3996 [NEON_2RM_VCVTNU] = 0x4,
3997 [NEON_2RM_VCVTNS] = 0x4,
3998 [NEON_2RM_VCVTPU] = 0x4,
3999 [NEON_2RM_VCVTPS] = 0x4,
4000 [NEON_2RM_VCVTMU] = 0x4,
4001 [NEON_2RM_VCVTMS] = 0x4,
4002 [NEON_2RM_VRECPE] = 0x4,
4003 [NEON_2RM_VRSQRTE] = 0x4,
4004 [NEON_2RM_VRECPE_F] = 0x4,
4005 [NEON_2RM_VRSQRTE_F] = 0x4,
4006 [NEON_2RM_VCVT_FS] = 0x4,
4007 [NEON_2RM_VCVT_FU] = 0x4,
4008 [NEON_2RM_VCVT_SF] = 0x4,
4009 [NEON_2RM_VCVT_UF] = 0x4,
4010 };
4011
4012
4013 /* Expand v8.1 simd helper. */
4014 static int do_v81_helper(DisasContext *s, gen_helper_gvec_3_ptr *fn,
4015 int q, int rd, int rn, int rm)
4016 {
4017 if (dc_isar_feature(aa32_rdm, s)) {
4018 int opr_sz = (1 + q) * 8;
4019 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, rd),
4020 vfp_reg_offset(1, rn),
4021 vfp_reg_offset(1, rm), cpu_env,
4022 opr_sz, opr_sz, 0, fn);
4023 return 0;
4024 }
4025 return 1;
4026 }
4027
4028 static void gen_ssra8_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4029 {
4030 tcg_gen_vec_sar8i_i64(a, a, shift);
4031 tcg_gen_vec_add8_i64(d, d, a);
4032 }
4033
4034 static void gen_ssra16_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4035 {
4036 tcg_gen_vec_sar16i_i64(a, a, shift);
4037 tcg_gen_vec_add16_i64(d, d, a);
4038 }
4039
4040 static void gen_ssra32_i32(TCGv_i32 d, TCGv_i32 a, int32_t shift)
4041 {
4042 tcg_gen_sari_i32(a, a, shift);
4043 tcg_gen_add_i32(d, d, a);
4044 }
4045
4046 static void gen_ssra64_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4047 {
4048 tcg_gen_sari_i64(a, a, shift);
4049 tcg_gen_add_i64(d, d, a);
4050 }
4051
4052 static void gen_ssra_vec(unsigned vece, TCGv_vec d, TCGv_vec a, int64_t sh)
4053 {
4054 tcg_gen_sari_vec(vece, a, a, sh);
4055 tcg_gen_add_vec(vece, d, d, a);
4056 }
4057
4058 static const TCGOpcode vecop_list_ssra[] = {
4059 INDEX_op_sari_vec, INDEX_op_add_vec, 0
4060 };
4061
4062 const GVecGen2i ssra_op[4] = {
4063 { .fni8 = gen_ssra8_i64,
4064 .fniv = gen_ssra_vec,
4065 .load_dest = true,
4066 .opt_opc = vecop_list_ssra,
4067 .vece = MO_8 },
4068 { .fni8 = gen_ssra16_i64,
4069 .fniv = gen_ssra_vec,
4070 .load_dest = true,
4071 .opt_opc = vecop_list_ssra,
4072 .vece = MO_16 },
4073 { .fni4 = gen_ssra32_i32,
4074 .fniv = gen_ssra_vec,
4075 .load_dest = true,
4076 .opt_opc = vecop_list_ssra,
4077 .vece = MO_32 },
4078 { .fni8 = gen_ssra64_i64,
4079 .fniv = gen_ssra_vec,
4080 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
4081 .opt_opc = vecop_list_ssra,
4082 .load_dest = true,
4083 .vece = MO_64 },
4084 };
4085
4086 static void gen_usra8_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4087 {
4088 tcg_gen_vec_shr8i_i64(a, a, shift);
4089 tcg_gen_vec_add8_i64(d, d, a);
4090 }
4091
4092 static void gen_usra16_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4093 {
4094 tcg_gen_vec_shr16i_i64(a, a, shift);
4095 tcg_gen_vec_add16_i64(d, d, a);
4096 }
4097
4098 static void gen_usra32_i32(TCGv_i32 d, TCGv_i32 a, int32_t shift)
4099 {
4100 tcg_gen_shri_i32(a, a, shift);
4101 tcg_gen_add_i32(d, d, a);
4102 }
4103
4104 static void gen_usra64_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4105 {
4106 tcg_gen_shri_i64(a, a, shift);
4107 tcg_gen_add_i64(d, d, a);
4108 }
4109
4110 static void gen_usra_vec(unsigned vece, TCGv_vec d, TCGv_vec a, int64_t sh)
4111 {
4112 tcg_gen_shri_vec(vece, a, a, sh);
4113 tcg_gen_add_vec(vece, d, d, a);
4114 }
4115
4116 static const TCGOpcode vecop_list_usra[] = {
4117 INDEX_op_shri_vec, INDEX_op_add_vec, 0
4118 };
4119
4120 const GVecGen2i usra_op[4] = {
4121 { .fni8 = gen_usra8_i64,
4122 .fniv = gen_usra_vec,
4123 .load_dest = true,
4124 .opt_opc = vecop_list_usra,
4125 .vece = MO_8, },
4126 { .fni8 = gen_usra16_i64,
4127 .fniv = gen_usra_vec,
4128 .load_dest = true,
4129 .opt_opc = vecop_list_usra,
4130 .vece = MO_16, },
4131 { .fni4 = gen_usra32_i32,
4132 .fniv = gen_usra_vec,
4133 .load_dest = true,
4134 .opt_opc = vecop_list_usra,
4135 .vece = MO_32, },
4136 { .fni8 = gen_usra64_i64,
4137 .fniv = gen_usra_vec,
4138 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
4139 .load_dest = true,
4140 .opt_opc = vecop_list_usra,
4141 .vece = MO_64, },
4142 };
4143
4144 static void gen_shr8_ins_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4145 {
4146 uint64_t mask = dup_const(MO_8, 0xff >> shift);
4147 TCGv_i64 t = tcg_temp_new_i64();
4148
4149 tcg_gen_shri_i64(t, a, shift);
4150 tcg_gen_andi_i64(t, t, mask);
4151 tcg_gen_andi_i64(d, d, ~mask);
4152 tcg_gen_or_i64(d, d, t);
4153 tcg_temp_free_i64(t);
4154 }
4155
4156 static void gen_shr16_ins_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4157 {
4158 uint64_t mask = dup_const(MO_16, 0xffff >> shift);
4159 TCGv_i64 t = tcg_temp_new_i64();
4160
4161 tcg_gen_shri_i64(t, a, shift);
4162 tcg_gen_andi_i64(t, t, mask);
4163 tcg_gen_andi_i64(d, d, ~mask);
4164 tcg_gen_or_i64(d, d, t);
4165 tcg_temp_free_i64(t);
4166 }
4167
4168 static void gen_shr32_ins_i32(TCGv_i32 d, TCGv_i32 a, int32_t shift)
4169 {
4170 tcg_gen_shri_i32(a, a, shift);
4171 tcg_gen_deposit_i32(d, d, a, 0, 32 - shift);
4172 }
4173
4174 static void gen_shr64_ins_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4175 {
4176 tcg_gen_shri_i64(a, a, shift);
4177 tcg_gen_deposit_i64(d, d, a, 0, 64 - shift);
4178 }
4179
4180 static void gen_shr_ins_vec(unsigned vece, TCGv_vec d, TCGv_vec a, int64_t sh)
4181 {
4182 if (sh == 0) {
4183 tcg_gen_mov_vec(d, a);
4184 } else {
4185 TCGv_vec t = tcg_temp_new_vec_matching(d);
4186 TCGv_vec m = tcg_temp_new_vec_matching(d);
4187
4188 tcg_gen_dupi_vec(vece, m, MAKE_64BIT_MASK((8 << vece) - sh, sh));
4189 tcg_gen_shri_vec(vece, t, a, sh);
4190 tcg_gen_and_vec(vece, d, d, m);
4191 tcg_gen_or_vec(vece, d, d, t);
4192
4193 tcg_temp_free_vec(t);
4194 tcg_temp_free_vec(m);
4195 }
4196 }
4197
4198 static const TCGOpcode vecop_list_sri[] = { INDEX_op_shri_vec, 0 };
4199
4200 const GVecGen2i sri_op[4] = {
4201 { .fni8 = gen_shr8_ins_i64,
4202 .fniv = gen_shr_ins_vec,
4203 .load_dest = true,
4204 .opt_opc = vecop_list_sri,
4205 .vece = MO_8 },
4206 { .fni8 = gen_shr16_ins_i64,
4207 .fniv = gen_shr_ins_vec,
4208 .load_dest = true,
4209 .opt_opc = vecop_list_sri,
4210 .vece = MO_16 },
4211 { .fni4 = gen_shr32_ins_i32,
4212 .fniv = gen_shr_ins_vec,
4213 .load_dest = true,
4214 .opt_opc = vecop_list_sri,
4215 .vece = MO_32 },
4216 { .fni8 = gen_shr64_ins_i64,
4217 .fniv = gen_shr_ins_vec,
4218 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
4219 .load_dest = true,
4220 .opt_opc = vecop_list_sri,
4221 .vece = MO_64 },
4222 };
4223
4224 static void gen_shl8_ins_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4225 {
4226 uint64_t mask = dup_const(MO_8, 0xff << shift);
4227 TCGv_i64 t = tcg_temp_new_i64();
4228
4229 tcg_gen_shli_i64(t, a, shift);
4230 tcg_gen_andi_i64(t, t, mask);
4231 tcg_gen_andi_i64(d, d, ~mask);
4232 tcg_gen_or_i64(d, d, t);
4233 tcg_temp_free_i64(t);
4234 }
4235
4236 static void gen_shl16_ins_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4237 {
4238 uint64_t mask = dup_const(MO_16, 0xffff << shift);
4239 TCGv_i64 t = tcg_temp_new_i64();
4240
4241 tcg_gen_shli_i64(t, a, shift);
4242 tcg_gen_andi_i64(t, t, mask);
4243 tcg_gen_andi_i64(d, d, ~mask);
4244 tcg_gen_or_i64(d, d, t);
4245 tcg_temp_free_i64(t);
4246 }
4247
4248 static void gen_shl32_ins_i32(TCGv_i32 d, TCGv_i32 a, int32_t shift)
4249 {
4250 tcg_gen_deposit_i32(d, d, a, shift, 32 - shift);
4251 }
4252
4253 static void gen_shl64_ins_i64(TCGv_i64 d, TCGv_i64 a, int64_t shift)
4254 {
4255 tcg_gen_deposit_i64(d, d, a, shift, 64 - shift);
4256 }
4257
4258 static void gen_shl_ins_vec(unsigned vece, TCGv_vec d, TCGv_vec a, int64_t sh)
4259 {
4260 if (sh == 0) {
4261 tcg_gen_mov_vec(d, a);
4262 } else {
4263 TCGv_vec t = tcg_temp_new_vec_matching(d);
4264 TCGv_vec m = tcg_temp_new_vec_matching(d);
4265
4266 tcg_gen_dupi_vec(vece, m, MAKE_64BIT_MASK(0, sh));
4267 tcg_gen_shli_vec(vece, t, a, sh);
4268 tcg_gen_and_vec(vece, d, d, m);
4269 tcg_gen_or_vec(vece, d, d, t);
4270
4271 tcg_temp_free_vec(t);
4272 tcg_temp_free_vec(m);
4273 }
4274 }
4275
4276 static const TCGOpcode vecop_list_sli[] = { INDEX_op_shli_vec, 0 };
4277
4278 const GVecGen2i sli_op[4] = {
4279 { .fni8 = gen_shl8_ins_i64,
4280 .fniv = gen_shl_ins_vec,
4281 .load_dest = true,
4282 .opt_opc = vecop_list_sli,
4283 .vece = MO_8 },
4284 { .fni8 = gen_shl16_ins_i64,
4285 .fniv = gen_shl_ins_vec,
4286 .load_dest = true,
4287 .opt_opc = vecop_list_sli,
4288 .vece = MO_16 },
4289 { .fni4 = gen_shl32_ins_i32,
4290 .fniv = gen_shl_ins_vec,
4291 .load_dest = true,
4292 .opt_opc = vecop_list_sli,
4293 .vece = MO_32 },
4294 { .fni8 = gen_shl64_ins_i64,
4295 .fniv = gen_shl_ins_vec,
4296 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
4297 .load_dest = true,
4298 .opt_opc = vecop_list_sli,
4299 .vece = MO_64 },
4300 };
4301
4302 static void gen_mla8_i32(TCGv_i32 d, TCGv_i32 a, TCGv_i32 b)
4303 {
4304 gen_helper_neon_mul_u8(a, a, b);
4305 gen_helper_neon_add_u8(d, d, a);
4306 }
4307
4308 static void gen_mls8_i32(TCGv_i32 d, TCGv_i32 a, TCGv_i32 b)
4309 {
4310 gen_helper_neon_mul_u8(a, a, b);
4311 gen_helper_neon_sub_u8(d, d, a);
4312 }
4313
4314 static void gen_mla16_i32(TCGv_i32 d, TCGv_i32 a, TCGv_i32 b)
4315 {
4316 gen_helper_neon_mul_u16(a, a, b);
4317 gen_helper_neon_add_u16(d, d, a);
4318 }
4319
4320 static void gen_mls16_i32(TCGv_i32 d, TCGv_i32 a, TCGv_i32 b)
4321 {
4322 gen_helper_neon_mul_u16(a, a, b);
4323 gen_helper_neon_sub_u16(d, d, a);
4324 }
4325
4326 static void gen_mla32_i32(TCGv_i32 d, TCGv_i32 a, TCGv_i32 b)
4327 {
4328 tcg_gen_mul_i32(a, a, b);
4329 tcg_gen_add_i32(d, d, a);
4330 }
4331
4332 static void gen_mls32_i32(TCGv_i32 d, TCGv_i32 a, TCGv_i32 b)
4333 {
4334 tcg_gen_mul_i32(a, a, b);
4335 tcg_gen_sub_i32(d, d, a);
4336 }
4337
4338 static void gen_mla64_i64(TCGv_i64 d, TCGv_i64 a, TCGv_i64 b)
4339 {
4340 tcg_gen_mul_i64(a, a, b);
4341 tcg_gen_add_i64(d, d, a);
4342 }
4343
4344 static void gen_mls64_i64(TCGv_i64 d, TCGv_i64 a, TCGv_i64 b)
4345 {
4346 tcg_gen_mul_i64(a, a, b);
4347 tcg_gen_sub_i64(d, d, a);
4348 }
4349
4350 static void gen_mla_vec(unsigned vece, TCGv_vec d, TCGv_vec a, TCGv_vec b)
4351 {
4352 tcg_gen_mul_vec(vece, a, a, b);
4353 tcg_gen_add_vec(vece, d, d, a);
4354 }
4355
4356 static void gen_mls_vec(unsigned vece, TCGv_vec d, TCGv_vec a, TCGv_vec b)
4357 {
4358 tcg_gen_mul_vec(vece, a, a, b);
4359 tcg_gen_sub_vec(vece, d, d, a);
4360 }
4361
4362 /* Note that while NEON does not support VMLA and VMLS as 64-bit ops,
4363 * these tables are shared with AArch64 which does support them.
4364 */
4365
4366 static const TCGOpcode vecop_list_mla[] = {
4367 INDEX_op_mul_vec, INDEX_op_add_vec, 0
4368 };
4369
4370 static const TCGOpcode vecop_list_mls[] = {
4371 INDEX_op_mul_vec, INDEX_op_sub_vec, 0
4372 };
4373
4374 const GVecGen3 mla_op[4] = {
4375 { .fni4 = gen_mla8_i32,
4376 .fniv = gen_mla_vec,
4377 .load_dest = true,
4378 .opt_opc = vecop_list_mla,
4379 .vece = MO_8 },
4380 { .fni4 = gen_mla16_i32,
4381 .fniv = gen_mla_vec,
4382 .load_dest = true,
4383 .opt_opc = vecop_list_mla,
4384 .vece = MO_16 },
4385 { .fni4 = gen_mla32_i32,
4386 .fniv = gen_mla_vec,
4387 .load_dest = true,
4388 .opt_opc = vecop_list_mla,
4389 .vece = MO_32 },
4390 { .fni8 = gen_mla64_i64,
4391 .fniv = gen_mla_vec,
4392 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
4393 .load_dest = true,
4394 .opt_opc = vecop_list_mla,
4395 .vece = MO_64 },
4396 };
4397
4398 const GVecGen3 mls_op[4] = {
4399 { .fni4 = gen_mls8_i32,
4400 .fniv = gen_mls_vec,
4401 .load_dest = true,
4402 .opt_opc = vecop_list_mls,
4403 .vece = MO_8 },
4404 { .fni4 = gen_mls16_i32,
4405 .fniv = gen_mls_vec,
4406 .load_dest = true,
4407 .opt_opc = vecop_list_mls,
4408 .vece = MO_16 },
4409 { .fni4 = gen_mls32_i32,
4410 .fniv = gen_mls_vec,
4411 .load_dest = true,
4412 .opt_opc = vecop_list_mls,
4413 .vece = MO_32 },
4414 { .fni8 = gen_mls64_i64,
4415 .fniv = gen_mls_vec,
4416 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
4417 .load_dest = true,
4418 .opt_opc = vecop_list_mls,
4419 .vece = MO_64 },
4420 };
4421
4422 /* CMTST : test is "if (X & Y != 0)". */
4423 static void gen_cmtst_i32(TCGv_i32 d, TCGv_i32 a, TCGv_i32 b)
4424 {
4425 tcg_gen_and_i32(d, a, b);
4426 tcg_gen_setcondi_i32(TCG_COND_NE, d, d, 0);
4427 tcg_gen_neg_i32(d, d);
4428 }
4429
4430 void gen_cmtst_i64(TCGv_i64 d, TCGv_i64 a, TCGv_i64 b)
4431 {
4432 tcg_gen_and_i64(d, a, b);
4433 tcg_gen_setcondi_i64(TCG_COND_NE, d, d, 0);
4434 tcg_gen_neg_i64(d, d);
4435 }
4436
4437 static void gen_cmtst_vec(unsigned vece, TCGv_vec d, TCGv_vec a, TCGv_vec b)
4438 {
4439 tcg_gen_and_vec(vece, d, a, b);
4440 tcg_gen_dupi_vec(vece, a, 0);
4441 tcg_gen_cmp_vec(TCG_COND_NE, vece, d, d, a);
4442 }
4443
4444 static const TCGOpcode vecop_list_cmtst[] = { INDEX_op_cmp_vec, 0 };
4445
4446 const GVecGen3 cmtst_op[4] = {
4447 { .fni4 = gen_helper_neon_tst_u8,
4448 .fniv = gen_cmtst_vec,
4449 .opt_opc = vecop_list_cmtst,
4450 .vece = MO_8 },
4451 { .fni4 = gen_helper_neon_tst_u16,
4452 .fniv = gen_cmtst_vec,
4453 .opt_opc = vecop_list_cmtst,
4454 .vece = MO_16 },
4455 { .fni4 = gen_cmtst_i32,
4456 .fniv = gen_cmtst_vec,
4457 .opt_opc = vecop_list_cmtst,
4458 .vece = MO_32 },
4459 { .fni8 = gen_cmtst_i64,
4460 .fniv = gen_cmtst_vec,
4461 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
4462 .opt_opc = vecop_list_cmtst,
4463 .vece = MO_64 },
4464 };
4465
4466 static void gen_uqadd_vec(unsigned vece, TCGv_vec t, TCGv_vec sat,
4467 TCGv_vec a, TCGv_vec b)
4468 {
4469 TCGv_vec x = tcg_temp_new_vec_matching(t);
4470 tcg_gen_add_vec(vece, x, a, b);
4471 tcg_gen_usadd_vec(vece, t, a, b);
4472 tcg_gen_cmp_vec(TCG_COND_NE, vece, x, x, t);
4473 tcg_gen_or_vec(vece, sat, sat, x);
4474 tcg_temp_free_vec(x);
4475 }
4476
4477 static const TCGOpcode vecop_list_uqadd[] = {
4478 INDEX_op_usadd_vec, INDEX_op_cmp_vec, INDEX_op_add_vec, 0
4479 };
4480
4481 const GVecGen4 uqadd_op[4] = {
4482 { .fniv = gen_uqadd_vec,
4483 .fno = gen_helper_gvec_uqadd_b,
4484 .write_aofs = true,
4485 .opt_opc = vecop_list_uqadd,
4486 .vece = MO_8 },
4487 { .fniv = gen_uqadd_vec,
4488 .fno = gen_helper_gvec_uqadd_h,
4489 .write_aofs = true,
4490 .opt_opc = vecop_list_uqadd,
4491 .vece = MO_16 },
4492 { .fniv = gen_uqadd_vec,
4493 .fno = gen_helper_gvec_uqadd_s,
4494 .write_aofs = true,
4495 .opt_opc = vecop_list_uqadd,
4496 .vece = MO_32 },
4497 { .fniv = gen_uqadd_vec,
4498 .fno = gen_helper_gvec_uqadd_d,
4499 .write_aofs = true,
4500 .opt_opc = vecop_list_uqadd,
4501 .vece = MO_64 },
4502 };
4503
4504 static void gen_sqadd_vec(unsigned vece, TCGv_vec t, TCGv_vec sat,
4505 TCGv_vec a, TCGv_vec b)
4506 {
4507 TCGv_vec x = tcg_temp_new_vec_matching(t);
4508 tcg_gen_add_vec(vece, x, a, b);
4509 tcg_gen_ssadd_vec(vece, t, a, b);
4510 tcg_gen_cmp_vec(TCG_COND_NE, vece, x, x, t);
4511 tcg_gen_or_vec(vece, sat, sat, x);
4512 tcg_temp_free_vec(x);
4513 }
4514
4515 static const TCGOpcode vecop_list_sqadd[] = {
4516 INDEX_op_ssadd_vec, INDEX_op_cmp_vec, INDEX_op_add_vec, 0
4517 };
4518
4519 const GVecGen4 sqadd_op[4] = {
4520 { .fniv = gen_sqadd_vec,
4521 .fno = gen_helper_gvec_sqadd_b,
4522 .opt_opc = vecop_list_sqadd,
4523 .write_aofs = true,
4524 .vece = MO_8 },
4525 { .fniv = gen_sqadd_vec,
4526 .fno = gen_helper_gvec_sqadd_h,
4527 .opt_opc = vecop_list_sqadd,
4528 .write_aofs = true,
4529 .vece = MO_16 },
4530 { .fniv = gen_sqadd_vec,
4531 .fno = gen_helper_gvec_sqadd_s,
4532 .opt_opc = vecop_list_sqadd,
4533 .write_aofs = true,
4534 .vece = MO_32 },
4535 { .fniv = gen_sqadd_vec,
4536 .fno = gen_helper_gvec_sqadd_d,
4537 .opt_opc = vecop_list_sqadd,
4538 .write_aofs = true,
4539 .vece = MO_64 },
4540 };
4541
4542 static void gen_uqsub_vec(unsigned vece, TCGv_vec t, TCGv_vec sat,
4543 TCGv_vec a, TCGv_vec b)
4544 {
4545 TCGv_vec x = tcg_temp_new_vec_matching(t);
4546 tcg_gen_sub_vec(vece, x, a, b);
4547 tcg_gen_ussub_vec(vece, t, a, b);
4548 tcg_gen_cmp_vec(TCG_COND_NE, vece, x, x, t);
4549 tcg_gen_or_vec(vece, sat, sat, x);
4550 tcg_temp_free_vec(x);
4551 }
4552
4553 static const TCGOpcode vecop_list_uqsub[] = {
4554 INDEX_op_ussub_vec, INDEX_op_cmp_vec, INDEX_op_sub_vec, 0
4555 };
4556
4557 const GVecGen4 uqsub_op[4] = {
4558 { .fniv = gen_uqsub_vec,
4559 .fno = gen_helper_gvec_uqsub_b,
4560 .opt_opc = vecop_list_uqsub,
4561 .write_aofs = true,
4562 .vece = MO_8 },
4563 { .fniv = gen_uqsub_vec,
4564 .fno = gen_helper_gvec_uqsub_h,
4565 .opt_opc = vecop_list_uqsub,
4566 .write_aofs = true,
4567 .vece = MO_16 },
4568 { .fniv = gen_uqsub_vec,
4569 .fno = gen_helper_gvec_uqsub_s,
4570 .opt_opc = vecop_list_uqsub,
4571 .write_aofs = true,
4572 .vece = MO_32 },
4573 { .fniv = gen_uqsub_vec,
4574 .fno = gen_helper_gvec_uqsub_d,
4575 .opt_opc = vecop_list_uqsub,
4576 .write_aofs = true,
4577 .vece = MO_64 },
4578 };
4579
4580 static void gen_sqsub_vec(unsigned vece, TCGv_vec t, TCGv_vec sat,
4581 TCGv_vec a, TCGv_vec b)
4582 {
4583 TCGv_vec x = tcg_temp_new_vec_matching(t);
4584 tcg_gen_sub_vec(vece, x, a, b);
4585 tcg_gen_sssub_vec(vece, t, a, b);
4586 tcg_gen_cmp_vec(TCG_COND_NE, vece, x, x, t);
4587 tcg_gen_or_vec(vece, sat, sat, x);
4588 tcg_temp_free_vec(x);
4589 }
4590
4591 static const TCGOpcode vecop_list_sqsub[] = {
4592 INDEX_op_sssub_vec, INDEX_op_cmp_vec, INDEX_op_sub_vec, 0
4593 };
4594
4595 const GVecGen4 sqsub_op[4] = {
4596 { .fniv = gen_sqsub_vec,
4597 .fno = gen_helper_gvec_sqsub_b,
4598 .opt_opc = vecop_list_sqsub,
4599 .write_aofs = true,
4600 .vece = MO_8 },
4601 { .fniv = gen_sqsub_vec,
4602 .fno = gen_helper_gvec_sqsub_h,
4603 .opt_opc = vecop_list_sqsub,
4604 .write_aofs = true,
4605 .vece = MO_16 },
4606 { .fniv = gen_sqsub_vec,
4607 .fno = gen_helper_gvec_sqsub_s,
4608 .opt_opc = vecop_list_sqsub,
4609 .write_aofs = true,
4610 .vece = MO_32 },
4611 { .fniv = gen_sqsub_vec,
4612 .fno = gen_helper_gvec_sqsub_d,
4613 .opt_opc = vecop_list_sqsub,
4614 .write_aofs = true,
4615 .vece = MO_64 },
4616 };
4617
4618 /* Translate a NEON data processing instruction. Return nonzero if the
4619 instruction is invalid.
4620 We process data in a mixture of 32-bit and 64-bit chunks.
4621 Mostly we use 32-bit chunks so we can use normal scalar instructions. */
4622
4623 static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
4624 {
4625 int op;
4626 int q;
4627 int rd, rn, rm, rd_ofs, rn_ofs, rm_ofs;
4628 int size;
4629 int shift;
4630 int pass;
4631 int count;
4632 int pairwise;
4633 int u;
4634 int vec_size;
4635 uint32_t imm;
4636 TCGv_i32 tmp, tmp2, tmp3, tmp4, tmp5;
4637 TCGv_ptr ptr1, ptr2, ptr3;
4638 TCGv_i64 tmp64;
4639
4640 /* FIXME: this access check should not take precedence over UNDEF
4641 * for invalid encodings; we will generate incorrect syndrome information
4642 * for attempts to execute invalid vfp/neon encodings with FP disabled.
4643 */
4644 if (s->fp_excp_el) {
4645 gen_exception_insn(s, s->pc_curr, EXCP_UDEF,
4646 syn_simd_access_trap(1, 0xe, false), s->fp_excp_el);
4647 return 0;
4648 }
4649
4650 if (!s->vfp_enabled)
4651 return 1;
4652 q = (insn & (1 << 6)) != 0;
4653 u = (insn >> 24) & 1;
4654 VFP_DREG_D(rd, insn);
4655 VFP_DREG_N(rn, insn);
4656 VFP_DREG_M(rm, insn);
4657 size = (insn >> 20) & 3;
4658 vec_size = q ? 16 : 8;
4659 rd_ofs = neon_reg_offset(rd, 0);
4660 rn_ofs = neon_reg_offset(rn, 0);
4661 rm_ofs = neon_reg_offset(rm, 0);
4662
4663 if ((insn & (1 << 23)) == 0) {
4664 /* Three register same length. */
4665 op = ((insn >> 7) & 0x1e) | ((insn >> 4) & 1);
4666 /* Catch invalid op and bad size combinations: UNDEF */
4667 if ((neon_3r_sizes[op] & (1 << size)) == 0) {
4668 return 1;
4669 }
4670 /* All insns of this form UNDEF for either this condition or the
4671 * superset of cases "Q==1"; we catch the latter later.
4672 */
4673 if (q && ((rd | rn | rm) & 1)) {
4674 return 1;
4675 }
4676 switch (op) {
4677 case NEON_3R_SHA:
4678 /* The SHA-1/SHA-256 3-register instructions require special
4679 * treatment here, as their size field is overloaded as an
4680 * op type selector, and they all consume their input in a
4681 * single pass.
4682 */
4683 if (!q) {
4684 return 1;
4685 }
4686 if (!u) { /* SHA-1 */
4687 if (!dc_isar_feature(aa32_sha1, s)) {
4688 return 1;
4689 }
4690 ptr1 = vfp_reg_ptr(true, rd);
4691 ptr2 = vfp_reg_ptr(true, rn);
4692 ptr3 = vfp_reg_ptr(true, rm);
4693 tmp4 = tcg_const_i32(size);
4694 gen_helper_crypto_sha1_3reg(ptr1, ptr2, ptr3, tmp4);
4695 tcg_temp_free_i32(tmp4);
4696 } else { /* SHA-256 */
4697 if (!dc_isar_feature(aa32_sha2, s) || size == 3) {
4698 return 1;
4699 }
4700 ptr1 = vfp_reg_ptr(true, rd);
4701 ptr2 = vfp_reg_ptr(true, rn);
4702 ptr3 = vfp_reg_ptr(true, rm);
4703 switch (size) {
4704 case 0:
4705 gen_helper_crypto_sha256h(ptr1, ptr2, ptr3);
4706 break;
4707 case 1:
4708 gen_helper_crypto_sha256h2(ptr1, ptr2, ptr3);
4709 break;
4710 case 2:
4711 gen_helper_crypto_sha256su1(ptr1, ptr2, ptr3);
4712 break;
4713 }
4714 }
4715 tcg_temp_free_ptr(ptr1);
4716 tcg_temp_free_ptr(ptr2);
4717 tcg_temp_free_ptr(ptr3);
4718 return 0;
4719
4720 case NEON_3R_VPADD_VQRDMLAH:
4721 if (!u) {
4722 break; /* VPADD */
4723 }
4724 /* VQRDMLAH */
4725 switch (size) {
4726 case 1:
4727 return do_v81_helper(s, gen_helper_gvec_qrdmlah_s16,
4728 q, rd, rn, rm);
4729 case 2:
4730 return do_v81_helper(s, gen_helper_gvec_qrdmlah_s32,
4731 q, rd, rn, rm);
4732 }
4733 return 1;
4734
4735 case NEON_3R_VFM_VQRDMLSH:
4736 if (!u) {
4737 /* VFM, VFMS */
4738 if (size == 1) {
4739 return 1;
4740 }
4741 break;
4742 }
4743 /* VQRDMLSH */
4744 switch (size) {
4745 case 1:
4746 return do_v81_helper(s, gen_helper_gvec_qrdmlsh_s16,
4747 q, rd, rn, rm);
4748 case 2:
4749 return do_v81_helper(s, gen_helper_gvec_qrdmlsh_s32,
4750 q, rd, rn, rm);
4751 }
4752 return 1;
4753
4754 case NEON_3R_LOGIC: /* Logic ops. */
4755 switch ((u << 2) | size) {
4756 case 0: /* VAND */
4757 tcg_gen_gvec_and(0, rd_ofs, rn_ofs, rm_ofs,
4758 vec_size, vec_size);
4759 break;
4760 case 1: /* VBIC */
4761 tcg_gen_gvec_andc(0, rd_ofs, rn_ofs, rm_ofs,
4762 vec_size, vec_size);
4763 break;
4764 case 2: /* VORR */
4765 tcg_gen_gvec_or(0, rd_ofs, rn_ofs, rm_ofs,
4766 vec_size, vec_size);
4767 break;
4768 case 3: /* VORN */
4769 tcg_gen_gvec_orc(0, rd_ofs, rn_ofs, rm_ofs,
4770 vec_size, vec_size);
4771 break;
4772 case 4: /* VEOR */
4773 tcg_gen_gvec_xor(0, rd_ofs, rn_ofs, rm_ofs,
4774 vec_size, vec_size);
4775 break;
4776 case 5: /* VBSL */
4777 tcg_gen_gvec_bitsel(MO_8, rd_ofs, rd_ofs, rn_ofs, rm_ofs,
4778 vec_size, vec_size);
4779 break;
4780 case 6: /* VBIT */
4781 tcg_gen_gvec_bitsel(MO_8, rd_ofs, rm_ofs, rn_ofs, rd_ofs,
4782 vec_size, vec_size);
4783 break;
4784 case 7: /* VBIF */
4785 tcg_gen_gvec_bitsel(MO_8, rd_ofs, rm_ofs, rd_ofs, rn_ofs,
4786 vec_size, vec_size);
4787 break;
4788 }
4789 return 0;
4790
4791 case NEON_3R_VADD_VSUB:
4792 if (u) {
4793 tcg_gen_gvec_sub(size, rd_ofs, rn_ofs, rm_ofs,
4794 vec_size, vec_size);
4795 } else {
4796 tcg_gen_gvec_add(size, rd_ofs, rn_ofs, rm_ofs,
4797 vec_size, vec_size);
4798 }
4799 return 0;
4800
4801 case NEON_3R_VQADD:
4802 tcg_gen_gvec_4(rd_ofs, offsetof(CPUARMState, vfp.qc),
4803 rn_ofs, rm_ofs, vec_size, vec_size,
4804 (u ? uqadd_op : sqadd_op) + size);
4805 return 0;
4806
4807 case NEON_3R_VQSUB:
4808 tcg_gen_gvec_4(rd_ofs, offsetof(CPUARMState, vfp.qc),
4809 rn_ofs, rm_ofs, vec_size, vec_size,
4810 (u ? uqsub_op : sqsub_op) + size);
4811 return 0;
4812
4813 case NEON_3R_VMUL: /* VMUL */
4814 if (u) {
4815 /* Polynomial case allows only P8 and is handled below. */
4816 if (size != 0) {
4817 return 1;
4818 }
4819 } else {
4820 tcg_gen_gvec_mul(size, rd_ofs, rn_ofs, rm_ofs,
4821 vec_size, vec_size);
4822 return 0;
4823 }
4824 break;
4825
4826 case NEON_3R_VML: /* VMLA, VMLS */
4827 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs, vec_size, vec_size,
4828 u ? &mls_op[size] : &mla_op[size]);
4829 return 0;
4830
4831 case NEON_3R_VTST_VCEQ:
4832 if (u) { /* VCEQ */
4833 tcg_gen_gvec_cmp(TCG_COND_EQ, size, rd_ofs, rn_ofs, rm_ofs,
4834 vec_size, vec_size);
4835 } else { /* VTST */
4836 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs,
4837 vec_size, vec_size, &cmtst_op[size]);
4838 }
4839 return 0;
4840
4841 case NEON_3R_VCGT:
4842 tcg_gen_gvec_cmp(u ? TCG_COND_GTU : TCG_COND_GT, size,
4843 rd_ofs, rn_ofs, rm_ofs, vec_size, vec_size);
4844 return 0;
4845
4846 case NEON_3R_VCGE:
4847 tcg_gen_gvec_cmp(u ? TCG_COND_GEU : TCG_COND_GE, size,
4848 rd_ofs, rn_ofs, rm_ofs, vec_size, vec_size);
4849 return 0;
4850
4851 case NEON_3R_VMAX:
4852 if (u) {
4853 tcg_gen_gvec_umax(size, rd_ofs, rn_ofs, rm_ofs,
4854 vec_size, vec_size);
4855 } else {
4856 tcg_gen_gvec_smax(size, rd_ofs, rn_ofs, rm_ofs,
4857 vec_size, vec_size);
4858 }
4859 return 0;
4860 case NEON_3R_VMIN:
4861 if (u) {
4862 tcg_gen_gvec_umin(size, rd_ofs, rn_ofs, rm_ofs,
4863 vec_size, vec_size);
4864 } else {
4865 tcg_gen_gvec_smin(size, rd_ofs, rn_ofs, rm_ofs,
4866 vec_size, vec_size);
4867 }
4868 return 0;
4869 }
4870
4871 if (size == 3) {
4872 /* 64-bit element instructions. */
4873 for (pass = 0; pass < (q ? 2 : 1); pass++) {
4874 neon_load_reg64(cpu_V0, rn + pass);
4875 neon_load_reg64(cpu_V1, rm + pass);
4876 switch (op) {
4877 case NEON_3R_VSHL:
4878 if (u) {
4879 gen_helper_neon_shl_u64(cpu_V0, cpu_V1, cpu_V0);
4880 } else {
4881 gen_helper_neon_shl_s64(cpu_V0, cpu_V1, cpu_V0);
4882 }
4883 break;
4884 case NEON_3R_VQSHL:
4885 if (u) {
4886 gen_helper_neon_qshl_u64(cpu_V0, cpu_env,
4887 cpu_V1, cpu_V0);
4888 } else {
4889 gen_helper_neon_qshl_s64(cpu_V0, cpu_env,
4890 cpu_V1, cpu_V0);
4891 }
4892 break;
4893 case NEON_3R_VRSHL:
4894 if (u) {
4895 gen_helper_neon_rshl_u64(cpu_V0, cpu_V1, cpu_V0);
4896 } else {
4897 gen_helper_neon_rshl_s64(cpu_V0, cpu_V1, cpu_V0);
4898 }
4899 break;
4900 case NEON_3R_VQRSHL:
4901 if (u) {
4902 gen_helper_neon_qrshl_u64(cpu_V0, cpu_env,
4903 cpu_V1, cpu_V0);
4904 } else {
4905 gen_helper_neon_qrshl_s64(cpu_V0, cpu_env,
4906 cpu_V1, cpu_V0);
4907 }
4908 break;
4909 default:
4910 abort();
4911 }
4912 neon_store_reg64(cpu_V0, rd + pass);
4913 }
4914 return 0;
4915 }
4916 pairwise = 0;
4917 switch (op) {
4918 case NEON_3R_VSHL:
4919 case NEON_3R_VQSHL:
4920 case NEON_3R_VRSHL:
4921 case NEON_3R_VQRSHL:
4922 {
4923 int rtmp;
4924 /* Shift instruction operands are reversed. */
4925 rtmp = rn;
4926 rn = rm;
4927 rm = rtmp;
4928 }
4929 break;
4930 case NEON_3R_VPADD_VQRDMLAH:
4931 case NEON_3R_VPMAX:
4932 case NEON_3R_VPMIN:
4933 pairwise = 1;
4934 break;
4935 case NEON_3R_FLOAT_ARITH:
4936 pairwise = (u && size < 2); /* if VPADD (float) */
4937 break;
4938 case NEON_3R_FLOAT_MINMAX:
4939 pairwise = u; /* if VPMIN/VPMAX (float) */
4940 break;
4941 case NEON_3R_FLOAT_CMP:
4942 if (!u && size) {
4943 /* no encoding for U=0 C=1x */
4944 return 1;
4945 }
4946 break;
4947 case NEON_3R_FLOAT_ACMP:
4948 if (!u) {
4949 return 1;
4950 }
4951 break;
4952 case NEON_3R_FLOAT_MISC:
4953 /* VMAXNM/VMINNM in ARMv8 */
4954 if (u && !arm_dc_feature(s, ARM_FEATURE_V8)) {
4955 return 1;
4956 }
4957 break;
4958 case NEON_3R_VFM_VQRDMLSH:
4959 if (!arm_dc_feature(s, ARM_FEATURE_VFP4)) {
4960 return 1;
4961 }
4962 break;
4963 default:
4964 break;
4965 }
4966
4967 if (pairwise && q) {
4968 /* All the pairwise insns UNDEF if Q is set */
4969 return 1;
4970 }
4971
4972 for (pass = 0; pass < (q ? 4 : 2); pass++) {
4973
4974 if (pairwise) {
4975 /* Pairwise. */
4976 if (pass < 1) {
4977 tmp = neon_load_reg(rn, 0);
4978 tmp2 = neon_load_reg(rn, 1);
4979 } else {
4980 tmp = neon_load_reg(rm, 0);
4981 tmp2 = neon_load_reg(rm, 1);
4982 }
4983 } else {
4984 /* Elementwise. */
4985 tmp = neon_load_reg(rn, pass);
4986 tmp2 = neon_load_reg(rm, pass);
4987 }
4988 switch (op) {
4989 case NEON_3R_VHADD:
4990 GEN_NEON_INTEGER_OP(hadd);
4991 break;
4992 case NEON_3R_VRHADD:
4993 GEN_NEON_INTEGER_OP(rhadd);
4994 break;
4995 case NEON_3R_VHSUB:
4996 GEN_NEON_INTEGER_OP(hsub);
4997 break;
4998 case NEON_3R_VSHL:
4999 GEN_NEON_INTEGER_OP(shl);
5000 break;
5001 case NEON_3R_VQSHL:
5002 GEN_NEON_INTEGER_OP_ENV(qshl);
5003 break;
5004 case NEON_3R_VRSHL:
5005 GEN_NEON_INTEGER_OP(rshl);
5006 break;
5007 case NEON_3R_VQRSHL:
5008 GEN_NEON_INTEGER_OP_ENV(qrshl);
5009 break;
5010 case NEON_3R_VABD:
5011 GEN_NEON_INTEGER_OP(abd);
5012 break;
5013 case NEON_3R_VABA:
5014 GEN_NEON_INTEGER_OP(abd);
5015 tcg_temp_free_i32(tmp2);
5016 tmp2 = neon_load_reg(rd, pass);
5017 gen_neon_add(size, tmp, tmp2);
5018 break;
5019 case NEON_3R_VMUL:
5020 /* VMUL.P8; other cases already eliminated. */
5021 gen_helper_neon_mul_p8(tmp, tmp, tmp2);
5022 break;
5023 case NEON_3R_VPMAX:
5024 GEN_NEON_INTEGER_OP(pmax);
5025 break;
5026 case NEON_3R_VPMIN:
5027 GEN_NEON_INTEGER_OP(pmin);
5028 break;
5029 case NEON_3R_VQDMULH_VQRDMULH: /* Multiply high. */
5030 if (!u) { /* VQDMULH */
5031 switch (size) {
5032 case 1:
5033 gen_helper_neon_qdmulh_s16(tmp, cpu_env, tmp, tmp2);
5034 break;
5035 case 2:
5036 gen_helper_neon_qdmulh_s32(tmp, cpu_env, tmp, tmp2);
5037 break;
5038 default: abort();
5039 }
5040 } else { /* VQRDMULH */
5041 switch (size) {
5042 case 1:
5043 gen_helper_neon_qrdmulh_s16(tmp, cpu_env, tmp, tmp2);
5044 break;
5045 case 2:
5046 gen_helper_neon_qrdmulh_s32(tmp, cpu_env, tmp, tmp2);
5047 break;
5048 default: abort();
5049 }
5050 }
5051 break;
5052 case NEON_3R_VPADD_VQRDMLAH:
5053 switch (size) {
5054 case 0: gen_helper_neon_padd_u8(tmp, tmp, tmp2); break;
5055 case 1: gen_helper_neon_padd_u16(tmp, tmp, tmp2); break;
5056 case 2: tcg_gen_add_i32(tmp, tmp, tmp2); break;
5057 default: abort();
5058 }
5059 break;
5060 case NEON_3R_FLOAT_ARITH: /* Floating point arithmetic. */
5061 {
5062 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5063 switch ((u << 2) | size) {
5064 case 0: /* VADD */
5065 case 4: /* VPADD */
5066 gen_helper_vfp_adds(tmp, tmp, tmp2, fpstatus);
5067 break;
5068 case 2: /* VSUB */
5069 gen_helper_vfp_subs(tmp, tmp, tmp2, fpstatus);
5070 break;
5071 case 6: /* VABD */
5072 gen_helper_neon_abd_f32(tmp, tmp, tmp2, fpstatus);
5073 break;
5074 default:
5075 abort();
5076 }
5077 tcg_temp_free_ptr(fpstatus);
5078 break;
5079 }
5080 case NEON_3R_FLOAT_MULTIPLY:
5081 {
5082 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5083 gen_helper_vfp_muls(tmp, tmp, tmp2, fpstatus);
5084 if (!u) {
5085 tcg_temp_free_i32(tmp2);
5086 tmp2 = neon_load_reg(rd, pass);
5087 if (size == 0) {
5088 gen_helper_vfp_adds(tmp, tmp, tmp2, fpstatus);
5089 } else {
5090 gen_helper_vfp_subs(tmp, tmp2, tmp, fpstatus);
5091 }
5092 }
5093 tcg_temp_free_ptr(fpstatus);
5094 break;
5095 }
5096 case NEON_3R_FLOAT_CMP:
5097 {
5098 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5099 if (!u) {
5100 gen_helper_neon_ceq_f32(tmp, tmp, tmp2, fpstatus);
5101 } else {
5102 if (size == 0) {
5103 gen_helper_neon_cge_f32(tmp, tmp, tmp2, fpstatus);
5104 } else {
5105 gen_helper_neon_cgt_f32(tmp, tmp, tmp2, fpstatus);
5106 }
5107 }
5108 tcg_temp_free_ptr(fpstatus);
5109 break;
5110 }
5111 case NEON_3R_FLOAT_ACMP:
5112 {
5113 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5114 if (size == 0) {
5115 gen_helper_neon_acge_f32(tmp, tmp, tmp2, fpstatus);
5116 } else {
5117 gen_helper_neon_acgt_f32(tmp, tmp, tmp2, fpstatus);
5118 }
5119 tcg_temp_free_ptr(fpstatus);
5120 break;
5121 }
5122 case NEON_3R_FLOAT_MINMAX:
5123 {
5124 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5125 if (size == 0) {
5126 gen_helper_vfp_maxs(tmp, tmp, tmp2, fpstatus);
5127 } else {
5128 gen_helper_vfp_mins(tmp, tmp, tmp2, fpstatus);
5129 }
5130 tcg_temp_free_ptr(fpstatus);
5131 break;
5132 }
5133 case NEON_3R_FLOAT_MISC:
5134 if (u) {
5135 /* VMAXNM/VMINNM */
5136 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5137 if (size == 0) {
5138 gen_helper_vfp_maxnums(tmp, tmp, tmp2, fpstatus);
5139 } else {
5140 gen_helper_vfp_minnums(tmp, tmp, tmp2, fpstatus);
5141 }
5142 tcg_temp_free_ptr(fpstatus);
5143 } else {
5144 if (size == 0) {
5145 gen_helper_recps_f32(tmp, tmp, tmp2, cpu_env);
5146 } else {
5147 gen_helper_rsqrts_f32(tmp, tmp, tmp2, cpu_env);
5148 }
5149 }
5150 break;
5151 case NEON_3R_VFM_VQRDMLSH:
5152 {
5153 /* VFMA, VFMS: fused multiply-add */
5154 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5155 TCGv_i32 tmp3 = neon_load_reg(rd, pass);
5156 if (size) {
5157 /* VFMS */
5158 gen_helper_vfp_negs(tmp, tmp);
5159 }
5160 gen_helper_vfp_muladds(tmp, tmp, tmp2, tmp3, fpstatus);
5161 tcg_temp_free_i32(tmp3);
5162 tcg_temp_free_ptr(fpstatus);
5163 break;
5164 }
5165 default:
5166 abort();
5167 }
5168 tcg_temp_free_i32(tmp2);
5169
5170 /* Save the result. For elementwise operations we can put it
5171 straight into the destination register. For pairwise operations
5172 we have to be careful to avoid clobbering the source operands. */
5173 if (pairwise && rd == rm) {
5174 neon_store_scratch(pass, tmp);
5175 } else {
5176 neon_store_reg(rd, pass, tmp);
5177 }
5178
5179 } /* for pass */
5180 if (pairwise && rd == rm) {
5181 for (pass = 0; pass < (q ? 4 : 2); pass++) {
5182 tmp = neon_load_scratch(pass);
5183 neon_store_reg(rd, pass, tmp);
5184 }
5185 }
5186 /* End of 3 register same size operations. */
5187 } else if (insn & (1 << 4)) {
5188 if ((insn & 0x00380080) != 0) {
5189 /* Two registers and shift. */
5190 op = (insn >> 8) & 0xf;
5191 if (insn & (1 << 7)) {
5192 /* 64-bit shift. */
5193 if (op > 7) {
5194 return 1;
5195 }
5196 size = 3;
5197 } else {
5198 size = 2;
5199 while ((insn & (1 << (size + 19))) == 0)
5200 size--;
5201 }
5202 shift = (insn >> 16) & ((1 << (3 + size)) - 1);
5203 if (op < 8) {
5204 /* Shift by immediate:
5205 VSHR, VSRA, VRSHR, VRSRA, VSRI, VSHL, VQSHL, VQSHLU. */
5206 if (q && ((rd | rm) & 1)) {
5207 return 1;
5208 }
5209 if (!u && (op == 4 || op == 6)) {
5210 return 1;
5211 }
5212 /* Right shifts are encoded as N - shift, where N is the
5213 element size in bits. */
5214 if (op <= 4) {
5215 shift = shift - (1 << (size + 3));
5216 }
5217
5218 switch (op) {
5219 case 0: /* VSHR */
5220 /* Right shift comes here negative. */
5221 shift = -shift;
5222 /* Shifts larger than the element size are architecturally
5223 * valid. Unsigned results in all zeros; signed results
5224 * in all sign bits.
5225 */
5226 if (!u) {
5227 tcg_gen_gvec_sari(size, rd_ofs, rm_ofs,
5228 MIN(shift, (8 << size) - 1),
5229 vec_size, vec_size);
5230 } else if (shift >= 8 << size) {
5231 tcg_gen_gvec_dup8i(rd_ofs, vec_size, vec_size, 0);
5232 } else {
5233 tcg_gen_gvec_shri(size, rd_ofs, rm_ofs, shift,
5234 vec_size, vec_size);
5235 }
5236 return 0;
5237
5238 case 1: /* VSRA */
5239 /* Right shift comes here negative. */
5240 shift = -shift;
5241 /* Shifts larger than the element size are architecturally
5242 * valid. Unsigned results in all zeros; signed results
5243 * in all sign bits.
5244 */
5245 if (!u) {
5246 tcg_gen_gvec_2i(rd_ofs, rm_ofs, vec_size, vec_size,
5247 MIN(shift, (8 << size) - 1),
5248 &ssra_op[size]);
5249 } else if (shift >= 8 << size) {
5250 /* rd += 0 */
5251 } else {
5252 tcg_gen_gvec_2i(rd_ofs, rm_ofs, vec_size, vec_size,
5253 shift, &usra_op[size]);
5254 }
5255 return 0;
5256
5257 case 4: /* VSRI */
5258 if (!u) {
5259 return 1;
5260 }
5261 /* Right shift comes here negative. */
5262 shift = -shift;
5263 /* Shift out of range leaves destination unchanged. */
5264 if (shift < 8 << size) {
5265 tcg_gen_gvec_2i(rd_ofs, rm_ofs, vec_size, vec_size,
5266 shift, &sri_op[size]);
5267 }
5268 return 0;
5269
5270 case 5: /* VSHL, VSLI */
5271 if (u) { /* VSLI */
5272 /* Shift out of range leaves destination unchanged. */
5273 if (shift < 8 << size) {
5274 tcg_gen_gvec_2i(rd_ofs, rm_ofs, vec_size,
5275 vec_size, shift, &sli_op[size]);
5276 }
5277 } else { /* VSHL */
5278 /* Shifts larger than the element size are
5279 * architecturally valid and results in zero.
5280 */
5281 if (shift >= 8 << size) {
5282 tcg_gen_gvec_dup8i(rd_ofs, vec_size, vec_size, 0);
5283 } else {
5284 tcg_gen_gvec_shli(size, rd_ofs, rm_ofs, shift,
5285 vec_size, vec_size);
5286 }
5287 }
5288 return 0;
5289 }
5290
5291 if (size == 3) {
5292 count = q + 1;
5293 } else {
5294 count = q ? 4: 2;
5295 }
5296
5297 /* To avoid excessive duplication of ops we implement shift
5298 * by immediate using the variable shift operations.
5299 */
5300 imm = dup_const(size, shift);
5301
5302 for (pass = 0; pass < count; pass++) {
5303 if (size == 3) {
5304 neon_load_reg64(cpu_V0, rm + pass);
5305 tcg_gen_movi_i64(cpu_V1, imm);
5306 switch (op) {
5307 case 2: /* VRSHR */
5308 case 3: /* VRSRA */
5309 if (u)
5310 gen_helper_neon_rshl_u64(cpu_V0, cpu_V0, cpu_V1);
5311 else
5312 gen_helper_neon_rshl_s64(cpu_V0, cpu_V0, cpu_V1);
5313 break;
5314 case 6: /* VQSHLU */
5315 gen_helper_neon_qshlu_s64(cpu_V0, cpu_env,
5316 cpu_V0, cpu_V1);
5317 break;
5318 case 7: /* VQSHL */
5319 if (u) {
5320 gen_helper_neon_qshl_u64(cpu_V0, cpu_env,
5321 cpu_V0, cpu_V1);
5322 } else {
5323 gen_helper_neon_qshl_s64(cpu_V0, cpu_env,
5324 cpu_V0, cpu_V1);
5325 }
5326 break;
5327 default:
5328 g_assert_not_reached();
5329 }
5330 if (op == 3) {
5331 /* Accumulate. */
5332 neon_load_reg64(cpu_V1, rd + pass);
5333 tcg_gen_add_i64(cpu_V0, cpu_V0, cpu_V1);
5334 }
5335 neon_store_reg64(cpu_V0, rd + pass);
5336 } else { /* size < 3 */
5337 /* Operands in T0 and T1. */
5338 tmp = neon_load_reg(rm, pass);
5339 tmp2 = tcg_temp_new_i32();
5340 tcg_gen_movi_i32(tmp2, imm);
5341 switch (op) {
5342 case 2: /* VRSHR */
5343 case 3: /* VRSRA */
5344 GEN_NEON_INTEGER_OP(rshl);
5345 break;
5346 case 6: /* VQSHLU */
5347 switch (size) {
5348 case 0:
5349 gen_helper_neon_qshlu_s8(tmp, cpu_env,
5350 tmp, tmp2);
5351 break;
5352 case 1:
5353 gen_helper_neon_qshlu_s16(tmp, cpu_env,
5354 tmp, tmp2);
5355 break;
5356 case 2:
5357 gen_helper_neon_qshlu_s32(tmp, cpu_env,
5358 tmp, tmp2);
5359 break;
5360 default:
5361 abort();
5362 }
5363 break;
5364 case 7: /* VQSHL */
5365 GEN_NEON_INTEGER_OP_ENV(qshl);
5366 break;
5367 default:
5368 g_assert_not_reached();
5369 }
5370 tcg_temp_free_i32(tmp2);
5371
5372 if (op == 3) {
5373 /* Accumulate. */
5374 tmp2 = neon_load_reg(rd, pass);
5375 gen_neon_add(size, tmp, tmp2);
5376 tcg_temp_free_i32(tmp2);
5377 }
5378 neon_store_reg(rd, pass, tmp);
5379 }
5380 } /* for pass */
5381 } else if (op < 10) {
5382 /* Shift by immediate and narrow:
5383 VSHRN, VRSHRN, VQSHRN, VQRSHRN. */
5384 int input_unsigned = (op == 8) ? !u : u;
5385 if (rm & 1) {
5386 return 1;
5387 }
5388 shift = shift - (1 << (size + 3));
5389 size++;
5390 if (size == 3) {
5391 tmp64 = tcg_const_i64(shift);
5392 neon_load_reg64(cpu_V0, rm);
5393 neon_load_reg64(cpu_V1, rm + 1);
5394 for (pass = 0; pass < 2; pass++) {
5395 TCGv_i64 in;
5396 if (pass == 0) {
5397 in = cpu_V0;
5398 } else {
5399 in = cpu_V1;
5400 }
5401 if (q) {
5402 if (input_unsigned) {
5403 gen_helper_neon_rshl_u64(cpu_V0, in, tmp64);
5404 } else {
5405 gen_helper_neon_rshl_s64(cpu_V0, in, tmp64);
5406 }
5407 } else {
5408 if (input_unsigned) {
5409 gen_helper_neon_shl_u64(cpu_V0, in, tmp64);
5410 } else {
5411 gen_helper_neon_shl_s64(cpu_V0, in, tmp64);
5412 }
5413 }
5414 tmp = tcg_temp_new_i32();
5415 gen_neon_narrow_op(op == 8, u, size - 1, tmp, cpu_V0);
5416 neon_store_reg(rd, pass, tmp);
5417 } /* for pass */
5418 tcg_temp_free_i64(tmp64);
5419 } else {
5420 if (size == 1) {
5421 imm = (uint16_t)shift;
5422 imm |= imm << 16;
5423 } else {
5424 /* size == 2 */
5425 imm = (uint32_t)shift;
5426 }
5427 tmp2 = tcg_const_i32(imm);
5428 tmp4 = neon_load_reg(rm + 1, 0);
5429 tmp5 = neon_load_reg(rm + 1, 1);
5430 for (pass = 0; pass < 2; pass++) {
5431 if (pass == 0) {
5432 tmp = neon_load_reg(rm, 0);
5433 } else {
5434 tmp = tmp4;
5435 }
5436 gen_neon_shift_narrow(size, tmp, tmp2, q,
5437 input_unsigned);
5438 if (pass == 0) {
5439 tmp3 = neon_load_reg(rm, 1);
5440 } else {
5441 tmp3 = tmp5;
5442 }
5443 gen_neon_shift_narrow(size, tmp3, tmp2, q,
5444 input_unsigned);
5445 tcg_gen_concat_i32_i64(cpu_V0, tmp, tmp3);
5446 tcg_temp_free_i32(tmp);
5447 tcg_temp_free_i32(tmp3);
5448 tmp = tcg_temp_new_i32();
5449 gen_neon_narrow_op(op == 8, u, size - 1, tmp, cpu_V0);
5450 neon_store_reg(rd, pass, tmp);
5451 } /* for pass */
5452 tcg_temp_free_i32(tmp2);
5453 }
5454 } else if (op == 10) {
5455 /* VSHLL, VMOVL */
5456 if (q || (rd & 1)) {
5457 return 1;
5458 }
5459 tmp = neon_load_reg(rm, 0);
5460 tmp2 = neon_load_reg(rm, 1);
5461 for (pass = 0; pass < 2; pass++) {
5462 if (pass == 1)
5463 tmp = tmp2;
5464
5465 gen_neon_widen(cpu_V0, tmp, size, u);
5466
5467 if (shift != 0) {
5468 /* The shift is less than the width of the source
5469 type, so we can just shift the whole register. */
5470 tcg_gen_shli_i64(cpu_V0, cpu_V0, shift);
5471 /* Widen the result of shift: we need to clear
5472 * the potential overflow bits resulting from
5473 * left bits of the narrow input appearing as
5474 * right bits of left the neighbour narrow
5475 * input. */
5476 if (size < 2 || !u) {
5477 uint64_t imm64;
5478 if (size == 0) {
5479 imm = (0xffu >> (8 - shift));
5480 imm |= imm << 16;
5481 } else if (size == 1) {
5482 imm = 0xffff >> (16 - shift);
5483 } else {
5484 /* size == 2 */
5485 imm = 0xffffffff >> (32 - shift);
5486 }
5487 if (size < 2) {
5488 imm64 = imm | (((uint64_t)imm) << 32);
5489 } else {
5490 imm64 = imm;
5491 }
5492 tcg_gen_andi_i64(cpu_V0, cpu_V0, ~imm64);
5493 }
5494 }
5495 neon_store_reg64(cpu_V0, rd + pass);
5496 }
5497 } else if (op >= 14) {
5498 /* VCVT fixed-point. */
5499 TCGv_ptr fpst;
5500 TCGv_i32 shiftv;
5501 VFPGenFixPointFn *fn;
5502
5503 if (!(insn & (1 << 21)) || (q && ((rd | rm) & 1))) {
5504 return 1;
5505 }
5506
5507 if (!(op & 1)) {
5508 if (u) {
5509 fn = gen_helper_vfp_ultos;
5510 } else {
5511 fn = gen_helper_vfp_sltos;
5512 }
5513 } else {
5514 if (u) {
5515 fn = gen_helper_vfp_touls_round_to_zero;
5516 } else {
5517 fn = gen_helper_vfp_tosls_round_to_zero;
5518 }
5519 }
5520
5521 /* We have already masked out the must-be-1 top bit of imm6,
5522 * hence this 32-shift where the ARM ARM has 64-imm6.
5523 */
5524 shift = 32 - shift;
5525 fpst = get_fpstatus_ptr(1);
5526 shiftv = tcg_const_i32(shift);
5527 for (pass = 0; pass < (q ? 4 : 2); pass++) {
5528 TCGv_i32 tmpf = neon_load_reg(rm, pass);
5529 fn(tmpf, tmpf, shiftv, fpst);
5530 neon_store_reg(rd, pass, tmpf);
5531 }
5532 tcg_temp_free_ptr(fpst);
5533 tcg_temp_free_i32(shiftv);
5534 } else {
5535 return 1;
5536 }
5537 } else { /* (insn & 0x00380080) == 0 */
5538 int invert, reg_ofs, vec_size;
5539
5540 if (q && (rd & 1)) {
5541 return 1;
5542 }
5543
5544 op = (insn >> 8) & 0xf;
5545 /* One register and immediate. */
5546 imm = (u << 7) | ((insn >> 12) & 0x70) | (insn & 0xf);
5547 invert = (insn & (1 << 5)) != 0;
5548 /* Note that op = 2,3,4,5,6,7,10,11,12,13 imm=0 is UNPREDICTABLE.
5549 * We choose to not special-case this and will behave as if a
5550 * valid constant encoding of 0 had been given.
5551 */
5552 switch (op) {
5553 case 0: case 1:
5554 /* no-op */
5555 break;
5556 case 2: case 3:
5557 imm <<= 8;
5558 break;
5559 case 4: case 5:
5560 imm <<= 16;
5561 break;
5562 case 6: case 7:
5563 imm <<= 24;
5564 break;
5565 case 8: case 9:
5566 imm |= imm << 16;
5567 break;
5568 case 10: case 11:
5569 imm = (imm << 8) | (imm << 24);
5570 break;
5571 case 12:
5572 imm = (imm << 8) | 0xff;
5573 break;
5574 case 13:
5575 imm = (imm << 16) | 0xffff;
5576 break;
5577 case 14:
5578 imm |= (imm << 8) | (imm << 16) | (imm << 24);
5579 if (invert) {
5580 imm = ~imm;
5581 }
5582 break;
5583 case 15:
5584 if (invert) {
5585 return 1;
5586 }
5587 imm = ((imm & 0x80) << 24) | ((imm & 0x3f) << 19)
5588 | ((imm & 0x40) ? (0x1f << 25) : (1 << 30));
5589 break;
5590 }
5591 if (invert) {
5592 imm = ~imm;
5593 }
5594
5595 reg_ofs = neon_reg_offset(rd, 0);
5596 vec_size = q ? 16 : 8;
5597
5598 if (op & 1 && op < 12) {
5599 if (invert) {
5600 /* The immediate value has already been inverted,
5601 * so BIC becomes AND.
5602 */
5603 tcg_gen_gvec_andi(MO_32, reg_ofs, reg_ofs, imm,
5604 vec_size, vec_size);
5605 } else {
5606 tcg_gen_gvec_ori(MO_32, reg_ofs, reg_ofs, imm,
5607 vec_size, vec_size);
5608 }
5609 } else {
5610 /* VMOV, VMVN. */
5611 if (op == 14 && invert) {
5612 TCGv_i64 t64 = tcg_temp_new_i64();
5613
5614 for (pass = 0; pass <= q; ++pass) {
5615 uint64_t val = 0;
5616 int n;
5617
5618 for (n = 0; n < 8; n++) {
5619 if (imm & (1 << (n + pass * 8))) {
5620 val |= 0xffull << (n * 8);
5621 }
5622 }
5623 tcg_gen_movi_i64(t64, val);
5624 neon_store_reg64(t64, rd + pass);
5625 }
5626 tcg_temp_free_i64(t64);
5627 } else {
5628 tcg_gen_gvec_dup32i(reg_ofs, vec_size, vec_size, imm);
5629 }
5630 }
5631 }
5632 } else { /* (insn & 0x00800010 == 0x00800000) */
5633 if (size != 3) {
5634 op = (insn >> 8) & 0xf;
5635 if ((insn & (1 << 6)) == 0) {
5636 /* Three registers of different lengths. */
5637 int src1_wide;
5638 int src2_wide;
5639 int prewiden;
5640 /* undefreq: bit 0 : UNDEF if size == 0
5641 * bit 1 : UNDEF if size == 1
5642 * bit 2 : UNDEF if size == 2
5643 * bit 3 : UNDEF if U == 1
5644 * Note that [2:0] set implies 'always UNDEF'
5645 */
5646 int undefreq;
5647 /* prewiden, src1_wide, src2_wide, undefreq */
5648 static const int neon_3reg_wide[16][4] = {
5649 {1, 0, 0, 0}, /* VADDL */
5650 {1, 1, 0, 0}, /* VADDW */
5651 {1, 0, 0, 0}, /* VSUBL */
5652 {1, 1, 0, 0}, /* VSUBW */
5653 {0, 1, 1, 0}, /* VADDHN */
5654 {0, 0, 0, 0}, /* VABAL */
5655 {0, 1, 1, 0}, /* VSUBHN */
5656 {0, 0, 0, 0}, /* VABDL */
5657 {0, 0, 0, 0}, /* VMLAL */
5658 {0, 0, 0, 9}, /* VQDMLAL */
5659 {0, 0, 0, 0}, /* VMLSL */
5660 {0, 0, 0, 9}, /* VQDMLSL */
5661 {0, 0, 0, 0}, /* Integer VMULL */
5662 {0, 0, 0, 1}, /* VQDMULL */
5663 {0, 0, 0, 0xa}, /* Polynomial VMULL */
5664 {0, 0, 0, 7}, /* Reserved: always UNDEF */
5665 };
5666
5667 prewiden = neon_3reg_wide[op][0];
5668 src1_wide = neon_3reg_wide[op][1];
5669 src2_wide = neon_3reg_wide[op][2];
5670 undefreq = neon_3reg_wide[op][3];
5671
5672 if ((undefreq & (1 << size)) ||
5673 ((undefreq & 8) && u)) {
5674 return 1;
5675 }
5676 if ((src1_wide && (rn & 1)) ||
5677 (src2_wide && (rm & 1)) ||
5678 (!src2_wide && (rd & 1))) {
5679 return 1;
5680 }
5681
5682 /* Handle VMULL.P64 (Polynomial 64x64 to 128 bit multiply)
5683 * outside the loop below as it only performs a single pass.
5684 */
5685 if (op == 14 && size == 2) {
5686 TCGv_i64 tcg_rn, tcg_rm, tcg_rd;
5687
5688 if (!dc_isar_feature(aa32_pmull, s)) {
5689 return 1;
5690 }
5691 tcg_rn = tcg_temp_new_i64();
5692 tcg_rm = tcg_temp_new_i64();
5693 tcg_rd = tcg_temp_new_i64();
5694 neon_load_reg64(tcg_rn, rn);
5695 neon_load_reg64(tcg_rm, rm);
5696 gen_helper_neon_pmull_64_lo(tcg_rd, tcg_rn, tcg_rm);
5697 neon_store_reg64(tcg_rd, rd);
5698 gen_helper_neon_pmull_64_hi(tcg_rd, tcg_rn, tcg_rm);
5699 neon_store_reg64(tcg_rd, rd + 1);
5700 tcg_temp_free_i64(tcg_rn);
5701 tcg_temp_free_i64(tcg_rm);
5702 tcg_temp_free_i64(tcg_rd);
5703 return 0;
5704 }
5705
5706 /* Avoid overlapping operands. Wide source operands are
5707 always aligned so will never overlap with wide
5708 destinations in problematic ways. */
5709 if (rd == rm && !src2_wide) {
5710 tmp = neon_load_reg(rm, 1);
5711 neon_store_scratch(2, tmp);
5712 } else if (rd == rn && !src1_wide) {
5713 tmp = neon_load_reg(rn, 1);
5714 neon_store_scratch(2, tmp);
5715 }
5716 tmp3 = NULL;
5717 for (pass = 0; pass < 2; pass++) {
5718 if (src1_wide) {
5719 neon_load_reg64(cpu_V0, rn + pass);
5720 tmp = NULL;
5721 } else {
5722 if (pass == 1 && rd == rn) {
5723 tmp = neon_load_scratch(2);
5724 } else {
5725 tmp = neon_load_reg(rn, pass);
5726 }
5727 if (prewiden) {
5728 gen_neon_widen(cpu_V0, tmp, size, u);
5729 }
5730 }
5731 if (src2_wide) {
5732 neon_load_reg64(cpu_V1, rm + pass);
5733 tmp2 = NULL;
5734 } else {
5735 if (pass == 1 && rd == rm) {
5736 tmp2 = neon_load_scratch(2);
5737 } else {
5738 tmp2 = neon_load_reg(rm, pass);
5739 }
5740 if (prewiden) {
5741 gen_neon_widen(cpu_V1, tmp2, size, u);
5742 }
5743 }
5744 switch (op) {
5745 case 0: case 1: case 4: /* VADDL, VADDW, VADDHN, VRADDHN */
5746 gen_neon_addl(size);
5747 break;
5748 case 2: case 3: case 6: /* VSUBL, VSUBW, VSUBHN, VRSUBHN */
5749 gen_neon_subl(size);
5750 break;
5751 case 5: case 7: /* VABAL, VABDL */
5752 switch ((size << 1) | u) {
5753 case 0:
5754 gen_helper_neon_abdl_s16(cpu_V0, tmp, tmp2);
5755 break;
5756 case 1:
5757 gen_helper_neon_abdl_u16(cpu_V0, tmp, tmp2);
5758 break;
5759 case 2:
5760 gen_helper_neon_abdl_s32(cpu_V0, tmp, tmp2);
5761 break;
5762 case 3:
5763 gen_helper_neon_abdl_u32(cpu_V0, tmp, tmp2);
5764 break;
5765 case 4:
5766 gen_helper_neon_abdl_s64(cpu_V0, tmp, tmp2);
5767 break;
5768 case 5:
5769 gen_helper_neon_abdl_u64(cpu_V0, tmp, tmp2);
5770 break;
5771 default: abort();
5772 }
5773 tcg_temp_free_i32(tmp2);
5774 tcg_temp_free_i32(tmp);
5775 break;
5776 case 8: case 9: case 10: case 11: case 12: case 13:
5777 /* VMLAL, VQDMLAL, VMLSL, VQDMLSL, VMULL, VQDMULL */
5778 gen_neon_mull(cpu_V0, tmp, tmp2, size, u);
5779 break;
5780 case 14: /* Polynomial VMULL */
5781 gen_helper_neon_mull_p8(cpu_V0, tmp, tmp2);
5782 tcg_temp_free_i32(tmp2);
5783 tcg_temp_free_i32(tmp);
5784 break;
5785 default: /* 15 is RESERVED: caught earlier */
5786 abort();
5787 }
5788 if (op == 13) {
5789 /* VQDMULL */
5790 gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
5791 neon_store_reg64(cpu_V0, rd + pass);
5792 } else if (op == 5 || (op >= 8 && op <= 11)) {
5793 /* Accumulate. */
5794 neon_load_reg64(cpu_V1, rd + pass);
5795 switch (op) {
5796 case 10: /* VMLSL */
5797 gen_neon_negl(cpu_V0, size);
5798 /* Fall through */
5799 case 5: case 8: /* VABAL, VMLAL */
5800 gen_neon_addl(size);
5801 break;
5802 case 9: case 11: /* VQDMLAL, VQDMLSL */
5803 gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
5804 if (op == 11) {
5805 gen_neon_negl(cpu_V0, size);
5806 }
5807 gen_neon_addl_saturate(cpu_V0, cpu_V1, size);
5808 break;
5809 default:
5810 abort();
5811 }
5812 neon_store_reg64(cpu_V0, rd + pass);
5813 } else if (op == 4 || op == 6) {
5814 /* Narrowing operation. */
5815 tmp = tcg_temp_new_i32();
5816 if (!u) {
5817 switch (size) {
5818 case 0:
5819 gen_helper_neon_narrow_high_u8(tmp, cpu_V0);
5820 break;
5821 case 1:
5822 gen_helper_neon_narrow_high_u16(tmp, cpu_V0);
5823 break;
5824 case 2:
5825 tcg_gen_extrh_i64_i32(tmp, cpu_V0);
5826 break;
5827 default: abort();
5828 }
5829 } else {
5830 switch (size) {
5831 case 0:
5832 gen_helper_neon_narrow_round_high_u8(tmp, cpu_V0);
5833 break;
5834 case 1:
5835 gen_helper_neon_narrow_round_high_u16(tmp, cpu_V0);
5836 break;
5837 case 2:
5838 tcg_gen_addi_i64(cpu_V0, cpu_V0, 1u << 31);
5839 tcg_gen_extrh_i64_i32(tmp, cpu_V0);
5840 break;
5841 default: abort();
5842 }
5843 }
5844 if (pass == 0) {
5845 tmp3 = tmp;
5846 } else {
5847 neon_store_reg(rd, 0, tmp3);
5848 neon_store_reg(rd, 1, tmp);
5849 }
5850 } else {
5851 /* Write back the result. */
5852 neon_store_reg64(cpu_V0, rd + pass);
5853 }
5854 }
5855 } else {
5856 /* Two registers and a scalar. NB that for ops of this form
5857 * the ARM ARM labels bit 24 as Q, but it is in our variable
5858 * 'u', not 'q'.
5859 */
5860 if (size == 0) {
5861 return 1;
5862 }
5863 switch (op) {
5864 case 1: /* Float VMLA scalar */
5865 case 5: /* Floating point VMLS scalar */
5866 case 9: /* Floating point VMUL scalar */
5867 if (size == 1) {
5868 return 1;
5869 }
5870 /* fall through */
5871 case 0: /* Integer VMLA scalar */
5872 case 4: /* Integer VMLS scalar */
5873 case 8: /* Integer VMUL scalar */
5874 case 12: /* VQDMULH scalar */
5875 case 13: /* VQRDMULH scalar */
5876 if (u && ((rd | rn) & 1)) {
5877 return 1;
5878 }
5879 tmp = neon_get_scalar(size, rm);
5880 neon_store_scratch(0, tmp);
5881 for (pass = 0; pass < (u ? 4 : 2); pass++) {
5882 tmp = neon_load_scratch(0);
5883 tmp2 = neon_load_reg(rn, pass);
5884 if (op == 12) {
5885 if (size == 1) {
5886 gen_helper_neon_qdmulh_s16(tmp, cpu_env, tmp, tmp2);
5887 } else {
5888 gen_helper_neon_qdmulh_s32(tmp, cpu_env, tmp, tmp2);
5889 }
5890 } else if (op == 13) {
5891 if (size == 1) {
5892 gen_helper_neon_qrdmulh_s16(tmp, cpu_env, tmp, tmp2);
5893 } else {
5894 gen_helper_neon_qrdmulh_s32(tmp, cpu_env, tmp, tmp2);
5895 }
5896 } else if (op & 1) {
5897 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5898 gen_helper_vfp_muls(tmp, tmp, tmp2, fpstatus);
5899 tcg_temp_free_ptr(fpstatus);
5900 } else {
5901 switch (size) {
5902 case 0: gen_helper_neon_mul_u8(tmp, tmp, tmp2); break;
5903 case 1: gen_helper_neon_mul_u16(tmp, tmp, tmp2); break;
5904 case 2: tcg_gen_mul_i32(tmp, tmp, tmp2); break;
5905 default: abort();
5906 }
5907 }
5908 tcg_temp_free_i32(tmp2);
5909 if (op < 8) {
5910 /* Accumulate. */
5911 tmp2 = neon_load_reg(rd, pass);
5912 switch (op) {
5913 case 0:
5914 gen_neon_add(size, tmp, tmp2);
5915 break;
5916 case 1:
5917 {
5918 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5919 gen_helper_vfp_adds(tmp, tmp, tmp2, fpstatus);
5920 tcg_temp_free_ptr(fpstatus);
5921 break;
5922 }
5923 case 4:
5924 gen_neon_rsb(size, tmp, tmp2);
5925 break;
5926 case 5:
5927 {
5928 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
5929 gen_helper_vfp_subs(tmp, tmp2, tmp, fpstatus);
5930 tcg_temp_free_ptr(fpstatus);
5931 break;
5932 }
5933 default:
5934 abort();
5935 }
5936 tcg_temp_free_i32(tmp2);
5937 }
5938 neon_store_reg(rd, pass, tmp);
5939 }
5940 break;
5941 case 3: /* VQDMLAL scalar */
5942 case 7: /* VQDMLSL scalar */
5943 case 11: /* VQDMULL scalar */
5944 if (u == 1) {
5945 return 1;
5946 }
5947 /* fall through */
5948 case 2: /* VMLAL sclar */
5949 case 6: /* VMLSL scalar */
5950 case 10: /* VMULL scalar */
5951 if (rd & 1) {
5952 return 1;
5953 }
5954 tmp2 = neon_get_scalar(size, rm);
5955 /* We need a copy of tmp2 because gen_neon_mull
5956 * deletes it during pass 0. */
5957 tmp4 = tcg_temp_new_i32();
5958 tcg_gen_mov_i32(tmp4, tmp2);
5959 tmp3 = neon_load_reg(rn, 1);
5960
5961 for (pass = 0; pass < 2; pass++) {
5962 if (pass == 0) {
5963 tmp = neon_load_reg(rn, 0);
5964 } else {
5965 tmp = tmp3;
5966 tmp2 = tmp4;
5967 }
5968 gen_neon_mull(cpu_V0, tmp, tmp2, size, u);
5969 if (op != 11) {
5970 neon_load_reg64(cpu_V1, rd + pass);
5971 }
5972 switch (op) {
5973 case 6:
5974 gen_neon_negl(cpu_V0, size);
5975 /* Fall through */
5976 case 2:
5977 gen_neon_addl(size);
5978 break;
5979 case 3: case 7:
5980 gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
5981 if (op == 7) {
5982 gen_neon_negl(cpu_V0, size);
5983 }
5984 gen_neon_addl_saturate(cpu_V0, cpu_V1, size);
5985 break;
5986 case 10:
5987 /* no-op */
5988 break;
5989 case 11:
5990 gen_neon_addl_saturate(cpu_V0, cpu_V0, size);
5991 break;
5992 default:
5993 abort();
5994 }
5995 neon_store_reg64(cpu_V0, rd + pass);
5996 }
5997 break;
5998 case 14: /* VQRDMLAH scalar */
5999 case 15: /* VQRDMLSH scalar */
6000 {
6001 NeonGenThreeOpEnvFn *fn;
6002
6003 if (!dc_isar_feature(aa32_rdm, s)) {
6004 return 1;
6005 }
6006 if (u && ((rd | rn) & 1)) {
6007 return 1;
6008 }
6009 if (op == 14) {
6010 if (size == 1) {
6011 fn = gen_helper_neon_qrdmlah_s16;
6012 } else {
6013 fn = gen_helper_neon_qrdmlah_s32;
6014 }
6015 } else {
6016 if (size == 1) {
6017 fn = gen_helper_neon_qrdmlsh_s16;
6018 } else {
6019 fn = gen_helper_neon_qrdmlsh_s32;
6020 }
6021 }
6022
6023 tmp2 = neon_get_scalar(size, rm);
6024 for (pass = 0; pass < (u ? 4 : 2); pass++) {
6025 tmp = neon_load_reg(rn, pass);
6026 tmp3 = neon_load_reg(rd, pass);
6027 fn(tmp, cpu_env, tmp, tmp2, tmp3);
6028 tcg_temp_free_i32(tmp3);
6029 neon_store_reg(rd, pass, tmp);
6030 }
6031 tcg_temp_free_i32(tmp2);
6032 }
6033 break;
6034 default:
6035 g_assert_not_reached();
6036 }
6037 }
6038 } else { /* size == 3 */
6039 if (!u) {
6040 /* Extract. */
6041 imm = (insn >> 8) & 0xf;
6042
6043 if (imm > 7 && !q)
6044 return 1;
6045
6046 if (q && ((rd | rn | rm) & 1)) {
6047 return 1;
6048 }
6049
6050 if (imm == 0) {
6051 neon_load_reg64(cpu_V0, rn);
6052 if (q) {
6053 neon_load_reg64(cpu_V1, rn + 1);
6054 }
6055 } else if (imm == 8) {
6056 neon_load_reg64(cpu_V0, rn + 1);
6057 if (q) {
6058 neon_load_reg64(cpu_V1, rm);
6059 }
6060 } else if (q) {
6061 tmp64 = tcg_temp_new_i64();
6062 if (imm < 8) {
6063 neon_load_reg64(cpu_V0, rn);
6064 neon_load_reg64(tmp64, rn + 1);
6065 } else {
6066 neon_load_reg64(cpu_V0, rn + 1);
6067 neon_load_reg64(tmp64, rm);
6068 }
6069 tcg_gen_shri_i64(cpu_V0, cpu_V0, (imm & 7) * 8);
6070 tcg_gen_shli_i64(cpu_V1, tmp64, 64 - ((imm & 7) * 8));
6071 tcg_gen_or_i64(cpu_V0, cpu_V0, cpu_V1);
6072 if (imm < 8) {
6073 neon_load_reg64(cpu_V1, rm);
6074 } else {
6075 neon_load_reg64(cpu_V1, rm + 1);
6076 imm -= 8;
6077 }
6078 tcg_gen_shli_i64(cpu_V1, cpu_V1, 64 - (imm * 8));
6079 tcg_gen_shri_i64(tmp64, tmp64, imm * 8);
6080 tcg_gen_or_i64(cpu_V1, cpu_V1, tmp64);
6081 tcg_temp_free_i64(tmp64);
6082 } else {
6083 /* BUGFIX */
6084 neon_load_reg64(cpu_V0, rn);
6085 tcg_gen_shri_i64(cpu_V0, cpu_V0, imm * 8);
6086 neon_load_reg64(cpu_V1, rm);
6087 tcg_gen_shli_i64(cpu_V1, cpu_V1, 64 - (imm * 8));
6088 tcg_gen_or_i64(cpu_V0, cpu_V0, cpu_V1);
6089 }
6090 neon_store_reg64(cpu_V0, rd);
6091 if (q) {
6092 neon_store_reg64(cpu_V1, rd + 1);
6093 }
6094 } else if ((insn & (1 << 11)) == 0) {
6095 /* Two register misc. */
6096 op = ((insn >> 12) & 0x30) | ((insn >> 7) & 0xf);
6097 size = (insn >> 18) & 3;
6098 /* UNDEF for unknown op values and bad op-size combinations */
6099 if ((neon_2rm_sizes[op] & (1 << size)) == 0) {
6100 return 1;
6101 }
6102 if (neon_2rm_is_v8_op(op) &&
6103 !arm_dc_feature(s, ARM_FEATURE_V8)) {
6104 return 1;
6105 }
6106 if ((op != NEON_2RM_VMOVN && op != NEON_2RM_VQMOVN) &&
6107 q && ((rm | rd) & 1)) {
6108 return 1;
6109 }
6110 switch (op) {
6111 case NEON_2RM_VREV64:
6112 for (pass = 0; pass < (q ? 2 : 1); pass++) {
6113 tmp = neon_load_reg(rm, pass * 2);
6114 tmp2 = neon_load_reg(rm, pass * 2 + 1);
6115 switch (size) {
6116 case 0: tcg_gen_bswap32_i32(tmp, tmp); break;
6117 case 1: gen_swap_half(tmp); break;
6118 case 2: /* no-op */ break;
6119 default: abort();
6120 }
6121 neon_store_reg(rd, pass * 2 + 1, tmp);
6122 if (size == 2) {
6123 neon_store_reg(rd, pass * 2, tmp2);
6124 } else {
6125 switch (size) {
6126 case 0: tcg_gen_bswap32_i32(tmp2, tmp2); break;
6127 case 1: gen_swap_half(tmp2); break;
6128 default: abort();
6129 }
6130 neon_store_reg(rd, pass * 2, tmp2);
6131 }
6132 }
6133 break;
6134 case NEON_2RM_VPADDL: case NEON_2RM_VPADDL_U:
6135 case NEON_2RM_VPADAL: case NEON_2RM_VPADAL_U:
6136 for (pass = 0; pass < q + 1; pass++) {
6137 tmp = neon_load_reg(rm, pass * 2);
6138 gen_neon_widen(cpu_V0, tmp, size, op & 1);
6139 tmp = neon_load_reg(rm, pass * 2 + 1);
6140 gen_neon_widen(cpu_V1, tmp, size, op & 1);
6141 switch (size) {
6142 case 0: gen_helper_neon_paddl_u16(CPU_V001); break;
6143 case 1: gen_helper_neon_paddl_u32(CPU_V001); break;
6144 case 2: tcg_gen_add_i64(CPU_V001); break;
6145 default: abort();
6146 }
6147 if (op >= NEON_2RM_VPADAL) {
6148 /* Accumulate. */
6149 neon_load_reg64(cpu_V1, rd + pass);
6150 gen_neon_addl(size);
6151 }
6152 neon_store_reg64(cpu_V0, rd + pass);
6153 }
6154 break;
6155 case NEON_2RM_VTRN:
6156 if (size == 2) {
6157 int n;
6158 for (n = 0; n < (q ? 4 : 2); n += 2) {
6159 tmp = neon_load_reg(rm, n);
6160 tmp2 = neon_load_reg(rd, n + 1);
6161 neon_store_reg(rm, n, tmp2);
6162 neon_store_reg(rd, n + 1, tmp);
6163 }
6164 } else {
6165 goto elementwise;
6166 }
6167 break;
6168 case NEON_2RM_VUZP:
6169 if (gen_neon_unzip(rd, rm, size, q)) {
6170 return 1;
6171 }
6172 break;
6173 case NEON_2RM_VZIP:
6174 if (gen_neon_zip(rd, rm, size, q)) {
6175 return 1;
6176 }
6177 break;
6178 case NEON_2RM_VMOVN: case NEON_2RM_VQMOVN:
6179 /* also VQMOVUN; op field and mnemonics don't line up */
6180 if (rm & 1) {
6181 return 1;
6182 }
6183 tmp2 = NULL;
6184 for (pass = 0; pass < 2; pass++) {
6185 neon_load_reg64(cpu_V0, rm + pass);
6186 tmp = tcg_temp_new_i32();
6187 gen_neon_narrow_op(op == NEON_2RM_VMOVN, q, size,
6188 tmp, cpu_V0);
6189 if (pass == 0) {
6190 tmp2 = tmp;
6191 } else {
6192 neon_store_reg(rd, 0, tmp2);
6193 neon_store_reg(rd, 1, tmp);
6194 }
6195 }
6196 break;
6197 case NEON_2RM_VSHLL:
6198 if (q || (rd & 1)) {
6199 return 1;
6200 }
6201 tmp = neon_load_reg(rm, 0);
6202 tmp2 = neon_load_reg(rm, 1);
6203 for (pass = 0; pass < 2; pass++) {
6204 if (pass == 1)
6205 tmp = tmp2;
6206 gen_neon_widen(cpu_V0, tmp, size, 1);
6207 tcg_gen_shli_i64(cpu_V0, cpu_V0, 8 << size);
6208 neon_store_reg64(cpu_V0, rd + pass);
6209 }
6210 break;
6211 case NEON_2RM_VCVT_F16_F32:
6212 {
6213 TCGv_ptr fpst;
6214 TCGv_i32 ahp;
6215
6216 if (!dc_isar_feature(aa32_fp16_spconv, s) ||
6217 q || (rm & 1)) {
6218 return 1;
6219 }
6220 fpst = get_fpstatus_ptr(true);
6221 ahp = get_ahp_flag();
6222 tmp = neon_load_reg(rm, 0);
6223 gen_helper_vfp_fcvt_f32_to_f16(tmp, tmp, fpst, ahp);
6224 tmp2 = neon_load_reg(rm, 1);
6225 gen_helper_vfp_fcvt_f32_to_f16(tmp2, tmp2, fpst, ahp);
6226 tcg_gen_shli_i32(tmp2, tmp2, 16);
6227 tcg_gen_or_i32(tmp2, tmp2, tmp);
6228 tcg_temp_free_i32(tmp);
6229 tmp = neon_load_reg(rm, 2);
6230 gen_helper_vfp_fcvt_f32_to_f16(tmp, tmp, fpst, ahp);
6231 tmp3 = neon_load_reg(rm, 3);
6232 neon_store_reg(rd, 0, tmp2);
6233 gen_helper_vfp_fcvt_f32_to_f16(tmp3, tmp3, fpst, ahp);
6234 tcg_gen_shli_i32(tmp3, tmp3, 16);
6235 tcg_gen_or_i32(tmp3, tmp3, tmp);
6236 neon_store_reg(rd, 1, tmp3);
6237 tcg_temp_free_i32(tmp);
6238 tcg_temp_free_i32(ahp);
6239 tcg_temp_free_ptr(fpst);
6240 break;
6241 }
6242 case NEON_2RM_VCVT_F32_F16:
6243 {
6244 TCGv_ptr fpst;
6245 TCGv_i32 ahp;
6246 if (!dc_isar_feature(aa32_fp16_spconv, s) ||
6247 q || (rd & 1)) {
6248 return 1;
6249 }
6250 fpst = get_fpstatus_ptr(true);
6251 ahp = get_ahp_flag();
6252 tmp3 = tcg_temp_new_i32();
6253 tmp = neon_load_reg(rm, 0);
6254 tmp2 = neon_load_reg(rm, 1);
6255 tcg_gen_ext16u_i32(tmp3, tmp);
6256 gen_helper_vfp_fcvt_f16_to_f32(tmp3, tmp3, fpst, ahp);
6257 neon_store_reg(rd, 0, tmp3);
6258 tcg_gen_shri_i32(tmp, tmp, 16);
6259 gen_helper_vfp_fcvt_f16_to_f32(tmp, tmp, fpst, ahp);
6260 neon_store_reg(rd, 1, tmp);
6261 tmp3 = tcg_temp_new_i32();
6262 tcg_gen_ext16u_i32(tmp3, tmp2);
6263 gen_helper_vfp_fcvt_f16_to_f32(tmp3, tmp3, fpst, ahp);
6264 neon_store_reg(rd, 2, tmp3);
6265 tcg_gen_shri_i32(tmp2, tmp2, 16);
6266 gen_helper_vfp_fcvt_f16_to_f32(tmp2, tmp2, fpst, ahp);
6267 neon_store_reg(rd, 3, tmp2);
6268 tcg_temp_free_i32(ahp);
6269 tcg_temp_free_ptr(fpst);
6270 break;
6271 }
6272 case NEON_2RM_AESE: case NEON_2RM_AESMC:
6273 if (!dc_isar_feature(aa32_aes, s) || ((rm | rd) & 1)) {
6274 return 1;
6275 }
6276 ptr1 = vfp_reg_ptr(true, rd);
6277 ptr2 = vfp_reg_ptr(true, rm);
6278
6279 /* Bit 6 is the lowest opcode bit; it distinguishes between
6280 * encryption (AESE/AESMC) and decryption (AESD/AESIMC)
6281 */
6282 tmp3 = tcg_const_i32(extract32(insn, 6, 1));
6283
6284 if (op == NEON_2RM_AESE) {
6285 gen_helper_crypto_aese(ptr1, ptr2, tmp3);
6286 } else {
6287 gen_helper_crypto_aesmc(ptr1, ptr2, tmp3);
6288 }
6289 tcg_temp_free_ptr(ptr1);
6290 tcg_temp_free_ptr(ptr2);
6291 tcg_temp_free_i32(tmp3);
6292 break;
6293 case NEON_2RM_SHA1H:
6294 if (!dc_isar_feature(aa32_sha1, s) || ((rm | rd) & 1)) {
6295 return 1;
6296 }
6297 ptr1 = vfp_reg_ptr(true, rd);
6298 ptr2 = vfp_reg_ptr(true, rm);
6299
6300 gen_helper_crypto_sha1h(ptr1, ptr2);
6301
6302 tcg_temp_free_ptr(ptr1);
6303 tcg_temp_free_ptr(ptr2);
6304 break;
6305 case NEON_2RM_SHA1SU1:
6306 if ((rm | rd) & 1) {
6307 return 1;
6308 }
6309 /* bit 6 (q): set -> SHA256SU0, cleared -> SHA1SU1 */
6310 if (q) {
6311 if (!dc_isar_feature(aa32_sha2, s)) {
6312 return 1;
6313 }
6314 } else if (!dc_isar_feature(aa32_sha1, s)) {
6315 return 1;
6316 }
6317 ptr1 = vfp_reg_ptr(true, rd);
6318 ptr2 = vfp_reg_ptr(true, rm);
6319 if (q) {
6320 gen_helper_crypto_sha256su0(ptr1, ptr2);
6321 } else {
6322 gen_helper_crypto_sha1su1(ptr1, ptr2);
6323 }
6324 tcg_temp_free_ptr(ptr1);
6325 tcg_temp_free_ptr(ptr2);
6326 break;
6327
6328 case NEON_2RM_VMVN:
6329 tcg_gen_gvec_not(0, rd_ofs, rm_ofs, vec_size, vec_size);
6330 break;
6331 case NEON_2RM_VNEG:
6332 tcg_gen_gvec_neg(size, rd_ofs, rm_ofs, vec_size, vec_size);
6333 break;
6334 case NEON_2RM_VABS:
6335 tcg_gen_gvec_abs(size, rd_ofs, rm_ofs, vec_size, vec_size);
6336 break;
6337
6338 default:
6339 elementwise:
6340 for (pass = 0; pass < (q ? 4 : 2); pass++) {
6341 tmp = neon_load_reg(rm, pass);
6342 switch (op) {
6343 case NEON_2RM_VREV32:
6344 switch (size) {
6345 case 0: tcg_gen_bswap32_i32(tmp, tmp); break;
6346 case 1: gen_swap_half(tmp); break;
6347 default: abort();
6348 }
6349 break;
6350 case NEON_2RM_VREV16:
6351 gen_rev16(tmp, tmp);
6352 break;
6353 case NEON_2RM_VCLS:
6354 switch (size) {
6355 case 0: gen_helper_neon_cls_s8(tmp, tmp); break;
6356 case 1: gen_helper_neon_cls_s16(tmp, tmp); break;
6357 case 2: gen_helper_neon_cls_s32(tmp, tmp); break;
6358 default: abort();
6359 }
6360 break;
6361 case NEON_2RM_VCLZ:
6362 switch (size) {
6363 case 0: gen_helper_neon_clz_u8(tmp, tmp); break;
6364 case 1: gen_helper_neon_clz_u16(tmp, tmp); break;
6365 case 2: tcg_gen_clzi_i32(tmp, tmp, 32); break;
6366 default: abort();
6367 }
6368 break;
6369 case NEON_2RM_VCNT:
6370 gen_helper_neon_cnt_u8(tmp, tmp);
6371 break;
6372 case NEON_2RM_VQABS:
6373 switch (size) {
6374 case 0:
6375 gen_helper_neon_qabs_s8(tmp, cpu_env, tmp);
6376 break;
6377 case 1:
6378 gen_helper_neon_qabs_s16(tmp, cpu_env, tmp);
6379 break;
6380 case 2:
6381 gen_helper_neon_qabs_s32(tmp, cpu_env, tmp);
6382 break;
6383 default: abort();
6384 }
6385 break;
6386 case NEON_2RM_VQNEG:
6387 switch (size) {
6388 case 0:
6389 gen_helper_neon_qneg_s8(tmp, cpu_env, tmp);
6390 break;
6391 case 1:
6392 gen_helper_neon_qneg_s16(tmp, cpu_env, tmp);
6393 break;
6394 case 2:
6395 gen_helper_neon_qneg_s32(tmp, cpu_env, tmp);
6396 break;
6397 default: abort();
6398 }
6399 break;
6400 case NEON_2RM_VCGT0: case NEON_2RM_VCLE0:
6401 tmp2 = tcg_const_i32(0);
6402 switch(size) {
6403 case 0: gen_helper_neon_cgt_s8(tmp, tmp, tmp2); break;
6404 case 1: gen_helper_neon_cgt_s16(tmp, tmp, tmp2); break;
6405 case 2: gen_helper_neon_cgt_s32(tmp, tmp, tmp2); break;
6406 default: abort();
6407 }
6408 tcg_temp_free_i32(tmp2);
6409 if (op == NEON_2RM_VCLE0) {
6410 tcg_gen_not_i32(tmp, tmp);
6411 }
6412 break;
6413 case NEON_2RM_VCGE0: case NEON_2RM_VCLT0:
6414 tmp2 = tcg_const_i32(0);
6415 switch(size) {
6416 case 0: gen_helper_neon_cge_s8(tmp, tmp, tmp2); break;
6417 case 1: gen_helper_neon_cge_s16(tmp, tmp, tmp2); break;
6418 case 2: gen_helper_neon_cge_s32(tmp, tmp, tmp2); break;
6419 default: abort();
6420 }
6421 tcg_temp_free_i32(tmp2);
6422 if (op == NEON_2RM_VCLT0) {
6423 tcg_gen_not_i32(tmp, tmp);
6424 }
6425 break;
6426 case NEON_2RM_VCEQ0:
6427 tmp2 = tcg_const_i32(0);
6428 switch(size) {
6429 case 0: gen_helper_neon_ceq_u8(tmp, tmp, tmp2); break;
6430 case 1: gen_helper_neon_ceq_u16(tmp, tmp, tmp2); break;
6431 case 2: gen_helper_neon_ceq_u32(tmp, tmp, tmp2); break;
6432 default: abort();
6433 }
6434 tcg_temp_free_i32(tmp2);
6435 break;
6436 case NEON_2RM_VCGT0_F:
6437 {
6438 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6439 tmp2 = tcg_const_i32(0);
6440 gen_helper_neon_cgt_f32(tmp, tmp, tmp2, fpstatus);
6441 tcg_temp_free_i32(tmp2);
6442 tcg_temp_free_ptr(fpstatus);
6443 break;
6444 }
6445 case NEON_2RM_VCGE0_F:
6446 {
6447 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6448 tmp2 = tcg_const_i32(0);
6449 gen_helper_neon_cge_f32(tmp, tmp, tmp2, fpstatus);
6450 tcg_temp_free_i32(tmp2);
6451 tcg_temp_free_ptr(fpstatus);
6452 break;
6453 }
6454 case NEON_2RM_VCEQ0_F:
6455 {
6456 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6457 tmp2 = tcg_const_i32(0);
6458 gen_helper_neon_ceq_f32(tmp, tmp, tmp2, fpstatus);
6459 tcg_temp_free_i32(tmp2);
6460 tcg_temp_free_ptr(fpstatus);
6461 break;
6462 }
6463 case NEON_2RM_VCLE0_F:
6464 {
6465 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6466 tmp2 = tcg_const_i32(0);
6467 gen_helper_neon_cge_f32(tmp, tmp2, tmp, fpstatus);
6468 tcg_temp_free_i32(tmp2);
6469 tcg_temp_free_ptr(fpstatus);
6470 break;
6471 }
6472 case NEON_2RM_VCLT0_F:
6473 {
6474 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6475 tmp2 = tcg_const_i32(0);
6476 gen_helper_neon_cgt_f32(tmp, tmp2, tmp, fpstatus);
6477 tcg_temp_free_i32(tmp2);
6478 tcg_temp_free_ptr(fpstatus);
6479 break;
6480 }
6481 case NEON_2RM_VABS_F:
6482 gen_helper_vfp_abss(tmp, tmp);
6483 break;
6484 case NEON_2RM_VNEG_F:
6485 gen_helper_vfp_negs(tmp, tmp);
6486 break;
6487 case NEON_2RM_VSWP:
6488 tmp2 = neon_load_reg(rd, pass);
6489 neon_store_reg(rm, pass, tmp2);
6490 break;
6491 case NEON_2RM_VTRN:
6492 tmp2 = neon_load_reg(rd, pass);
6493 switch (size) {
6494 case 0: gen_neon_trn_u8(tmp, tmp2); break;
6495 case 1: gen_neon_trn_u16(tmp, tmp2); break;
6496 default: abort();
6497 }
6498 neon_store_reg(rm, pass, tmp2);
6499 break;
6500 case NEON_2RM_VRINTN:
6501 case NEON_2RM_VRINTA:
6502 case NEON_2RM_VRINTM:
6503 case NEON_2RM_VRINTP:
6504 case NEON_2RM_VRINTZ:
6505 {
6506 TCGv_i32 tcg_rmode;
6507 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6508 int rmode;
6509
6510 if (op == NEON_2RM_VRINTZ) {
6511 rmode = FPROUNDING_ZERO;
6512 } else {
6513 rmode = fp_decode_rm[((op & 0x6) >> 1) ^ 1];
6514 }
6515
6516 tcg_rmode = tcg_const_i32(arm_rmode_to_sf(rmode));
6517 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode,
6518 cpu_env);
6519 gen_helper_rints(tmp, tmp, fpstatus);
6520 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode,
6521 cpu_env);
6522 tcg_temp_free_ptr(fpstatus);
6523 tcg_temp_free_i32(tcg_rmode);
6524 break;
6525 }
6526 case NEON_2RM_VRINTX:
6527 {
6528 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6529 gen_helper_rints_exact(tmp, tmp, fpstatus);
6530 tcg_temp_free_ptr(fpstatus);
6531 break;
6532 }
6533 case NEON_2RM_VCVTAU:
6534 case NEON_2RM_VCVTAS:
6535 case NEON_2RM_VCVTNU:
6536 case NEON_2RM_VCVTNS:
6537 case NEON_2RM_VCVTPU:
6538 case NEON_2RM_VCVTPS:
6539 case NEON_2RM_VCVTMU:
6540 case NEON_2RM_VCVTMS:
6541 {
6542 bool is_signed = !extract32(insn, 7, 1);
6543 TCGv_ptr fpst = get_fpstatus_ptr(1);
6544 TCGv_i32 tcg_rmode, tcg_shift;
6545 int rmode = fp_decode_rm[extract32(insn, 8, 2)];
6546
6547 tcg_shift = tcg_const_i32(0);
6548 tcg_rmode = tcg_const_i32(arm_rmode_to_sf(rmode));
6549 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode,
6550 cpu_env);
6551
6552 if (is_signed) {
6553 gen_helper_vfp_tosls(tmp, tmp,
6554 tcg_shift, fpst);
6555 } else {
6556 gen_helper_vfp_touls(tmp, tmp,
6557 tcg_shift, fpst);
6558 }
6559
6560 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode,
6561 cpu_env);
6562 tcg_temp_free_i32(tcg_rmode);
6563 tcg_temp_free_i32(tcg_shift);
6564 tcg_temp_free_ptr(fpst);
6565 break;
6566 }
6567 case NEON_2RM_VRECPE:
6568 {
6569 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6570 gen_helper_recpe_u32(tmp, tmp, fpstatus);
6571 tcg_temp_free_ptr(fpstatus);
6572 break;
6573 }
6574 case NEON_2RM_VRSQRTE:
6575 {
6576 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6577 gen_helper_rsqrte_u32(tmp, tmp, fpstatus);
6578 tcg_temp_free_ptr(fpstatus);
6579 break;
6580 }
6581 case NEON_2RM_VRECPE_F:
6582 {
6583 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6584 gen_helper_recpe_f32(tmp, tmp, fpstatus);
6585 tcg_temp_free_ptr(fpstatus);
6586 break;
6587 }
6588 case NEON_2RM_VRSQRTE_F:
6589 {
6590 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6591 gen_helper_rsqrte_f32(tmp, tmp, fpstatus);
6592 tcg_temp_free_ptr(fpstatus);
6593 break;
6594 }
6595 case NEON_2RM_VCVT_FS: /* VCVT.F32.S32 */
6596 {
6597 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6598 gen_helper_vfp_sitos(tmp, tmp, fpstatus);
6599 tcg_temp_free_ptr(fpstatus);
6600 break;
6601 }
6602 case NEON_2RM_VCVT_FU: /* VCVT.F32.U32 */
6603 {
6604 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6605 gen_helper_vfp_uitos(tmp, tmp, fpstatus);
6606 tcg_temp_free_ptr(fpstatus);
6607 break;
6608 }
6609 case NEON_2RM_VCVT_SF: /* VCVT.S32.F32 */
6610 {
6611 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6612 gen_helper_vfp_tosizs(tmp, tmp, fpstatus);
6613 tcg_temp_free_ptr(fpstatus);
6614 break;
6615 }
6616 case NEON_2RM_VCVT_UF: /* VCVT.U32.F32 */
6617 {
6618 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
6619 gen_helper_vfp_touizs(tmp, tmp, fpstatus);
6620 tcg_temp_free_ptr(fpstatus);
6621 break;
6622 }
6623 default:
6624 /* Reserved op values were caught by the
6625 * neon_2rm_sizes[] check earlier.
6626 */
6627 abort();
6628 }
6629 neon_store_reg(rd, pass, tmp);
6630 }
6631 break;
6632 }
6633 } else if ((insn & (1 << 10)) == 0) {
6634 /* VTBL, VTBX. */
6635 int n = ((insn >> 8) & 3) + 1;
6636 if ((rn + n) > 32) {
6637 /* This is UNPREDICTABLE; we choose to UNDEF to avoid the
6638 * helper function running off the end of the register file.
6639 */
6640 return 1;
6641 }
6642 n <<= 3;
6643 if (insn & (1 << 6)) {
6644 tmp = neon_load_reg(rd, 0);
6645 } else {
6646 tmp = tcg_temp_new_i32();
6647 tcg_gen_movi_i32(tmp, 0);
6648 }
6649 tmp2 = neon_load_reg(rm, 0);
6650 ptr1 = vfp_reg_ptr(true, rn);
6651 tmp5 = tcg_const_i32(n);
6652 gen_helper_neon_tbl(tmp2, tmp2, tmp, ptr1, tmp5);
6653 tcg_temp_free_i32(tmp);
6654 if (insn & (1 << 6)) {
6655 tmp = neon_load_reg(rd, 1);
6656 } else {
6657 tmp = tcg_temp_new_i32();
6658 tcg_gen_movi_i32(tmp, 0);
6659 }
6660 tmp3 = neon_load_reg(rm, 1);
6661 gen_helper_neon_tbl(tmp3, tmp3, tmp, ptr1, tmp5);
6662 tcg_temp_free_i32(tmp5);
6663 tcg_temp_free_ptr(ptr1);
6664 neon_store_reg(rd, 0, tmp2);
6665 neon_store_reg(rd, 1, tmp3);
6666 tcg_temp_free_i32(tmp);
6667 } else if ((insn & 0x380) == 0) {
6668 /* VDUP */
6669 int element;
6670 MemOp size;
6671
6672 if ((insn & (7 << 16)) == 0 || (q && (rd & 1))) {
6673 return 1;
6674 }
6675 if (insn & (1 << 16)) {
6676 size = MO_8;
6677 element = (insn >> 17) & 7;
6678 } else if (insn & (1 << 17)) {
6679 size = MO_16;
6680 element = (insn >> 18) & 3;
6681 } else {
6682 size = MO_32;
6683 element = (insn >> 19) & 1;
6684 }
6685 tcg_gen_gvec_dup_mem(size, neon_reg_offset(rd, 0),
6686 neon_element_offset(rm, element, size),
6687 q ? 16 : 8, q ? 16 : 8);
6688 } else {
6689 return 1;
6690 }
6691 }
6692 }
6693 return 0;
6694 }
6695
6696 /* Advanced SIMD three registers of the same length extension.
6697 * 31 25 23 22 20 16 12 11 10 9 8 3 0
6698 * +---------------+-----+---+-----+----+----+---+----+---+----+---------+----+
6699 * | 1 1 1 1 1 1 0 | op1 | D | op2 | Vn | Vd | 1 | o3 | 0 | o4 | N Q M U | Vm |
6700 * +---------------+-----+---+-----+----+----+---+----+---+----+---------+----+
6701 */
6702 static int disas_neon_insn_3same_ext(DisasContext *s, uint32_t insn)
6703 {
6704 gen_helper_gvec_3 *fn_gvec = NULL;
6705 gen_helper_gvec_3_ptr *fn_gvec_ptr = NULL;
6706 int rd, rn, rm, opr_sz;
6707 int data = 0;
6708 int off_rn, off_rm;
6709 bool is_long = false, q = extract32(insn, 6, 1);
6710 bool ptr_is_env = false;
6711
6712 if ((insn & 0xfe200f10) == 0xfc200800) {
6713 /* VCMLA -- 1111 110R R.1S .... .... 1000 ...0 .... */
6714 int size = extract32(insn, 20, 1);
6715 data = extract32(insn, 23, 2); /* rot */
6716 if (!dc_isar_feature(aa32_vcma, s)
6717 || (!size && !dc_isar_feature(aa32_fp16_arith, s))) {
6718 return 1;
6719 }
6720 fn_gvec_ptr = size ? gen_helper_gvec_fcmlas : gen_helper_gvec_fcmlah;
6721 } else if ((insn & 0xfea00f10) == 0xfc800800) {
6722 /* VCADD -- 1111 110R 1.0S .... .... 1000 ...0 .... */
6723 int size = extract32(insn, 20, 1);
6724 data = extract32(insn, 24, 1); /* rot */
6725 if (!dc_isar_feature(aa32_vcma, s)
6726 || (!size && !dc_isar_feature(aa32_fp16_arith, s))) {
6727 return 1;
6728 }
6729 fn_gvec_ptr = size ? gen_helper_gvec_fcadds : gen_helper_gvec_fcaddh;
6730 } else if ((insn & 0xfeb00f00) == 0xfc200d00) {
6731 /* V[US]DOT -- 1111 1100 0.10 .... .... 1101 .Q.U .... */
6732 bool u = extract32(insn, 4, 1);
6733 if (!dc_isar_feature(aa32_dp, s)) {
6734 return 1;
6735 }
6736 fn_gvec = u ? gen_helper_gvec_udot_b : gen_helper_gvec_sdot_b;
6737 } else if ((insn & 0xff300f10) == 0xfc200810) {
6738 /* VFM[AS]L -- 1111 1100 S.10 .... .... 1000 .Q.1 .... */
6739 int is_s = extract32(insn, 23, 1);
6740 if (!dc_isar_feature(aa32_fhm, s)) {
6741 return 1;
6742 }
6743 is_long = true;
6744 data = is_s; /* is_2 == 0 */
6745 fn_gvec_ptr = gen_helper_gvec_fmlal_a32;
6746 ptr_is_env = true;
6747 } else {
6748 return 1;
6749 }
6750
6751 VFP_DREG_D(rd, insn);
6752 if (rd & q) {
6753 return 1;
6754 }
6755 if (q || !is_long) {
6756 VFP_DREG_N(rn, insn);
6757 VFP_DREG_M(rm, insn);
6758 if ((rn | rm) & q & !is_long) {
6759 return 1;
6760 }
6761 off_rn = vfp_reg_offset(1, rn);
6762 off_rm = vfp_reg_offset(1, rm);
6763 } else {
6764 rn = VFP_SREG_N(insn);
6765 rm = VFP_SREG_M(insn);
6766 off_rn = vfp_reg_offset(0, rn);
6767 off_rm = vfp_reg_offset(0, rm);
6768 }
6769
6770 if (s->fp_excp_el) {
6771 gen_exception_insn(s, s->pc_curr, EXCP_UDEF,
6772 syn_simd_access_trap(1, 0xe, false), s->fp_excp_el);
6773 return 0;
6774 }
6775 if (!s->vfp_enabled) {
6776 return 1;
6777 }
6778
6779 opr_sz = (1 + q) * 8;
6780 if (fn_gvec_ptr) {
6781 TCGv_ptr ptr;
6782 if (ptr_is_env) {
6783 ptr = cpu_env;
6784 } else {
6785 ptr = get_fpstatus_ptr(1);
6786 }
6787 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, rd), off_rn, off_rm, ptr,
6788 opr_sz, opr_sz, data, fn_gvec_ptr);
6789 if (!ptr_is_env) {
6790 tcg_temp_free_ptr(ptr);
6791 }
6792 } else {
6793 tcg_gen_gvec_3_ool(vfp_reg_offset(1, rd), off_rn, off_rm,
6794 opr_sz, opr_sz, data, fn_gvec);
6795 }
6796 return 0;
6797 }
6798
6799 /* Advanced SIMD two registers and a scalar extension.
6800 * 31 24 23 22 20 16 12 11 10 9 8 3 0
6801 * +-----------------+----+---+----+----+----+---+----+---+----+---------+----+
6802 * | 1 1 1 1 1 1 1 0 | o1 | D | o2 | Vn | Vd | 1 | o3 | 0 | o4 | N Q M U | Vm |
6803 * +-----------------+----+---+----+----+----+---+----+---+----+---------+----+
6804 *
6805 */
6806
6807 static int disas_neon_insn_2reg_scalar_ext(DisasContext *s, uint32_t insn)
6808 {
6809 gen_helper_gvec_3 *fn_gvec = NULL;
6810 gen_helper_gvec_3_ptr *fn_gvec_ptr = NULL;
6811 int rd, rn, rm, opr_sz, data;
6812 int off_rn, off_rm;
6813 bool is_long = false, q = extract32(insn, 6, 1);
6814 bool ptr_is_env = false;
6815
6816 if ((insn & 0xff000f10) == 0xfe000800) {
6817 /* VCMLA (indexed) -- 1111 1110 S.RR .... .... 1000 ...0 .... */
6818 int rot = extract32(insn, 20, 2);
6819 int size = extract32(insn, 23, 1);
6820 int index;
6821
6822 if (!dc_isar_feature(aa32_vcma, s)) {
6823 return 1;
6824 }
6825 if (size == 0) {
6826 if (!dc_isar_feature(aa32_fp16_arith, s)) {
6827 return 1;
6828 }
6829 /* For fp16, rm is just Vm, and index is M. */
6830 rm = extract32(insn, 0, 4);
6831 index = extract32(insn, 5, 1);
6832 } else {
6833 /* For fp32, rm is the usual M:Vm, and index is 0. */
6834 VFP_DREG_M(rm, insn);
6835 index = 0;
6836 }
6837 data = (index << 2) | rot;
6838 fn_gvec_ptr = (size ? gen_helper_gvec_fcmlas_idx
6839 : gen_helper_gvec_fcmlah_idx);
6840 } else if ((insn & 0xffb00f00) == 0xfe200d00) {
6841 /* V[US]DOT -- 1111 1110 0.10 .... .... 1101 .Q.U .... */
6842 int u = extract32(insn, 4, 1);
6843
6844 if (!dc_isar_feature(aa32_dp, s)) {
6845 return 1;
6846 }
6847 fn_gvec = u ? gen_helper_gvec_udot_idx_b : gen_helper_gvec_sdot_idx_b;
6848 /* rm is just Vm, and index is M. */
6849 data = extract32(insn, 5, 1); /* index */
6850 rm = extract32(insn, 0, 4);
6851 } else if ((insn & 0xffa00f10) == 0xfe000810) {
6852 /* VFM[AS]L -- 1111 1110 0.0S .... .... 1000 .Q.1 .... */
6853 int is_s = extract32(insn, 20, 1);
6854 int vm20 = extract32(insn, 0, 3);
6855 int vm3 = extract32(insn, 3, 1);
6856 int m = extract32(insn, 5, 1);
6857 int index;
6858
6859 if (!dc_isar_feature(aa32_fhm, s)) {
6860 return 1;
6861 }
6862 if (q) {
6863 rm = vm20;
6864 index = m * 2 + vm3;
6865 } else {
6866 rm = vm20 * 2 + m;
6867 index = vm3;
6868 }
6869 is_long = true;
6870 data = (index << 2) | is_s; /* is_2 == 0 */
6871 fn_gvec_ptr = gen_helper_gvec_fmlal_idx_a32;
6872 ptr_is_env = true;
6873 } else {
6874 return 1;
6875 }
6876
6877 VFP_DREG_D(rd, insn);
6878 if (rd & q) {
6879 return 1;
6880 }
6881 if (q || !is_long) {
6882 VFP_DREG_N(rn, insn);
6883 if (rn & q & !is_long) {
6884 return 1;
6885 }
6886 off_rn = vfp_reg_offset(1, rn);
6887 off_rm = vfp_reg_offset(1, rm);
6888 } else {
6889 rn = VFP_SREG_N(insn);
6890 off_rn = vfp_reg_offset(0, rn);
6891 off_rm = vfp_reg_offset(0, rm);
6892 }
6893 if (s->fp_excp_el) {
6894 gen_exception_insn(s, s->pc_curr, EXCP_UDEF,
6895 syn_simd_access_trap(1, 0xe, false), s->fp_excp_el);
6896 return 0;
6897 }
6898 if (!s->vfp_enabled) {
6899 return 1;
6900 }
6901
6902 opr_sz = (1 + q) * 8;
6903 if (fn_gvec_ptr) {
6904 TCGv_ptr ptr;
6905 if (ptr_is_env) {
6906 ptr = cpu_env;
6907 } else {
6908 ptr = get_fpstatus_ptr(1);
6909 }
6910 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, rd), off_rn, off_rm, ptr,
6911 opr_sz, opr_sz, data, fn_gvec_ptr);
6912 if (!ptr_is_env) {
6913 tcg_temp_free_ptr(ptr);
6914 }
6915 } else {
6916 tcg_gen_gvec_3_ool(vfp_reg_offset(1, rd), off_rn, off_rm,
6917 opr_sz, opr_sz, data, fn_gvec);
6918 }
6919 return 0;
6920 }
6921
6922 static int disas_coproc_insn(DisasContext *s, uint32_t insn)
6923 {
6924 int cpnum, is64, crn, crm, opc1, opc2, isread, rt, rt2;
6925 const ARMCPRegInfo *ri;
6926
6927 cpnum = (insn >> 8) & 0xf;
6928
6929 /* First check for coprocessor space used for XScale/iwMMXt insns */
6930 if (arm_dc_feature(s, ARM_FEATURE_XSCALE) && (cpnum < 2)) {
6931 if (extract32(s->c15_cpar, cpnum, 1) == 0) {
6932 return 1;
6933 }
6934 if (arm_dc_feature(s, ARM_FEATURE_IWMMXT)) {
6935 return disas_iwmmxt_insn(s, insn);
6936 } else if (arm_dc_feature(s, ARM_FEATURE_XSCALE)) {
6937 return disas_dsp_insn(s, insn);
6938 }
6939 return 1;
6940 }
6941
6942 /* Otherwise treat as a generic register access */
6943 is64 = (insn & (1 << 25)) == 0;
6944 if (!is64 && ((insn & (1 << 4)) == 0)) {
6945 /* cdp */
6946 return 1;
6947 }
6948
6949 crm = insn & 0xf;
6950 if (is64) {
6951 crn = 0;
6952 opc1 = (insn >> 4) & 0xf;
6953 opc2 = 0;
6954 rt2 = (insn >> 16) & 0xf;
6955 } else {
6956 crn = (insn >> 16) & 0xf;
6957 opc1 = (insn >> 21) & 7;
6958 opc2 = (insn >> 5) & 7;
6959 rt2 = 0;
6960 }
6961 isread = (insn >> 20) & 1;
6962 rt = (insn >> 12) & 0xf;
6963
6964 ri = get_arm_cp_reginfo(s->cp_regs,
6965 ENCODE_CP_REG(cpnum, is64, s->ns, crn, crm, opc1, opc2));
6966 if (ri) {
6967 /* Check access permissions */
6968 if (!cp_access_ok(s->current_el, ri, isread)) {
6969 return 1;
6970 }
6971
6972 if (ri->accessfn ||
6973 (arm_dc_feature(s, ARM_FEATURE_XSCALE) && cpnum < 14)) {
6974 /* Emit code to perform further access permissions checks at
6975 * runtime; this may result in an exception.
6976 * Note that on XScale all cp0..c13 registers do an access check
6977 * call in order to handle c15_cpar.
6978 */
6979 TCGv_ptr tmpptr;
6980 TCGv_i32 tcg_syn, tcg_isread;
6981 uint32_t syndrome;
6982
6983 /* Note that since we are an implementation which takes an
6984 * exception on a trapped conditional instruction only if the
6985 * instruction passes its condition code check, we can take
6986 * advantage of the clause in the ARM ARM that allows us to set
6987 * the COND field in the instruction to 0xE in all cases.
6988 * We could fish the actual condition out of the insn (ARM)
6989 * or the condexec bits (Thumb) but it isn't necessary.
6990 */
6991 switch (cpnum) {
6992 case 14:
6993 if (is64) {
6994 syndrome = syn_cp14_rrt_trap(1, 0xe, opc1, crm, rt, rt2,
6995 isread, false);
6996 } else {
6997 syndrome = syn_cp14_rt_trap(1, 0xe, opc1, opc2, crn, crm,
6998 rt, isread, false);
6999 }
7000 break;
7001 case 15:
7002 if (is64) {
7003 syndrome = syn_cp15_rrt_trap(1, 0xe, opc1, crm, rt, rt2,
7004 isread, false);
7005 } else {
7006 syndrome = syn_cp15_rt_trap(1, 0xe, opc1, opc2, crn, crm,
7007 rt, isread, false);
7008 }
7009 break;
7010 default:
7011 /* ARMv8 defines that only coprocessors 14 and 15 exist,
7012 * so this can only happen if this is an ARMv7 or earlier CPU,
7013 * in which case the syndrome information won't actually be
7014 * guest visible.
7015 */
7016 assert(!arm_dc_feature(s, ARM_FEATURE_V8));
7017 syndrome = syn_uncategorized();
7018 break;
7019 }
7020
7021 gen_set_condexec(s);
7022 gen_set_pc_im(s, s->pc_curr);
7023 tmpptr = tcg_const_ptr(ri);
7024 tcg_syn = tcg_const_i32(syndrome);
7025 tcg_isread = tcg_const_i32(isread);
7026 gen_helper_access_check_cp_reg(cpu_env, tmpptr, tcg_syn,
7027 tcg_isread);
7028 tcg_temp_free_ptr(tmpptr);
7029 tcg_temp_free_i32(tcg_syn);
7030 tcg_temp_free_i32(tcg_isread);
7031 } else if (ri->type & ARM_CP_RAISES_EXC) {
7032 /*
7033 * The readfn or writefn might raise an exception;
7034 * synchronize the CPU state in case it does.
7035 */
7036 gen_set_condexec(s);
7037 gen_set_pc_im(s, s->pc_curr);
7038 }
7039
7040 /* Handle special cases first */
7041 switch (ri->type & ~(ARM_CP_FLAG_MASK & ~ARM_CP_SPECIAL)) {
7042 case ARM_CP_NOP:
7043 return 0;
7044 case ARM_CP_WFI:
7045 if (isread) {
7046 return 1;
7047 }
7048 gen_set_pc_im(s, s->base.pc_next);
7049 s->base.is_jmp = DISAS_WFI;
7050 return 0;
7051 default:
7052 break;
7053 }
7054
7055 if ((tb_cflags(s->base.tb) & CF_USE_ICOUNT) && (ri->type & ARM_CP_IO)) {
7056 gen_io_start();
7057 }
7058
7059 if (isread) {
7060 /* Read */
7061 if (is64) {
7062 TCGv_i64 tmp64;
7063 TCGv_i32 tmp;
7064 if (ri->type & ARM_CP_CONST) {
7065 tmp64 = tcg_const_i64(ri->resetvalue);
7066 } else if (ri->readfn) {
7067 TCGv_ptr tmpptr;
7068 tmp64 = tcg_temp_new_i64();
7069 tmpptr = tcg_const_ptr(ri);
7070 gen_helper_get_cp_reg64(tmp64, cpu_env, tmpptr);
7071 tcg_temp_free_ptr(tmpptr);
7072 } else {
7073 tmp64 = tcg_temp_new_i64();
7074 tcg_gen_ld_i64(tmp64, cpu_env, ri->fieldoffset);
7075 }
7076 tmp = tcg_temp_new_i32();
7077 tcg_gen_extrl_i64_i32(tmp, tmp64);
7078 store_reg(s, rt, tmp);
7079 tmp = tcg_temp_new_i32();
7080 tcg_gen_extrh_i64_i32(tmp, tmp64);
7081 tcg_temp_free_i64(tmp64);
7082 store_reg(s, rt2, tmp);
7083 } else {
7084 TCGv_i32 tmp;
7085 if (ri->type & ARM_CP_CONST) {
7086 tmp = tcg_const_i32(ri->resetvalue);
7087 } else if (ri->readfn) {
7088 TCGv_ptr tmpptr;
7089 tmp = tcg_temp_new_i32();
7090 tmpptr = tcg_const_ptr(ri);
7091 gen_helper_get_cp_reg(tmp, cpu_env, tmpptr);
7092 tcg_temp_free_ptr(tmpptr);
7093 } else {
7094 tmp = load_cpu_offset(ri->fieldoffset);
7095 }
7096 if (rt == 15) {
7097 /* Destination register of r15 for 32 bit loads sets
7098 * the condition codes from the high 4 bits of the value
7099 */
7100 gen_set_nzcv(tmp);
7101 tcg_temp_free_i32(tmp);
7102 } else {
7103 store_reg(s, rt, tmp);
7104 }
7105 }
7106 } else {
7107 /* Write */
7108 if (ri->type & ARM_CP_CONST) {
7109 /* If not forbidden by access permissions, treat as WI */
7110 return 0;
7111 }
7112
7113 if (is64) {
7114 TCGv_i32 tmplo, tmphi;
7115 TCGv_i64 tmp64 = tcg_temp_new_i64();
7116 tmplo = load_reg(s, rt);
7117 tmphi = load_reg(s, rt2);
7118 tcg_gen_concat_i32_i64(tmp64, tmplo, tmphi);
7119 tcg_temp_free_i32(tmplo);
7120 tcg_temp_free_i32(tmphi);
7121 if (ri->writefn) {
7122 TCGv_ptr tmpptr = tcg_const_ptr(ri);
7123 gen_helper_set_cp_reg64(cpu_env, tmpptr, tmp64);
7124 tcg_temp_free_ptr(tmpptr);
7125 } else {
7126 tcg_gen_st_i64(tmp64, cpu_env, ri->fieldoffset);
7127 }
7128 tcg_temp_free_i64(tmp64);
7129 } else {
7130 if (ri->writefn) {
7131 TCGv_i32 tmp;
7132 TCGv_ptr tmpptr;
7133 tmp = load_reg(s, rt);
7134 tmpptr = tcg_const_ptr(ri);
7135 gen_helper_set_cp_reg(cpu_env, tmpptr, tmp);
7136 tcg_temp_free_ptr(tmpptr);
7137 tcg_temp_free_i32(tmp);
7138 } else {
7139 TCGv_i32 tmp = load_reg(s, rt);
7140 store_cpu_offset(tmp, ri->fieldoffset);
7141 }
7142 }
7143 }
7144
7145 if ((tb_cflags(s->base.tb) & CF_USE_ICOUNT) && (ri->type & ARM_CP_IO)) {
7146 /* I/O operations must end the TB here (whether read or write) */
7147 gen_lookup_tb(s);
7148 } else if (!isread && !(ri->type & ARM_CP_SUPPRESS_TB_END)) {
7149 /* We default to ending the TB on a coprocessor register write,
7150 * but allow this to be suppressed by the register definition
7151 * (usually only necessary to work around guest bugs).
7152 */
7153 gen_lookup_tb(s);
7154 }
7155
7156 return 0;
7157 }
7158
7159 /* Unknown register; this might be a guest error or a QEMU
7160 * unimplemented feature.
7161 */
7162 if (is64) {
7163 qemu_log_mask(LOG_UNIMP, "%s access to unsupported AArch32 "
7164 "64 bit system register cp:%d opc1: %d crm:%d "
7165 "(%s)\n",
7166 isread ? "read" : "write", cpnum, opc1, crm,
7167 s->ns ? "non-secure" : "secure");
7168 } else {
7169 qemu_log_mask(LOG_UNIMP, "%s access to unsupported AArch32 "
7170 "system register cp:%d opc1:%d crn:%d crm:%d opc2:%d "
7171 "(%s)\n",
7172 isread ? "read" : "write", cpnum, opc1, crn, crm, opc2,
7173 s->ns ? "non-secure" : "secure");
7174 }
7175
7176 return 1;
7177 }
7178
7179
7180 /* Store a 64-bit value to a register pair. Clobbers val. */
7181 static void gen_storeq_reg(DisasContext *s, int rlow, int rhigh, TCGv_i64 val)
7182 {
7183 TCGv_i32 tmp;
7184 tmp = tcg_temp_new_i32();
7185 tcg_gen_extrl_i64_i32(tmp, val);
7186 store_reg(s, rlow, tmp);
7187 tmp = tcg_temp_new_i32();
7188 tcg_gen_extrh_i64_i32(tmp, val);
7189 store_reg(s, rhigh, tmp);
7190 }
7191
7192 /* load and add a 64-bit value from a register pair. */
7193 static void gen_addq(DisasContext *s, TCGv_i64 val, int rlow, int rhigh)
7194 {
7195 TCGv_i64 tmp;
7196 TCGv_i32 tmpl;
7197 TCGv_i32 tmph;
7198
7199 /* Load 64-bit value rd:rn. */
7200 tmpl = load_reg(s, rlow);
7201 tmph = load_reg(s, rhigh);
7202 tmp = tcg_temp_new_i64();
7203 tcg_gen_concat_i32_i64(tmp, tmpl, tmph);
7204 tcg_temp_free_i32(tmpl);
7205 tcg_temp_free_i32(tmph);
7206 tcg_gen_add_i64(val, val, tmp);
7207 tcg_temp_free_i64(tmp);
7208 }
7209
7210 /* Set N and Z flags from hi|lo. */
7211 static void gen_logicq_cc(TCGv_i32 lo, TCGv_i32 hi)
7212 {
7213 tcg_gen_mov_i32(cpu_NF, hi);
7214 tcg_gen_or_i32(cpu_ZF, lo, hi);
7215 }
7216
7217 /* Load/Store exclusive instructions are implemented by remembering
7218 the value/address loaded, and seeing if these are the same
7219 when the store is performed. This should be sufficient to implement
7220 the architecturally mandated semantics, and avoids having to monitor
7221 regular stores. The compare vs the remembered value is done during
7222 the cmpxchg operation, but we must compare the addresses manually. */
7223 static void gen_load_exclusive(DisasContext *s, int rt, int rt2,
7224 TCGv_i32 addr, int size)
7225 {
7226 TCGv_i32 tmp = tcg_temp_new_i32();
7227 MemOp opc = size | MO_ALIGN | s->be_data;
7228
7229 s->is_ldex = true;
7230
7231 if (size == 3) {
7232 TCGv_i32 tmp2 = tcg_temp_new_i32();
7233 TCGv_i64 t64 = tcg_temp_new_i64();
7234
7235 /* For AArch32, architecturally the 32-bit word at the lowest
7236 * address is always Rt and the one at addr+4 is Rt2, even if
7237 * the CPU is big-endian. That means we don't want to do a
7238 * gen_aa32_ld_i64(), which invokes gen_aa32_frob64() as if
7239 * for an architecturally 64-bit access, but instead do a
7240 * 64-bit access using MO_BE if appropriate and then split
7241 * the two halves.
7242 * This only makes a difference for BE32 user-mode, where
7243 * frob64() must not flip the two halves of the 64-bit data
7244 * but this code must treat BE32 user-mode like BE32 system.
7245 */
7246 TCGv taddr = gen_aa32_addr(s, addr, opc);
7247
7248 tcg_gen_qemu_ld_i64(t64, taddr, get_mem_index(s), opc);
7249 tcg_temp_free(taddr);
7250 tcg_gen_mov_i64(cpu_exclusive_val, t64);
7251 if (s->be_data == MO_BE) {
7252 tcg_gen_extr_i64_i32(tmp2, tmp, t64);
7253 } else {
7254 tcg_gen_extr_i64_i32(tmp, tmp2, t64);
7255 }
7256 tcg_temp_free_i64(t64);
7257
7258 store_reg(s, rt2, tmp2);
7259 } else {
7260 gen_aa32_ld_i32(s, tmp, addr, get_mem_index(s), opc);
7261 tcg_gen_extu_i32_i64(cpu_exclusive_val, tmp);
7262 }
7263
7264 store_reg(s, rt, tmp);
7265 tcg_gen_extu_i32_i64(cpu_exclusive_addr, addr);
7266 }
7267
7268 static void gen_clrex(DisasContext *s)
7269 {
7270 tcg_gen_movi_i64(cpu_exclusive_addr, -1);
7271 }
7272
7273 static void gen_store_exclusive(DisasContext *s, int rd, int rt, int rt2,
7274 TCGv_i32 addr, int size)
7275 {
7276 TCGv_i32 t0, t1, t2;
7277 TCGv_i64 extaddr;
7278 TCGv taddr;
7279 TCGLabel *done_label;
7280 TCGLabel *fail_label;
7281 MemOp opc = size | MO_ALIGN | s->be_data;
7282
7283 /* if (env->exclusive_addr == addr && env->exclusive_val == [addr]) {
7284 [addr] = {Rt};
7285 {Rd} = 0;
7286 } else {
7287 {Rd} = 1;
7288 } */
7289 fail_label = gen_new_label();
7290 done_label = gen_new_label();
7291 extaddr = tcg_temp_new_i64();
7292 tcg_gen_extu_i32_i64(extaddr, addr);
7293 tcg_gen_brcond_i64(TCG_COND_NE, extaddr, cpu_exclusive_addr, fail_label);
7294 tcg_temp_free_i64(extaddr);
7295
7296 taddr = gen_aa32_addr(s, addr, opc);
7297 t0 = tcg_temp_new_i32();
7298 t1 = load_reg(s, rt);
7299 if (size == 3) {
7300 TCGv_i64 o64 = tcg_temp_new_i64();
7301 TCGv_i64 n64 = tcg_temp_new_i64();
7302
7303 t2 = load_reg(s, rt2);
7304 /* For AArch32, architecturally the 32-bit word at the lowest
7305 * address is always Rt and the one at addr+4 is Rt2, even if
7306 * the CPU is big-endian. Since we're going to treat this as a
7307 * single 64-bit BE store, we need to put the two halves in the
7308 * opposite order for BE to LE, so that they end up in the right
7309 * places.
7310 * We don't want gen_aa32_frob64() because that does the wrong
7311 * thing for BE32 usermode.
7312 */
7313 if (s->be_data == MO_BE) {
7314 tcg_gen_concat_i32_i64(n64, t2, t1);
7315 } else {
7316 tcg_gen_concat_i32_i64(n64, t1, t2);
7317 }
7318 tcg_temp_free_i32(t2);
7319
7320 tcg_gen_atomic_cmpxchg_i64(o64, taddr, cpu_exclusive_val, n64,
7321 get_mem_index(s), opc);
7322 tcg_temp_free_i64(n64);
7323
7324 tcg_gen_setcond_i64(TCG_COND_NE, o64, o64, cpu_exclusive_val);
7325 tcg_gen_extrl_i64_i32(t0, o64);
7326
7327 tcg_temp_free_i64(o64);
7328 } else {
7329 t2 = tcg_temp_new_i32();
7330 tcg_gen_extrl_i64_i32(t2, cpu_exclusive_val);
7331 tcg_gen_atomic_cmpxchg_i32(t0, taddr, t2, t1, get_mem_index(s), opc);
7332 tcg_gen_setcond_i32(TCG_COND_NE, t0, t0, t2);
7333 tcg_temp_free_i32(t2);
7334 }
7335 tcg_temp_free_i32(t1);
7336 tcg_temp_free(taddr);
7337 tcg_gen_mov_i32(cpu_R[rd], t0);
7338 tcg_temp_free_i32(t0);
7339 tcg_gen_br(done_label);
7340
7341 gen_set_label(fail_label);
7342 tcg_gen_movi_i32(cpu_R[rd], 1);
7343 gen_set_label(done_label);
7344 tcg_gen_movi_i64(cpu_exclusive_addr, -1);
7345 }
7346
7347 /* gen_srs:
7348 * @env: CPUARMState
7349 * @s: DisasContext
7350 * @mode: mode field from insn (which stack to store to)
7351 * @amode: addressing mode (DA/IA/DB/IB), encoded as per P,U bits in ARM insn
7352 * @writeback: true if writeback bit set
7353 *
7354 * Generate code for the SRS (Store Return State) insn.
7355 */
7356 static void gen_srs(DisasContext *s,
7357 uint32_t mode, uint32_t amode, bool writeback)
7358 {
7359 int32_t offset;
7360 TCGv_i32 addr, tmp;
7361 bool undef = false;
7362
7363 /* SRS is:
7364 * - trapped to EL3 if EL3 is AArch64 and we are at Secure EL1
7365 * and specified mode is monitor mode
7366 * - UNDEFINED in Hyp mode
7367 * - UNPREDICTABLE in User or System mode
7368 * - UNPREDICTABLE if the specified mode is:
7369 * -- not implemented
7370 * -- not a valid mode number
7371 * -- a mode that's at a higher exception level
7372 * -- Monitor, if we are Non-secure
7373 * For the UNPREDICTABLE cases we choose to UNDEF.
7374 */
7375 if (s->current_el == 1 && !s->ns && mode == ARM_CPU_MODE_MON) {
7376 gen_exception_insn(s, s->pc_curr, EXCP_UDEF, syn_uncategorized(), 3);
7377 return;
7378 }
7379
7380 if (s->current_el == 0 || s->current_el == 2) {
7381 undef = true;
7382 }
7383
7384 switch (mode) {
7385 case ARM_CPU_MODE_USR:
7386 case ARM_CPU_MODE_FIQ:
7387 case ARM_CPU_MODE_IRQ:
7388 case ARM_CPU_MODE_SVC:
7389 case ARM_CPU_MODE_ABT:
7390 case ARM_CPU_MODE_UND:
7391 case ARM_CPU_MODE_SYS:
7392 break;
7393 case ARM_CPU_MODE_HYP:
7394 if (s->current_el == 1 || !arm_dc_feature(s, ARM_FEATURE_EL2)) {
7395 undef = true;
7396 }
7397 break;
7398 case ARM_CPU_MODE_MON:
7399 /* No need to check specifically for "are we non-secure" because
7400 * we've already made EL0 UNDEF and handled the trap for S-EL1;
7401 * so if this isn't EL3 then we must be non-secure.
7402 */
7403 if (s->current_el != 3) {
7404 undef = true;
7405 }
7406 break;
7407 default:
7408 undef = true;
7409 }
7410
7411 if (undef) {
7412 unallocated_encoding(s);
7413 return;
7414 }
7415
7416 addr = tcg_temp_new_i32();
7417 tmp = tcg_const_i32(mode);
7418 /* get_r13_banked() will raise an exception if called from System mode */
7419 gen_set_condexec(s);
7420 gen_set_pc_im(s, s->pc_curr);
7421 gen_helper_get_r13_banked(addr, cpu_env, tmp);
7422 tcg_temp_free_i32(tmp);
7423 switch (amode) {
7424 case 0: /* DA */
7425 offset = -4;
7426 break;
7427 case 1: /* IA */
7428 offset = 0;
7429 break;
7430 case 2: /* DB */
7431 offset = -8;
7432 break;
7433 case 3: /* IB */
7434 offset = 4;
7435 break;
7436 default:
7437 abort();
7438 }
7439 tcg_gen_addi_i32(addr, addr, offset);
7440 tmp = load_reg(s, 14);
7441 gen_aa32_st32(s, tmp, addr, get_mem_index(s));
7442 tcg_temp_free_i32(tmp);
7443 tmp = load_cpu_field(spsr);
7444 tcg_gen_addi_i32(addr, addr, 4);
7445 gen_aa32_st32(s, tmp, addr, get_mem_index(s));
7446 tcg_temp_free_i32(tmp);
7447 if (writeback) {
7448 switch (amode) {
7449 case 0:
7450 offset = -8;
7451 break;
7452 case 1:
7453 offset = 4;
7454 break;
7455 case 2:
7456 offset = -4;
7457 break;
7458 case 3:
7459 offset = 0;
7460 break;
7461 default:
7462 abort();
7463 }
7464 tcg_gen_addi_i32(addr, addr, offset);
7465 tmp = tcg_const_i32(mode);
7466 gen_helper_set_r13_banked(cpu_env, tmp, addr);
7467 tcg_temp_free_i32(tmp);
7468 }
7469 tcg_temp_free_i32(addr);
7470 s->base.is_jmp = DISAS_UPDATE;
7471 }
7472
7473 /* Generate a label used for skipping this instruction */
7474 static void arm_gen_condlabel(DisasContext *s)
7475 {
7476 if (!s->condjmp) {
7477 s->condlabel = gen_new_label();
7478 s->condjmp = 1;
7479 }
7480 }
7481
7482 /* Skip this instruction if the ARM condition is false */
7483 static void arm_skip_unless(DisasContext *s, uint32_t cond)
7484 {
7485 arm_gen_condlabel(s);
7486 arm_gen_test_cc(cond ^ 1, s->condlabel);
7487 }
7488
7489
7490 /*
7491 * Constant expanders for the decoders.
7492 */
7493
7494 static int negate(DisasContext *s, int x)
7495 {
7496 return -x;
7497 }
7498
7499 static int plus_2(DisasContext *s, int x)
7500 {
7501 return x + 2;
7502 }
7503
7504 static int times_2(DisasContext *s, int x)
7505 {
7506 return x * 2;
7507 }
7508
7509 static int times_4(DisasContext *s, int x)
7510 {
7511 return x * 4;
7512 }
7513
7514 /* Return only the rotation part of T32ExpandImm. */
7515 static int t32_expandimm_rot(DisasContext *s, int x)
7516 {
7517 return x & 0xc00 ? extract32(x, 7, 5) : 0;
7518 }
7519
7520 /* Return the unrotated immediate from T32ExpandImm. */
7521 static int t32_expandimm_imm(DisasContext *s, int x)
7522 {
7523 int imm = extract32(x, 0, 8);
7524
7525 switch (extract32(x, 8, 4)) {
7526 case 0: /* XY */
7527 /* Nothing to do. */
7528 break;
7529 case 1: /* 00XY00XY */
7530 imm *= 0x00010001;
7531 break;
7532 case 2: /* XY00XY00 */
7533 imm *= 0x01000100;
7534 break;
7535 case 3: /* XYXYXYXY */
7536 imm *= 0x01010101;
7537 break;
7538 default:
7539 /* Rotated constant. */
7540 imm |= 0x80;
7541 break;
7542 }
7543 return imm;
7544 }
7545
7546 static int t32_branch24(DisasContext *s, int x)
7547 {
7548 /* Convert J1:J2 at x[22:21] to I2:I1, which involves I=J^~S. */
7549 x ^= !(x < 0) * (3 << 21);
7550 /* Append the final zero. */
7551 return x << 1;
7552 }
7553
7554 static int t16_setflags(DisasContext *s)
7555 {
7556 return s->condexec_mask == 0;
7557 }
7558
7559 /*
7560 * Include the generated decoders.
7561 */
7562
7563 #include "decode-a32.inc.c"
7564 #include "decode-a32-uncond.inc.c"
7565 #include "decode-t32.inc.c"
7566 #include "decode-t16.inc.c"
7567
7568 /* Helpers to swap operands for reverse-subtract. */
7569 static void gen_rsb(TCGv_i32 dst, TCGv_i32 a, TCGv_i32 b)
7570 {
7571 tcg_gen_sub_i32(dst, b, a);
7572 }
7573
7574 static void gen_rsb_CC(TCGv_i32 dst, TCGv_i32 a, TCGv_i32 b)
7575 {
7576 gen_sub_CC(dst, b, a);
7577 }
7578
7579 static void gen_rsc(TCGv_i32 dest, TCGv_i32 a, TCGv_i32 b)
7580 {
7581 gen_sub_carry(dest, b, a);
7582 }
7583
7584 static void gen_rsc_CC(TCGv_i32 dest, TCGv_i32 a, TCGv_i32 b)
7585 {
7586 gen_sbc_CC(dest, b, a);
7587 }
7588
7589 /*
7590 * Helpers for the data processing routines.
7591 *
7592 * After the computation store the results back.
7593 * This may be suppressed altogether (STREG_NONE), require a runtime
7594 * check against the stack limits (STREG_SP_CHECK), or generate an
7595 * exception return. Oh, or store into a register.
7596 *
7597 * Always return true, indicating success for a trans_* function.
7598 */
7599 typedef enum {
7600 STREG_NONE,
7601 STREG_NORMAL,
7602 STREG_SP_CHECK,
7603 STREG_EXC_RET,
7604 } StoreRegKind;
7605
7606 static bool store_reg_kind(DisasContext *s, int rd,
7607 TCGv_i32 val, StoreRegKind kind)
7608 {
7609 switch (kind) {
7610 case STREG_NONE:
7611 tcg_temp_free_i32(val);
7612 return true;
7613 case STREG_NORMAL:
7614 /* See ALUWritePC: Interworking only from a32 mode. */
7615 if (s->thumb) {
7616 store_reg(s, rd, val);
7617 } else {
7618 store_reg_bx(s, rd, val);
7619 }
7620 return true;
7621 case STREG_SP_CHECK:
7622 store_sp_checked(s, val);
7623 return true;
7624 case STREG_EXC_RET:
7625 gen_exception_return(s, val);
7626 return true;
7627 }
7628 g_assert_not_reached();
7629 }
7630
7631 /*
7632 * Data Processing (register)
7633 *
7634 * Operate, with set flags, one register source,
7635 * one immediate shifted register source, and a destination.
7636 */
7637 static bool op_s_rrr_shi(DisasContext *s, arg_s_rrr_shi *a,
7638 void (*gen)(TCGv_i32, TCGv_i32, TCGv_i32),
7639 int logic_cc, StoreRegKind kind)
7640 {
7641 TCGv_i32 tmp1, tmp2;
7642
7643 tmp2 = load_reg(s, a->rm);
7644 gen_arm_shift_im(tmp2, a->shty, a->shim, logic_cc);
7645 tmp1 = load_reg(s, a->rn);
7646
7647 gen(tmp1, tmp1, tmp2);
7648 tcg_temp_free_i32(tmp2);
7649
7650 if (logic_cc) {
7651 gen_logic_CC(tmp1);
7652 }
7653 return store_reg_kind(s, a->rd, tmp1, kind);
7654 }
7655
7656 static bool op_s_rxr_shi(DisasContext *s, arg_s_rrr_shi *a,
7657 void (*gen)(TCGv_i32, TCGv_i32),
7658 int logic_cc, StoreRegKind kind)
7659 {
7660 TCGv_i32 tmp;
7661
7662 tmp = load_reg(s, a->rm);
7663 gen_arm_shift_im(tmp, a->shty, a->shim, logic_cc);
7664
7665 gen(tmp, tmp);
7666 if (logic_cc) {
7667 gen_logic_CC(tmp);
7668 }
7669 return store_reg_kind(s, a->rd, tmp, kind);
7670 }
7671
7672 /*
7673 * Data-processing (register-shifted register)
7674 *
7675 * Operate, with set flags, one register source,
7676 * one register shifted register source, and a destination.
7677 */
7678 static bool op_s_rrr_shr(DisasContext *s, arg_s_rrr_shr *a,
7679 void (*gen)(TCGv_i32, TCGv_i32, TCGv_i32),
7680 int logic_cc, StoreRegKind kind)
7681 {
7682 TCGv_i32 tmp1, tmp2;
7683
7684 tmp1 = load_reg(s, a->rs);
7685 tmp2 = load_reg(s, a->rm);
7686 gen_arm_shift_reg(tmp2, a->shty, tmp1, logic_cc);
7687 tmp1 = load_reg(s, a->rn);
7688
7689 gen(tmp1, tmp1, tmp2);
7690 tcg_temp_free_i32(tmp2);
7691
7692 if (logic_cc) {
7693 gen_logic_CC(tmp1);
7694 }
7695 return store_reg_kind(s, a->rd, tmp1, kind);
7696 }
7697
7698 static bool op_s_rxr_shr(DisasContext *s, arg_s_rrr_shr *a,
7699 void (*gen)(TCGv_i32, TCGv_i32),
7700 int logic_cc, StoreRegKind kind)
7701 {
7702 TCGv_i32 tmp1, tmp2;
7703
7704 tmp1 = load_reg(s, a->rs);
7705 tmp2 = load_reg(s, a->rm);
7706 gen_arm_shift_reg(tmp2, a->shty, tmp1, logic_cc);
7707
7708 gen(tmp2, tmp2);
7709 if (logic_cc) {
7710 gen_logic_CC(tmp2);
7711 }
7712 return store_reg_kind(s, a->rd, tmp2, kind);
7713 }
7714
7715 /*
7716 * Data-processing (immediate)
7717 *
7718 * Operate, with set flags, one register source,
7719 * one rotated immediate, and a destination.
7720 *
7721 * Note that logic_cc && a->rot setting CF based on the msb of the
7722 * immediate is the reason why we must pass in the unrotated form
7723 * of the immediate.
7724 */
7725 static bool op_s_rri_rot(DisasContext *s, arg_s_rri_rot *a,
7726 void (*gen)(TCGv_i32, TCGv_i32, TCGv_i32),
7727 int logic_cc, StoreRegKind kind)
7728 {
7729 TCGv_i32 tmp1, tmp2;
7730 uint32_t imm;
7731
7732 imm = ror32(a->imm, a->rot);
7733 if (logic_cc && a->rot) {
7734 tcg_gen_movi_i32(cpu_CF, imm >> 31);
7735 }
7736 tmp2 = tcg_const_i32(imm);
7737 tmp1 = load_reg(s, a->rn);
7738
7739 gen(tmp1, tmp1, tmp2);
7740 tcg_temp_free_i32(tmp2);
7741
7742 if (logic_cc) {
7743 gen_logic_CC(tmp1);
7744 }
7745 return store_reg_kind(s, a->rd, tmp1, kind);
7746 }
7747
7748 static bool op_s_rxi_rot(DisasContext *s, arg_s_rri_rot *a,
7749 void (*gen)(TCGv_i32, TCGv_i32),
7750 int logic_cc, StoreRegKind kind)
7751 {
7752 TCGv_i32 tmp;
7753 uint32_t imm;
7754
7755 imm = ror32(a->imm, a->rot);
7756 if (logic_cc && a->rot) {
7757 tcg_gen_movi_i32(cpu_CF, imm >> 31);
7758 }
7759 tmp = tcg_const_i32(imm);
7760
7761 gen(tmp, tmp);
7762 if (logic_cc) {
7763 gen_logic_CC(tmp);
7764 }
7765 return store_reg_kind(s, a->rd, tmp, kind);
7766 }
7767
7768 #define DO_ANY3(NAME, OP, L, K) \
7769 static bool trans_##NAME##_rrri(DisasContext *s, arg_s_rrr_shi *a) \
7770 { StoreRegKind k = (K); return op_s_rrr_shi(s, a, OP, L, k); } \
7771 static bool trans_##NAME##_rrrr(DisasContext *s, arg_s_rrr_shr *a) \
7772 { StoreRegKind k = (K); return op_s_rrr_shr(s, a, OP, L, k); } \
7773 static bool trans_##NAME##_rri(DisasContext *s, arg_s_rri_rot *a) \
7774 { StoreRegKind k = (K); return op_s_rri_rot(s, a, OP, L, k); }
7775
7776 #define DO_ANY2(NAME, OP, L, K) \
7777 static bool trans_##NAME##_rxri(DisasContext *s, arg_s_rrr_shi *a) \
7778 { StoreRegKind k = (K); return op_s_rxr_shi(s, a, OP, L, k); } \
7779 static bool trans_##NAME##_rxrr(DisasContext *s, arg_s_rrr_shr *a) \
7780 { StoreRegKind k = (K); return op_s_rxr_shr(s, a, OP, L, k); } \
7781 static bool trans_##NAME##_rxi(DisasContext *s, arg_s_rri_rot *a) \
7782 { StoreRegKind k = (K); return op_s_rxi_rot(s, a, OP, L, k); }
7783
7784 #define DO_CMP2(NAME, OP, L) \
7785 static bool trans_##NAME##_xrri(DisasContext *s, arg_s_rrr_shi *a) \
7786 { return op_s_rrr_shi(s, a, OP, L, STREG_NONE); } \
7787 static bool trans_##NAME##_xrrr(DisasContext *s, arg_s_rrr_shr *a) \
7788 { return op_s_rrr_shr(s, a, OP, L, STREG_NONE); } \
7789 static bool trans_##NAME##_xri(DisasContext *s, arg_s_rri_rot *a) \
7790 { return op_s_rri_rot(s, a, OP, L, STREG_NONE); }
7791
7792 DO_ANY3(AND, tcg_gen_and_i32, a->s, STREG_NORMAL)
7793 DO_ANY3(EOR, tcg_gen_xor_i32, a->s, STREG_NORMAL)
7794 DO_ANY3(ORR, tcg_gen_or_i32, a->s, STREG_NORMAL)
7795 DO_ANY3(BIC, tcg_gen_andc_i32, a->s, STREG_NORMAL)
7796
7797 DO_ANY3(RSB, a->s ? gen_rsb_CC : gen_rsb, false, STREG_NORMAL)
7798 DO_ANY3(ADC, a->s ? gen_adc_CC : gen_add_carry, false, STREG_NORMAL)
7799 DO_ANY3(SBC, a->s ? gen_sbc_CC : gen_sub_carry, false, STREG_NORMAL)
7800 DO_ANY3(RSC, a->s ? gen_rsc_CC : gen_rsc, false, STREG_NORMAL)
7801
7802 DO_CMP2(TST, tcg_gen_and_i32, true)
7803 DO_CMP2(TEQ, tcg_gen_xor_i32, true)
7804 DO_CMP2(CMN, gen_add_CC, false)
7805 DO_CMP2(CMP, gen_sub_CC, false)
7806
7807 DO_ANY3(ADD, a->s ? gen_add_CC : tcg_gen_add_i32, false,
7808 a->rd == 13 && a->rn == 13 ? STREG_SP_CHECK : STREG_NORMAL)
7809
7810 /*
7811 * Note for the computation of StoreRegKind we return out of the
7812 * middle of the functions that are expanded by DO_ANY3, and that
7813 * we modify a->s via that parameter before it is used by OP.
7814 */
7815 DO_ANY3(SUB, a->s ? gen_sub_CC : tcg_gen_sub_i32, false,
7816 ({
7817 StoreRegKind ret = STREG_NORMAL;
7818 if (a->rd == 15 && a->s) {
7819 /*
7820 * See ALUExceptionReturn:
7821 * In User mode, UNPREDICTABLE; we choose UNDEF.
7822 * In Hyp mode, UNDEFINED.
7823 */
7824 if (IS_USER(s) || s->current_el == 2) {
7825 unallocated_encoding(s);
7826 return true;
7827 }
7828 /* There is no writeback of nzcv to PSTATE. */
7829 a->s = 0;
7830 ret = STREG_EXC_RET;
7831 } else if (a->rd == 13 && a->rn == 13) {
7832 ret = STREG_SP_CHECK;
7833 }
7834 ret;
7835 }))
7836
7837 DO_ANY2(MOV, tcg_gen_mov_i32, a->s,
7838 ({
7839 StoreRegKind ret = STREG_NORMAL;
7840 if (a->rd == 15 && a->s) {
7841 /*
7842 * See ALUExceptionReturn:
7843 * In User mode, UNPREDICTABLE; we choose UNDEF.
7844 * In Hyp mode, UNDEFINED.
7845 */
7846 if (IS_USER(s) || s->current_el == 2) {
7847 unallocated_encoding(s);
7848 return true;
7849 }
7850 /* There is no writeback of nzcv to PSTATE. */
7851 a->s = 0;
7852 ret = STREG_EXC_RET;
7853 } else if (a->rd == 13) {
7854 ret = STREG_SP_CHECK;
7855 }
7856 ret;
7857 }))
7858
7859 DO_ANY2(MVN, tcg_gen_not_i32, a->s, STREG_NORMAL)
7860
7861 /*
7862 * ORN is only available with T32, so there is no register-shifted-register
7863 * form of the insn. Using the DO_ANY3 macro would create an unused function.
7864 */
7865 static bool trans_ORN_rrri(DisasContext *s, arg_s_rrr_shi *a)
7866 {
7867 return op_s_rrr_shi(s, a, tcg_gen_orc_i32, a->s, STREG_NORMAL);
7868 }
7869
7870 static bool trans_ORN_rri(DisasContext *s, arg_s_rri_rot *a)
7871 {
7872 return op_s_rri_rot(s, a, tcg_gen_orc_i32, a->s, STREG_NORMAL);
7873 }
7874
7875 #undef DO_ANY3
7876 #undef DO_ANY2
7877 #undef DO_CMP2
7878
7879 static bool trans_ADR(DisasContext *s, arg_ri *a)
7880 {
7881 store_reg_bx(s, a->rd, add_reg_for_lit(s, 15, a->imm));
7882 return true;
7883 }
7884
7885 static bool trans_MOVW(DisasContext *s, arg_MOVW *a)
7886 {
7887 TCGv_i32 tmp;
7888
7889 if (!ENABLE_ARCH_6T2) {
7890 return false;
7891 }
7892
7893 tmp = tcg_const_i32(a->imm);
7894 store_reg(s, a->rd, tmp);
7895 return true;
7896 }
7897
7898 static bool trans_MOVT(DisasContext *s, arg_MOVW *a)
7899 {
7900 TCGv_i32 tmp;
7901
7902 if (!ENABLE_ARCH_6T2) {
7903 return false;
7904 }
7905
7906 tmp = load_reg(s, a->rd);
7907 tcg_gen_ext16u_i32(tmp, tmp);
7908 tcg_gen_ori_i32(tmp, tmp, a->imm << 16);
7909 store_reg(s, a->rd, tmp);
7910 return true;
7911 }
7912
7913 /*
7914 * Multiply and multiply accumulate
7915 */
7916
7917 static bool op_mla(DisasContext *s, arg_s_rrrr *a, bool add)
7918 {
7919 TCGv_i32 t1, t2;
7920
7921 t1 = load_reg(s, a->rn);
7922 t2 = load_reg(s, a->rm);
7923 tcg_gen_mul_i32(t1, t1, t2);
7924 tcg_temp_free_i32(t2);
7925 if (add) {
7926 t2 = load_reg(s, a->ra);
7927 tcg_gen_add_i32(t1, t1, t2);
7928 tcg_temp_free_i32(t2);
7929 }
7930 if (a->s) {
7931 gen_logic_CC(t1);
7932 }
7933 store_reg(s, a->rd, t1);
7934 return true;
7935 }
7936
7937 static bool trans_MUL(DisasContext *s, arg_MUL *a)
7938 {
7939 return op_mla(s, a, false);
7940 }
7941
7942 static bool trans_MLA(DisasContext *s, arg_MLA *a)
7943 {
7944 return op_mla(s, a, true);
7945 }
7946
7947 static bool trans_MLS(DisasContext *s, arg_MLS *a)
7948 {
7949 TCGv_i32 t1, t2;
7950
7951 if (!ENABLE_ARCH_6T2) {
7952 return false;
7953 }
7954 t1 = load_reg(s, a->rn);
7955 t2 = load_reg(s, a->rm);
7956 tcg_gen_mul_i32(t1, t1, t2);
7957 tcg_temp_free_i32(t2);
7958 t2 = load_reg(s, a->ra);
7959 tcg_gen_sub_i32(t1, t2, t1);
7960 tcg_temp_free_i32(t2);
7961 store_reg(s, a->rd, t1);
7962 return true;
7963 }
7964
7965 static bool op_mlal(DisasContext *s, arg_s_rrrr *a, bool uns, bool add)
7966 {
7967 TCGv_i32 t0, t1, t2, t3;
7968
7969 t0 = load_reg(s, a->rm);
7970 t1 = load_reg(s, a->rn);
7971 if (uns) {
7972 tcg_gen_mulu2_i32(t0, t1, t0, t1);
7973 } else {
7974 tcg_gen_muls2_i32(t0, t1, t0, t1);
7975 }
7976 if (add) {
7977 t2 = load_reg(s, a->ra);
7978 t3 = load_reg(s, a->rd);
7979 tcg_gen_add2_i32(t0, t1, t0, t1, t2, t3);
7980 tcg_temp_free_i32(t2);
7981 tcg_temp_free_i32(t3);
7982 }
7983 if (a->s) {
7984 gen_logicq_cc(t0, t1);
7985 }
7986 store_reg(s, a->ra, t0);
7987 store_reg(s, a->rd, t1);
7988 return true;
7989 }
7990
7991 static bool trans_UMULL(DisasContext *s, arg_UMULL *a)
7992 {
7993 return op_mlal(s, a, true, false);
7994 }
7995
7996 static bool trans_SMULL(DisasContext *s, arg_SMULL *a)
7997 {
7998 return op_mlal(s, a, false, false);
7999 }
8000
8001 static bool trans_UMLAL(DisasContext *s, arg_UMLAL *a)
8002 {
8003 return op_mlal(s, a, true, true);
8004 }
8005
8006 static bool trans_SMLAL(DisasContext *s, arg_SMLAL *a)
8007 {
8008 return op_mlal(s, a, false, true);
8009 }
8010
8011 static bool trans_UMAAL(DisasContext *s, arg_UMAAL *a)
8012 {
8013 TCGv_i32 t0, t1, t2, zero;
8014
8015 if (s->thumb
8016 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
8017 : !ENABLE_ARCH_6) {
8018 return false;
8019 }
8020
8021 t0 = load_reg(s, a->rm);
8022 t1 = load_reg(s, a->rn);
8023 tcg_gen_mulu2_i32(t0, t1, t0, t1);
8024 zero = tcg_const_i32(0);
8025 t2 = load_reg(s, a->ra);
8026 tcg_gen_add2_i32(t0, t1, t0, t1, t2, zero);
8027 tcg_temp_free_i32(t2);
8028 t2 = load_reg(s, a->rd);
8029 tcg_gen_add2_i32(t0, t1, t0, t1, t2, zero);
8030 tcg_temp_free_i32(t2);
8031 tcg_temp_free_i32(zero);
8032 store_reg(s, a->ra, t0);
8033 store_reg(s, a->rd, t1);
8034 return true;
8035 }
8036
8037 /*
8038 * Saturating addition and subtraction
8039 */
8040
8041 static bool op_qaddsub(DisasContext *s, arg_rrr *a, bool add, bool doub)
8042 {
8043 TCGv_i32 t0, t1;
8044
8045 if (s->thumb
8046 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
8047 : !ENABLE_ARCH_5TE) {
8048 return false;
8049 }
8050
8051 t0 = load_reg(s, a->rm);
8052 t1 = load_reg(s, a->rn);
8053 if (doub) {
8054 gen_helper_add_saturate(t1, cpu_env, t1, t1);
8055 }
8056 if (add) {
8057 gen_helper_add_saturate(t0, cpu_env, t0, t1);
8058 } else {
8059 gen_helper_sub_saturate(t0, cpu_env, t0, t1);
8060 }
8061 tcg_temp_free_i32(t1);
8062 store_reg(s, a->rd, t0);
8063 return true;
8064 }
8065
8066 #define DO_QADDSUB(NAME, ADD, DOUB) \
8067 static bool trans_##NAME(DisasContext *s, arg_rrr *a) \
8068 { \
8069 return op_qaddsub(s, a, ADD, DOUB); \
8070 }
8071
8072 DO_QADDSUB(QADD, true, false)
8073 DO_QADDSUB(QSUB, false, false)
8074 DO_QADDSUB(QDADD, true, true)
8075 DO_QADDSUB(QDSUB, false, true)
8076
8077 #undef DO_QADDSUB
8078
8079 /*
8080 * Halfword multiply and multiply accumulate
8081 */
8082
8083 static bool op_smlaxxx(DisasContext *s, arg_rrrr *a,
8084 int add_long, bool nt, bool mt)
8085 {
8086 TCGv_i32 t0, t1, tl, th;
8087
8088 if (s->thumb
8089 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
8090 : !ENABLE_ARCH_5TE) {
8091 return false;
8092 }
8093
8094 t0 = load_reg(s, a->rn);
8095 t1 = load_reg(s, a->rm);
8096 gen_mulxy(t0, t1, nt, mt);
8097 tcg_temp_free_i32(t1);
8098
8099 switch (add_long) {
8100 case 0:
8101 store_reg(s, a->rd, t0);
8102 break;
8103 case 1:
8104 t1 = load_reg(s, a->ra);
8105 gen_helper_add_setq(t0, cpu_env, t0, t1);
8106 tcg_temp_free_i32(t1);
8107 store_reg(s, a->rd, t0);
8108 break;
8109 case 2:
8110 tl = load_reg(s, a->ra);
8111 th = load_reg(s, a->rd);
8112 t1 = tcg_const_i32(0);
8113 tcg_gen_add2_i32(tl, th, tl, th, t0, t1);
8114 tcg_temp_free_i32(t0);
8115 tcg_temp_free_i32(t1);
8116 store_reg(s, a->ra, tl);
8117 store_reg(s, a->rd, th);
8118 break;
8119 default:
8120 g_assert_not_reached();
8121 }
8122 return true;
8123 }
8124
8125 #define DO_SMLAX(NAME, add, nt, mt) \
8126 static bool trans_##NAME(DisasContext *s, arg_rrrr *a) \
8127 { \
8128 return op_smlaxxx(s, a, add, nt, mt); \
8129 }
8130
8131 DO_SMLAX(SMULBB, 0, 0, 0)
8132 DO_SMLAX(SMULBT, 0, 0, 1)
8133 DO_SMLAX(SMULTB, 0, 1, 0)
8134 DO_SMLAX(SMULTT, 0, 1, 1)
8135
8136 DO_SMLAX(SMLABB, 1, 0, 0)
8137 DO_SMLAX(SMLABT, 1, 0, 1)
8138 DO_SMLAX(SMLATB, 1, 1, 0)
8139 DO_SMLAX(SMLATT, 1, 1, 1)
8140
8141 DO_SMLAX(SMLALBB, 2, 0, 0)
8142 DO_SMLAX(SMLALBT, 2, 0, 1)
8143 DO_SMLAX(SMLALTB, 2, 1, 0)
8144 DO_SMLAX(SMLALTT, 2, 1, 1)
8145
8146 #undef DO_SMLAX
8147
8148 static bool op_smlawx(DisasContext *s, arg_rrrr *a, bool add, bool mt)
8149 {
8150 TCGv_i32 t0, t1;
8151
8152 if (!ENABLE_ARCH_5TE) {
8153 return false;
8154 }
8155
8156 t0 = load_reg(s, a->rn);
8157 t1 = load_reg(s, a->rm);
8158 /*
8159 * Since the nominal result is product<47:16>, shift the 16-bit
8160 * input up by 16 bits, so that the result is at product<63:32>.
8161 */
8162 if (mt) {
8163 tcg_gen_andi_i32(t1, t1, 0xffff0000);
8164 } else {
8165 tcg_gen_shli_i32(t1, t1, 16);
8166 }
8167 tcg_gen_muls2_i32(t0, t1, t0, t1);
8168 tcg_temp_free_i32(t0);
8169 if (add) {
8170 t0 = load_reg(s, a->ra);
8171 gen_helper_add_setq(t1, cpu_env, t1, t0);
8172 tcg_temp_free_i32(t0);
8173 }
8174 store_reg(s, a->rd, t1);
8175 return true;
8176 }
8177
8178 #define DO_SMLAWX(NAME, add, mt) \
8179 static bool trans_##NAME(DisasContext *s, arg_rrrr *a) \
8180 { \
8181 return op_smlawx(s, a, add, mt); \
8182 }
8183
8184 DO_SMLAWX(SMULWB, 0, 0)
8185 DO_SMLAWX(SMULWT, 0, 1)
8186 DO_SMLAWX(SMLAWB, 1, 0)
8187 DO_SMLAWX(SMLAWT, 1, 1)
8188
8189 #undef DO_SMLAWX
8190
8191 /*
8192 * MSR (immediate) and hints
8193 */
8194
8195 static bool trans_YIELD(DisasContext *s, arg_YIELD *a)
8196 {
8197 gen_nop_hint(s, 1);
8198 return true;
8199 }
8200
8201 static bool trans_WFE(DisasContext *s, arg_WFE *a)
8202 {
8203 gen_nop_hint(s, 2);
8204 return true;
8205 }
8206
8207 static bool trans_WFI(DisasContext *s, arg_WFI *a)
8208 {
8209 gen_nop_hint(s, 3);
8210 return true;
8211 }
8212
8213 static bool trans_NOP(DisasContext *s, arg_NOP *a)
8214 {
8215 return true;
8216 }
8217
8218 static bool trans_MSR_imm(DisasContext *s, arg_MSR_imm *a)
8219 {
8220 uint32_t val = ror32(a->imm, a->rot * 2);
8221 uint32_t mask = msr_mask(s, a->mask, a->r);
8222
8223 if (gen_set_psr_im(s, mask, a->r, val)) {
8224 unallocated_encoding(s);
8225 }
8226 return true;
8227 }
8228
8229 /*
8230 * Cyclic Redundancy Check
8231 */
8232
8233 static bool op_crc32(DisasContext *s, arg_rrr *a, bool c, MemOp sz)
8234 {
8235 TCGv_i32 t1, t2, t3;
8236
8237 if (!dc_isar_feature(aa32_crc32, s)) {
8238 return false;
8239 }
8240
8241 t1 = load_reg(s, a->rn);
8242 t2 = load_reg(s, a->rm);
8243 switch (sz) {
8244 case MO_8:
8245 gen_uxtb(t2);
8246 break;
8247 case MO_16:
8248 gen_uxth(t2);
8249 break;
8250 case MO_32:
8251 break;
8252 default:
8253 g_assert_not_reached();
8254 }
8255 t3 = tcg_const_i32(1 << sz);
8256 if (c) {
8257 gen_helper_crc32c(t1, t1, t2, t3);
8258 } else {
8259 gen_helper_crc32(t1, t1, t2, t3);
8260 }
8261 tcg_temp_free_i32(t2);
8262 tcg_temp_free_i32(t3);
8263 store_reg(s, a->rd, t1);
8264 return true;
8265 }
8266
8267 #define DO_CRC32(NAME, c, sz) \
8268 static bool trans_##NAME(DisasContext *s, arg_rrr *a) \
8269 { return op_crc32(s, a, c, sz); }
8270
8271 DO_CRC32(CRC32B, false, MO_8)
8272 DO_CRC32(CRC32H, false, MO_16)
8273 DO_CRC32(CRC32W, false, MO_32)
8274 DO_CRC32(CRC32CB, true, MO_8)
8275 DO_CRC32(CRC32CH, true, MO_16)
8276 DO_CRC32(CRC32CW, true, MO_32)
8277
8278 #undef DO_CRC32
8279
8280 /*
8281 * Miscellaneous instructions
8282 */
8283
8284 static bool trans_MRS_bank(DisasContext *s, arg_MRS_bank *a)
8285 {
8286 if (arm_dc_feature(s, ARM_FEATURE_M)) {
8287 return false;
8288 }
8289 gen_mrs_banked(s, a->r, a->sysm, a->rd);
8290 return true;
8291 }
8292
8293 static bool trans_MSR_bank(DisasContext *s, arg_MSR_bank *a)
8294 {
8295 if (arm_dc_feature(s, ARM_FEATURE_M)) {
8296 return false;
8297 }
8298 gen_msr_banked(s, a->r, a->sysm, a->rn);
8299 return true;
8300 }
8301
8302 static bool trans_MRS_reg(DisasContext *s, arg_MRS_reg *a)
8303 {
8304 TCGv_i32 tmp;
8305
8306 if (arm_dc_feature(s, ARM_FEATURE_M)) {
8307 return false;
8308 }
8309 if (a->r) {
8310 if (IS_USER(s)) {
8311 unallocated_encoding(s);
8312 return true;
8313 }
8314 tmp = load_cpu_field(spsr);
8315 } else {
8316 tmp = tcg_temp_new_i32();
8317 gen_helper_cpsr_read(tmp, cpu_env);
8318 }
8319 store_reg(s, a->rd, tmp);
8320 return true;
8321 }
8322
8323 static bool trans_MSR_reg(DisasContext *s, arg_MSR_reg *a)
8324 {
8325 TCGv_i32 tmp;
8326 uint32_t mask = msr_mask(s, a->mask, a->r);
8327
8328 if (arm_dc_feature(s, ARM_FEATURE_M)) {
8329 return false;
8330 }
8331 tmp = load_reg(s, a->rn);
8332 if (gen_set_psr(s, mask, a->r, tmp)) {
8333 unallocated_encoding(s);
8334 }
8335 return true;
8336 }
8337
8338 static bool trans_MRS_v7m(DisasContext *s, arg_MRS_v7m *a)
8339 {
8340 TCGv_i32 tmp;
8341
8342 if (!arm_dc_feature(s, ARM_FEATURE_M)) {
8343 return false;
8344 }
8345 tmp = tcg_const_i32(a->sysm);
8346 gen_helper_v7m_mrs(tmp, cpu_env, tmp);
8347 store_reg(s, a->rd, tmp);
8348 return true;
8349 }
8350
8351 static bool trans_MSR_v7m(DisasContext *s, arg_MSR_v7m *a)
8352 {
8353 TCGv_i32 addr, reg;
8354
8355 if (!arm_dc_feature(s, ARM_FEATURE_M)) {
8356 return false;
8357 }
8358 addr = tcg_const_i32((a->mask << 10) | a->sysm);
8359 reg = load_reg(s, a->rn);
8360 gen_helper_v7m_msr(cpu_env, addr, reg);
8361 tcg_temp_free_i32(addr);
8362 tcg_temp_free_i32(reg);
8363 gen_lookup_tb(s);
8364 return true;
8365 }
8366
8367 static bool trans_BX(DisasContext *s, arg_BX *a)
8368 {
8369 if (!ENABLE_ARCH_4T) {
8370 return false;
8371 }
8372 gen_bx_excret(s, load_reg(s, a->rm));
8373 return true;
8374 }
8375
8376 static bool trans_BXJ(DisasContext *s, arg_BXJ *a)
8377 {
8378 if (!ENABLE_ARCH_5J || arm_dc_feature(s, ARM_FEATURE_M)) {
8379 return false;
8380 }
8381 /* Trivial implementation equivalent to bx. */
8382 gen_bx(s, load_reg(s, a->rm));
8383 return true;
8384 }
8385
8386 static bool trans_BLX_r(DisasContext *s, arg_BLX_r *a)
8387 {
8388 TCGv_i32 tmp;
8389
8390 if (!ENABLE_ARCH_5) {
8391 return false;
8392 }
8393 tmp = load_reg(s, a->rm);
8394 tcg_gen_movi_i32(cpu_R[14], s->base.pc_next | s->thumb);
8395 gen_bx(s, tmp);
8396 return true;
8397 }
8398
8399 /*
8400 * BXNS/BLXNS: only exist for v8M with the security extensions,
8401 * and always UNDEF if NonSecure. We don't implement these in
8402 * the user-only mode either (in theory you can use them from
8403 * Secure User mode but they are too tied in to system emulation).
8404 */
8405 static bool trans_BXNS(DisasContext *s, arg_BXNS *a)
8406 {
8407 if (!s->v8m_secure || IS_USER_ONLY) {
8408 unallocated_encoding(s);
8409 } else {
8410 gen_bxns(s, a->rm);
8411 }
8412 return true;
8413 }
8414
8415 static bool trans_BLXNS(DisasContext *s, arg_BLXNS *a)
8416 {
8417 if (!s->v8m_secure || IS_USER_ONLY) {
8418 unallocated_encoding(s);
8419 } else {
8420 gen_blxns(s, a->rm);
8421 }
8422 return true;
8423 }
8424
8425 static bool trans_CLZ(DisasContext *s, arg_CLZ *a)
8426 {
8427 TCGv_i32 tmp;
8428
8429 if (!ENABLE_ARCH_5) {
8430 return false;
8431 }
8432 tmp = load_reg(s, a->rm);
8433 tcg_gen_clzi_i32(tmp, tmp, 32);
8434 store_reg(s, a->rd, tmp);
8435 return true;
8436 }
8437
8438 static bool trans_ERET(DisasContext *s, arg_ERET *a)
8439 {
8440 TCGv_i32 tmp;
8441
8442 if (!arm_dc_feature(s, ARM_FEATURE_V7VE)) {
8443 return false;
8444 }
8445 if (IS_USER(s)) {
8446 unallocated_encoding(s);
8447 return true;
8448 }
8449 if (s->current_el == 2) {
8450 /* ERET from Hyp uses ELR_Hyp, not LR */
8451 tmp = load_cpu_field(elr_el[2]);
8452 } else {
8453 tmp = load_reg(s, 14);
8454 }
8455 gen_exception_return(s, tmp);
8456 return true;
8457 }
8458
8459 static bool trans_HLT(DisasContext *s, arg_HLT *a)
8460 {
8461 gen_hlt(s, a->imm);
8462 return true;
8463 }
8464
8465 static bool trans_BKPT(DisasContext *s, arg_BKPT *a)
8466 {
8467 if (!ENABLE_ARCH_5) {
8468 return false;
8469 }
8470 gen_exception_bkpt_insn(s, syn_aa32_bkpt(a->imm, false));
8471 return true;
8472 }
8473
8474 static bool trans_HVC(DisasContext *s, arg_HVC *a)
8475 {
8476 if (!ENABLE_ARCH_7 || arm_dc_feature(s, ARM_FEATURE_M)) {
8477 return false;
8478 }
8479 if (IS_USER(s)) {
8480 unallocated_encoding(s);
8481 } else {
8482 gen_hvc(s, a->imm);
8483 }
8484 return true;
8485 }
8486
8487 static bool trans_SMC(DisasContext *s, arg_SMC *a)
8488 {
8489 if (!ENABLE_ARCH_6K || arm_dc_feature(s, ARM_FEATURE_M)) {
8490 return false;
8491 }
8492 if (IS_USER(s)) {
8493 unallocated_encoding(s);
8494 } else {
8495 gen_smc(s);
8496 }
8497 return true;
8498 }
8499
8500 static bool trans_SG(DisasContext *s, arg_SG *a)
8501 {
8502 if (!arm_dc_feature(s, ARM_FEATURE_M) ||
8503 !arm_dc_feature(s, ARM_FEATURE_V8)) {
8504 return false;
8505 }
8506 /*
8507 * SG (v8M only)
8508 * The bulk of the behaviour for this instruction is implemented
8509 * in v7m_handle_execute_nsc(), which deals with the insn when
8510 * it is executed by a CPU in non-secure state from memory
8511 * which is Secure & NonSecure-Callable.
8512 * Here we only need to handle the remaining cases:
8513 * * in NS memory (including the "security extension not
8514 * implemented" case) : NOP
8515 * * in S memory but CPU already secure (clear IT bits)
8516 * We know that the attribute for the memory this insn is
8517 * in must match the current CPU state, because otherwise
8518 * get_phys_addr_pmsav8 would have generated an exception.
8519 */
8520 if (s->v8m_secure) {
8521 /* Like the IT insn, we don't need to generate any code */
8522 s->condexec_cond = 0;
8523 s->condexec_mask = 0;
8524 }
8525 return true;
8526 }
8527
8528 static bool trans_TT(DisasContext *s, arg_TT *a)
8529 {
8530 TCGv_i32 addr, tmp;
8531
8532 if (!arm_dc_feature(s, ARM_FEATURE_M) ||
8533 !arm_dc_feature(s, ARM_FEATURE_V8)) {
8534 return false;
8535 }
8536 if (a->rd == 13 || a->rd == 15 || a->rn == 15) {
8537 /* We UNDEF for these UNPREDICTABLE cases */
8538 unallocated_encoding(s);
8539 return true;
8540 }
8541 if (a->A && !s->v8m_secure) {
8542 /* This case is UNDEFINED. */
8543 unallocated_encoding(s);
8544 return true;
8545 }
8546
8547 addr = load_reg(s, a->rn);
8548 tmp = tcg_const_i32((a->A << 1) | a->T);
8549 gen_helper_v7m_tt(tmp, cpu_env, addr, tmp);
8550 tcg_temp_free_i32(addr);
8551 store_reg(s, a->rd, tmp);
8552 return true;
8553 }
8554
8555 /*
8556 * Load/store register index
8557 */
8558
8559 static ISSInfo make_issinfo(DisasContext *s, int rd, bool p, bool w)
8560 {
8561 ISSInfo ret;
8562
8563 /* ISS not valid if writeback */
8564 if (p && !w) {
8565 ret = rd;
8566 } else {
8567 ret = ISSInvalid;
8568 }
8569 return ret;
8570 }
8571
8572 static TCGv_i32 op_addr_rr_pre(DisasContext *s, arg_ldst_rr *a)
8573 {
8574 TCGv_i32 addr = load_reg(s, a->rn);
8575
8576 if (s->v8m_stackcheck && a->rn == 13 && a->w) {
8577 gen_helper_v8m_stackcheck(cpu_env, addr);
8578 }
8579
8580 if (a->p) {
8581 TCGv_i32 ofs = load_reg(s, a->rm);
8582 gen_arm_shift_im(ofs, a->shtype, a->shimm, 0);
8583 if (a->u) {
8584 tcg_gen_add_i32(addr, addr, ofs);
8585 } else {
8586 tcg_gen_sub_i32(addr, addr, ofs);
8587 }
8588 tcg_temp_free_i32(ofs);
8589 }
8590 return addr;
8591 }
8592
8593 static void op_addr_rr_post(DisasContext *s, arg_ldst_rr *a,
8594 TCGv_i32 addr, int address_offset)
8595 {
8596 if (!a->p) {
8597 TCGv_i32 ofs = load_reg(s, a->rm);
8598 gen_arm_shift_im(ofs, a->shtype, a->shimm, 0);
8599 if (a->u) {
8600 tcg_gen_add_i32(addr, addr, ofs);
8601 } else {
8602 tcg_gen_sub_i32(addr, addr, ofs);
8603 }
8604 tcg_temp_free_i32(ofs);
8605 } else if (!a->w) {
8606 tcg_temp_free_i32(addr);
8607 return;
8608 }
8609 tcg_gen_addi_i32(addr, addr, address_offset);
8610 store_reg(s, a->rn, addr);
8611 }
8612
8613 static bool op_load_rr(DisasContext *s, arg_ldst_rr *a,
8614 MemOp mop, int mem_idx)
8615 {
8616 ISSInfo issinfo = make_issinfo(s, a->rt, a->p, a->w);
8617 TCGv_i32 addr, tmp;
8618
8619 addr = op_addr_rr_pre(s, a);
8620
8621 tmp = tcg_temp_new_i32();
8622 gen_aa32_ld_i32(s, tmp, addr, mem_idx, mop | s->be_data);
8623 disas_set_da_iss(s, mop, issinfo);
8624
8625 /*
8626 * Perform base writeback before the loaded value to
8627 * ensure correct behavior with overlapping index registers.
8628 */
8629 op_addr_rr_post(s, a, addr, 0);
8630 store_reg_from_load(s, a->rt, tmp);
8631 return true;
8632 }
8633
8634 static bool op_store_rr(DisasContext *s, arg_ldst_rr *a,
8635 MemOp mop, int mem_idx)
8636 {
8637 ISSInfo issinfo = make_issinfo(s, a->rt, a->p, a->w) | ISSIsWrite;
8638 TCGv_i32 addr, tmp;
8639
8640 addr = op_addr_rr_pre(s, a);
8641
8642 tmp = load_reg(s, a->rt);
8643 gen_aa32_st_i32(s, tmp, addr, mem_idx, mop | s->be_data);
8644 disas_set_da_iss(s, mop, issinfo);
8645 tcg_temp_free_i32(tmp);
8646
8647 op_addr_rr_post(s, a, addr, 0);
8648 return true;
8649 }
8650
8651 static bool trans_LDRD_rr(DisasContext *s, arg_ldst_rr *a)
8652 {
8653 int mem_idx = get_mem_index(s);
8654 TCGv_i32 addr, tmp;
8655
8656 if (!ENABLE_ARCH_5TE) {
8657 return false;
8658 }
8659 if (a->rt & 1) {
8660 unallocated_encoding(s);
8661 return true;
8662 }
8663 addr = op_addr_rr_pre(s, a);
8664
8665 tmp = tcg_temp_new_i32();
8666 gen_aa32_ld_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8667 store_reg(s, a->rt, tmp);
8668
8669 tcg_gen_addi_i32(addr, addr, 4);
8670
8671 tmp = tcg_temp_new_i32();
8672 gen_aa32_ld_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8673 store_reg(s, a->rt + 1, tmp);
8674
8675 /* LDRD w/ base writeback is undefined if the registers overlap. */
8676 op_addr_rr_post(s, a, addr, -4);
8677 return true;
8678 }
8679
8680 static bool trans_STRD_rr(DisasContext *s, arg_ldst_rr *a)
8681 {
8682 int mem_idx = get_mem_index(s);
8683 TCGv_i32 addr, tmp;
8684
8685 if (!ENABLE_ARCH_5TE) {
8686 return false;
8687 }
8688 if (a->rt & 1) {
8689 unallocated_encoding(s);
8690 return true;
8691 }
8692 addr = op_addr_rr_pre(s, a);
8693
8694 tmp = load_reg(s, a->rt);
8695 gen_aa32_st_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8696 tcg_temp_free_i32(tmp);
8697
8698 tcg_gen_addi_i32(addr, addr, 4);
8699
8700 tmp = load_reg(s, a->rt + 1);
8701 gen_aa32_st_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8702 tcg_temp_free_i32(tmp);
8703
8704 op_addr_rr_post(s, a, addr, -4);
8705 return true;
8706 }
8707
8708 /*
8709 * Load/store immediate index
8710 */
8711
8712 static TCGv_i32 op_addr_ri_pre(DisasContext *s, arg_ldst_ri *a)
8713 {
8714 int ofs = a->imm;
8715
8716 if (!a->u) {
8717 ofs = -ofs;
8718 }
8719
8720 if (s->v8m_stackcheck && a->rn == 13 && a->w) {
8721 /*
8722 * Stackcheck. Here we know 'addr' is the current SP;
8723 * U is set if we're moving SP up, else down. It is
8724 * UNKNOWN whether the limit check triggers when SP starts
8725 * below the limit and ends up above it; we chose to do so.
8726 */
8727 if (!a->u) {
8728 TCGv_i32 newsp = tcg_temp_new_i32();
8729 tcg_gen_addi_i32(newsp, cpu_R[13], ofs);
8730 gen_helper_v8m_stackcheck(cpu_env, newsp);
8731 tcg_temp_free_i32(newsp);
8732 } else {
8733 gen_helper_v8m_stackcheck(cpu_env, cpu_R[13]);
8734 }
8735 }
8736
8737 return add_reg_for_lit(s, a->rn, a->p ? ofs : 0);
8738 }
8739
8740 static void op_addr_ri_post(DisasContext *s, arg_ldst_ri *a,
8741 TCGv_i32 addr, int address_offset)
8742 {
8743 if (!a->p) {
8744 if (a->u) {
8745 address_offset += a->imm;
8746 } else {
8747 address_offset -= a->imm;
8748 }
8749 } else if (!a->w) {
8750 tcg_temp_free_i32(addr);
8751 return;
8752 }
8753 tcg_gen_addi_i32(addr, addr, address_offset);
8754 store_reg(s, a->rn, addr);
8755 }
8756
8757 static bool op_load_ri(DisasContext *s, arg_ldst_ri *a,
8758 MemOp mop, int mem_idx)
8759 {
8760 ISSInfo issinfo = make_issinfo(s, a->rt, a->p, a->w);
8761 TCGv_i32 addr, tmp;
8762
8763 addr = op_addr_ri_pre(s, a);
8764
8765 tmp = tcg_temp_new_i32();
8766 gen_aa32_ld_i32(s, tmp, addr, mem_idx, mop | s->be_data);
8767 disas_set_da_iss(s, mop, issinfo);
8768
8769 /*
8770 * Perform base writeback before the loaded value to
8771 * ensure correct behavior with overlapping index registers.
8772 */
8773 op_addr_ri_post(s, a, addr, 0);
8774 store_reg_from_load(s, a->rt, tmp);
8775 return true;
8776 }
8777
8778 static bool op_store_ri(DisasContext *s, arg_ldst_ri *a,
8779 MemOp mop, int mem_idx)
8780 {
8781 ISSInfo issinfo = make_issinfo(s, a->rt, a->p, a->w) | ISSIsWrite;
8782 TCGv_i32 addr, tmp;
8783
8784 addr = op_addr_ri_pre(s, a);
8785
8786 tmp = load_reg(s, a->rt);
8787 gen_aa32_st_i32(s, tmp, addr, mem_idx, mop | s->be_data);
8788 disas_set_da_iss(s, mop, issinfo);
8789 tcg_temp_free_i32(tmp);
8790
8791 op_addr_ri_post(s, a, addr, 0);
8792 return true;
8793 }
8794
8795 static bool op_ldrd_ri(DisasContext *s, arg_ldst_ri *a, int rt2)
8796 {
8797 int mem_idx = get_mem_index(s);
8798 TCGv_i32 addr, tmp;
8799
8800 addr = op_addr_ri_pre(s, a);
8801
8802 tmp = tcg_temp_new_i32();
8803 gen_aa32_ld_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8804 store_reg(s, a->rt, tmp);
8805
8806 tcg_gen_addi_i32(addr, addr, 4);
8807
8808 tmp = tcg_temp_new_i32();
8809 gen_aa32_ld_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8810 store_reg(s, rt2, tmp);
8811
8812 /* LDRD w/ base writeback is undefined if the registers overlap. */
8813 op_addr_ri_post(s, a, addr, -4);
8814 return true;
8815 }
8816
8817 static bool trans_LDRD_ri_a32(DisasContext *s, arg_ldst_ri *a)
8818 {
8819 if (!ENABLE_ARCH_5TE || (a->rt & 1)) {
8820 return false;
8821 }
8822 return op_ldrd_ri(s, a, a->rt + 1);
8823 }
8824
8825 static bool trans_LDRD_ri_t32(DisasContext *s, arg_ldst_ri2 *a)
8826 {
8827 arg_ldst_ri b = {
8828 .u = a->u, .w = a->w, .p = a->p,
8829 .rn = a->rn, .rt = a->rt, .imm = a->imm
8830 };
8831 return op_ldrd_ri(s, &b, a->rt2);
8832 }
8833
8834 static bool op_strd_ri(DisasContext *s, arg_ldst_ri *a, int rt2)
8835 {
8836 int mem_idx = get_mem_index(s);
8837 TCGv_i32 addr, tmp;
8838
8839 addr = op_addr_ri_pre(s, a);
8840
8841 tmp = load_reg(s, a->rt);
8842 gen_aa32_st_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8843 tcg_temp_free_i32(tmp);
8844
8845 tcg_gen_addi_i32(addr, addr, 4);
8846
8847 tmp = load_reg(s, rt2);
8848 gen_aa32_st_i32(s, tmp, addr, mem_idx, MO_UL | s->be_data);
8849 tcg_temp_free_i32(tmp);
8850
8851 op_addr_ri_post(s, a, addr, -4);
8852 return true;
8853 }
8854
8855 static bool trans_STRD_ri_a32(DisasContext *s, arg_ldst_ri *a)
8856 {
8857 if (!ENABLE_ARCH_5TE || (a->rt & 1)) {
8858 return false;
8859 }
8860 return op_strd_ri(s, a, a->rt + 1);
8861 }
8862
8863 static bool trans_STRD_ri_t32(DisasContext *s, arg_ldst_ri2 *a)
8864 {
8865 arg_ldst_ri b = {
8866 .u = a->u, .w = a->w, .p = a->p,
8867 .rn = a->rn, .rt = a->rt, .imm = a->imm
8868 };
8869 return op_strd_ri(s, &b, a->rt2);
8870 }
8871
8872 #define DO_LDST(NAME, WHICH, MEMOP) \
8873 static bool trans_##NAME##_ri(DisasContext *s, arg_ldst_ri *a) \
8874 { \
8875 return op_##WHICH##_ri(s, a, MEMOP, get_mem_index(s)); \
8876 } \
8877 static bool trans_##NAME##T_ri(DisasContext *s, arg_ldst_ri *a) \
8878 { \
8879 return op_##WHICH##_ri(s, a, MEMOP, get_a32_user_mem_index(s)); \
8880 } \
8881 static bool trans_##NAME##_rr(DisasContext *s, arg_ldst_rr *a) \
8882 { \
8883 return op_##WHICH##_rr(s, a, MEMOP, get_mem_index(s)); \
8884 } \
8885 static bool trans_##NAME##T_rr(DisasContext *s, arg_ldst_rr *a) \
8886 { \
8887 return op_##WHICH##_rr(s, a, MEMOP, get_a32_user_mem_index(s)); \
8888 }
8889
8890 DO_LDST(LDR, load, MO_UL)
8891 DO_LDST(LDRB, load, MO_UB)
8892 DO_LDST(LDRH, load, MO_UW)
8893 DO_LDST(LDRSB, load, MO_SB)
8894 DO_LDST(LDRSH, load, MO_SW)
8895
8896 DO_LDST(STR, store, MO_UL)
8897 DO_LDST(STRB, store, MO_UB)
8898 DO_LDST(STRH, store, MO_UW)
8899
8900 #undef DO_LDST
8901
8902 /*
8903 * Synchronization primitives
8904 */
8905
8906 static bool op_swp(DisasContext *s, arg_SWP *a, MemOp opc)
8907 {
8908 TCGv_i32 addr, tmp;
8909 TCGv taddr;
8910
8911 opc |= s->be_data;
8912 addr = load_reg(s, a->rn);
8913 taddr = gen_aa32_addr(s, addr, opc);
8914 tcg_temp_free_i32(addr);
8915
8916 tmp = load_reg(s, a->rt2);
8917 tcg_gen_atomic_xchg_i32(tmp, taddr, tmp, get_mem_index(s), opc);
8918 tcg_temp_free(taddr);
8919
8920 store_reg(s, a->rt, tmp);
8921 return true;
8922 }
8923
8924 static bool trans_SWP(DisasContext *s, arg_SWP *a)
8925 {
8926 return op_swp(s, a, MO_UL | MO_ALIGN);
8927 }
8928
8929 static bool trans_SWPB(DisasContext *s, arg_SWP *a)
8930 {
8931 return op_swp(s, a, MO_UB);
8932 }
8933
8934 /*
8935 * Load/Store Exclusive and Load-Acquire/Store-Release
8936 */
8937
8938 static bool op_strex(DisasContext *s, arg_STREX *a, MemOp mop, bool rel)
8939 {
8940 TCGv_i32 addr;
8941
8942 /* We UNDEF for these UNPREDICTABLE cases. */
8943 if (a->rd == 15 || a->rn == 15 || a->rt == 15
8944 || a->rd == a->rn || a->rd == a->rt
8945 || (s->thumb && (a->rd == 13 || a->rt == 13))
8946 || (mop == MO_64
8947 && (a->rt2 == 15
8948 || a->rd == a->rt2 || a->rt == a->rt2
8949 || (s->thumb && a->rt2 == 13)))) {
8950 unallocated_encoding(s);
8951 return true;
8952 }
8953
8954 if (rel) {
8955 tcg_gen_mb(TCG_MO_ALL | TCG_BAR_STRL);
8956 }
8957
8958 addr = tcg_temp_local_new_i32();
8959 load_reg_var(s, addr, a->rn);
8960 tcg_gen_addi_i32(addr, addr, a->imm);
8961
8962 gen_store_exclusive(s, a->rd, a->rt, a->rt2, addr, mop);
8963 tcg_temp_free_i32(addr);
8964 return true;
8965 }
8966
8967 static bool trans_STREX(DisasContext *s, arg_STREX *a)
8968 {
8969 if (!ENABLE_ARCH_6) {
8970 return false;
8971 }
8972 return op_strex(s, a, MO_32, false);
8973 }
8974
8975 static bool trans_STREXD_a32(DisasContext *s, arg_STREX *a)
8976 {
8977 if (!ENABLE_ARCH_6K) {
8978 return false;
8979 }
8980 /* We UNDEF for these UNPREDICTABLE cases. */
8981 if (a->rt & 1) {
8982 unallocated_encoding(s);
8983 return true;
8984 }
8985 a->rt2 = a->rt + 1;
8986 return op_strex(s, a, MO_64, false);
8987 }
8988
8989 static bool trans_STREXD_t32(DisasContext *s, arg_STREX *a)
8990 {
8991 return op_strex(s, a, MO_64, false);
8992 }
8993
8994 static bool trans_STREXB(DisasContext *s, arg_STREX *a)
8995 {
8996 if (s->thumb ? !ENABLE_ARCH_7 : !ENABLE_ARCH_6K) {
8997 return false;
8998 }
8999 return op_strex(s, a, MO_8, false);
9000 }
9001
9002 static bool trans_STREXH(DisasContext *s, arg_STREX *a)
9003 {
9004 if (s->thumb ? !ENABLE_ARCH_7 : !ENABLE_ARCH_6K) {
9005 return false;
9006 }
9007 return op_strex(s, a, MO_16, false);
9008 }
9009
9010 static bool trans_STLEX(DisasContext *s, arg_STREX *a)
9011 {
9012 if (!ENABLE_ARCH_8) {
9013 return false;
9014 }
9015 return op_strex(s, a, MO_32, true);
9016 }
9017
9018 static bool trans_STLEXD_a32(DisasContext *s, arg_STREX *a)
9019 {
9020 if (!ENABLE_ARCH_8) {
9021 return false;
9022 }
9023 /* We UNDEF for these UNPREDICTABLE cases. */
9024 if (a->rt & 1) {
9025 unallocated_encoding(s);
9026 return true;
9027 }
9028 a->rt2 = a->rt + 1;
9029 return op_strex(s, a, MO_64, true);
9030 }
9031
9032 static bool trans_STLEXD_t32(DisasContext *s, arg_STREX *a)
9033 {
9034 if (!ENABLE_ARCH_8) {
9035 return false;
9036 }
9037 return op_strex(s, a, MO_64, true);
9038 }
9039
9040 static bool trans_STLEXB(DisasContext *s, arg_STREX *a)
9041 {
9042 if (!ENABLE_ARCH_8) {
9043 return false;
9044 }
9045 return op_strex(s, a, MO_8, true);
9046 }
9047
9048 static bool trans_STLEXH(DisasContext *s, arg_STREX *a)
9049 {
9050 if (!ENABLE_ARCH_8) {
9051 return false;
9052 }
9053 return op_strex(s, a, MO_16, true);
9054 }
9055
9056 static bool op_stl(DisasContext *s, arg_STL *a, MemOp mop)
9057 {
9058 TCGv_i32 addr, tmp;
9059
9060 if (!ENABLE_ARCH_8) {
9061 return false;
9062 }
9063 /* We UNDEF for these UNPREDICTABLE cases. */
9064 if (a->rn == 15 || a->rt == 15) {
9065 unallocated_encoding(s);
9066 return true;
9067 }
9068
9069 addr = load_reg(s, a->rn);
9070 tmp = load_reg(s, a->rt);
9071 tcg_gen_mb(TCG_MO_ALL | TCG_BAR_STRL);
9072 gen_aa32_st_i32(s, tmp, addr, get_mem_index(s), mop | s->be_data);
9073 disas_set_da_iss(s, mop, a->rt | ISSIsAcqRel | ISSIsWrite);
9074
9075 tcg_temp_free_i32(tmp);
9076 tcg_temp_free_i32(addr);
9077 return true;
9078 }
9079
9080 static bool trans_STL(DisasContext *s, arg_STL *a)
9081 {
9082 return op_stl(s, a, MO_UL);
9083 }
9084
9085 static bool trans_STLB(DisasContext *s, arg_STL *a)
9086 {
9087 return op_stl(s, a, MO_UB);
9088 }
9089
9090 static bool trans_STLH(DisasContext *s, arg_STL *a)
9091 {
9092 return op_stl(s, a, MO_UW);
9093 }
9094
9095 static bool op_ldrex(DisasContext *s, arg_LDREX *a, MemOp mop, bool acq)
9096 {
9097 TCGv_i32 addr;
9098
9099 /* We UNDEF for these UNPREDICTABLE cases. */
9100 if (a->rn == 15 || a->rt == 15
9101 || (s->thumb && a->rt == 13)
9102 || (mop == MO_64
9103 && (a->rt2 == 15 || a->rt == a->rt2
9104 || (s->thumb && a->rt2 == 13)))) {
9105 unallocated_encoding(s);
9106 return true;
9107 }
9108
9109 addr = tcg_temp_local_new_i32();
9110 load_reg_var(s, addr, a->rn);
9111 tcg_gen_addi_i32(addr, addr, a->imm);
9112
9113 gen_load_exclusive(s, a->rt, a->rt2, addr, mop);
9114 tcg_temp_free_i32(addr);
9115
9116 if (acq) {
9117 tcg_gen_mb(TCG_MO_ALL | TCG_BAR_LDAQ);
9118 }
9119 return true;
9120 }
9121
9122 static bool trans_LDREX(DisasContext *s, arg_LDREX *a)
9123 {
9124 if (!ENABLE_ARCH_6) {
9125 return false;
9126 }
9127 return op_ldrex(s, a, MO_32, false);
9128 }
9129
9130 static bool trans_LDREXD_a32(DisasContext *s, arg_LDREX *a)
9131 {
9132 if (!ENABLE_ARCH_6K) {
9133 return false;
9134 }
9135 /* We UNDEF for these UNPREDICTABLE cases. */
9136 if (a->rt & 1) {
9137 unallocated_encoding(s);
9138 return true;
9139 }
9140 a->rt2 = a->rt + 1;
9141 return op_ldrex(s, a, MO_64, false);
9142 }
9143
9144 static bool trans_LDREXD_t32(DisasContext *s, arg_LDREX *a)
9145 {
9146 return op_ldrex(s, a, MO_64, false);
9147 }
9148
9149 static bool trans_LDREXB(DisasContext *s, arg_LDREX *a)
9150 {
9151 if (s->thumb ? !ENABLE_ARCH_7 : !ENABLE_ARCH_6K) {
9152 return false;
9153 }
9154 return op_ldrex(s, a, MO_8, false);
9155 }
9156
9157 static bool trans_LDREXH(DisasContext *s, arg_LDREX *a)
9158 {
9159 if (s->thumb ? !ENABLE_ARCH_7 : !ENABLE_ARCH_6K) {
9160 return false;
9161 }
9162 return op_ldrex(s, a, MO_16, false);
9163 }
9164
9165 static bool trans_LDAEX(DisasContext *s, arg_LDREX *a)
9166 {
9167 if (!ENABLE_ARCH_8) {
9168 return false;
9169 }
9170 return op_ldrex(s, a, MO_32, true);
9171 }
9172
9173 static bool trans_LDAEXD_a32(DisasContext *s, arg_LDREX *a)
9174 {
9175 if (!ENABLE_ARCH_8) {
9176 return false;
9177 }
9178 /* We UNDEF for these UNPREDICTABLE cases. */
9179 if (a->rt & 1) {
9180 unallocated_encoding(s);
9181 return true;
9182 }
9183 a->rt2 = a->rt + 1;
9184 return op_ldrex(s, a, MO_64, true);
9185 }
9186
9187 static bool trans_LDAEXD_t32(DisasContext *s, arg_LDREX *a)
9188 {
9189 if (!ENABLE_ARCH_8) {
9190 return false;
9191 }
9192 return op_ldrex(s, a, MO_64, true);
9193 }
9194
9195 static bool trans_LDAEXB(DisasContext *s, arg_LDREX *a)
9196 {
9197 if (!ENABLE_ARCH_8) {
9198 return false;
9199 }
9200 return op_ldrex(s, a, MO_8, true);
9201 }
9202
9203 static bool trans_LDAEXH(DisasContext *s, arg_LDREX *a)
9204 {
9205 if (!ENABLE_ARCH_8) {
9206 return false;
9207 }
9208 return op_ldrex(s, a, MO_16, true);
9209 }
9210
9211 static bool op_lda(DisasContext *s, arg_LDA *a, MemOp mop)
9212 {
9213 TCGv_i32 addr, tmp;
9214
9215 if (!ENABLE_ARCH_8) {
9216 return false;
9217 }
9218 /* We UNDEF for these UNPREDICTABLE cases. */
9219 if (a->rn == 15 || a->rt == 15) {
9220 unallocated_encoding(s);
9221 return true;
9222 }
9223
9224 addr = load_reg(s, a->rn);
9225 tmp = tcg_temp_new_i32();
9226 gen_aa32_ld_i32(s, tmp, addr, get_mem_index(s), mop | s->be_data);
9227 disas_set_da_iss(s, mop, a->rt | ISSIsAcqRel);
9228 tcg_temp_free_i32(addr);
9229
9230 store_reg(s, a->rt, tmp);
9231 tcg_gen_mb(TCG_MO_ALL | TCG_BAR_STRL);
9232 return true;
9233 }
9234
9235 static bool trans_LDA(DisasContext *s, arg_LDA *a)
9236 {
9237 return op_lda(s, a, MO_UL);
9238 }
9239
9240 static bool trans_LDAB(DisasContext *s, arg_LDA *a)
9241 {
9242 return op_lda(s, a, MO_UB);
9243 }
9244
9245 static bool trans_LDAH(DisasContext *s, arg_LDA *a)
9246 {
9247 return op_lda(s, a, MO_UW);
9248 }
9249
9250 /*
9251 * Media instructions
9252 */
9253
9254 static bool trans_USADA8(DisasContext *s, arg_USADA8 *a)
9255 {
9256 TCGv_i32 t1, t2;
9257
9258 if (!ENABLE_ARCH_6) {
9259 return false;
9260 }
9261
9262 t1 = load_reg(s, a->rn);
9263 t2 = load_reg(s, a->rm);
9264 gen_helper_usad8(t1, t1, t2);
9265 tcg_temp_free_i32(t2);
9266 if (a->ra != 15) {
9267 t2 = load_reg(s, a->ra);
9268 tcg_gen_add_i32(t1, t1, t2);
9269 tcg_temp_free_i32(t2);
9270 }
9271 store_reg(s, a->rd, t1);
9272 return true;
9273 }
9274
9275 static bool op_bfx(DisasContext *s, arg_UBFX *a, bool u)
9276 {
9277 TCGv_i32 tmp;
9278 int width = a->widthm1 + 1;
9279 int shift = a->lsb;
9280
9281 if (!ENABLE_ARCH_6T2) {
9282 return false;
9283 }
9284 if (shift + width > 32) {
9285 /* UNPREDICTABLE; we choose to UNDEF */
9286 unallocated_encoding(s);
9287 return true;
9288 }
9289
9290 tmp = load_reg(s, a->rn);
9291 if (u) {
9292 tcg_gen_extract_i32(tmp, tmp, shift, width);
9293 } else {
9294 tcg_gen_sextract_i32(tmp, tmp, shift, width);
9295 }
9296 store_reg(s, a->rd, tmp);
9297 return true;
9298 }
9299
9300 static bool trans_SBFX(DisasContext *s, arg_SBFX *a)
9301 {
9302 return op_bfx(s, a, false);
9303 }
9304
9305 static bool trans_UBFX(DisasContext *s, arg_UBFX *a)
9306 {
9307 return op_bfx(s, a, true);
9308 }
9309
9310 static bool trans_BFCI(DisasContext *s, arg_BFCI *a)
9311 {
9312 TCGv_i32 tmp;
9313 int msb = a->msb, lsb = a->lsb;
9314 int width;
9315
9316 if (!ENABLE_ARCH_6T2) {
9317 return false;
9318 }
9319 if (msb < lsb) {
9320 /* UNPREDICTABLE; we choose to UNDEF */
9321 unallocated_encoding(s);
9322 return true;
9323 }
9324
9325 width = msb + 1 - lsb;
9326 if (a->rn == 15) {
9327 /* BFC */
9328 tmp = tcg_const_i32(0);
9329 } else {
9330 /* BFI */
9331 tmp = load_reg(s, a->rn);
9332 }
9333 if (width != 32) {
9334 TCGv_i32 tmp2 = load_reg(s, a->rd);
9335 tcg_gen_deposit_i32(tmp, tmp2, tmp, lsb, width);
9336 tcg_temp_free_i32(tmp2);
9337 }
9338 store_reg(s, a->rd, tmp);
9339 return true;
9340 }
9341
9342 static bool trans_UDF(DisasContext *s, arg_UDF *a)
9343 {
9344 unallocated_encoding(s);
9345 return true;
9346 }
9347
9348 /*
9349 * Parallel addition and subtraction
9350 */
9351
9352 static bool op_par_addsub(DisasContext *s, arg_rrr *a,
9353 void (*gen)(TCGv_i32, TCGv_i32, TCGv_i32))
9354 {
9355 TCGv_i32 t0, t1;
9356
9357 if (s->thumb
9358 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
9359 : !ENABLE_ARCH_6) {
9360 return false;
9361 }
9362
9363 t0 = load_reg(s, a->rn);
9364 t1 = load_reg(s, a->rm);
9365
9366 gen(t0, t0, t1);
9367
9368 tcg_temp_free_i32(t1);
9369 store_reg(s, a->rd, t0);
9370 return true;
9371 }
9372
9373 static bool op_par_addsub_ge(DisasContext *s, arg_rrr *a,
9374 void (*gen)(TCGv_i32, TCGv_i32,
9375 TCGv_i32, TCGv_ptr))
9376 {
9377 TCGv_i32 t0, t1;
9378 TCGv_ptr ge;
9379
9380 if (s->thumb
9381 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
9382 : !ENABLE_ARCH_6) {
9383 return false;
9384 }
9385
9386 t0 = load_reg(s, a->rn);
9387 t1 = load_reg(s, a->rm);
9388
9389 ge = tcg_temp_new_ptr();
9390 tcg_gen_addi_ptr(ge, cpu_env, offsetof(CPUARMState, GE));
9391 gen(t0, t0, t1, ge);
9392
9393 tcg_temp_free_ptr(ge);
9394 tcg_temp_free_i32(t1);
9395 store_reg(s, a->rd, t0);
9396 return true;
9397 }
9398
9399 #define DO_PAR_ADDSUB(NAME, helper) \
9400 static bool trans_##NAME(DisasContext *s, arg_rrr *a) \
9401 { \
9402 return op_par_addsub(s, a, helper); \
9403 }
9404
9405 #define DO_PAR_ADDSUB_GE(NAME, helper) \
9406 static bool trans_##NAME(DisasContext *s, arg_rrr *a) \
9407 { \
9408 return op_par_addsub_ge(s, a, helper); \
9409 }
9410
9411 DO_PAR_ADDSUB_GE(SADD16, gen_helper_sadd16)
9412 DO_PAR_ADDSUB_GE(SASX, gen_helper_saddsubx)
9413 DO_PAR_ADDSUB_GE(SSAX, gen_helper_ssubaddx)
9414 DO_PAR_ADDSUB_GE(SSUB16, gen_helper_ssub16)
9415 DO_PAR_ADDSUB_GE(SADD8, gen_helper_sadd8)
9416 DO_PAR_ADDSUB_GE(SSUB8, gen_helper_ssub8)
9417
9418 DO_PAR_ADDSUB_GE(UADD16, gen_helper_uadd16)
9419 DO_PAR_ADDSUB_GE(UASX, gen_helper_uaddsubx)
9420 DO_PAR_ADDSUB_GE(USAX, gen_helper_usubaddx)
9421 DO_PAR_ADDSUB_GE(USUB16, gen_helper_usub16)
9422 DO_PAR_ADDSUB_GE(UADD8, gen_helper_uadd8)
9423 DO_PAR_ADDSUB_GE(USUB8, gen_helper_usub8)
9424
9425 DO_PAR_ADDSUB(QADD16, gen_helper_qadd16)
9426 DO_PAR_ADDSUB(QASX, gen_helper_qaddsubx)
9427 DO_PAR_ADDSUB(QSAX, gen_helper_qsubaddx)
9428 DO_PAR_ADDSUB(QSUB16, gen_helper_qsub16)
9429 DO_PAR_ADDSUB(QADD8, gen_helper_qadd8)
9430 DO_PAR_ADDSUB(QSUB8, gen_helper_qsub8)
9431
9432 DO_PAR_ADDSUB(UQADD16, gen_helper_uqadd16)
9433 DO_PAR_ADDSUB(UQASX, gen_helper_uqaddsubx)
9434 DO_PAR_ADDSUB(UQSAX, gen_helper_uqsubaddx)
9435 DO_PAR_ADDSUB(UQSUB16, gen_helper_uqsub16)
9436 DO_PAR_ADDSUB(UQADD8, gen_helper_uqadd8)
9437 DO_PAR_ADDSUB(UQSUB8, gen_helper_uqsub8)
9438
9439 DO_PAR_ADDSUB(SHADD16, gen_helper_shadd16)
9440 DO_PAR_ADDSUB(SHASX, gen_helper_shaddsubx)
9441 DO_PAR_ADDSUB(SHSAX, gen_helper_shsubaddx)
9442 DO_PAR_ADDSUB(SHSUB16, gen_helper_shsub16)
9443 DO_PAR_ADDSUB(SHADD8, gen_helper_shadd8)
9444 DO_PAR_ADDSUB(SHSUB8, gen_helper_shsub8)
9445
9446 DO_PAR_ADDSUB(UHADD16, gen_helper_uhadd16)
9447 DO_PAR_ADDSUB(UHASX, gen_helper_uhaddsubx)
9448 DO_PAR_ADDSUB(UHSAX, gen_helper_uhsubaddx)
9449 DO_PAR_ADDSUB(UHSUB16, gen_helper_uhsub16)
9450 DO_PAR_ADDSUB(UHADD8, gen_helper_uhadd8)
9451 DO_PAR_ADDSUB(UHSUB8, gen_helper_uhsub8)
9452
9453 #undef DO_PAR_ADDSUB
9454 #undef DO_PAR_ADDSUB_GE
9455
9456 /*
9457 * Packing, unpacking, saturation, and reversal
9458 */
9459
9460 static bool trans_PKH(DisasContext *s, arg_PKH *a)
9461 {
9462 TCGv_i32 tn, tm;
9463 int shift = a->imm;
9464
9465 if (s->thumb
9466 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
9467 : !ENABLE_ARCH_6) {
9468 return false;
9469 }
9470
9471 tn = load_reg(s, a->rn);
9472 tm = load_reg(s, a->rm);
9473 if (a->tb) {
9474 /* PKHTB */
9475 if (shift == 0) {
9476 shift = 31;
9477 }
9478 tcg_gen_sari_i32(tm, tm, shift);
9479 tcg_gen_deposit_i32(tn, tn, tm, 0, 16);
9480 } else {
9481 /* PKHBT */
9482 tcg_gen_shli_i32(tm, tm, shift);
9483 tcg_gen_deposit_i32(tn, tm, tn, 0, 16);
9484 }
9485 tcg_temp_free_i32(tm);
9486 store_reg(s, a->rd, tn);
9487 return true;
9488 }
9489
9490 static bool op_sat(DisasContext *s, arg_sat *a,
9491 void (*gen)(TCGv_i32, TCGv_env, TCGv_i32, TCGv_i32))
9492 {
9493 TCGv_i32 tmp, satimm;
9494 int shift = a->imm;
9495
9496 if (!ENABLE_ARCH_6) {
9497 return false;
9498 }
9499
9500 tmp = load_reg(s, a->rn);
9501 if (a->sh) {
9502 tcg_gen_sari_i32(tmp, tmp, shift ? shift : 31);
9503 } else {
9504 tcg_gen_shli_i32(tmp, tmp, shift);
9505 }
9506
9507 satimm = tcg_const_i32(a->satimm);
9508 gen(tmp, cpu_env, tmp, satimm);
9509 tcg_temp_free_i32(satimm);
9510
9511 store_reg(s, a->rd, tmp);
9512 return true;
9513 }
9514
9515 static bool trans_SSAT(DisasContext *s, arg_sat *a)
9516 {
9517 return op_sat(s, a, gen_helper_ssat);
9518 }
9519
9520 static bool trans_USAT(DisasContext *s, arg_sat *a)
9521 {
9522 return op_sat(s, a, gen_helper_usat);
9523 }
9524
9525 static bool trans_SSAT16(DisasContext *s, arg_sat *a)
9526 {
9527 if (s->thumb && !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)) {
9528 return false;
9529 }
9530 return op_sat(s, a, gen_helper_ssat16);
9531 }
9532
9533 static bool trans_USAT16(DisasContext *s, arg_sat *a)
9534 {
9535 if (s->thumb && !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)) {
9536 return false;
9537 }
9538 return op_sat(s, a, gen_helper_usat16);
9539 }
9540
9541 static bool op_xta(DisasContext *s, arg_rrr_rot *a,
9542 void (*gen_extract)(TCGv_i32, TCGv_i32),
9543 void (*gen_add)(TCGv_i32, TCGv_i32, TCGv_i32))
9544 {
9545 TCGv_i32 tmp;
9546
9547 if (!ENABLE_ARCH_6) {
9548 return false;
9549 }
9550
9551 tmp = load_reg(s, a->rm);
9552 /*
9553 * TODO: In many cases we could do a shift instead of a rotate.
9554 * Combined with a simple extend, that becomes an extract.
9555 */
9556 tcg_gen_rotri_i32(tmp, tmp, a->rot * 8);
9557 gen_extract(tmp, tmp);
9558
9559 if (a->rn != 15) {
9560 TCGv_i32 tmp2 = load_reg(s, a->rn);
9561 gen_add(tmp, tmp, tmp2);
9562 tcg_temp_free_i32(tmp2);
9563 }
9564 store_reg(s, a->rd, tmp);
9565 return true;
9566 }
9567
9568 static bool trans_SXTAB(DisasContext *s, arg_rrr_rot *a)
9569 {
9570 return op_xta(s, a, tcg_gen_ext8s_i32, tcg_gen_add_i32);
9571 }
9572
9573 static bool trans_SXTAH(DisasContext *s, arg_rrr_rot *a)
9574 {
9575 return op_xta(s, a, tcg_gen_ext16s_i32, tcg_gen_add_i32);
9576 }
9577
9578 static bool trans_SXTAB16(DisasContext *s, arg_rrr_rot *a)
9579 {
9580 if (s->thumb && !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)) {
9581 return false;
9582 }
9583 return op_xta(s, a, gen_helper_sxtb16, gen_add16);
9584 }
9585
9586 static bool trans_UXTAB(DisasContext *s, arg_rrr_rot *a)
9587 {
9588 return op_xta(s, a, tcg_gen_ext8u_i32, tcg_gen_add_i32);
9589 }
9590
9591 static bool trans_UXTAH(DisasContext *s, arg_rrr_rot *a)
9592 {
9593 return op_xta(s, a, tcg_gen_ext16u_i32, tcg_gen_add_i32);
9594 }
9595
9596 static bool trans_UXTAB16(DisasContext *s, arg_rrr_rot *a)
9597 {
9598 if (s->thumb && !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)) {
9599 return false;
9600 }
9601 return op_xta(s, a, gen_helper_uxtb16, gen_add16);
9602 }
9603
9604 static bool trans_SEL(DisasContext *s, arg_rrr *a)
9605 {
9606 TCGv_i32 t1, t2, t3;
9607
9608 if (s->thumb
9609 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
9610 : !ENABLE_ARCH_6) {
9611 return false;
9612 }
9613
9614 t1 = load_reg(s, a->rn);
9615 t2 = load_reg(s, a->rm);
9616 t3 = tcg_temp_new_i32();
9617 tcg_gen_ld_i32(t3, cpu_env, offsetof(CPUARMState, GE));
9618 gen_helper_sel_flags(t1, t3, t1, t2);
9619 tcg_temp_free_i32(t3);
9620 tcg_temp_free_i32(t2);
9621 store_reg(s, a->rd, t1);
9622 return true;
9623 }
9624
9625 static bool op_rr(DisasContext *s, arg_rr *a,
9626 void (*gen)(TCGv_i32, TCGv_i32))
9627 {
9628 TCGv_i32 tmp;
9629
9630 tmp = load_reg(s, a->rm);
9631 gen(tmp, tmp);
9632 store_reg(s, a->rd, tmp);
9633 return true;
9634 }
9635
9636 static bool trans_REV(DisasContext *s, arg_rr *a)
9637 {
9638 if (!ENABLE_ARCH_6) {
9639 return false;
9640 }
9641 return op_rr(s, a, tcg_gen_bswap32_i32);
9642 }
9643
9644 static bool trans_REV16(DisasContext *s, arg_rr *a)
9645 {
9646 if (!ENABLE_ARCH_6) {
9647 return false;
9648 }
9649 return op_rr(s, a, gen_rev16);
9650 }
9651
9652 static bool trans_REVSH(DisasContext *s, arg_rr *a)
9653 {
9654 if (!ENABLE_ARCH_6) {
9655 return false;
9656 }
9657 return op_rr(s, a, gen_revsh);
9658 }
9659
9660 static bool trans_RBIT(DisasContext *s, arg_rr *a)
9661 {
9662 if (!ENABLE_ARCH_6T2) {
9663 return false;
9664 }
9665 return op_rr(s, a, gen_helper_rbit);
9666 }
9667
9668 /*
9669 * Signed multiply, signed and unsigned divide
9670 */
9671
9672 static bool op_smlad(DisasContext *s, arg_rrrr *a, bool m_swap, bool sub)
9673 {
9674 TCGv_i32 t1, t2;
9675
9676 if (!ENABLE_ARCH_6) {
9677 return false;
9678 }
9679
9680 t1 = load_reg(s, a->rn);
9681 t2 = load_reg(s, a->rm);
9682 if (m_swap) {
9683 gen_swap_half(t2);
9684 }
9685 gen_smul_dual(t1, t2);
9686
9687 if (sub) {
9688 /* This subtraction cannot overflow. */
9689 tcg_gen_sub_i32(t1, t1, t2);
9690 } else {
9691 /*
9692 * This addition cannot overflow 32 bits; however it may
9693 * overflow considered as a signed operation, in which case
9694 * we must set the Q flag.
9695 */
9696 gen_helper_add_setq(t1, cpu_env, t1, t2);
9697 }
9698 tcg_temp_free_i32(t2);
9699
9700 if (a->ra != 15) {
9701 t2 = load_reg(s, a->ra);
9702 gen_helper_add_setq(t1, cpu_env, t1, t2);
9703 tcg_temp_free_i32(t2);
9704 }
9705 store_reg(s, a->rd, t1);
9706 return true;
9707 }
9708
9709 static bool trans_SMLAD(DisasContext *s, arg_rrrr *a)
9710 {
9711 return op_smlad(s, a, false, false);
9712 }
9713
9714 static bool trans_SMLADX(DisasContext *s, arg_rrrr *a)
9715 {
9716 return op_smlad(s, a, true, false);
9717 }
9718
9719 static bool trans_SMLSD(DisasContext *s, arg_rrrr *a)
9720 {
9721 return op_smlad(s, a, false, true);
9722 }
9723
9724 static bool trans_SMLSDX(DisasContext *s, arg_rrrr *a)
9725 {
9726 return op_smlad(s, a, true, true);
9727 }
9728
9729 static bool op_smlald(DisasContext *s, arg_rrrr *a, bool m_swap, bool sub)
9730 {
9731 TCGv_i32 t1, t2;
9732 TCGv_i64 l1, l2;
9733
9734 if (!ENABLE_ARCH_6) {
9735 return false;
9736 }
9737
9738 t1 = load_reg(s, a->rn);
9739 t2 = load_reg(s, a->rm);
9740 if (m_swap) {
9741 gen_swap_half(t2);
9742 }
9743 gen_smul_dual(t1, t2);
9744
9745 l1 = tcg_temp_new_i64();
9746 l2 = tcg_temp_new_i64();
9747 tcg_gen_ext_i32_i64(l1, t1);
9748 tcg_gen_ext_i32_i64(l2, t2);
9749 tcg_temp_free_i32(t1);
9750 tcg_temp_free_i32(t2);
9751
9752 if (sub) {
9753 tcg_gen_sub_i64(l1, l1, l2);
9754 } else {
9755 tcg_gen_add_i64(l1, l1, l2);
9756 }
9757 tcg_temp_free_i64(l2);
9758
9759 gen_addq(s, l1, a->ra, a->rd);
9760 gen_storeq_reg(s, a->ra, a->rd, l1);
9761 tcg_temp_free_i64(l1);
9762 return true;
9763 }
9764
9765 static bool trans_SMLALD(DisasContext *s, arg_rrrr *a)
9766 {
9767 return op_smlald(s, a, false, false);
9768 }
9769
9770 static bool trans_SMLALDX(DisasContext *s, arg_rrrr *a)
9771 {
9772 return op_smlald(s, a, true, false);
9773 }
9774
9775 static bool trans_SMLSLD(DisasContext *s, arg_rrrr *a)
9776 {
9777 return op_smlald(s, a, false, true);
9778 }
9779
9780 static bool trans_SMLSLDX(DisasContext *s, arg_rrrr *a)
9781 {
9782 return op_smlald(s, a, true, true);
9783 }
9784
9785 static bool op_smmla(DisasContext *s, arg_rrrr *a, bool round, bool sub)
9786 {
9787 TCGv_i32 t1, t2;
9788
9789 if (s->thumb
9790 ? !arm_dc_feature(s, ARM_FEATURE_THUMB_DSP)
9791 : !ENABLE_ARCH_6) {
9792 return false;
9793 }
9794
9795 t1 = load_reg(s, a->rn);
9796 t2 = load_reg(s, a->rm);
9797 tcg_gen_muls2_i32(t2, t1, t1, t2);
9798
9799 if (a->ra != 15) {
9800 TCGv_i32 t3 = load_reg(s, a->ra);
9801 if (sub) {
9802 /*
9803 * For SMMLS, we need a 64-bit subtract. Borrow caused by
9804 * a non-zero multiplicand lowpart, and the correct result
9805 * lowpart for rounding.
9806 */
9807 TCGv_i32 zero = tcg_const_i32(0);
9808 tcg_gen_sub2_i32(t2, t1, zero, t3, t2, t1);
9809 tcg_temp_free_i32(zero);
9810 } else {
9811 tcg_gen_add_i32(t1, t1, t3);
9812 }
9813 tcg_temp_free_i32(t3);
9814 }
9815 if (round) {
9816 /*
9817 * Adding 0x80000000 to the 64-bit quantity means that we have
9818 * carry in to the high word when the low word has the msb set.
9819 */
9820 tcg_gen_shri_i32(t2, t2, 31);
9821 tcg_gen_add_i32(t1, t1, t2);
9822 }
9823 tcg_temp_free_i32(t2);
9824 store_reg(s, a->rd, t1);
9825 return true;
9826 }
9827
9828 static bool trans_SMMLA(DisasContext *s, arg_rrrr *a)
9829 {
9830 return op_smmla(s, a, false, false);
9831 }
9832
9833 static bool trans_SMMLAR(DisasContext *s, arg_rrrr *a)
9834 {
9835 return op_smmla(s, a, true, false);
9836 }
9837
9838 static bool trans_SMMLS(DisasContext *s, arg_rrrr *a)
9839 {
9840 return op_smmla(s, a, false, true);
9841 }
9842
9843 static bool trans_SMMLSR(DisasContext *s, arg_rrrr *a)
9844 {
9845 return op_smmla(s, a, true, true);
9846 }
9847
9848 static bool op_div(DisasContext *s, arg_rrr *a, bool u)
9849 {
9850 TCGv_i32 t1, t2;
9851
9852 if (s->thumb
9853 ? !dc_isar_feature(thumb_div, s)
9854 : !dc_isar_feature(arm_div, s)) {
9855 return false;
9856 }
9857
9858 t1 = load_reg(s, a->rn);
9859 t2 = load_reg(s, a->rm);
9860 if (u) {
9861 gen_helper_udiv(t1, t1, t2);
9862 } else {
9863 gen_helper_sdiv(t1, t1, t2);
9864 }
9865 tcg_temp_free_i32(t2);
9866 store_reg(s, a->rd, t1);
9867 return true;
9868 }
9869
9870 static bool trans_SDIV(DisasContext *s, arg_rrr *a)
9871 {
9872 return op_div(s, a, false);
9873 }
9874
9875 static bool trans_UDIV(DisasContext *s, arg_rrr *a)
9876 {
9877 return op_div(s, a, true);
9878 }
9879
9880 /*
9881 * Block data transfer
9882 */
9883
9884 static TCGv_i32 op_addr_block_pre(DisasContext *s, arg_ldst_block *a, int n)
9885 {
9886 TCGv_i32 addr = load_reg(s, a->rn);
9887
9888 if (a->b) {
9889 if (a->i) {
9890 /* pre increment */
9891 tcg_gen_addi_i32(addr, addr, 4);
9892 } else {
9893 /* pre decrement */
9894 tcg_gen_addi_i32(addr, addr, -(n * 4));
9895 }
9896 } else if (!a->i && n != 1) {
9897 /* post decrement */
9898 tcg_gen_addi_i32(addr, addr, -((n - 1) * 4));
9899 }
9900
9901 if (s->v8m_stackcheck && a->rn == 13 && a->w) {
9902 /*
9903 * If the writeback is incrementing SP rather than
9904 * decrementing it, and the initial SP is below the
9905 * stack limit but the final written-back SP would
9906 * be above, then then we must not perform any memory
9907 * accesses, but it is IMPDEF whether we generate
9908 * an exception. We choose to do so in this case.
9909 * At this point 'addr' is the lowest address, so
9910 * either the original SP (if incrementing) or our
9911 * final SP (if decrementing), so that's what we check.
9912 */
9913 gen_helper_v8m_stackcheck(cpu_env, addr);
9914 }
9915
9916 return addr;
9917 }
9918
9919 static void op_addr_block_post(DisasContext *s, arg_ldst_block *a,
9920 TCGv_i32 addr, int n)
9921 {
9922 if (a->w) {
9923 /* write back */
9924 if (!a->b) {
9925 if (a->i) {
9926 /* post increment */
9927 tcg_gen_addi_i32(addr, addr, 4);
9928 } else {
9929 /* post decrement */
9930 tcg_gen_addi_i32(addr, addr, -(n * 4));
9931 }
9932 } else if (!a->i && n != 1) {
9933 /* pre decrement */
9934 tcg_gen_addi_i32(addr, addr, -((n - 1) * 4));
9935 }
9936 store_reg(s, a->rn, addr);
9937 } else {
9938 tcg_temp_free_i32(addr);
9939 }
9940 }
9941
9942 static bool op_stm(DisasContext *s, arg_ldst_block *a, int min_n)
9943 {
9944 int i, j, n, list, mem_idx;
9945 bool user = a->u;
9946 TCGv_i32 addr, tmp, tmp2;
9947
9948 if (user) {
9949 /* STM (user) */
9950 if (IS_USER(s)) {
9951 /* Only usable in supervisor mode. */
9952 unallocated_encoding(s);
9953 return true;
9954 }
9955 }
9956
9957 list = a->list;
9958 n = ctpop16(list);
9959 if (n < min_n || a->rn == 15) {
9960 unallocated_encoding(s);
9961 return true;
9962 }
9963
9964 addr = op_addr_block_pre(s, a, n);
9965 mem_idx = get_mem_index(s);
9966
9967 for (i = j = 0; i < 16; i++) {
9968 if (!(list & (1 << i))) {
9969 continue;
9970 }
9971
9972 if (user && i != 15) {
9973 tmp = tcg_temp_new_i32();
9974 tmp2 = tcg_const_i32(i);
9975 gen_helper_get_user_reg(tmp, cpu_env, tmp2);
9976 tcg_temp_free_i32(tmp2);
9977 } else {
9978 tmp = load_reg(s, i);
9979 }
9980 gen_aa32_st32(s, tmp, addr, mem_idx);
9981 tcg_temp_free_i32(tmp);
9982
9983 /* No need to add after the last transfer. */
9984 if (++j != n) {
9985 tcg_gen_addi_i32(addr, addr, 4);
9986 }
9987 }
9988
9989 op_addr_block_post(s, a, addr, n);
9990 return true;
9991 }
9992
9993 static bool trans_STM(DisasContext *s, arg_ldst_block *a)
9994 {
9995 /* BitCount(list) < 1 is UNPREDICTABLE */
9996 return op_stm(s, a, 1);
9997 }
9998
9999 static bool trans_STM_t32(DisasContext *s, arg_ldst_block *a)
10000 {
10001 /* Writeback register in register list is UNPREDICTABLE for T32. */
10002 if (a->w && (a->list & (1 << a->rn))) {
10003 unallocated_encoding(s);
10004 return true;
10005 }
10006 /* BitCount(list) < 2 is UNPREDICTABLE */
10007 return op_stm(s, a, 2);
10008 }
10009
10010 static bool do_ldm(DisasContext *s, arg_ldst_block *a, int min_n)
10011 {
10012 int i, j, n, list, mem_idx;
10013 bool loaded_base;
10014 bool user = a->u;
10015 bool exc_return = false;
10016 TCGv_i32 addr, tmp, tmp2, loaded_var;
10017
10018 if (user) {
10019 /* LDM (user), LDM (exception return) */
10020 if (IS_USER(s)) {
10021 /* Only usable in supervisor mode. */
10022 unallocated_encoding(s);
10023 return true;
10024 }
10025 if (extract32(a->list, 15, 1)) {
10026 exc_return = true;
10027 user = false;
10028 } else {
10029 /* LDM (user) does not allow writeback. */
10030 if (a->w) {
10031 unallocated_encoding(s);
10032 return true;
10033 }
10034 }
10035 }
10036
10037 list = a->list;
10038 n = ctpop16(list);
10039 if (n < min_n || a->rn == 15) {
10040 unallocated_encoding(s);
10041 return true;
10042 }
10043
10044 addr = op_addr_block_pre(s, a, n);
10045 mem_idx = get_mem_index(s);
10046 loaded_base = false;
10047 loaded_var = NULL;
10048
10049 for (i = j = 0; i < 16; i++) {
10050 if (!(list & (1 << i))) {
10051 continue;
10052 }
10053
10054 tmp = tcg_temp_new_i32();
10055 gen_aa32_ld32u(s, tmp, addr, mem_idx);
10056 if (user) {
10057 tmp2 = tcg_const_i32(i);
10058 gen_helper_set_user_reg(cpu_env, tmp2, tmp);
10059 tcg_temp_free_i32(tmp2);
10060 tcg_temp_free_i32(tmp);
10061 } else if (i == a->rn) {
10062 loaded_var = tmp;
10063 loaded_base = true;
10064 } else if (i == 15 && exc_return) {
10065 store_pc_exc_ret(s, tmp);
10066 } else {
10067 store_reg_from_load(s, i, tmp);
10068 }
10069
10070 /* No need to add after the last transfer. */
10071 if (++j != n) {
10072 tcg_gen_addi_i32(addr, addr, 4);
10073 }
10074 }
10075
10076 op_addr_block_post(s, a, addr, n);
10077
10078 if (loaded_base) {
10079 /* Note that we reject base == pc above. */
10080 store_reg(s, a->rn, loaded_var);
10081 }
10082
10083 if (exc_return) {
10084 /* Restore CPSR from SPSR. */
10085 tmp = load_cpu_field(spsr);
10086 if (tb_cflags(s->base.tb) & CF_USE_ICOUNT) {
10087 gen_io_start();
10088 }
10089 gen_helper_cpsr_write_eret(cpu_env, tmp);
10090 if (tb_cflags(s->base.tb) & CF_USE_ICOUNT) {
10091 gen_io_end();
10092 }
10093 tcg_temp_free_i32(tmp);
10094 /* Must exit loop to check un-masked IRQs */
10095 s->base.is_jmp = DISAS_EXIT;
10096 }
10097 return true;
10098 }
10099
10100 static bool trans_LDM_a32(DisasContext *s, arg_ldst_block *a)
10101 {
10102 /*
10103 * Writeback register in register list is UNPREDICTABLE
10104 * for ArchVersion() >= 7. Prior to v7, A32 would write
10105 * an UNKNOWN value to the base register.
10106 */
10107 if (ENABLE_ARCH_7 && a->w && (a->list & (1 << a->rn))) {
10108 unallocated_encoding(s);
10109 return true;
10110 }
10111 /* BitCount(list) < 1 is UNPREDICTABLE */
10112 return do_ldm(s, a, 1);
10113 }
10114
10115 static bool trans_LDM_t32(DisasContext *s, arg_ldst_block *a)
10116 {
10117 /* Writeback register in register list is UNPREDICTABLE for T32. */
10118 if (a->w && (a->list & (1 << a->rn))) {
10119 unallocated_encoding(s);
10120 return true;
10121 }
10122 /* BitCount(list) < 2 is UNPREDICTABLE */
10123 return do_ldm(s, a, 2);
10124 }
10125
10126 static bool trans_LDM_t16(DisasContext *s, arg_ldst_block *a)
10127 {
10128 /* Writeback is conditional on the base register not being loaded. */
10129 a->w = !(a->list & (1 << a->rn));
10130 /* BitCount(list) < 1 is UNPREDICTABLE */
10131 return do_ldm(s, a, 1);
10132 }
10133
10134 /*
10135 * Branch, branch with link
10136 */
10137
10138 static bool trans_B(DisasContext *s, arg_i *a)
10139 {
10140 gen_jmp(s, read_pc(s) + a->imm);
10141 return true;
10142 }
10143
10144 static bool trans_B_cond_thumb(DisasContext *s, arg_ci *a)
10145 {
10146 /* This has cond from encoding, required to be outside IT block. */
10147 if (a->cond >= 0xe) {
10148 return false;
10149 }
10150 if (s->condexec_mask) {
10151 unallocated_encoding(s);
10152 return true;
10153 }
10154 arm_skip_unless(s, a->cond);
10155 gen_jmp(s, read_pc(s) + a->imm);
10156 return true;
10157 }
10158
10159 static bool trans_BL(DisasContext *s, arg_i *a)
10160 {
10161 tcg_gen_movi_i32(cpu_R[14], s->base.pc_next | s->thumb);
10162 gen_jmp(s, read_pc(s) + a->imm);
10163 return true;
10164 }
10165
10166 static bool trans_BLX_i(DisasContext *s, arg_BLX_i *a)
10167 {
10168 /* For A32, ARCH(5) is checked near the start of the uncond block. */
10169 if (s->thumb && (a->imm & 2)) {
10170 return false;
10171 }
10172 tcg_gen_movi_i32(cpu_R[14], s->base.pc_next | s->thumb);
10173 gen_bx_im(s, (read_pc(s) & ~3) + a->imm + !s->thumb);
10174 return true;
10175 }
10176
10177 static bool op_tbranch(DisasContext *s, arg_tbranch *a, bool half)
10178 {
10179 TCGv_i32 addr, tmp;
10180
10181 tmp = load_reg(s, a->rm);
10182 if (half) {
10183 tcg_gen_add_i32(tmp, tmp, tmp);
10184 }
10185 addr = load_reg(s, a->rn);
10186 tcg_gen_add_i32(addr, addr, tmp);
10187
10188 gen_aa32_ld_i32(s, tmp, addr, get_mem_index(s),
10189 half ? MO_UW | s->be_data : MO_UB);
10190 tcg_temp_free_i32(addr);
10191
10192 tcg_gen_add_i32(tmp, tmp, tmp);
10193 tcg_gen_addi_i32(tmp, tmp, read_pc(s));
10194 store_reg(s, 15, tmp);
10195 return true;
10196 }
10197
10198 static bool trans_TBB(DisasContext *s, arg_tbranch *a)
10199 {
10200 return op_tbranch(s, a, false);
10201 }
10202
10203 static bool trans_TBH(DisasContext *s, arg_tbranch *a)
10204 {
10205 return op_tbranch(s, a, true);
10206 }
10207
10208 /*
10209 * Supervisor call
10210 */
10211
10212 static bool trans_SVC(DisasContext *s, arg_SVC *a)
10213 {
10214 gen_set_pc_im(s, s->base.pc_next);
10215 s->svc_imm = a->imm;
10216 s->base.is_jmp = DISAS_SWI;
10217 return true;
10218 }
10219
10220 /*
10221 * Unconditional system instructions
10222 */
10223
10224 static bool trans_RFE(DisasContext *s, arg_RFE *a)
10225 {
10226 static const int8_t pre_offset[4] = {
10227 /* DA */ -4, /* IA */ 0, /* DB */ -8, /* IB */ 4
10228 };
10229 static const int8_t post_offset[4] = {
10230 /* DA */ -8, /* IA */ 4, /* DB */ -4, /* IB */ 0
10231 };
10232 TCGv_i32 addr, t1, t2;
10233
10234 if (!ENABLE_ARCH_6 || arm_dc_feature(s, ARM_FEATURE_M)) {
10235 return false;
10236 }
10237 if (IS_USER(s)) {
10238 unallocated_encoding(s);
10239 return true;
10240 }
10241
10242 addr = load_reg(s, a->rn);
10243 tcg_gen_addi_i32(addr, addr, pre_offset[a->pu]);
10244
10245 /* Load PC into tmp and CPSR into tmp2. */
10246 t1 = tcg_temp_new_i32();
10247 gen_aa32_ld32u(s, t1, addr, get_mem_index(s));
10248 tcg_gen_addi_i32(addr, addr, 4);
10249 t2 = tcg_temp_new_i32();
10250 gen_aa32_ld32u(s, t2, addr, get_mem_index(s));
10251
10252 if (a->w) {
10253 /* Base writeback. */
10254 tcg_gen_addi_i32(addr, addr, post_offset[a->pu]);
10255 store_reg(s, a->rn, addr);
10256 } else {
10257 tcg_temp_free_i32(addr);
10258 }
10259 gen_rfe(s, t1, t2);
10260 return true;
10261 }
10262
10263 static bool trans_SRS(DisasContext *s, arg_SRS *a)
10264 {
10265 if (!ENABLE_ARCH_6 || arm_dc_feature(s, ARM_FEATURE_M)) {
10266 return false;
10267 }
10268 gen_srs(s, a->mode, a->pu, a->w);
10269 return true;
10270 }
10271
10272 static bool trans_CPS(DisasContext *s, arg_CPS *a)
10273 {
10274 uint32_t mask, val;
10275
10276 if (!ENABLE_ARCH_6 || arm_dc_feature(s, ARM_FEATURE_M)) {
10277 return false;
10278 }
10279 if (IS_USER(s)) {
10280 /* Implemented as NOP in user mode. */
10281 return true;
10282 }
10283 /* TODO: There are quite a lot of UNPREDICTABLE argument combinations. */
10284
10285 mask = val = 0;
10286 if (a->imod & 2) {
10287 if (a->A) {
10288 mask |= CPSR_A;
10289 }
10290 if (a->I) {
10291 mask |= CPSR_I;
10292 }
10293 if (a->F) {
10294 mask |= CPSR_F;
10295 }
10296 if (a->imod & 1) {
10297 val |= mask;
10298 }
10299 }
10300 if (a->M) {
10301 mask |= CPSR_M;
10302 val |= a->mode;
10303 }
10304 if (mask) {
10305 gen_set_psr_im(s, mask, 0, val);
10306 }
10307 return true;
10308 }
10309
10310 static bool trans_CPS_v7m(DisasContext *s, arg_CPS_v7m *a)
10311 {
10312 TCGv_i32 tmp, addr;
10313
10314 if (!arm_dc_feature(s, ARM_FEATURE_M)) {
10315 return false;
10316 }
10317 if (IS_USER(s)) {
10318 /* Implemented as NOP in user mode. */
10319 return true;
10320 }
10321
10322 tmp = tcg_const_i32(a->im);
10323 /* FAULTMASK */
10324 if (a->F) {
10325 addr = tcg_const_i32(19);
10326 gen_helper_v7m_msr(cpu_env, addr, tmp);
10327 tcg_temp_free_i32(addr);
10328 }
10329 /* PRIMASK */
10330 if (a->I) {
10331 addr = tcg_const_i32(16);
10332 gen_helper_v7m_msr(cpu_env, addr, tmp);
10333 tcg_temp_free_i32(addr);
10334 }
10335 tcg_temp_free_i32(tmp);
10336 gen_lookup_tb(s);
10337 return true;
10338 }
10339
10340 /*
10341 * Clear-Exclusive, Barriers
10342 */
10343
10344 static bool trans_CLREX(DisasContext *s, arg_CLREX *a)
10345 {
10346 if (s->thumb
10347 ? !ENABLE_ARCH_7 && !arm_dc_feature(s, ARM_FEATURE_M)
10348 : !ENABLE_ARCH_6K) {
10349 return false;
10350 }
10351 gen_clrex(s);
10352 return true;
10353 }
10354
10355 static bool trans_DSB(DisasContext *s, arg_DSB *a)
10356 {
10357 if (!ENABLE_ARCH_7 && !arm_dc_feature(s, ARM_FEATURE_M)) {
10358 return false;
10359 }
10360 tcg_gen_mb(TCG_MO_ALL | TCG_BAR_SC);
10361 return true;
10362 }
10363
10364 static bool trans_DMB(DisasContext *s, arg_DMB *a)
10365 {
10366 return trans_DSB(s, NULL);
10367 }
10368
10369 static bool trans_ISB(DisasContext *s, arg_ISB *a)
10370 {
10371 if (!ENABLE_ARCH_7 && !arm_dc_feature(s, ARM_FEATURE_M)) {
10372 return false;
10373 }
10374 /*
10375 * We need to break the TB after this insn to execute
10376 * self-modifying code correctly and also to take
10377 * any pending interrupts immediately.
10378 */
10379 gen_goto_tb(s, 0, s->base.pc_next);
10380 return true;
10381 }
10382
10383 static bool trans_SB(DisasContext *s, arg_SB *a)
10384 {
10385 if (!dc_isar_feature(aa32_sb, s)) {
10386 return false;
10387 }
10388 /*
10389 * TODO: There is no speculation barrier opcode
10390 * for TCG; MB and end the TB instead.
10391 */
10392 tcg_gen_mb(TCG_MO_ALL | TCG_BAR_SC);
10393 gen_goto_tb(s, 0, s->base.pc_next);
10394 return true;
10395 }
10396
10397 static bool trans_SETEND(DisasContext *s, arg_SETEND *a)
10398 {
10399 if (!ENABLE_ARCH_6) {
10400 return false;
10401 }
10402 if (a->E != (s->be_data == MO_BE)) {
10403 gen_helper_setend(cpu_env);
10404 s->base.is_jmp = DISAS_UPDATE;
10405 }
10406 return true;
10407 }
10408
10409 /*
10410 * Preload instructions
10411 * All are nops, contingent on the appropriate arch level.
10412 */
10413
10414 static bool trans_PLD(DisasContext *s, arg_PLD *a)
10415 {
10416 return ENABLE_ARCH_5TE;
10417 }
10418
10419 static bool trans_PLDW(DisasContext *s, arg_PLD *a)
10420 {
10421 return arm_dc_feature(s, ARM_FEATURE_V7MP);
10422 }
10423
10424 static bool trans_PLI(DisasContext *s, arg_PLD *a)
10425 {
10426 return ENABLE_ARCH_7;
10427 }
10428
10429 /*
10430 * Legacy decoder.
10431 */
10432
10433 static void disas_arm_insn(DisasContext *s, unsigned int insn)
10434 {
10435 unsigned int cond = insn >> 28;
10436
10437 /* M variants do not implement ARM mode; this must raise the INVSTATE
10438 * UsageFault exception.
10439 */
10440 if (arm_dc_feature(s, ARM_FEATURE_M)) {
10441 gen_exception_insn(s, s->pc_curr, EXCP_INVSTATE, syn_uncategorized(),
10442 default_exception_el(s));
10443 return;
10444 }
10445
10446 if (cond == 0xf) {
10447 /* In ARMv3 and v4 the NV condition is UNPREDICTABLE; we
10448 * choose to UNDEF. In ARMv5 and above the space is used
10449 * for miscellaneous unconditional instructions.
10450 */
10451 ARCH(5);
10452
10453 /* Unconditional instructions. */
10454 if (disas_a32_uncond(s, insn)) {
10455 return;
10456 }
10457 /* fall back to legacy decoder */
10458
10459 if (((insn >> 25) & 7) == 1) {
10460 /* NEON Data processing. */
10461 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
10462 goto illegal_op;
10463 }
10464
10465 if (disas_neon_data_insn(s, insn)) {
10466 goto illegal_op;
10467 }
10468 return;
10469 }
10470 if ((insn & 0x0f100000) == 0x04000000) {
10471 /* NEON load/store. */
10472 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
10473 goto illegal_op;
10474 }
10475
10476 if (disas_neon_ls_insn(s, insn)) {
10477 goto illegal_op;
10478 }
10479 return;
10480 }
10481 if ((insn & 0x0f000e10) == 0x0e000a00) {
10482 /* VFP. */
10483 if (disas_vfp_insn(s, insn)) {
10484 goto illegal_op;
10485 }
10486 return;
10487 }
10488 if ((insn & 0x0e000f00) == 0x0c000100) {
10489 if (arm_dc_feature(s, ARM_FEATURE_IWMMXT)) {
10490 /* iWMMXt register transfer. */
10491 if (extract32(s->c15_cpar, 1, 1)) {
10492 if (!disas_iwmmxt_insn(s, insn)) {
10493 return;
10494 }
10495 }
10496 }
10497 } else if ((insn & 0x0e000a00) == 0x0c000800
10498 && arm_dc_feature(s, ARM_FEATURE_V8)) {
10499 if (disas_neon_insn_3same_ext(s, insn)) {
10500 goto illegal_op;
10501 }
10502 return;
10503 } else if ((insn & 0x0f000a00) == 0x0e000800
10504 && arm_dc_feature(s, ARM_FEATURE_V8)) {
10505 if (disas_neon_insn_2reg_scalar_ext(s, insn)) {
10506 goto illegal_op;
10507 }
10508 return;
10509 }
10510 goto illegal_op;
10511 }
10512 if (cond != 0xe) {
10513 /* if not always execute, we generate a conditional jump to
10514 next instruction */
10515 arm_skip_unless(s, cond);
10516 }
10517
10518 if (disas_a32(s, insn)) {
10519 return;
10520 }
10521 /* fall back to legacy decoder */
10522
10523 switch ((insn >> 24) & 0xf) {
10524 case 0xc:
10525 case 0xd:
10526 case 0xe:
10527 if (((insn >> 8) & 0xe) == 10) {
10528 /* VFP. */
10529 if (disas_vfp_insn(s, insn)) {
10530 goto illegal_op;
10531 }
10532 } else if (disas_coproc_insn(s, insn)) {
10533 /* Coprocessor. */
10534 goto illegal_op;
10535 }
10536 break;
10537 default:
10538 illegal_op:
10539 unallocated_encoding(s);
10540 break;
10541 }
10542 }
10543
10544 static bool thumb_insn_is_16bit(DisasContext *s, uint32_t pc, uint32_t insn)
10545 {
10546 /*
10547 * Return true if this is a 16 bit instruction. We must be precise
10548 * about this (matching the decode).
10549 */
10550 if ((insn >> 11) < 0x1d) {
10551 /* Definitely a 16-bit instruction */
10552 return true;
10553 }
10554
10555 /* Top five bits 0b11101 / 0b11110 / 0b11111 : this is the
10556 * first half of a 32-bit Thumb insn. Thumb-1 cores might
10557 * end up actually treating this as two 16-bit insns, though,
10558 * if it's half of a bl/blx pair that might span a page boundary.
10559 */
10560 if (arm_dc_feature(s, ARM_FEATURE_THUMB2) ||
10561 arm_dc_feature(s, ARM_FEATURE_M)) {
10562 /* Thumb2 cores (including all M profile ones) always treat
10563 * 32-bit insns as 32-bit.
10564 */
10565 return false;
10566 }
10567
10568 if ((insn >> 11) == 0x1e && pc - s->page_start < TARGET_PAGE_SIZE - 3) {
10569 /* 0b1111_0xxx_xxxx_xxxx : BL/BLX prefix, and the suffix
10570 * is not on the next page; we merge this into a 32-bit
10571 * insn.
10572 */
10573 return false;
10574 }
10575 /* 0b1110_1xxx_xxxx_xxxx : BLX suffix (or UNDEF);
10576 * 0b1111_1xxx_xxxx_xxxx : BL suffix;
10577 * 0b1111_0xxx_xxxx_xxxx : BL/BLX prefix on the end of a page
10578 * -- handle as single 16 bit insn
10579 */
10580 return true;
10581 }
10582
10583 /* Translate a 32-bit thumb instruction. */
10584 static void disas_thumb2_insn(DisasContext *s, uint32_t insn)
10585 {
10586 /*
10587 * ARMv6-M supports a limited subset of Thumb2 instructions.
10588 * Other Thumb1 architectures allow only 32-bit
10589 * combined BL/BLX prefix and suffix.
10590 */
10591 if (arm_dc_feature(s, ARM_FEATURE_M) &&
10592 !arm_dc_feature(s, ARM_FEATURE_V7)) {
10593 int i;
10594 bool found = false;
10595 static const uint32_t armv6m_insn[] = {0xf3808000 /* msr */,
10596 0xf3b08040 /* dsb */,
10597 0xf3b08050 /* dmb */,
10598 0xf3b08060 /* isb */,
10599 0xf3e08000 /* mrs */,
10600 0xf000d000 /* bl */};
10601 static const uint32_t armv6m_mask[] = {0xffe0d000,
10602 0xfff0d0f0,
10603 0xfff0d0f0,
10604 0xfff0d0f0,
10605 0xffe0d000,
10606 0xf800d000};
10607
10608 for (i = 0; i < ARRAY_SIZE(armv6m_insn); i++) {
10609 if ((insn & armv6m_mask[i]) == armv6m_insn[i]) {
10610 found = true;
10611 break;
10612 }
10613 }
10614 if (!found) {
10615 goto illegal_op;
10616 }
10617 } else if ((insn & 0xf800e800) != 0xf000e800) {
10618 ARCH(6T2);
10619 }
10620
10621 if (disas_t32(s, insn)) {
10622 return;
10623 }
10624 /* fall back to legacy decoder */
10625
10626 switch ((insn >> 25) & 0xf) {
10627 case 0: case 1: case 2: case 3:
10628 /* 16-bit instructions. Should never happen. */
10629 abort();
10630 case 6: case 7: case 14: case 15:
10631 /* Coprocessor. */
10632 if (arm_dc_feature(s, ARM_FEATURE_M)) {
10633 /* 0b111x_11xx_xxxx_xxxx_xxxx_xxxx_xxxx_xxxx */
10634 if (extract32(insn, 24, 2) == 3) {
10635 goto illegal_op; /* op0 = 0b11 : unallocated */
10636 }
10637
10638 /*
10639 * Decode VLLDM and VLSTM first: these are nonstandard because:
10640 * * if there is no FPU then these insns must NOP in
10641 * Secure state and UNDEF in Nonsecure state
10642 * * if there is an FPU then these insns do not have
10643 * the usual behaviour that disas_vfp_insn() provides of
10644 * being controlled by CPACR/NSACR enable bits or the
10645 * lazy-stacking logic.
10646 */
10647 if (arm_dc_feature(s, ARM_FEATURE_V8) &&
10648 (insn & 0xffa00f00) == 0xec200a00) {
10649 /* 0b1110_1100_0x1x_xxxx_xxxx_1010_xxxx_xxxx
10650 * - VLLDM, VLSTM
10651 * We choose to UNDEF if the RAZ bits are non-zero.
10652 */
10653 if (!s->v8m_secure || (insn & 0x0040f0ff)) {
10654 goto illegal_op;
10655 }
10656
10657 if (arm_dc_feature(s, ARM_FEATURE_VFP)) {
10658 uint32_t rn = (insn >> 16) & 0xf;
10659 TCGv_i32 fptr = load_reg(s, rn);
10660
10661 if (extract32(insn, 20, 1)) {
10662 gen_helper_v7m_vlldm(cpu_env, fptr);
10663 } else {
10664 gen_helper_v7m_vlstm(cpu_env, fptr);
10665 }
10666 tcg_temp_free_i32(fptr);
10667
10668 /* End the TB, because we have updated FP control bits */
10669 s->base.is_jmp = DISAS_UPDATE;
10670 }
10671 break;
10672 }
10673 if (arm_dc_feature(s, ARM_FEATURE_VFP) &&
10674 ((insn >> 8) & 0xe) == 10) {
10675 /* FP, and the CPU supports it */
10676 if (disas_vfp_insn(s, insn)) {
10677 goto illegal_op;
10678 }
10679 break;
10680 }
10681
10682 /* All other insns: NOCP */
10683 gen_exception_insn(s, s->pc_curr, EXCP_NOCP, syn_uncategorized(),
10684 default_exception_el(s));
10685 break;
10686 }
10687 if ((insn & 0xfe000a00) == 0xfc000800
10688 && arm_dc_feature(s, ARM_FEATURE_V8)) {
10689 /* The Thumb2 and ARM encodings are identical. */
10690 if (disas_neon_insn_3same_ext(s, insn)) {
10691 goto illegal_op;
10692 }
10693 } else if ((insn & 0xff000a00) == 0xfe000800
10694 && arm_dc_feature(s, ARM_FEATURE_V8)) {
10695 /* The Thumb2 and ARM encodings are identical. */
10696 if (disas_neon_insn_2reg_scalar_ext(s, insn)) {
10697 goto illegal_op;
10698 }
10699 } else if (((insn >> 24) & 3) == 3) {
10700 /* Translate into the equivalent ARM encoding. */
10701 insn = (insn & 0xe2ffffff) | ((insn & (1 << 28)) >> 4) | (1 << 28);
10702 if (disas_neon_data_insn(s, insn)) {
10703 goto illegal_op;
10704 }
10705 } else if (((insn >> 8) & 0xe) == 10) {
10706 if (disas_vfp_insn(s, insn)) {
10707 goto illegal_op;
10708 }
10709 } else {
10710 if (insn & (1 << 28))
10711 goto illegal_op;
10712 if (disas_coproc_insn(s, insn)) {
10713 goto illegal_op;
10714 }
10715 }
10716 break;
10717 case 12:
10718 if ((insn & 0x01100000) == 0x01000000) {
10719 if (disas_neon_ls_insn(s, insn)) {
10720 goto illegal_op;
10721 }
10722 break;
10723 }
10724 goto illegal_op;
10725 default:
10726 illegal_op:
10727 unallocated_encoding(s);
10728 }
10729 }
10730
10731 static void disas_thumb_insn(DisasContext *s, uint32_t insn)
10732 {
10733 uint32_t val, op, rm, rd, shift, cond;
10734 int32_t offset;
10735 int i;
10736 TCGv_i32 tmp;
10737 TCGv_i32 tmp2;
10738 TCGv_i32 addr;
10739
10740 if (disas_t16(s, insn)) {
10741 return;
10742 }
10743 /* fall back to legacy decoder */
10744
10745 switch (insn >> 12) {
10746 case 0: case 1:
10747
10748 rd = insn & 7;
10749 op = (insn >> 11) & 3;
10750 if (op == 3) {
10751 /*
10752 * 0b0001_1xxx_xxxx_xxxx
10753 * - Add, subtract (three low registers)
10754 * - Add, subtract (two low registers and immediate)
10755 * In decodetree.
10756 */
10757 goto illegal_op;
10758 } else {
10759 /* shift immediate */
10760 rm = (insn >> 3) & 7;
10761 shift = (insn >> 6) & 0x1f;
10762 tmp = load_reg(s, rm);
10763 gen_arm_shift_im(tmp, op, shift, s->condexec_mask == 0);
10764 if (!s->condexec_mask)
10765 gen_logic_CC(tmp);
10766 store_reg(s, rd, tmp);
10767 }
10768 break;
10769 case 2: case 3: /* add, sub, cmp, mov (reg, imm), in decodetree */
10770 goto illegal_op;
10771 case 4:
10772 if (insn & (1 << 11)) {
10773 rd = (insn >> 8) & 7;
10774 /* load pc-relative. Bit 1 of PC is ignored. */
10775 addr = add_reg_for_lit(s, 15, (insn & 0xff) * 4);
10776 tmp = tcg_temp_new_i32();
10777 gen_aa32_ld32u_iss(s, tmp, addr, get_mem_index(s),
10778 rd | ISSIs16Bit);
10779 tcg_temp_free_i32(addr);
10780 store_reg(s, rd, tmp);
10781 break;
10782 }
10783
10784 /*
10785 * - Data-processing (two low registers), in decodetree
10786 * - data processing extended, branch and exchange, in decodetree
10787 */
10788 goto illegal_op;
10789
10790 case 5: /* load/store register offset, in decodetree */
10791 case 6: /* load/store word immediate offset, in decodetree */
10792 case 7: /* load/store byte immediate offset, in decodetree */
10793 case 8: /* load/store halfword immediate offset, in decodetree */
10794 case 9: /* load/store from stack, in decodetree */
10795 case 10: /* add PC/SP (immediate), in decodetree */
10796 case 12: /* load/store multiple, in decodetree */
10797 goto illegal_op;
10798
10799 case 11:
10800 /* misc */
10801 op = (insn >> 8) & 0xf;
10802 switch (op) {
10803 case 0: /* add/sub (sp, immediate), in decodetree */
10804 case 2: /* sign/zero extend, in decodetree */
10805 goto illegal_op;
10806
10807 case 4: case 5: case 0xc: case 0xd:
10808 /*
10809 * 0b1011_x10x_xxxx_xxxx
10810 * - push/pop
10811 */
10812 addr = load_reg(s, 13);
10813 if (insn & (1 << 8))
10814 offset = 4;
10815 else
10816 offset = 0;
10817 for (i = 0; i < 8; i++) {
10818 if (insn & (1 << i))
10819 offset += 4;
10820 }
10821 if ((insn & (1 << 11)) == 0) {
10822 tcg_gen_addi_i32(addr, addr, -offset);
10823 }
10824
10825 if (s->v8m_stackcheck) {
10826 /*
10827 * Here 'addr' is the lower of "old SP" and "new SP";
10828 * if this is a pop that starts below the limit and ends
10829 * above it, it is UNKNOWN whether the limit check triggers;
10830 * we choose to trigger.
10831 */
10832 gen_helper_v8m_stackcheck(cpu_env, addr);
10833 }
10834
10835 for (i = 0; i < 8; i++) {
10836 if (insn & (1 << i)) {
10837 if (insn & (1 << 11)) {
10838 /* pop */
10839 tmp = tcg_temp_new_i32();
10840 gen_aa32_ld32u(s, tmp, addr, get_mem_index(s));
10841 store_reg(s, i, tmp);
10842 } else {
10843 /* push */
10844 tmp = load_reg(s, i);
10845 gen_aa32_st32(s, tmp, addr, get_mem_index(s));
10846 tcg_temp_free_i32(tmp);
10847 }
10848 /* advance to the next address. */
10849 tcg_gen_addi_i32(addr, addr, 4);
10850 }
10851 }
10852 tmp = NULL;
10853 if (insn & (1 << 8)) {
10854 if (insn & (1 << 11)) {
10855 /* pop pc */
10856 tmp = tcg_temp_new_i32();
10857 gen_aa32_ld32u(s, tmp, addr, get_mem_index(s));
10858 /* don't set the pc until the rest of the instruction
10859 has completed */
10860 } else {
10861 /* push lr */
10862 tmp = load_reg(s, 14);
10863 gen_aa32_st32(s, tmp, addr, get_mem_index(s));
10864 tcg_temp_free_i32(tmp);
10865 }
10866 tcg_gen_addi_i32(addr, addr, 4);
10867 }
10868 if ((insn & (1 << 11)) == 0) {
10869 tcg_gen_addi_i32(addr, addr, -offset);
10870 }
10871 /* write back the new stack pointer */
10872 store_reg(s, 13, addr);
10873 /* set the new PC value */
10874 if ((insn & 0x0900) == 0x0900) {
10875 store_reg_from_load(s, 15, tmp);
10876 }
10877 break;
10878
10879 case 1: case 3: case 9: case 11: /* czb */
10880 rm = insn & 7;
10881 tmp = load_reg(s, rm);
10882 arm_gen_condlabel(s);
10883 if (insn & (1 << 11))
10884 tcg_gen_brcondi_i32(TCG_COND_EQ, tmp, 0, s->condlabel);
10885 else
10886 tcg_gen_brcondi_i32(TCG_COND_NE, tmp, 0, s->condlabel);
10887 tcg_temp_free_i32(tmp);
10888 offset = ((insn & 0xf8) >> 2) | (insn & 0x200) >> 3;
10889 gen_jmp(s, read_pc(s) + offset);
10890 break;
10891
10892 case 15: /* IT, nop-hint. */
10893 if ((insn & 0xf) == 0) {
10894 gen_nop_hint(s, (insn >> 4) & 0xf);
10895 break;
10896 }
10897 /*
10898 * IT (If-Then)
10899 *
10900 * Combinations of firstcond and mask which set up an 0b1111
10901 * condition are UNPREDICTABLE; we take the CONSTRAINED
10902 * UNPREDICTABLE choice to treat 0b1111 the same as 0b1110,
10903 * i.e. both meaning "execute always".
10904 */
10905 s->condexec_cond = (insn >> 4) & 0xe;
10906 s->condexec_mask = insn & 0x1f;
10907 /* No actual code generated for this insn, just setup state. */
10908 break;
10909
10910 case 0xe: /* bkpt */
10911 {
10912 int imm8 = extract32(insn, 0, 8);
10913 ARCH(5);
10914 gen_exception_bkpt_insn(s, syn_aa32_bkpt(imm8, true));
10915 break;
10916 }
10917
10918 case 0xa: /* rev, and hlt */
10919 {
10920 int op1 = extract32(insn, 6, 2);
10921
10922 if (op1 == 2) {
10923 /* HLT */
10924 int imm6 = extract32(insn, 0, 6);
10925
10926 gen_hlt(s, imm6);
10927 break;
10928 }
10929
10930 /* Otherwise this is rev, in decodetree */
10931 goto illegal_op;
10932 }
10933
10934 case 6: /* setend, cps; in decodetree */
10935 goto illegal_op;
10936
10937 default:
10938 goto undef;
10939 }
10940 break;
10941
10942 case 13:
10943 /* conditional branch or swi */
10944 cond = (insn >> 8) & 0xf;
10945 if (cond == 0xe)
10946 goto undef;
10947
10948 if (cond == 0xf) {
10949 /* swi */
10950 gen_set_pc_im(s, s->base.pc_next);
10951 s->svc_imm = extract32(insn, 0, 8);
10952 s->base.is_jmp = DISAS_SWI;
10953 break;
10954 }
10955 /* generate a conditional jump to next instruction */
10956 arm_skip_unless(s, cond);
10957
10958 /* jump to the offset */
10959 val = read_pc(s);
10960 offset = ((int32_t)insn << 24) >> 24;
10961 val += offset << 1;
10962 gen_jmp(s, val);
10963 break;
10964
10965 case 14:
10966 if (insn & (1 << 11)) {
10967 /* thumb_insn_is_16bit() ensures we can't get here for
10968 * a Thumb2 CPU, so this must be a thumb1 split BL/BLX:
10969 * 0b1110_1xxx_xxxx_xxxx : BLX suffix (or UNDEF)
10970 */
10971 assert(!arm_dc_feature(s, ARM_FEATURE_THUMB2));
10972 ARCH(5);
10973 offset = ((insn & 0x7ff) << 1);
10974 tmp = load_reg(s, 14);
10975 tcg_gen_addi_i32(tmp, tmp, offset);
10976 tcg_gen_andi_i32(tmp, tmp, 0xfffffffc);
10977
10978 tmp2 = tcg_temp_new_i32();
10979 tcg_gen_movi_i32(tmp2, s->base.pc_next | 1);
10980 store_reg(s, 14, tmp2);
10981 gen_bx(s, tmp);
10982 break;
10983 }
10984 /* unconditional branch */
10985 val = read_pc(s);
10986 offset = ((int32_t)insn << 21) >> 21;
10987 val += offset << 1;
10988 gen_jmp(s, val);
10989 break;
10990
10991 case 15:
10992 /* thumb_insn_is_16bit() ensures we can't get here for
10993 * a Thumb2 CPU, so this must be a thumb1 split BL/BLX.
10994 */
10995 assert(!arm_dc_feature(s, ARM_FEATURE_THUMB2));
10996
10997 if (insn & (1 << 11)) {
10998 /* 0b1111_1xxx_xxxx_xxxx : BL suffix */
10999 offset = ((insn & 0x7ff) << 1) | 1;
11000 tmp = load_reg(s, 14);
11001 tcg_gen_addi_i32(tmp, tmp, offset);
11002
11003 tmp2 = tcg_temp_new_i32();
11004 tcg_gen_movi_i32(tmp2, s->base.pc_next | 1);
11005 store_reg(s, 14, tmp2);
11006 gen_bx(s, tmp);
11007 } else {
11008 /* 0b1111_0xxx_xxxx_xxxx : BL/BLX prefix */
11009 uint32_t uoffset = ((int32_t)insn << 21) >> 9;
11010
11011 tcg_gen_movi_i32(cpu_R[14], read_pc(s) + uoffset);
11012 }
11013 break;
11014 }
11015 return;
11016 illegal_op:
11017 undef:
11018 unallocated_encoding(s);
11019 }
11020
11021 static bool insn_crosses_page(CPUARMState *env, DisasContext *s)
11022 {
11023 /* Return true if the insn at dc->base.pc_next might cross a page boundary.
11024 * (False positives are OK, false negatives are not.)
11025 * We know this is a Thumb insn, and our caller ensures we are
11026 * only called if dc->base.pc_next is less than 4 bytes from the page
11027 * boundary, so we cross the page if the first 16 bits indicate
11028 * that this is a 32 bit insn.
11029 */
11030 uint16_t insn = arm_lduw_code(env, s->base.pc_next, s->sctlr_b);
11031
11032 return !thumb_insn_is_16bit(s, s->base.pc_next, insn);
11033 }
11034
11035 static void arm_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)
11036 {
11037 DisasContext *dc = container_of(dcbase, DisasContext, base);
11038 CPUARMState *env = cs->env_ptr;
11039 ARMCPU *cpu = env_archcpu(env);
11040 uint32_t tb_flags = dc->base.tb->flags;
11041 uint32_t condexec, core_mmu_idx;
11042
11043 dc->isar = &cpu->isar;
11044 dc->condjmp = 0;
11045
11046 dc->aarch64 = 0;
11047 /* If we are coming from secure EL0 in a system with a 32-bit EL3, then
11048 * there is no secure EL1, so we route exceptions to EL3.
11049 */
11050 dc->secure_routed_to_el3 = arm_feature(env, ARM_FEATURE_EL3) &&
11051 !arm_el_is_aa64(env, 3);
11052 dc->thumb = FIELD_EX32(tb_flags, TBFLAG_A32, THUMB);
11053 dc->sctlr_b = FIELD_EX32(tb_flags, TBFLAG_A32, SCTLR_B);
11054 dc->be_data = FIELD_EX32(tb_flags, TBFLAG_ANY, BE_DATA) ? MO_BE : MO_LE;
11055 condexec = FIELD_EX32(tb_flags, TBFLAG_A32, CONDEXEC);
11056 dc->condexec_mask = (condexec & 0xf) << 1;
11057 dc->condexec_cond = condexec >> 4;
11058 core_mmu_idx = FIELD_EX32(tb_flags, TBFLAG_ANY, MMUIDX);
11059 dc->mmu_idx = core_to_arm_mmu_idx(env, core_mmu_idx);
11060 dc->current_el = arm_mmu_idx_to_el(dc->mmu_idx);
11061 #if !defined(CONFIG_USER_ONLY)
11062 dc->user = (dc->current_el == 0);
11063 #endif
11064 dc->ns = FIELD_EX32(tb_flags, TBFLAG_A32, NS);
11065 dc->fp_excp_el = FIELD_EX32(tb_flags, TBFLAG_ANY, FPEXC_EL);
11066 dc->vfp_enabled = FIELD_EX32(tb_flags, TBFLAG_A32, VFPEN);
11067 dc->vec_len = FIELD_EX32(tb_flags, TBFLAG_A32, VECLEN);
11068 if (arm_feature(env, ARM_FEATURE_XSCALE)) {
11069 dc->c15_cpar = FIELD_EX32(tb_flags, TBFLAG_A32, XSCALE_CPAR);
11070 dc->vec_stride = 0;
11071 } else {
11072 dc->vec_stride = FIELD_EX32(tb_flags, TBFLAG_A32, VECSTRIDE);
11073 dc->c15_cpar = 0;
11074 }
11075 dc->v7m_handler_mode = FIELD_EX32(tb_flags, TBFLAG_A32, HANDLER);
11076 dc->v8m_secure = arm_feature(env, ARM_FEATURE_M_SECURITY) &&
11077 regime_is_secure(env, dc->mmu_idx);
11078 dc->v8m_stackcheck = FIELD_EX32(tb_flags, TBFLAG_A32, STACKCHECK);
11079 dc->v8m_fpccr_s_wrong = FIELD_EX32(tb_flags, TBFLAG_A32, FPCCR_S_WRONG);
11080 dc->v7m_new_fp_ctxt_needed =
11081 FIELD_EX32(tb_flags, TBFLAG_A32, NEW_FP_CTXT_NEEDED);
11082 dc->v7m_lspact = FIELD_EX32(tb_flags, TBFLAG_A32, LSPACT);
11083 dc->cp_regs = cpu->cp_regs;
11084 dc->features = env->features;
11085
11086 /* Single step state. The code-generation logic here is:
11087 * SS_ACTIVE == 0:
11088 * generate code with no special handling for single-stepping (except
11089 * that anything that can make us go to SS_ACTIVE == 1 must end the TB;
11090 * this happens anyway because those changes are all system register or
11091 * PSTATE writes).
11092 * SS_ACTIVE == 1, PSTATE.SS == 1: (active-not-pending)
11093 * emit code for one insn
11094 * emit code to clear PSTATE.SS
11095 * emit code to generate software step exception for completed step
11096 * end TB (as usual for having generated an exception)
11097 * SS_ACTIVE == 1, PSTATE.SS == 0: (active-pending)
11098 * emit code to generate a software step exception
11099 * end the TB
11100 */
11101 dc->ss_active = FIELD_EX32(tb_flags, TBFLAG_ANY, SS_ACTIVE);
11102 dc->pstate_ss = FIELD_EX32(tb_flags, TBFLAG_ANY, PSTATE_SS);
11103 dc->is_ldex = false;
11104 if (!arm_feature(env, ARM_FEATURE_M)) {
11105 dc->debug_target_el = FIELD_EX32(tb_flags, TBFLAG_ANY, DEBUG_TARGET_EL);
11106 }
11107
11108 dc->page_start = dc->base.pc_first & TARGET_PAGE_MASK;
11109
11110 /* If architectural single step active, limit to 1. */
11111 if (is_singlestepping(dc)) {
11112 dc->base.max_insns = 1;
11113 }
11114
11115 /* ARM is a fixed-length ISA. Bound the number of insns to execute
11116 to those left on the page. */
11117 if (!dc->thumb) {
11118 int bound = -(dc->base.pc_first | TARGET_PAGE_MASK) / 4;
11119 dc->base.max_insns = MIN(dc->base.max_insns, bound);
11120 }
11121
11122 cpu_V0 = tcg_temp_new_i64();
11123 cpu_V1 = tcg_temp_new_i64();
11124 /* FIXME: cpu_M0 can probably be the same as cpu_V0. */
11125 cpu_M0 = tcg_temp_new_i64();
11126 }
11127
11128 static void arm_tr_tb_start(DisasContextBase *dcbase, CPUState *cpu)
11129 {
11130 DisasContext *dc = container_of(dcbase, DisasContext, base);
11131
11132 /* A note on handling of the condexec (IT) bits:
11133 *
11134 * We want to avoid the overhead of having to write the updated condexec
11135 * bits back to the CPUARMState for every instruction in an IT block. So:
11136 * (1) if the condexec bits are not already zero then we write
11137 * zero back into the CPUARMState now. This avoids complications trying
11138 * to do it at the end of the block. (For example if we don't do this
11139 * it's hard to identify whether we can safely skip writing condexec
11140 * at the end of the TB, which we definitely want to do for the case
11141 * where a TB doesn't do anything with the IT state at all.)
11142 * (2) if we are going to leave the TB then we call gen_set_condexec()
11143 * which will write the correct value into CPUARMState if zero is wrong.
11144 * This is done both for leaving the TB at the end, and for leaving
11145 * it because of an exception we know will happen, which is done in
11146 * gen_exception_insn(). The latter is necessary because we need to
11147 * leave the TB with the PC/IT state just prior to execution of the
11148 * instruction which caused the exception.
11149 * (3) if we leave the TB unexpectedly (eg a data abort on a load)
11150 * then the CPUARMState will be wrong and we need to reset it.
11151 * This is handled in the same way as restoration of the
11152 * PC in these situations; we save the value of the condexec bits
11153 * for each PC via tcg_gen_insn_start(), and restore_state_to_opc()
11154 * then uses this to restore them after an exception.
11155 *
11156 * Note that there are no instructions which can read the condexec
11157 * bits, and none which can write non-static values to them, so
11158 * we don't need to care about whether CPUARMState is correct in the
11159 * middle of a TB.
11160 */
11161
11162 /* Reset the conditional execution bits immediately. This avoids
11163 complications trying to do it at the end of the block. */
11164 if (dc->condexec_mask || dc->condexec_cond) {
11165 TCGv_i32 tmp = tcg_temp_new_i32();
11166 tcg_gen_movi_i32(tmp, 0);
11167 store_cpu_field(tmp, condexec_bits);
11168 }
11169 }
11170
11171 static void arm_tr_insn_start(DisasContextBase *dcbase, CPUState *cpu)
11172 {
11173 DisasContext *dc = container_of(dcbase, DisasContext, base);
11174
11175 tcg_gen_insn_start(dc->base.pc_next,
11176 (dc->condexec_cond << 4) | (dc->condexec_mask >> 1),
11177 0);
11178 dc->insn_start = tcg_last_op();
11179 }
11180
11181 static bool arm_tr_breakpoint_check(DisasContextBase *dcbase, CPUState *cpu,
11182 const CPUBreakpoint *bp)
11183 {
11184 DisasContext *dc = container_of(dcbase, DisasContext, base);
11185
11186 if (bp->flags & BP_CPU) {
11187 gen_set_condexec(dc);
11188 gen_set_pc_im(dc, dc->base.pc_next);
11189 gen_helper_check_breakpoints(cpu_env);
11190 /* End the TB early; it's likely not going to be executed */
11191 dc->base.is_jmp = DISAS_TOO_MANY;
11192 } else {
11193 gen_exception_internal_insn(dc, dc->base.pc_next, EXCP_DEBUG);
11194 /* The address covered by the breakpoint must be
11195 included in [tb->pc, tb->pc + tb->size) in order
11196 to for it to be properly cleared -- thus we
11197 increment the PC here so that the logic setting
11198 tb->size below does the right thing. */
11199 /* TODO: Advance PC by correct instruction length to
11200 * avoid disassembler error messages */
11201 dc->base.pc_next += 2;
11202 dc->base.is_jmp = DISAS_NORETURN;
11203 }
11204
11205 return true;
11206 }
11207
11208 static bool arm_pre_translate_insn(DisasContext *dc)
11209 {
11210 #ifdef CONFIG_USER_ONLY
11211 /* Intercept jump to the magic kernel page. */
11212 if (dc->base.pc_next >= 0xffff0000) {
11213 /* We always get here via a jump, so know we are not in a
11214 conditional execution block. */
11215 gen_exception_internal(EXCP_KERNEL_TRAP);
11216 dc->base.is_jmp = DISAS_NORETURN;
11217 return true;
11218 }
11219 #endif
11220
11221 if (dc->ss_active && !dc->pstate_ss) {
11222 /* Singlestep state is Active-pending.
11223 * If we're in this state at the start of a TB then either
11224 * a) we just took an exception to an EL which is being debugged
11225 * and this is the first insn in the exception handler
11226 * b) debug exceptions were masked and we just unmasked them
11227 * without changing EL (eg by clearing PSTATE.D)
11228 * In either case we're going to take a swstep exception in the
11229 * "did not step an insn" case, and so the syndrome ISV and EX
11230 * bits should be zero.
11231 */
11232 assert(dc->base.num_insns == 1);
11233 gen_swstep_exception(dc, 0, 0);
11234 dc->base.is_jmp = DISAS_NORETURN;
11235 return true;
11236 }
11237
11238 return false;
11239 }
11240
11241 static void arm_post_translate_insn(DisasContext *dc)
11242 {
11243 if (dc->condjmp && !dc->base.is_jmp) {
11244 gen_set_label(dc->condlabel);
11245 dc->condjmp = 0;
11246 }
11247 translator_loop_temp_check(&dc->base);
11248 }
11249
11250 static void arm_tr_translate_insn(DisasContextBase *dcbase, CPUState *cpu)
11251 {
11252 DisasContext *dc = container_of(dcbase, DisasContext, base);
11253 CPUARMState *env = cpu->env_ptr;
11254 unsigned int insn;
11255
11256 if (arm_pre_translate_insn(dc)) {
11257 return;
11258 }
11259
11260 dc->pc_curr = dc->base.pc_next;
11261 insn = arm_ldl_code(env, dc->base.pc_next, dc->sctlr_b);
11262 dc->insn = insn;
11263 dc->base.pc_next += 4;
11264 disas_arm_insn(dc, insn);
11265
11266 arm_post_translate_insn(dc);
11267
11268 /* ARM is a fixed-length ISA. We performed the cross-page check
11269 in init_disas_context by adjusting max_insns. */
11270 }
11271
11272 static bool thumb_insn_is_unconditional(DisasContext *s, uint32_t insn)
11273 {
11274 /* Return true if this Thumb insn is always unconditional,
11275 * even inside an IT block. This is true of only a very few
11276 * instructions: BKPT, HLT, and SG.
11277 *
11278 * A larger class of instructions are UNPREDICTABLE if used
11279 * inside an IT block; we do not need to detect those here, because
11280 * what we do by default (perform the cc check and update the IT
11281 * bits state machine) is a permitted CONSTRAINED UNPREDICTABLE
11282 * choice for those situations.
11283 *
11284 * insn is either a 16-bit or a 32-bit instruction; the two are
11285 * distinguishable because for the 16-bit case the top 16 bits
11286 * are zeroes, and that isn't a valid 32-bit encoding.
11287 */
11288 if ((insn & 0xffffff00) == 0xbe00) {
11289 /* BKPT */
11290 return true;
11291 }
11292
11293 if ((insn & 0xffffffc0) == 0xba80 && arm_dc_feature(s, ARM_FEATURE_V8) &&
11294 !arm_dc_feature(s, ARM_FEATURE_M)) {
11295 /* HLT: v8A only. This is unconditional even when it is going to
11296 * UNDEF; see the v8A ARM ARM DDI0487B.a H3.3.
11297 * For v7 cores this was a plain old undefined encoding and so
11298 * honours its cc check. (We might be using the encoding as
11299 * a semihosting trap, but we don't change the cc check behaviour
11300 * on that account, because a debugger connected to a real v7A
11301 * core and emulating semihosting traps by catching the UNDEF
11302 * exception would also only see cases where the cc check passed.
11303 * No guest code should be trying to do a HLT semihosting trap
11304 * in an IT block anyway.
11305 */
11306 return true;
11307 }
11308
11309 if (insn == 0xe97fe97f && arm_dc_feature(s, ARM_FEATURE_V8) &&
11310 arm_dc_feature(s, ARM_FEATURE_M)) {
11311 /* SG: v8M only */
11312 return true;
11313 }
11314
11315 return false;
11316 }
11317
11318 static void thumb_tr_translate_insn(DisasContextBase *dcbase, CPUState *cpu)
11319 {
11320 DisasContext *dc = container_of(dcbase, DisasContext, base);
11321 CPUARMState *env = cpu->env_ptr;
11322 uint32_t insn;
11323 bool is_16bit;
11324
11325 if (arm_pre_translate_insn(dc)) {
11326 return;
11327 }
11328
11329 dc->pc_curr = dc->base.pc_next;
11330 insn = arm_lduw_code(env, dc->base.pc_next, dc->sctlr_b);
11331 is_16bit = thumb_insn_is_16bit(dc, dc->base.pc_next, insn);
11332 dc->base.pc_next += 2;
11333 if (!is_16bit) {
11334 uint32_t insn2 = arm_lduw_code(env, dc->base.pc_next, dc->sctlr_b);
11335
11336 insn = insn << 16 | insn2;
11337 dc->base.pc_next += 2;
11338 }
11339 dc->insn = insn;
11340
11341 if (dc->condexec_mask && !thumb_insn_is_unconditional(dc, insn)) {
11342 uint32_t cond = dc->condexec_cond;
11343
11344 /*
11345 * Conditionally skip the insn. Note that both 0xe and 0xf mean
11346 * "always"; 0xf is not "never".
11347 */
11348 if (cond < 0x0e) {
11349 arm_skip_unless(dc, cond);
11350 }
11351 }
11352
11353 if (is_16bit) {
11354 disas_thumb_insn(dc, insn);
11355 } else {
11356 disas_thumb2_insn(dc, insn);
11357 }
11358
11359 /* Advance the Thumb condexec condition. */
11360 if (dc->condexec_mask) {
11361 dc->condexec_cond = ((dc->condexec_cond & 0xe) |
11362 ((dc->condexec_mask >> 4) & 1));
11363 dc->condexec_mask = (dc->condexec_mask << 1) & 0x1f;
11364 if (dc->condexec_mask == 0) {
11365 dc->condexec_cond = 0;
11366 }
11367 }
11368
11369 arm_post_translate_insn(dc);
11370
11371 /* Thumb is a variable-length ISA. Stop translation when the next insn
11372 * will touch a new page. This ensures that prefetch aborts occur at
11373 * the right place.
11374 *
11375 * We want to stop the TB if the next insn starts in a new page,
11376 * or if it spans between this page and the next. This means that
11377 * if we're looking at the last halfword in the page we need to
11378 * see if it's a 16-bit Thumb insn (which will fit in this TB)
11379 * or a 32-bit Thumb insn (which won't).
11380 * This is to avoid generating a silly TB with a single 16-bit insn
11381 * in it at the end of this page (which would execute correctly
11382 * but isn't very efficient).
11383 */
11384 if (dc->base.is_jmp == DISAS_NEXT
11385 && (dc->base.pc_next - dc->page_start >= TARGET_PAGE_SIZE
11386 || (dc->base.pc_next - dc->page_start >= TARGET_PAGE_SIZE - 3
11387 && insn_crosses_page(env, dc)))) {
11388 dc->base.is_jmp = DISAS_TOO_MANY;
11389 }
11390 }
11391
11392 static void arm_tr_tb_stop(DisasContextBase *dcbase, CPUState *cpu)
11393 {
11394 DisasContext *dc = container_of(dcbase, DisasContext, base);
11395
11396 if (tb_cflags(dc->base.tb) & CF_LAST_IO && dc->condjmp) {
11397 /* FIXME: This can theoretically happen with self-modifying code. */
11398 cpu_abort(cpu, "IO on conditional branch instruction");
11399 }
11400
11401 /* At this stage dc->condjmp will only be set when the skipped
11402 instruction was a conditional branch or trap, and the PC has
11403 already been written. */
11404 gen_set_condexec(dc);
11405 if (dc->base.is_jmp == DISAS_BX_EXCRET) {
11406 /* Exception return branches need some special case code at the
11407 * end of the TB, which is complex enough that it has to
11408 * handle the single-step vs not and the condition-failed
11409 * insn codepath itself.
11410 */
11411 gen_bx_excret_final_code(dc);
11412 } else if (unlikely(is_singlestepping(dc))) {
11413 /* Unconditional and "condition passed" instruction codepath. */
11414 switch (dc->base.is_jmp) {
11415 case DISAS_SWI:
11416 gen_ss_advance(dc);
11417 gen_exception(EXCP_SWI, syn_aa32_svc(dc->svc_imm, dc->thumb),
11418 default_exception_el(dc));
11419 break;
11420 case DISAS_HVC:
11421 gen_ss_advance(dc);
11422 gen_exception(EXCP_HVC, syn_aa32_hvc(dc->svc_imm), 2);
11423 break;
11424 case DISAS_SMC:
11425 gen_ss_advance(dc);
11426 gen_exception(EXCP_SMC, syn_aa32_smc(), 3);
11427 break;
11428 case DISAS_NEXT:
11429 case DISAS_TOO_MANY:
11430 case DISAS_UPDATE:
11431 gen_set_pc_im(dc, dc->base.pc_next);
11432 /* fall through */
11433 default:
11434 /* FIXME: Single stepping a WFI insn will not halt the CPU. */
11435 gen_singlestep_exception(dc);
11436 break;
11437 case DISAS_NORETURN:
11438 break;
11439 }
11440 } else {
11441 /* While branches must always occur at the end of an IT block,
11442 there are a few other things that can cause us to terminate
11443 the TB in the middle of an IT block:
11444 - Exception generating instructions (bkpt, swi, undefined).
11445 - Page boundaries.
11446 - Hardware watchpoints.
11447 Hardware breakpoints have already been handled and skip this code.
11448 */
11449 switch(dc->base.is_jmp) {
11450 case DISAS_NEXT:
11451 case DISAS_TOO_MANY:
11452 gen_goto_tb(dc, 1, dc->base.pc_next);
11453 break;
11454 case DISAS_JUMP:
11455 gen_goto_ptr();
11456 break;
11457 case DISAS_UPDATE:
11458 gen_set_pc_im(dc, dc->base.pc_next);
11459 /* fall through */
11460 default:
11461 /* indicate that the hash table must be used to find the next TB */
11462 tcg_gen_exit_tb(NULL, 0);
11463 break;
11464 case DISAS_NORETURN:
11465 /* nothing more to generate */
11466 break;
11467 case DISAS_WFI:
11468 {
11469 TCGv_i32 tmp = tcg_const_i32((dc->thumb &&
11470 !(dc->insn & (1U << 31))) ? 2 : 4);
11471
11472 gen_helper_wfi(cpu_env, tmp);
11473 tcg_temp_free_i32(tmp);
11474 /* The helper doesn't necessarily throw an exception, but we
11475 * must go back to the main loop to check for interrupts anyway.
11476 */
11477 tcg_gen_exit_tb(NULL, 0);
11478 break;
11479 }
11480 case DISAS_WFE:
11481 gen_helper_wfe(cpu_env);
11482 break;
11483 case DISAS_YIELD:
11484 gen_helper_yield(cpu_env);
11485 break;
11486 case DISAS_SWI:
11487 gen_exception(EXCP_SWI, syn_aa32_svc(dc->svc_imm, dc->thumb),
11488 default_exception_el(dc));
11489 break;
11490 case DISAS_HVC:
11491 gen_exception(EXCP_HVC, syn_aa32_hvc(dc->svc_imm), 2);
11492 break;
11493 case DISAS_SMC:
11494 gen_exception(EXCP_SMC, syn_aa32_smc(), 3);
11495 break;
11496 }
11497 }
11498
11499 if (dc->condjmp) {
11500 /* "Condition failed" instruction codepath for the branch/trap insn */
11501 gen_set_label(dc->condlabel);
11502 gen_set_condexec(dc);
11503 if (unlikely(is_singlestepping(dc))) {
11504 gen_set_pc_im(dc, dc->base.pc_next);
11505 gen_singlestep_exception(dc);
11506 } else {
11507 gen_goto_tb(dc, 1, dc->base.pc_next);
11508 }
11509 }
11510 }
11511
11512 static void arm_tr_disas_log(const DisasContextBase *dcbase, CPUState *cpu)
11513 {
11514 DisasContext *dc = container_of(dcbase, DisasContext, base);
11515
11516 qemu_log("IN: %s\n", lookup_symbol(dc->base.pc_first));
11517 log_target_disas(cpu, dc->base.pc_first, dc->base.tb->size);
11518 }
11519
11520 static const TranslatorOps arm_translator_ops = {
11521 .init_disas_context = arm_tr_init_disas_context,
11522 .tb_start = arm_tr_tb_start,
11523 .insn_start = arm_tr_insn_start,
11524 .breakpoint_check = arm_tr_breakpoint_check,
11525 .translate_insn = arm_tr_translate_insn,
11526 .tb_stop = arm_tr_tb_stop,
11527 .disas_log = arm_tr_disas_log,
11528 };
11529
11530 static const TranslatorOps thumb_translator_ops = {
11531 .init_disas_context = arm_tr_init_disas_context,
11532 .tb_start = arm_tr_tb_start,
11533 .insn_start = arm_tr_insn_start,
11534 .breakpoint_check = arm_tr_breakpoint_check,
11535 .translate_insn = thumb_tr_translate_insn,
11536 .tb_stop = arm_tr_tb_stop,
11537 .disas_log = arm_tr_disas_log,
11538 };
11539
11540 /* generate intermediate code for basic block 'tb'. */
11541 void gen_intermediate_code(CPUState *cpu, TranslationBlock *tb, int max_insns)
11542 {
11543 DisasContext dc;
11544 const TranslatorOps *ops = &arm_translator_ops;
11545
11546 if (FIELD_EX32(tb->flags, TBFLAG_A32, THUMB)) {
11547 ops = &thumb_translator_ops;
11548 }
11549 #ifdef TARGET_AARCH64
11550 if (FIELD_EX32(tb->flags, TBFLAG_ANY, AARCH64_STATE)) {
11551 ops = &aarch64_translator_ops;
11552 }
11553 #endif
11554
11555 translator_loop(ops, &dc.base, cpu, tb, max_insns);
11556 }
11557
11558 void restore_state_to_opc(CPUARMState *env, TranslationBlock *tb,
11559 target_ulong *data)
11560 {
11561 if (is_a64(env)) {
11562 env->pc = data[0];
11563 env->condexec_bits = 0;
11564 env->exception.syndrome = data[2] << ARM_INSN_START_WORD2_SHIFT;
11565 } else {
11566 env->regs[15] = data[0];
11567 env->condexec_bits = data[1];
11568 env->exception.syndrome = data[2] << ARM_INSN_START_WORD2_SHIFT;
11569 }
11570 }