target/avr: CPU class: Add migration support
[qemu/ar7.git] / target / arm / translate-neon.inc.c
blobf6cb92157395e7d20da72a4e7e16bea2da22719d
1 /*
2 * ARM translation: AArch32 Neon instructions
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2005-2007 CodeSourcery
6 * Copyright (c) 2007 OpenedHand, Ltd.
7 * Copyright (c) 2020 Linaro, Ltd.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 * This file is intended to be included from translate.c; it uses
25 * some macros and definitions provided by that file.
26 * It might be possible to convert it to a standalone .c file eventually.
29 static inline int plus1(DisasContext *s, int x)
31 return x + 1;
34 static inline int rsub_64(DisasContext *s, int x)
36 return 64 - x;
39 static inline int rsub_32(DisasContext *s, int x)
41 return 32 - x;
43 static inline int rsub_16(DisasContext *s, int x)
45 return 16 - x;
47 static inline int rsub_8(DisasContext *s, int x)
49 return 8 - x;
52 /* Include the generated Neon decoder */
53 #include "decode-neon-dp.inc.c"
54 #include "decode-neon-ls.inc.c"
55 #include "decode-neon-shared.inc.c"
57 /* Return the offset of a 2**SIZE piece of a NEON register, at index ELE,
58 * where 0 is the least significant end of the register.
60 static inline long
61 neon_element_offset(int reg, int element, MemOp size)
63 int element_size = 1 << size;
64 int ofs = element * element_size;
65 #ifdef HOST_WORDS_BIGENDIAN
66 /* Calculate the offset assuming fully little-endian,
67 * then XOR to account for the order of the 8-byte units.
69 if (element_size < 8) {
70 ofs ^= 8 - element_size;
72 #endif
73 return neon_reg_offset(reg, 0) + ofs;
76 static void neon_load_element(TCGv_i32 var, int reg, int ele, MemOp mop)
78 long offset = neon_element_offset(reg, ele, mop & MO_SIZE);
80 switch (mop) {
81 case MO_UB:
82 tcg_gen_ld8u_i32(var, cpu_env, offset);
83 break;
84 case MO_UW:
85 tcg_gen_ld16u_i32(var, cpu_env, offset);
86 break;
87 case MO_UL:
88 tcg_gen_ld_i32(var, cpu_env, offset);
89 break;
90 default:
91 g_assert_not_reached();
95 static void neon_load_element64(TCGv_i64 var, int reg, int ele, MemOp mop)
97 long offset = neon_element_offset(reg, ele, mop & MO_SIZE);
99 switch (mop) {
100 case MO_UB:
101 tcg_gen_ld8u_i64(var, cpu_env, offset);
102 break;
103 case MO_UW:
104 tcg_gen_ld16u_i64(var, cpu_env, offset);
105 break;
106 case MO_UL:
107 tcg_gen_ld32u_i64(var, cpu_env, offset);
108 break;
109 case MO_Q:
110 tcg_gen_ld_i64(var, cpu_env, offset);
111 break;
112 default:
113 g_assert_not_reached();
117 static void neon_store_element(int reg, int ele, MemOp size, TCGv_i32 var)
119 long offset = neon_element_offset(reg, ele, size);
121 switch (size) {
122 case MO_8:
123 tcg_gen_st8_i32(var, cpu_env, offset);
124 break;
125 case MO_16:
126 tcg_gen_st16_i32(var, cpu_env, offset);
127 break;
128 case MO_32:
129 tcg_gen_st_i32(var, cpu_env, offset);
130 break;
131 default:
132 g_assert_not_reached();
136 static void neon_store_element64(int reg, int ele, MemOp size, TCGv_i64 var)
138 long offset = neon_element_offset(reg, ele, size);
140 switch (size) {
141 case MO_8:
142 tcg_gen_st8_i64(var, cpu_env, offset);
143 break;
144 case MO_16:
145 tcg_gen_st16_i64(var, cpu_env, offset);
146 break;
147 case MO_32:
148 tcg_gen_st32_i64(var, cpu_env, offset);
149 break;
150 case MO_64:
151 tcg_gen_st_i64(var, cpu_env, offset);
152 break;
153 default:
154 g_assert_not_reached();
158 static bool trans_VCMLA(DisasContext *s, arg_VCMLA *a)
160 int opr_sz;
161 TCGv_ptr fpst;
162 gen_helper_gvec_3_ptr *fn_gvec_ptr;
164 if (!dc_isar_feature(aa32_vcma, s)
165 || (!a->size && !dc_isar_feature(aa32_fp16_arith, s))) {
166 return false;
169 /* UNDEF accesses to D16-D31 if they don't exist. */
170 if (!dc_isar_feature(aa32_simd_r32, s) &&
171 ((a->vd | a->vn | a->vm) & 0x10)) {
172 return false;
175 if ((a->vn | a->vm | a->vd) & a->q) {
176 return false;
179 if (!vfp_access_check(s)) {
180 return true;
183 opr_sz = (1 + a->q) * 8;
184 fpst = get_fpstatus_ptr(1);
185 fn_gvec_ptr = a->size ? gen_helper_gvec_fcmlas : gen_helper_gvec_fcmlah;
186 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, a->vd),
187 vfp_reg_offset(1, a->vn),
188 vfp_reg_offset(1, a->vm),
189 fpst, opr_sz, opr_sz, a->rot,
190 fn_gvec_ptr);
191 tcg_temp_free_ptr(fpst);
192 return true;
195 static bool trans_VCADD(DisasContext *s, arg_VCADD *a)
197 int opr_sz;
198 TCGv_ptr fpst;
199 gen_helper_gvec_3_ptr *fn_gvec_ptr;
201 if (!dc_isar_feature(aa32_vcma, s)
202 || (!a->size && !dc_isar_feature(aa32_fp16_arith, s))) {
203 return false;
206 /* UNDEF accesses to D16-D31 if they don't exist. */
207 if (!dc_isar_feature(aa32_simd_r32, s) &&
208 ((a->vd | a->vn | a->vm) & 0x10)) {
209 return false;
212 if ((a->vn | a->vm | a->vd) & a->q) {
213 return false;
216 if (!vfp_access_check(s)) {
217 return true;
220 opr_sz = (1 + a->q) * 8;
221 fpst = get_fpstatus_ptr(1);
222 fn_gvec_ptr = a->size ? gen_helper_gvec_fcadds : gen_helper_gvec_fcaddh;
223 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, a->vd),
224 vfp_reg_offset(1, a->vn),
225 vfp_reg_offset(1, a->vm),
226 fpst, opr_sz, opr_sz, a->rot,
227 fn_gvec_ptr);
228 tcg_temp_free_ptr(fpst);
229 return true;
232 static bool trans_VDOT(DisasContext *s, arg_VDOT *a)
234 int opr_sz;
235 gen_helper_gvec_3 *fn_gvec;
237 if (!dc_isar_feature(aa32_dp, s)) {
238 return false;
241 /* UNDEF accesses to D16-D31 if they don't exist. */
242 if (!dc_isar_feature(aa32_simd_r32, s) &&
243 ((a->vd | a->vn | a->vm) & 0x10)) {
244 return false;
247 if ((a->vn | a->vm | a->vd) & a->q) {
248 return false;
251 if (!vfp_access_check(s)) {
252 return true;
255 opr_sz = (1 + a->q) * 8;
256 fn_gvec = a->u ? gen_helper_gvec_udot_b : gen_helper_gvec_sdot_b;
257 tcg_gen_gvec_3_ool(vfp_reg_offset(1, a->vd),
258 vfp_reg_offset(1, a->vn),
259 vfp_reg_offset(1, a->vm),
260 opr_sz, opr_sz, 0, fn_gvec);
261 return true;
264 static bool trans_VFML(DisasContext *s, arg_VFML *a)
266 int opr_sz;
268 if (!dc_isar_feature(aa32_fhm, s)) {
269 return false;
272 /* UNDEF accesses to D16-D31 if they don't exist. */
273 if (!dc_isar_feature(aa32_simd_r32, s) &&
274 (a->vd & 0x10)) {
275 return false;
278 if (a->vd & a->q) {
279 return false;
282 if (!vfp_access_check(s)) {
283 return true;
286 opr_sz = (1 + a->q) * 8;
287 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, a->vd),
288 vfp_reg_offset(a->q, a->vn),
289 vfp_reg_offset(a->q, a->vm),
290 cpu_env, opr_sz, opr_sz, a->s, /* is_2 == 0 */
291 gen_helper_gvec_fmlal_a32);
292 return true;
295 static bool trans_VCMLA_scalar(DisasContext *s, arg_VCMLA_scalar *a)
297 gen_helper_gvec_3_ptr *fn_gvec_ptr;
298 int opr_sz;
299 TCGv_ptr fpst;
301 if (!dc_isar_feature(aa32_vcma, s)) {
302 return false;
304 if (a->size == 0 && !dc_isar_feature(aa32_fp16_arith, s)) {
305 return false;
308 /* UNDEF accesses to D16-D31 if they don't exist. */
309 if (!dc_isar_feature(aa32_simd_r32, s) &&
310 ((a->vd | a->vn | a->vm) & 0x10)) {
311 return false;
314 if ((a->vd | a->vn) & a->q) {
315 return false;
318 if (!vfp_access_check(s)) {
319 return true;
322 fn_gvec_ptr = (a->size ? gen_helper_gvec_fcmlas_idx
323 : gen_helper_gvec_fcmlah_idx);
324 opr_sz = (1 + a->q) * 8;
325 fpst = get_fpstatus_ptr(1);
326 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, a->vd),
327 vfp_reg_offset(1, a->vn),
328 vfp_reg_offset(1, a->vm),
329 fpst, opr_sz, opr_sz,
330 (a->index << 2) | a->rot, fn_gvec_ptr);
331 tcg_temp_free_ptr(fpst);
332 return true;
335 static bool trans_VDOT_scalar(DisasContext *s, arg_VDOT_scalar *a)
337 gen_helper_gvec_3 *fn_gvec;
338 int opr_sz;
339 TCGv_ptr fpst;
341 if (!dc_isar_feature(aa32_dp, s)) {
342 return false;
345 /* UNDEF accesses to D16-D31 if they don't exist. */
346 if (!dc_isar_feature(aa32_simd_r32, s) &&
347 ((a->vd | a->vn) & 0x10)) {
348 return false;
351 if ((a->vd | a->vn) & a->q) {
352 return false;
355 if (!vfp_access_check(s)) {
356 return true;
359 fn_gvec = a->u ? gen_helper_gvec_udot_idx_b : gen_helper_gvec_sdot_idx_b;
360 opr_sz = (1 + a->q) * 8;
361 fpst = get_fpstatus_ptr(1);
362 tcg_gen_gvec_3_ool(vfp_reg_offset(1, a->vd),
363 vfp_reg_offset(1, a->vn),
364 vfp_reg_offset(1, a->rm),
365 opr_sz, opr_sz, a->index, fn_gvec);
366 tcg_temp_free_ptr(fpst);
367 return true;
370 static bool trans_VFML_scalar(DisasContext *s, arg_VFML_scalar *a)
372 int opr_sz;
374 if (!dc_isar_feature(aa32_fhm, s)) {
375 return false;
378 /* UNDEF accesses to D16-D31 if they don't exist. */
379 if (!dc_isar_feature(aa32_simd_r32, s) &&
380 ((a->vd & 0x10) || (a->q && (a->vn & 0x10)))) {
381 return false;
384 if (a->vd & a->q) {
385 return false;
388 if (!vfp_access_check(s)) {
389 return true;
392 opr_sz = (1 + a->q) * 8;
393 tcg_gen_gvec_3_ptr(vfp_reg_offset(1, a->vd),
394 vfp_reg_offset(a->q, a->vn),
395 vfp_reg_offset(a->q, a->rm),
396 cpu_env, opr_sz, opr_sz,
397 (a->index << 2) | a->s, /* is_2 == 0 */
398 gen_helper_gvec_fmlal_idx_a32);
399 return true;
402 static struct {
403 int nregs;
404 int interleave;
405 int spacing;
406 } const neon_ls_element_type[11] = {
407 {1, 4, 1},
408 {1, 4, 2},
409 {4, 1, 1},
410 {2, 2, 2},
411 {1, 3, 1},
412 {1, 3, 2},
413 {3, 1, 1},
414 {1, 1, 1},
415 {1, 2, 1},
416 {1, 2, 2},
417 {2, 1, 1}
420 static void gen_neon_ldst_base_update(DisasContext *s, int rm, int rn,
421 int stride)
423 if (rm != 15) {
424 TCGv_i32 base;
426 base = load_reg(s, rn);
427 if (rm == 13) {
428 tcg_gen_addi_i32(base, base, stride);
429 } else {
430 TCGv_i32 index;
431 index = load_reg(s, rm);
432 tcg_gen_add_i32(base, base, index);
433 tcg_temp_free_i32(index);
435 store_reg(s, rn, base);
439 static bool trans_VLDST_multiple(DisasContext *s, arg_VLDST_multiple *a)
441 /* Neon load/store multiple structures */
442 int nregs, interleave, spacing, reg, n;
443 MemOp endian = s->be_data;
444 int mmu_idx = get_mem_index(s);
445 int size = a->size;
446 TCGv_i64 tmp64;
447 TCGv_i32 addr, tmp;
449 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
450 return false;
453 /* UNDEF accesses to D16-D31 if they don't exist */
454 if (!dc_isar_feature(aa32_simd_r32, s) && (a->vd & 0x10)) {
455 return false;
457 if (a->itype > 10) {
458 return false;
460 /* Catch UNDEF cases for bad values of align field */
461 switch (a->itype & 0xc) {
462 case 4:
463 if (a->align >= 2) {
464 return false;
466 break;
467 case 8:
468 if (a->align == 3) {
469 return false;
471 break;
472 default:
473 break;
475 nregs = neon_ls_element_type[a->itype].nregs;
476 interleave = neon_ls_element_type[a->itype].interleave;
477 spacing = neon_ls_element_type[a->itype].spacing;
478 if (size == 3 && (interleave | spacing) != 1) {
479 return false;
482 if (!vfp_access_check(s)) {
483 return true;
486 /* For our purposes, bytes are always little-endian. */
487 if (size == 0) {
488 endian = MO_LE;
491 * Consecutive little-endian elements from a single register
492 * can be promoted to a larger little-endian operation.
494 if (interleave == 1 && endian == MO_LE) {
495 size = 3;
497 tmp64 = tcg_temp_new_i64();
498 addr = tcg_temp_new_i32();
499 tmp = tcg_const_i32(1 << size);
500 load_reg_var(s, addr, a->rn);
501 for (reg = 0; reg < nregs; reg++) {
502 for (n = 0; n < 8 >> size; n++) {
503 int xs;
504 for (xs = 0; xs < interleave; xs++) {
505 int tt = a->vd + reg + spacing * xs;
507 if (a->l) {
508 gen_aa32_ld_i64(s, tmp64, addr, mmu_idx, endian | size);
509 neon_store_element64(tt, n, size, tmp64);
510 } else {
511 neon_load_element64(tmp64, tt, n, size);
512 gen_aa32_st_i64(s, tmp64, addr, mmu_idx, endian | size);
514 tcg_gen_add_i32(addr, addr, tmp);
518 tcg_temp_free_i32(addr);
519 tcg_temp_free_i32(tmp);
520 tcg_temp_free_i64(tmp64);
522 gen_neon_ldst_base_update(s, a->rm, a->rn, nregs * interleave * 8);
523 return true;
526 static bool trans_VLD_all_lanes(DisasContext *s, arg_VLD_all_lanes *a)
528 /* Neon load single structure to all lanes */
529 int reg, stride, vec_size;
530 int vd = a->vd;
531 int size = a->size;
532 int nregs = a->n + 1;
533 TCGv_i32 addr, tmp;
535 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
536 return false;
539 /* UNDEF accesses to D16-D31 if they don't exist */
540 if (!dc_isar_feature(aa32_simd_r32, s) && (a->vd & 0x10)) {
541 return false;
544 if (size == 3) {
545 if (nregs != 4 || a->a == 0) {
546 return false;
548 /* For VLD4 size == 3 a == 1 means 32 bits at 16 byte alignment */
549 size = 2;
551 if (nregs == 1 && a->a == 1 && size == 0) {
552 return false;
554 if (nregs == 3 && a->a == 1) {
555 return false;
558 if (!vfp_access_check(s)) {
559 return true;
563 * VLD1 to all lanes: T bit indicates how many Dregs to write.
564 * VLD2/3/4 to all lanes: T bit indicates register stride.
566 stride = a->t ? 2 : 1;
567 vec_size = nregs == 1 ? stride * 8 : 8;
569 tmp = tcg_temp_new_i32();
570 addr = tcg_temp_new_i32();
571 load_reg_var(s, addr, a->rn);
572 for (reg = 0; reg < nregs; reg++) {
573 gen_aa32_ld_i32(s, tmp, addr, get_mem_index(s),
574 s->be_data | size);
575 if ((vd & 1) && vec_size == 16) {
577 * We cannot write 16 bytes at once because the
578 * destination is unaligned.
580 tcg_gen_gvec_dup_i32(size, neon_reg_offset(vd, 0),
581 8, 8, tmp);
582 tcg_gen_gvec_mov(0, neon_reg_offset(vd + 1, 0),
583 neon_reg_offset(vd, 0), 8, 8);
584 } else {
585 tcg_gen_gvec_dup_i32(size, neon_reg_offset(vd, 0),
586 vec_size, vec_size, tmp);
588 tcg_gen_addi_i32(addr, addr, 1 << size);
589 vd += stride;
591 tcg_temp_free_i32(tmp);
592 tcg_temp_free_i32(addr);
594 gen_neon_ldst_base_update(s, a->rm, a->rn, (1 << size) * nregs);
596 return true;
599 static bool trans_VLDST_single(DisasContext *s, arg_VLDST_single *a)
601 /* Neon load/store single structure to one lane */
602 int reg;
603 int nregs = a->n + 1;
604 int vd = a->vd;
605 TCGv_i32 addr, tmp;
607 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
608 return false;
611 /* UNDEF accesses to D16-D31 if they don't exist */
612 if (!dc_isar_feature(aa32_simd_r32, s) && (a->vd & 0x10)) {
613 return false;
616 /* Catch the UNDEF cases. This is unavoidably a bit messy. */
617 switch (nregs) {
618 case 1:
619 if (((a->align & (1 << a->size)) != 0) ||
620 (a->size == 2 && ((a->align & 3) == 1 || (a->align & 3) == 2))) {
621 return false;
623 break;
624 case 3:
625 if ((a->align & 1) != 0) {
626 return false;
628 /* fall through */
629 case 2:
630 if (a->size == 2 && (a->align & 2) != 0) {
631 return false;
633 break;
634 case 4:
635 if ((a->size == 2) && ((a->align & 3) == 3)) {
636 return false;
638 break;
639 default:
640 abort();
642 if ((vd + a->stride * (nregs - 1)) > 31) {
644 * Attempts to write off the end of the register file are
645 * UNPREDICTABLE; we choose to UNDEF because otherwise we would
646 * access off the end of the array that holds the register data.
648 return false;
651 if (!vfp_access_check(s)) {
652 return true;
655 tmp = tcg_temp_new_i32();
656 addr = tcg_temp_new_i32();
657 load_reg_var(s, addr, a->rn);
659 * TODO: if we implemented alignment exceptions, we should check
660 * addr against the alignment encoded in a->align here.
662 for (reg = 0; reg < nregs; reg++) {
663 if (a->l) {
664 gen_aa32_ld_i32(s, tmp, addr, get_mem_index(s),
665 s->be_data | a->size);
666 neon_store_element(vd, a->reg_idx, a->size, tmp);
667 } else { /* Store */
668 neon_load_element(tmp, vd, a->reg_idx, a->size);
669 gen_aa32_st_i32(s, tmp, addr, get_mem_index(s),
670 s->be_data | a->size);
672 vd += a->stride;
673 tcg_gen_addi_i32(addr, addr, 1 << a->size);
675 tcg_temp_free_i32(addr);
676 tcg_temp_free_i32(tmp);
678 gen_neon_ldst_base_update(s, a->rm, a->rn, (1 << a->size) * nregs);
680 return true;
683 static bool do_3same(DisasContext *s, arg_3same *a, GVecGen3Fn fn)
685 int vec_size = a->q ? 16 : 8;
686 int rd_ofs = neon_reg_offset(a->vd, 0);
687 int rn_ofs = neon_reg_offset(a->vn, 0);
688 int rm_ofs = neon_reg_offset(a->vm, 0);
690 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
691 return false;
694 /* UNDEF accesses to D16-D31 if they don't exist. */
695 if (!dc_isar_feature(aa32_simd_r32, s) &&
696 ((a->vd | a->vn | a->vm) & 0x10)) {
697 return false;
700 if ((a->vn | a->vm | a->vd) & a->q) {
701 return false;
704 if (!vfp_access_check(s)) {
705 return true;
708 fn(a->size, rd_ofs, rn_ofs, rm_ofs, vec_size, vec_size);
709 return true;
712 #define DO_3SAME(INSN, FUNC) \
713 static bool trans_##INSN##_3s(DisasContext *s, arg_3same *a) \
715 return do_3same(s, a, FUNC); \
718 DO_3SAME(VADD, tcg_gen_gvec_add)
719 DO_3SAME(VSUB, tcg_gen_gvec_sub)
720 DO_3SAME(VAND, tcg_gen_gvec_and)
721 DO_3SAME(VBIC, tcg_gen_gvec_andc)
722 DO_3SAME(VORR, tcg_gen_gvec_or)
723 DO_3SAME(VORN, tcg_gen_gvec_orc)
724 DO_3SAME(VEOR, tcg_gen_gvec_xor)
725 DO_3SAME(VSHL_S, gen_gvec_sshl)
726 DO_3SAME(VSHL_U, gen_gvec_ushl)
727 DO_3SAME(VQADD_S, gen_gvec_sqadd_qc)
728 DO_3SAME(VQADD_U, gen_gvec_uqadd_qc)
729 DO_3SAME(VQSUB_S, gen_gvec_sqsub_qc)
730 DO_3SAME(VQSUB_U, gen_gvec_uqsub_qc)
732 /* These insns are all gvec_bitsel but with the inputs in various orders. */
733 #define DO_3SAME_BITSEL(INSN, O1, O2, O3) \
734 static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
735 uint32_t rn_ofs, uint32_t rm_ofs, \
736 uint32_t oprsz, uint32_t maxsz) \
738 tcg_gen_gvec_bitsel(vece, rd_ofs, O1, O2, O3, oprsz, maxsz); \
740 DO_3SAME(INSN, gen_##INSN##_3s)
742 DO_3SAME_BITSEL(VBSL, rd_ofs, rn_ofs, rm_ofs)
743 DO_3SAME_BITSEL(VBIT, rm_ofs, rn_ofs, rd_ofs)
744 DO_3SAME_BITSEL(VBIF, rm_ofs, rd_ofs, rn_ofs)
746 #define DO_3SAME_NO_SZ_3(INSN, FUNC) \
747 static bool trans_##INSN##_3s(DisasContext *s, arg_3same *a) \
749 if (a->size == 3) { \
750 return false; \
752 return do_3same(s, a, FUNC); \
755 DO_3SAME_NO_SZ_3(VMAX_S, tcg_gen_gvec_smax)
756 DO_3SAME_NO_SZ_3(VMAX_U, tcg_gen_gvec_umax)
757 DO_3SAME_NO_SZ_3(VMIN_S, tcg_gen_gvec_smin)
758 DO_3SAME_NO_SZ_3(VMIN_U, tcg_gen_gvec_umin)
759 DO_3SAME_NO_SZ_3(VMUL, tcg_gen_gvec_mul)
760 DO_3SAME_NO_SZ_3(VMLA, gen_gvec_mla)
761 DO_3SAME_NO_SZ_3(VMLS, gen_gvec_mls)
762 DO_3SAME_NO_SZ_3(VTST, gen_gvec_cmtst)
763 DO_3SAME_NO_SZ_3(VABD_S, gen_gvec_sabd)
764 DO_3SAME_NO_SZ_3(VABA_S, gen_gvec_saba)
765 DO_3SAME_NO_SZ_3(VABD_U, gen_gvec_uabd)
766 DO_3SAME_NO_SZ_3(VABA_U, gen_gvec_uaba)
768 #define DO_3SAME_CMP(INSN, COND) \
769 static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
770 uint32_t rn_ofs, uint32_t rm_ofs, \
771 uint32_t oprsz, uint32_t maxsz) \
773 tcg_gen_gvec_cmp(COND, vece, rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz); \
775 DO_3SAME_NO_SZ_3(INSN, gen_##INSN##_3s)
777 DO_3SAME_CMP(VCGT_S, TCG_COND_GT)
778 DO_3SAME_CMP(VCGT_U, TCG_COND_GTU)
779 DO_3SAME_CMP(VCGE_S, TCG_COND_GE)
780 DO_3SAME_CMP(VCGE_U, TCG_COND_GEU)
781 DO_3SAME_CMP(VCEQ, TCG_COND_EQ)
783 #define WRAP_OOL_FN(WRAPNAME, FUNC) \
784 static void WRAPNAME(unsigned vece, uint32_t rd_ofs, uint32_t rn_ofs, \
785 uint32_t rm_ofs, uint32_t oprsz, uint32_t maxsz) \
787 tcg_gen_gvec_3_ool(rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz, 0, FUNC); \
790 WRAP_OOL_FN(gen_VMUL_p_3s, gen_helper_gvec_pmul_b)
792 static bool trans_VMUL_p_3s(DisasContext *s, arg_3same *a)
794 if (a->size != 0) {
795 return false;
797 return do_3same(s, a, gen_VMUL_p_3s);
800 #define DO_VQRDMLAH(INSN, FUNC) \
801 static bool trans_##INSN##_3s(DisasContext *s, arg_3same *a) \
803 if (!dc_isar_feature(aa32_rdm, s)) { \
804 return false; \
806 if (a->size != 1 && a->size != 2) { \
807 return false; \
809 return do_3same(s, a, FUNC); \
812 DO_VQRDMLAH(VQRDMLAH, gen_gvec_sqrdmlah_qc)
813 DO_VQRDMLAH(VQRDMLSH, gen_gvec_sqrdmlsh_qc)
815 #define DO_SHA1(NAME, FUNC) \
816 WRAP_OOL_FN(gen_##NAME##_3s, FUNC) \
817 static bool trans_##NAME##_3s(DisasContext *s, arg_3same *a) \
819 if (!dc_isar_feature(aa32_sha1, s)) { \
820 return false; \
822 return do_3same(s, a, gen_##NAME##_3s); \
825 DO_SHA1(SHA1C, gen_helper_crypto_sha1c)
826 DO_SHA1(SHA1P, gen_helper_crypto_sha1p)
827 DO_SHA1(SHA1M, gen_helper_crypto_sha1m)
828 DO_SHA1(SHA1SU0, gen_helper_crypto_sha1su0)
830 #define DO_SHA2(NAME, FUNC) \
831 WRAP_OOL_FN(gen_##NAME##_3s, FUNC) \
832 static bool trans_##NAME##_3s(DisasContext *s, arg_3same *a) \
834 if (!dc_isar_feature(aa32_sha2, s)) { \
835 return false; \
837 return do_3same(s, a, gen_##NAME##_3s); \
840 DO_SHA2(SHA256H, gen_helper_crypto_sha256h)
841 DO_SHA2(SHA256H2, gen_helper_crypto_sha256h2)
842 DO_SHA2(SHA256SU1, gen_helper_crypto_sha256su1)
844 #define DO_3SAME_64(INSN, FUNC) \
845 static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
846 uint32_t rn_ofs, uint32_t rm_ofs, \
847 uint32_t oprsz, uint32_t maxsz) \
849 static const GVecGen3 op = { .fni8 = FUNC }; \
850 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz, &op); \
852 DO_3SAME(INSN, gen_##INSN##_3s)
854 #define DO_3SAME_64_ENV(INSN, FUNC) \
855 static void gen_##INSN##_elt(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m) \
857 FUNC(d, cpu_env, n, m); \
859 DO_3SAME_64(INSN, gen_##INSN##_elt)
861 DO_3SAME_64(VRSHL_S64, gen_helper_neon_rshl_s64)
862 DO_3SAME_64(VRSHL_U64, gen_helper_neon_rshl_u64)
863 DO_3SAME_64_ENV(VQSHL_S64, gen_helper_neon_qshl_s64)
864 DO_3SAME_64_ENV(VQSHL_U64, gen_helper_neon_qshl_u64)
865 DO_3SAME_64_ENV(VQRSHL_S64, gen_helper_neon_qrshl_s64)
866 DO_3SAME_64_ENV(VQRSHL_U64, gen_helper_neon_qrshl_u64)
868 #define DO_3SAME_32(INSN, FUNC) \
869 static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
870 uint32_t rn_ofs, uint32_t rm_ofs, \
871 uint32_t oprsz, uint32_t maxsz) \
873 static const GVecGen3 ops[4] = { \
874 { .fni4 = gen_helper_neon_##FUNC##8 }, \
875 { .fni4 = gen_helper_neon_##FUNC##16 }, \
876 { .fni4 = gen_helper_neon_##FUNC##32 }, \
877 { 0 }, \
878 }; \
879 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz, &ops[vece]); \
881 static bool trans_##INSN##_3s(DisasContext *s, arg_3same *a) \
883 if (a->size > 2) { \
884 return false; \
886 return do_3same(s, a, gen_##INSN##_3s); \
890 * Some helper functions need to be passed the cpu_env. In order
891 * to use those with the gvec APIs like tcg_gen_gvec_3() we need
892 * to create wrapper functions whose prototype is a NeonGenTwoOpFn()
893 * and which call a NeonGenTwoOpEnvFn().
895 #define WRAP_ENV_FN(WRAPNAME, FUNC) \
896 static void WRAPNAME(TCGv_i32 d, TCGv_i32 n, TCGv_i32 m) \
898 FUNC(d, cpu_env, n, m); \
901 #define DO_3SAME_32_ENV(INSN, FUNC) \
902 WRAP_ENV_FN(gen_##INSN##_tramp8, gen_helper_neon_##FUNC##8); \
903 WRAP_ENV_FN(gen_##INSN##_tramp16, gen_helper_neon_##FUNC##16); \
904 WRAP_ENV_FN(gen_##INSN##_tramp32, gen_helper_neon_##FUNC##32); \
905 static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
906 uint32_t rn_ofs, uint32_t rm_ofs, \
907 uint32_t oprsz, uint32_t maxsz) \
909 static const GVecGen3 ops[4] = { \
910 { .fni4 = gen_##INSN##_tramp8 }, \
911 { .fni4 = gen_##INSN##_tramp16 }, \
912 { .fni4 = gen_##INSN##_tramp32 }, \
913 { 0 }, \
914 }; \
915 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz, &ops[vece]); \
917 static bool trans_##INSN##_3s(DisasContext *s, arg_3same *a) \
919 if (a->size > 2) { \
920 return false; \
922 return do_3same(s, a, gen_##INSN##_3s); \
925 DO_3SAME_32(VHADD_S, hadd_s)
926 DO_3SAME_32(VHADD_U, hadd_u)
927 DO_3SAME_32(VHSUB_S, hsub_s)
928 DO_3SAME_32(VHSUB_U, hsub_u)
929 DO_3SAME_32(VRHADD_S, rhadd_s)
930 DO_3SAME_32(VRHADD_U, rhadd_u)
931 DO_3SAME_32(VRSHL_S, rshl_s)
932 DO_3SAME_32(VRSHL_U, rshl_u)
934 DO_3SAME_32_ENV(VQSHL_S, qshl_s)
935 DO_3SAME_32_ENV(VQSHL_U, qshl_u)
936 DO_3SAME_32_ENV(VQRSHL_S, qrshl_s)
937 DO_3SAME_32_ENV(VQRSHL_U, qrshl_u)
939 static bool do_3same_pair(DisasContext *s, arg_3same *a, NeonGenTwoOpFn *fn)
941 /* Operations handled pairwise 32 bits at a time */
942 TCGv_i32 tmp, tmp2, tmp3;
944 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
945 return false;
948 /* UNDEF accesses to D16-D31 if they don't exist. */
949 if (!dc_isar_feature(aa32_simd_r32, s) &&
950 ((a->vd | a->vn | a->vm) & 0x10)) {
951 return false;
954 if (a->size == 3) {
955 return false;
958 if (!vfp_access_check(s)) {
959 return true;
962 assert(a->q == 0); /* enforced by decode patterns */
965 * Note that we have to be careful not to clobber the source operands
966 * in the "vm == vd" case by storing the result of the first pass too
967 * early. Since Q is 0 there are always just two passes, so instead
968 * of a complicated loop over each pass we just unroll.
970 tmp = neon_load_reg(a->vn, 0);
971 tmp2 = neon_load_reg(a->vn, 1);
972 fn(tmp, tmp, tmp2);
973 tcg_temp_free_i32(tmp2);
975 tmp3 = neon_load_reg(a->vm, 0);
976 tmp2 = neon_load_reg(a->vm, 1);
977 fn(tmp3, tmp3, tmp2);
978 tcg_temp_free_i32(tmp2);
980 neon_store_reg(a->vd, 0, tmp);
981 neon_store_reg(a->vd, 1, tmp3);
982 return true;
985 #define DO_3SAME_PAIR(INSN, func) \
986 static bool trans_##INSN##_3s(DisasContext *s, arg_3same *a) \
988 static NeonGenTwoOpFn * const fns[] = { \
989 gen_helper_neon_##func##8, \
990 gen_helper_neon_##func##16, \
991 gen_helper_neon_##func##32, \
992 }; \
993 if (a->size > 2) { \
994 return false; \
996 return do_3same_pair(s, a, fns[a->size]); \
999 /* 32-bit pairwise ops end up the same as the elementwise versions. */
1000 #define gen_helper_neon_pmax_s32 tcg_gen_smax_i32
1001 #define gen_helper_neon_pmax_u32 tcg_gen_umax_i32
1002 #define gen_helper_neon_pmin_s32 tcg_gen_smin_i32
1003 #define gen_helper_neon_pmin_u32 tcg_gen_umin_i32
1004 #define gen_helper_neon_padd_u32 tcg_gen_add_i32
1006 DO_3SAME_PAIR(VPMAX_S, pmax_s)
1007 DO_3SAME_PAIR(VPMIN_S, pmin_s)
1008 DO_3SAME_PAIR(VPMAX_U, pmax_u)
1009 DO_3SAME_PAIR(VPMIN_U, pmin_u)
1010 DO_3SAME_PAIR(VPADD, padd_u)
1012 #define DO_3SAME_VQDMULH(INSN, FUNC) \
1013 WRAP_ENV_FN(gen_##INSN##_tramp16, gen_helper_neon_##FUNC##_s16); \
1014 WRAP_ENV_FN(gen_##INSN##_tramp32, gen_helper_neon_##FUNC##_s32); \
1015 static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
1016 uint32_t rn_ofs, uint32_t rm_ofs, \
1017 uint32_t oprsz, uint32_t maxsz) \
1019 static const GVecGen3 ops[2] = { \
1020 { .fni4 = gen_##INSN##_tramp16 }, \
1021 { .fni4 = gen_##INSN##_tramp32 }, \
1022 }; \
1023 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz, &ops[vece - 1]); \
1025 static bool trans_##INSN##_3s(DisasContext *s, arg_3same *a) \
1027 if (a->size != 1 && a->size != 2) { \
1028 return false; \
1030 return do_3same(s, a, gen_##INSN##_3s); \
1033 DO_3SAME_VQDMULH(VQDMULH, qdmulh)
1034 DO_3SAME_VQDMULH(VQRDMULH, qrdmulh)
1036 static bool do_3same_fp(DisasContext *s, arg_3same *a, VFPGen3OpSPFn *fn,
1037 bool reads_vd)
1040 * FP operations handled elementwise 32 bits at a time.
1041 * If reads_vd is true then the old value of Vd will be
1042 * loaded before calling the callback function. This is
1043 * used for multiply-accumulate type operations.
1045 TCGv_i32 tmp, tmp2;
1046 int pass;
1048 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1049 return false;
1052 /* UNDEF accesses to D16-D31 if they don't exist. */
1053 if (!dc_isar_feature(aa32_simd_r32, s) &&
1054 ((a->vd | a->vn | a->vm) & 0x10)) {
1055 return false;
1058 if ((a->vn | a->vm | a->vd) & a->q) {
1059 return false;
1062 if (!vfp_access_check(s)) {
1063 return true;
1066 TCGv_ptr fpstatus = get_fpstatus_ptr(1);
1067 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
1068 tmp = neon_load_reg(a->vn, pass);
1069 tmp2 = neon_load_reg(a->vm, pass);
1070 if (reads_vd) {
1071 TCGv_i32 tmp_rd = neon_load_reg(a->vd, pass);
1072 fn(tmp_rd, tmp, tmp2, fpstatus);
1073 neon_store_reg(a->vd, pass, tmp_rd);
1074 tcg_temp_free_i32(tmp);
1075 } else {
1076 fn(tmp, tmp, tmp2, fpstatus);
1077 neon_store_reg(a->vd, pass, tmp);
1079 tcg_temp_free_i32(tmp2);
1081 tcg_temp_free_ptr(fpstatus);
1082 return true;
1086 * For all the functions using this macro, size == 1 means fp16,
1087 * which is an architecture extension we don't implement yet.
1089 #define DO_3S_FP_GVEC(INSN,FUNC) \
1090 static void gen_##INSN##_3s(unsigned vece, uint32_t rd_ofs, \
1091 uint32_t rn_ofs, uint32_t rm_ofs, \
1092 uint32_t oprsz, uint32_t maxsz) \
1094 TCGv_ptr fpst = get_fpstatus_ptr(1); \
1095 tcg_gen_gvec_3_ptr(rd_ofs, rn_ofs, rm_ofs, fpst, \
1096 oprsz, maxsz, 0, FUNC); \
1097 tcg_temp_free_ptr(fpst); \
1099 static bool trans_##INSN##_fp_3s(DisasContext *s, arg_3same *a) \
1101 if (a->size != 0) { \
1102 /* TODO fp16 support */ \
1103 return false; \
1105 return do_3same(s, a, gen_##INSN##_3s); \
1109 DO_3S_FP_GVEC(VADD, gen_helper_gvec_fadd_s)
1110 DO_3S_FP_GVEC(VSUB, gen_helper_gvec_fsub_s)
1111 DO_3S_FP_GVEC(VABD, gen_helper_gvec_fabd_s)
1112 DO_3S_FP_GVEC(VMUL, gen_helper_gvec_fmul_s)
1115 * For all the functions using this macro, size == 1 means fp16,
1116 * which is an architecture extension we don't implement yet.
1118 #define DO_3S_FP(INSN,FUNC,READS_VD) \
1119 static bool trans_##INSN##_fp_3s(DisasContext *s, arg_3same *a) \
1121 if (a->size != 0) { \
1122 /* TODO fp16 support */ \
1123 return false; \
1125 return do_3same_fp(s, a, FUNC, READS_VD); \
1128 DO_3S_FP(VCEQ, gen_helper_neon_ceq_f32, false)
1129 DO_3S_FP(VCGE, gen_helper_neon_cge_f32, false)
1130 DO_3S_FP(VCGT, gen_helper_neon_cgt_f32, false)
1131 DO_3S_FP(VACGE, gen_helper_neon_acge_f32, false)
1132 DO_3S_FP(VACGT, gen_helper_neon_acgt_f32, false)
1133 DO_3S_FP(VMAX, gen_helper_vfp_maxs, false)
1134 DO_3S_FP(VMIN, gen_helper_vfp_mins, false)
1136 static void gen_VMLA_fp_3s(TCGv_i32 vd, TCGv_i32 vn, TCGv_i32 vm,
1137 TCGv_ptr fpstatus)
1139 gen_helper_vfp_muls(vn, vn, vm, fpstatus);
1140 gen_helper_vfp_adds(vd, vd, vn, fpstatus);
1143 static void gen_VMLS_fp_3s(TCGv_i32 vd, TCGv_i32 vn, TCGv_i32 vm,
1144 TCGv_ptr fpstatus)
1146 gen_helper_vfp_muls(vn, vn, vm, fpstatus);
1147 gen_helper_vfp_subs(vd, vd, vn, fpstatus);
1150 DO_3S_FP(VMLA, gen_VMLA_fp_3s, true)
1151 DO_3S_FP(VMLS, gen_VMLS_fp_3s, true)
1153 static bool trans_VMAXNM_fp_3s(DisasContext *s, arg_3same *a)
1155 if (!arm_dc_feature(s, ARM_FEATURE_V8)) {
1156 return false;
1159 if (a->size != 0) {
1160 /* TODO fp16 support */
1161 return false;
1164 return do_3same_fp(s, a, gen_helper_vfp_maxnums, false);
1167 static bool trans_VMINNM_fp_3s(DisasContext *s, arg_3same *a)
1169 if (!arm_dc_feature(s, ARM_FEATURE_V8)) {
1170 return false;
1173 if (a->size != 0) {
1174 /* TODO fp16 support */
1175 return false;
1178 return do_3same_fp(s, a, gen_helper_vfp_minnums, false);
1181 WRAP_ENV_FN(gen_VRECPS_tramp, gen_helper_recps_f32)
1183 static void gen_VRECPS_fp_3s(unsigned vece, uint32_t rd_ofs,
1184 uint32_t rn_ofs, uint32_t rm_ofs,
1185 uint32_t oprsz, uint32_t maxsz)
1187 static const GVecGen3 ops = { .fni4 = gen_VRECPS_tramp };
1188 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz, &ops);
1191 static bool trans_VRECPS_fp_3s(DisasContext *s, arg_3same *a)
1193 if (a->size != 0) {
1194 /* TODO fp16 support */
1195 return false;
1198 return do_3same(s, a, gen_VRECPS_fp_3s);
1201 WRAP_ENV_FN(gen_VRSQRTS_tramp, gen_helper_rsqrts_f32)
1203 static void gen_VRSQRTS_fp_3s(unsigned vece, uint32_t rd_ofs,
1204 uint32_t rn_ofs, uint32_t rm_ofs,
1205 uint32_t oprsz, uint32_t maxsz)
1207 static const GVecGen3 ops = { .fni4 = gen_VRSQRTS_tramp };
1208 tcg_gen_gvec_3(rd_ofs, rn_ofs, rm_ofs, oprsz, maxsz, &ops);
1211 static bool trans_VRSQRTS_fp_3s(DisasContext *s, arg_3same *a)
1213 if (a->size != 0) {
1214 /* TODO fp16 support */
1215 return false;
1218 return do_3same(s, a, gen_VRSQRTS_fp_3s);
1221 static void gen_VFMA_fp_3s(TCGv_i32 vd, TCGv_i32 vn, TCGv_i32 vm,
1222 TCGv_ptr fpstatus)
1224 gen_helper_vfp_muladds(vd, vn, vm, vd, fpstatus);
1227 static bool trans_VFMA_fp_3s(DisasContext *s, arg_3same *a)
1229 if (!dc_isar_feature(aa32_simdfmac, s)) {
1230 return false;
1233 if (a->size != 0) {
1234 /* TODO fp16 support */
1235 return false;
1238 return do_3same_fp(s, a, gen_VFMA_fp_3s, true);
1241 static void gen_VFMS_fp_3s(TCGv_i32 vd, TCGv_i32 vn, TCGv_i32 vm,
1242 TCGv_ptr fpstatus)
1244 gen_helper_vfp_negs(vn, vn);
1245 gen_helper_vfp_muladds(vd, vn, vm, vd, fpstatus);
1248 static bool trans_VFMS_fp_3s(DisasContext *s, arg_3same *a)
1250 if (!dc_isar_feature(aa32_simdfmac, s)) {
1251 return false;
1254 if (a->size != 0) {
1255 /* TODO fp16 support */
1256 return false;
1259 return do_3same_fp(s, a, gen_VFMS_fp_3s, true);
1262 static bool do_3same_fp_pair(DisasContext *s, arg_3same *a, VFPGen3OpSPFn *fn)
1264 /* FP operations handled pairwise 32 bits at a time */
1265 TCGv_i32 tmp, tmp2, tmp3;
1266 TCGv_ptr fpstatus;
1268 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1269 return false;
1272 /* UNDEF accesses to D16-D31 if they don't exist. */
1273 if (!dc_isar_feature(aa32_simd_r32, s) &&
1274 ((a->vd | a->vn | a->vm) & 0x10)) {
1275 return false;
1278 if (!vfp_access_check(s)) {
1279 return true;
1282 assert(a->q == 0); /* enforced by decode patterns */
1285 * Note that we have to be careful not to clobber the source operands
1286 * in the "vm == vd" case by storing the result of the first pass too
1287 * early. Since Q is 0 there are always just two passes, so instead
1288 * of a complicated loop over each pass we just unroll.
1290 fpstatus = get_fpstatus_ptr(1);
1291 tmp = neon_load_reg(a->vn, 0);
1292 tmp2 = neon_load_reg(a->vn, 1);
1293 fn(tmp, tmp, tmp2, fpstatus);
1294 tcg_temp_free_i32(tmp2);
1296 tmp3 = neon_load_reg(a->vm, 0);
1297 tmp2 = neon_load_reg(a->vm, 1);
1298 fn(tmp3, tmp3, tmp2, fpstatus);
1299 tcg_temp_free_i32(tmp2);
1300 tcg_temp_free_ptr(fpstatus);
1302 neon_store_reg(a->vd, 0, tmp);
1303 neon_store_reg(a->vd, 1, tmp3);
1304 return true;
1308 * For all the functions using this macro, size == 1 means fp16,
1309 * which is an architecture extension we don't implement yet.
1311 #define DO_3S_FP_PAIR(INSN,FUNC) \
1312 static bool trans_##INSN##_fp_3s(DisasContext *s, arg_3same *a) \
1314 if (a->size != 0) { \
1315 /* TODO fp16 support */ \
1316 return false; \
1318 return do_3same_fp_pair(s, a, FUNC); \
1321 DO_3S_FP_PAIR(VPADD, gen_helper_vfp_adds)
1322 DO_3S_FP_PAIR(VPMAX, gen_helper_vfp_maxs)
1323 DO_3S_FP_PAIR(VPMIN, gen_helper_vfp_mins)
1325 static bool do_vector_2sh(DisasContext *s, arg_2reg_shift *a, GVecGen2iFn *fn)
1327 /* Handle a 2-reg-shift insn which can be vectorized. */
1328 int vec_size = a->q ? 16 : 8;
1329 int rd_ofs = neon_reg_offset(a->vd, 0);
1330 int rm_ofs = neon_reg_offset(a->vm, 0);
1332 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1333 return false;
1336 /* UNDEF accesses to D16-D31 if they don't exist. */
1337 if (!dc_isar_feature(aa32_simd_r32, s) &&
1338 ((a->vd | a->vm) & 0x10)) {
1339 return false;
1342 if ((a->vm | a->vd) & a->q) {
1343 return false;
1346 if (!vfp_access_check(s)) {
1347 return true;
1350 fn(a->size, rd_ofs, rm_ofs, a->shift, vec_size, vec_size);
1351 return true;
1354 #define DO_2SH(INSN, FUNC) \
1355 static bool trans_##INSN##_2sh(DisasContext *s, arg_2reg_shift *a) \
1357 return do_vector_2sh(s, a, FUNC); \
1360 DO_2SH(VSHL, tcg_gen_gvec_shli)
1361 DO_2SH(VSLI, gen_gvec_sli)
1362 DO_2SH(VSRI, gen_gvec_sri)
1363 DO_2SH(VSRA_S, gen_gvec_ssra)
1364 DO_2SH(VSRA_U, gen_gvec_usra)
1365 DO_2SH(VRSHR_S, gen_gvec_srshr)
1366 DO_2SH(VRSHR_U, gen_gvec_urshr)
1367 DO_2SH(VRSRA_S, gen_gvec_srsra)
1368 DO_2SH(VRSRA_U, gen_gvec_ursra)
1370 static bool trans_VSHR_S_2sh(DisasContext *s, arg_2reg_shift *a)
1372 /* Signed shift out of range results in all-sign-bits */
1373 a->shift = MIN(a->shift, (8 << a->size) - 1);
1374 return do_vector_2sh(s, a, tcg_gen_gvec_sari);
1377 static void gen_zero_rd_2sh(unsigned vece, uint32_t rd_ofs, uint32_t rm_ofs,
1378 int64_t shift, uint32_t oprsz, uint32_t maxsz)
1380 tcg_gen_gvec_dup_imm(vece, rd_ofs, oprsz, maxsz, 0);
1383 static bool trans_VSHR_U_2sh(DisasContext *s, arg_2reg_shift *a)
1385 /* Shift out of range is architecturally valid and results in zero. */
1386 if (a->shift >= (8 << a->size)) {
1387 return do_vector_2sh(s, a, gen_zero_rd_2sh);
1388 } else {
1389 return do_vector_2sh(s, a, tcg_gen_gvec_shri);
1393 static bool do_2shift_env_64(DisasContext *s, arg_2reg_shift *a,
1394 NeonGenTwo64OpEnvFn *fn)
1397 * 2-reg-and-shift operations, size == 3 case, where the
1398 * function needs to be passed cpu_env.
1400 TCGv_i64 constimm;
1401 int pass;
1403 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1404 return false;
1407 /* UNDEF accesses to D16-D31 if they don't exist. */
1408 if (!dc_isar_feature(aa32_simd_r32, s) &&
1409 ((a->vd | a->vm) & 0x10)) {
1410 return false;
1413 if ((a->vm | a->vd) & a->q) {
1414 return false;
1417 if (!vfp_access_check(s)) {
1418 return true;
1422 * To avoid excessive duplication of ops we implement shift
1423 * by immediate using the variable shift operations.
1425 constimm = tcg_const_i64(dup_const(a->size, a->shift));
1427 for (pass = 0; pass < a->q + 1; pass++) {
1428 TCGv_i64 tmp = tcg_temp_new_i64();
1430 neon_load_reg64(tmp, a->vm + pass);
1431 fn(tmp, cpu_env, tmp, constimm);
1432 neon_store_reg64(tmp, a->vd + pass);
1433 tcg_temp_free_i64(tmp);
1435 tcg_temp_free_i64(constimm);
1436 return true;
1439 static bool do_2shift_env_32(DisasContext *s, arg_2reg_shift *a,
1440 NeonGenTwoOpEnvFn *fn)
1443 * 2-reg-and-shift operations, size < 3 case, where the
1444 * helper needs to be passed cpu_env.
1446 TCGv_i32 constimm;
1447 int pass;
1449 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1450 return false;
1453 /* UNDEF accesses to D16-D31 if they don't exist. */
1454 if (!dc_isar_feature(aa32_simd_r32, s) &&
1455 ((a->vd | a->vm) & 0x10)) {
1456 return false;
1459 if ((a->vm | a->vd) & a->q) {
1460 return false;
1463 if (!vfp_access_check(s)) {
1464 return true;
1468 * To avoid excessive duplication of ops we implement shift
1469 * by immediate using the variable shift operations.
1471 constimm = tcg_const_i32(dup_const(a->size, a->shift));
1473 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
1474 TCGv_i32 tmp = neon_load_reg(a->vm, pass);
1475 fn(tmp, cpu_env, tmp, constimm);
1476 neon_store_reg(a->vd, pass, tmp);
1478 tcg_temp_free_i32(constimm);
1479 return true;
1482 #define DO_2SHIFT_ENV(INSN, FUNC) \
1483 static bool trans_##INSN##_64_2sh(DisasContext *s, arg_2reg_shift *a) \
1485 return do_2shift_env_64(s, a, gen_helper_neon_##FUNC##64); \
1487 static bool trans_##INSN##_2sh(DisasContext *s, arg_2reg_shift *a) \
1489 static NeonGenTwoOpEnvFn * const fns[] = { \
1490 gen_helper_neon_##FUNC##8, \
1491 gen_helper_neon_##FUNC##16, \
1492 gen_helper_neon_##FUNC##32, \
1493 }; \
1494 assert(a->size < ARRAY_SIZE(fns)); \
1495 return do_2shift_env_32(s, a, fns[a->size]); \
1498 DO_2SHIFT_ENV(VQSHLU, qshlu_s)
1499 DO_2SHIFT_ENV(VQSHL_U, qshl_u)
1500 DO_2SHIFT_ENV(VQSHL_S, qshl_s)
1502 static bool do_2shift_narrow_64(DisasContext *s, arg_2reg_shift *a,
1503 NeonGenTwo64OpFn *shiftfn,
1504 NeonGenNarrowEnvFn *narrowfn)
1506 /* 2-reg-and-shift narrowing-shift operations, size == 3 case */
1507 TCGv_i64 constimm, rm1, rm2;
1508 TCGv_i32 rd;
1510 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1511 return false;
1514 /* UNDEF accesses to D16-D31 if they don't exist. */
1515 if (!dc_isar_feature(aa32_simd_r32, s) &&
1516 ((a->vd | a->vm) & 0x10)) {
1517 return false;
1520 if (a->vm & 1) {
1521 return false;
1524 if (!vfp_access_check(s)) {
1525 return true;
1529 * This is always a right shift, and the shiftfn is always a
1530 * left-shift helper, which thus needs the negated shift count.
1532 constimm = tcg_const_i64(-a->shift);
1533 rm1 = tcg_temp_new_i64();
1534 rm2 = tcg_temp_new_i64();
1536 /* Load both inputs first to avoid potential overwrite if rm == rd */
1537 neon_load_reg64(rm1, a->vm);
1538 neon_load_reg64(rm2, a->vm + 1);
1540 shiftfn(rm1, rm1, constimm);
1541 rd = tcg_temp_new_i32();
1542 narrowfn(rd, cpu_env, rm1);
1543 neon_store_reg(a->vd, 0, rd);
1545 shiftfn(rm2, rm2, constimm);
1546 rd = tcg_temp_new_i32();
1547 narrowfn(rd, cpu_env, rm2);
1548 neon_store_reg(a->vd, 1, rd);
1550 tcg_temp_free_i64(rm1);
1551 tcg_temp_free_i64(rm2);
1552 tcg_temp_free_i64(constimm);
1554 return true;
1557 static bool do_2shift_narrow_32(DisasContext *s, arg_2reg_shift *a,
1558 NeonGenTwoOpFn *shiftfn,
1559 NeonGenNarrowEnvFn *narrowfn)
1561 /* 2-reg-and-shift narrowing-shift operations, size < 3 case */
1562 TCGv_i32 constimm, rm1, rm2, rm3, rm4;
1563 TCGv_i64 rtmp;
1564 uint32_t imm;
1566 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1567 return false;
1570 /* UNDEF accesses to D16-D31 if they don't exist. */
1571 if (!dc_isar_feature(aa32_simd_r32, s) &&
1572 ((a->vd | a->vm) & 0x10)) {
1573 return false;
1576 if (a->vm & 1) {
1577 return false;
1580 if (!vfp_access_check(s)) {
1581 return true;
1585 * This is always a right shift, and the shiftfn is always a
1586 * left-shift helper, which thus needs the negated shift count
1587 * duplicated into each lane of the immediate value.
1589 if (a->size == 1) {
1590 imm = (uint16_t)(-a->shift);
1591 imm |= imm << 16;
1592 } else {
1593 /* size == 2 */
1594 imm = -a->shift;
1596 constimm = tcg_const_i32(imm);
1598 /* Load all inputs first to avoid potential overwrite */
1599 rm1 = neon_load_reg(a->vm, 0);
1600 rm2 = neon_load_reg(a->vm, 1);
1601 rm3 = neon_load_reg(a->vm + 1, 0);
1602 rm4 = neon_load_reg(a->vm + 1, 1);
1603 rtmp = tcg_temp_new_i64();
1605 shiftfn(rm1, rm1, constimm);
1606 shiftfn(rm2, rm2, constimm);
1608 tcg_gen_concat_i32_i64(rtmp, rm1, rm2);
1609 tcg_temp_free_i32(rm2);
1611 narrowfn(rm1, cpu_env, rtmp);
1612 neon_store_reg(a->vd, 0, rm1);
1614 shiftfn(rm3, rm3, constimm);
1615 shiftfn(rm4, rm4, constimm);
1616 tcg_temp_free_i32(constimm);
1618 tcg_gen_concat_i32_i64(rtmp, rm3, rm4);
1619 tcg_temp_free_i32(rm4);
1621 narrowfn(rm3, cpu_env, rtmp);
1622 tcg_temp_free_i64(rtmp);
1623 neon_store_reg(a->vd, 1, rm3);
1624 return true;
1627 #define DO_2SN_64(INSN, FUNC, NARROWFUNC) \
1628 static bool trans_##INSN##_2sh(DisasContext *s, arg_2reg_shift *a) \
1630 return do_2shift_narrow_64(s, a, FUNC, NARROWFUNC); \
1632 #define DO_2SN_32(INSN, FUNC, NARROWFUNC) \
1633 static bool trans_##INSN##_2sh(DisasContext *s, arg_2reg_shift *a) \
1635 return do_2shift_narrow_32(s, a, FUNC, NARROWFUNC); \
1638 static void gen_neon_narrow_u32(TCGv_i32 dest, TCGv_ptr env, TCGv_i64 src)
1640 tcg_gen_extrl_i64_i32(dest, src);
1643 static void gen_neon_narrow_u16(TCGv_i32 dest, TCGv_ptr env, TCGv_i64 src)
1645 gen_helper_neon_narrow_u16(dest, src);
1648 static void gen_neon_narrow_u8(TCGv_i32 dest, TCGv_ptr env, TCGv_i64 src)
1650 gen_helper_neon_narrow_u8(dest, src);
1653 DO_2SN_64(VSHRN_64, gen_ushl_i64, gen_neon_narrow_u32)
1654 DO_2SN_32(VSHRN_32, gen_ushl_i32, gen_neon_narrow_u16)
1655 DO_2SN_32(VSHRN_16, gen_helper_neon_shl_u16, gen_neon_narrow_u8)
1657 DO_2SN_64(VRSHRN_64, gen_helper_neon_rshl_u64, gen_neon_narrow_u32)
1658 DO_2SN_32(VRSHRN_32, gen_helper_neon_rshl_u32, gen_neon_narrow_u16)
1659 DO_2SN_32(VRSHRN_16, gen_helper_neon_rshl_u16, gen_neon_narrow_u8)
1661 DO_2SN_64(VQSHRUN_64, gen_sshl_i64, gen_helper_neon_unarrow_sat32)
1662 DO_2SN_32(VQSHRUN_32, gen_sshl_i32, gen_helper_neon_unarrow_sat16)
1663 DO_2SN_32(VQSHRUN_16, gen_helper_neon_shl_s16, gen_helper_neon_unarrow_sat8)
1665 DO_2SN_64(VQRSHRUN_64, gen_helper_neon_rshl_s64, gen_helper_neon_unarrow_sat32)
1666 DO_2SN_32(VQRSHRUN_32, gen_helper_neon_rshl_s32, gen_helper_neon_unarrow_sat16)
1667 DO_2SN_32(VQRSHRUN_16, gen_helper_neon_rshl_s16, gen_helper_neon_unarrow_sat8)
1668 DO_2SN_64(VQSHRN_S64, gen_sshl_i64, gen_helper_neon_narrow_sat_s32)
1669 DO_2SN_32(VQSHRN_S32, gen_sshl_i32, gen_helper_neon_narrow_sat_s16)
1670 DO_2SN_32(VQSHRN_S16, gen_helper_neon_shl_s16, gen_helper_neon_narrow_sat_s8)
1672 DO_2SN_64(VQRSHRN_S64, gen_helper_neon_rshl_s64, gen_helper_neon_narrow_sat_s32)
1673 DO_2SN_32(VQRSHRN_S32, gen_helper_neon_rshl_s32, gen_helper_neon_narrow_sat_s16)
1674 DO_2SN_32(VQRSHRN_S16, gen_helper_neon_rshl_s16, gen_helper_neon_narrow_sat_s8)
1676 DO_2SN_64(VQSHRN_U64, gen_ushl_i64, gen_helper_neon_narrow_sat_u32)
1677 DO_2SN_32(VQSHRN_U32, gen_ushl_i32, gen_helper_neon_narrow_sat_u16)
1678 DO_2SN_32(VQSHRN_U16, gen_helper_neon_shl_u16, gen_helper_neon_narrow_sat_u8)
1680 DO_2SN_64(VQRSHRN_U64, gen_helper_neon_rshl_u64, gen_helper_neon_narrow_sat_u32)
1681 DO_2SN_32(VQRSHRN_U32, gen_helper_neon_rshl_u32, gen_helper_neon_narrow_sat_u16)
1682 DO_2SN_32(VQRSHRN_U16, gen_helper_neon_rshl_u16, gen_helper_neon_narrow_sat_u8)
1684 static bool do_vshll_2sh(DisasContext *s, arg_2reg_shift *a,
1685 NeonGenWidenFn *widenfn, bool u)
1687 TCGv_i64 tmp;
1688 TCGv_i32 rm0, rm1;
1689 uint64_t widen_mask = 0;
1691 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1692 return false;
1695 /* UNDEF accesses to D16-D31 if they don't exist. */
1696 if (!dc_isar_feature(aa32_simd_r32, s) &&
1697 ((a->vd | a->vm) & 0x10)) {
1698 return false;
1701 if (a->vd & 1) {
1702 return false;
1705 if (!vfp_access_check(s)) {
1706 return true;
1710 * This is a widen-and-shift operation. The shift is always less
1711 * than the width of the source type, so after widening the input
1712 * vector we can simply shift the whole 64-bit widened register,
1713 * and then clear the potential overflow bits resulting from left
1714 * bits of the narrow input appearing as right bits of the left
1715 * neighbour narrow input. Calculate a mask of bits to clear.
1717 if ((a->shift != 0) && (a->size < 2 || u)) {
1718 int esize = 8 << a->size;
1719 widen_mask = MAKE_64BIT_MASK(0, esize);
1720 widen_mask >>= esize - a->shift;
1721 widen_mask = dup_const(a->size + 1, widen_mask);
1724 rm0 = neon_load_reg(a->vm, 0);
1725 rm1 = neon_load_reg(a->vm, 1);
1726 tmp = tcg_temp_new_i64();
1728 widenfn(tmp, rm0);
1729 tcg_temp_free_i32(rm0);
1730 if (a->shift != 0) {
1731 tcg_gen_shli_i64(tmp, tmp, a->shift);
1732 tcg_gen_andi_i64(tmp, tmp, ~widen_mask);
1734 neon_store_reg64(tmp, a->vd);
1736 widenfn(tmp, rm1);
1737 tcg_temp_free_i32(rm1);
1738 if (a->shift != 0) {
1739 tcg_gen_shli_i64(tmp, tmp, a->shift);
1740 tcg_gen_andi_i64(tmp, tmp, ~widen_mask);
1742 neon_store_reg64(tmp, a->vd + 1);
1743 tcg_temp_free_i64(tmp);
1744 return true;
1747 static bool trans_VSHLL_S_2sh(DisasContext *s, arg_2reg_shift *a)
1749 static NeonGenWidenFn * const widenfn[] = {
1750 gen_helper_neon_widen_s8,
1751 gen_helper_neon_widen_s16,
1752 tcg_gen_ext_i32_i64,
1754 return do_vshll_2sh(s, a, widenfn[a->size], false);
1757 static bool trans_VSHLL_U_2sh(DisasContext *s, arg_2reg_shift *a)
1759 static NeonGenWidenFn * const widenfn[] = {
1760 gen_helper_neon_widen_u8,
1761 gen_helper_neon_widen_u16,
1762 tcg_gen_extu_i32_i64,
1764 return do_vshll_2sh(s, a, widenfn[a->size], true);
1767 static bool do_fp_2sh(DisasContext *s, arg_2reg_shift *a,
1768 NeonGenTwoSingleOpFn *fn)
1770 /* FP operations in 2-reg-and-shift group */
1771 TCGv_i32 tmp, shiftv;
1772 TCGv_ptr fpstatus;
1773 int pass;
1775 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1776 return false;
1779 /* UNDEF accesses to D16-D31 if they don't exist. */
1780 if (!dc_isar_feature(aa32_simd_r32, s) &&
1781 ((a->vd | a->vm) & 0x10)) {
1782 return false;
1785 if ((a->vm | a->vd) & a->q) {
1786 return false;
1789 if (!vfp_access_check(s)) {
1790 return true;
1793 fpstatus = get_fpstatus_ptr(1);
1794 shiftv = tcg_const_i32(a->shift);
1795 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
1796 tmp = neon_load_reg(a->vm, pass);
1797 fn(tmp, tmp, shiftv, fpstatus);
1798 neon_store_reg(a->vd, pass, tmp);
1800 tcg_temp_free_ptr(fpstatus);
1801 tcg_temp_free_i32(shiftv);
1802 return true;
1805 #define DO_FP_2SH(INSN, FUNC) \
1806 static bool trans_##INSN##_2sh(DisasContext *s, arg_2reg_shift *a) \
1808 return do_fp_2sh(s, a, FUNC); \
1811 DO_FP_2SH(VCVT_SF, gen_helper_vfp_sltos)
1812 DO_FP_2SH(VCVT_UF, gen_helper_vfp_ultos)
1813 DO_FP_2SH(VCVT_FS, gen_helper_vfp_tosls_round_to_zero)
1814 DO_FP_2SH(VCVT_FU, gen_helper_vfp_touls_round_to_zero)
1816 static uint64_t asimd_imm_const(uint32_t imm, int cmode, int op)
1819 * Expand the encoded constant.
1820 * Note that cmode = 2,3,4,5,6,7,10,11,12,13 imm=0 is UNPREDICTABLE.
1821 * We choose to not special-case this and will behave as if a
1822 * valid constant encoding of 0 had been given.
1823 * cmode = 15 op = 1 must UNDEF; we assume decode has handled that.
1825 switch (cmode) {
1826 case 0: case 1:
1827 /* no-op */
1828 break;
1829 case 2: case 3:
1830 imm <<= 8;
1831 break;
1832 case 4: case 5:
1833 imm <<= 16;
1834 break;
1835 case 6: case 7:
1836 imm <<= 24;
1837 break;
1838 case 8: case 9:
1839 imm |= imm << 16;
1840 break;
1841 case 10: case 11:
1842 imm = (imm << 8) | (imm << 24);
1843 break;
1844 case 12:
1845 imm = (imm << 8) | 0xff;
1846 break;
1847 case 13:
1848 imm = (imm << 16) | 0xffff;
1849 break;
1850 case 14:
1851 if (op) {
1853 * This is the only case where the top and bottom 32 bits
1854 * of the encoded constant differ.
1856 uint64_t imm64 = 0;
1857 int n;
1859 for (n = 0; n < 8; n++) {
1860 if (imm & (1 << n)) {
1861 imm64 |= (0xffULL << (n * 8));
1864 return imm64;
1866 imm |= (imm << 8) | (imm << 16) | (imm << 24);
1867 break;
1868 case 15:
1869 imm = ((imm & 0x80) << 24) | ((imm & 0x3f) << 19)
1870 | ((imm & 0x40) ? (0x1f << 25) : (1 << 30));
1871 break;
1873 if (op) {
1874 imm = ~imm;
1876 return dup_const(MO_32, imm);
1879 static bool do_1reg_imm(DisasContext *s, arg_1reg_imm *a,
1880 GVecGen2iFn *fn)
1882 uint64_t imm;
1883 int reg_ofs, vec_size;
1885 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1886 return false;
1889 /* UNDEF accesses to D16-D31 if they don't exist. */
1890 if (!dc_isar_feature(aa32_simd_r32, s) && (a->vd & 0x10)) {
1891 return false;
1894 if (a->vd & a->q) {
1895 return false;
1898 if (!vfp_access_check(s)) {
1899 return true;
1902 reg_ofs = neon_reg_offset(a->vd, 0);
1903 vec_size = a->q ? 16 : 8;
1904 imm = asimd_imm_const(a->imm, a->cmode, a->op);
1906 fn(MO_64, reg_ofs, reg_ofs, imm, vec_size, vec_size);
1907 return true;
1910 static void gen_VMOV_1r(unsigned vece, uint32_t dofs, uint32_t aofs,
1911 int64_t c, uint32_t oprsz, uint32_t maxsz)
1913 tcg_gen_gvec_dup_imm(MO_64, dofs, oprsz, maxsz, c);
1916 static bool trans_Vimm_1r(DisasContext *s, arg_1reg_imm *a)
1918 /* Handle decode of cmode/op here between VORR/VBIC/VMOV */
1919 GVecGen2iFn *fn;
1921 if ((a->cmode & 1) && a->cmode < 12) {
1922 /* for op=1, the imm will be inverted, so BIC becomes AND. */
1923 fn = a->op ? tcg_gen_gvec_andi : tcg_gen_gvec_ori;
1924 } else {
1925 /* There is one unallocated cmode/op combination in this space */
1926 if (a->cmode == 15 && a->op == 1) {
1927 return false;
1929 fn = gen_VMOV_1r;
1931 return do_1reg_imm(s, a, fn);
1934 static bool do_prewiden_3d(DisasContext *s, arg_3diff *a,
1935 NeonGenWidenFn *widenfn,
1936 NeonGenTwo64OpFn *opfn,
1937 bool src1_wide)
1939 /* 3-regs different lengths, prewidening case (VADDL/VSUBL/VAADW/VSUBW) */
1940 TCGv_i64 rn0_64, rn1_64, rm_64;
1941 TCGv_i32 rm;
1943 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
1944 return false;
1947 /* UNDEF accesses to D16-D31 if they don't exist. */
1948 if (!dc_isar_feature(aa32_simd_r32, s) &&
1949 ((a->vd | a->vn | a->vm) & 0x10)) {
1950 return false;
1953 if (!widenfn || !opfn) {
1954 /* size == 3 case, which is an entirely different insn group */
1955 return false;
1958 if ((a->vd & 1) || (src1_wide && (a->vn & 1))) {
1959 return false;
1962 if (!vfp_access_check(s)) {
1963 return true;
1966 rn0_64 = tcg_temp_new_i64();
1967 rn1_64 = tcg_temp_new_i64();
1968 rm_64 = tcg_temp_new_i64();
1970 if (src1_wide) {
1971 neon_load_reg64(rn0_64, a->vn);
1972 } else {
1973 TCGv_i32 tmp = neon_load_reg(a->vn, 0);
1974 widenfn(rn0_64, tmp);
1975 tcg_temp_free_i32(tmp);
1977 rm = neon_load_reg(a->vm, 0);
1979 widenfn(rm_64, rm);
1980 tcg_temp_free_i32(rm);
1981 opfn(rn0_64, rn0_64, rm_64);
1984 * Load second pass inputs before storing the first pass result, to
1985 * avoid incorrect results if a narrow input overlaps with the result.
1987 if (src1_wide) {
1988 neon_load_reg64(rn1_64, a->vn + 1);
1989 } else {
1990 TCGv_i32 tmp = neon_load_reg(a->vn, 1);
1991 widenfn(rn1_64, tmp);
1992 tcg_temp_free_i32(tmp);
1994 rm = neon_load_reg(a->vm, 1);
1996 neon_store_reg64(rn0_64, a->vd);
1998 widenfn(rm_64, rm);
1999 tcg_temp_free_i32(rm);
2000 opfn(rn1_64, rn1_64, rm_64);
2001 neon_store_reg64(rn1_64, a->vd + 1);
2003 tcg_temp_free_i64(rn0_64);
2004 tcg_temp_free_i64(rn1_64);
2005 tcg_temp_free_i64(rm_64);
2007 return true;
2010 #define DO_PREWIDEN(INSN, S, EXT, OP, SRC1WIDE) \
2011 static bool trans_##INSN##_3d(DisasContext *s, arg_3diff *a) \
2013 static NeonGenWidenFn * const widenfn[] = { \
2014 gen_helper_neon_widen_##S##8, \
2015 gen_helper_neon_widen_##S##16, \
2016 tcg_gen_##EXT##_i32_i64, \
2017 NULL, \
2018 }; \
2019 static NeonGenTwo64OpFn * const addfn[] = { \
2020 gen_helper_neon_##OP##l_u16, \
2021 gen_helper_neon_##OP##l_u32, \
2022 tcg_gen_##OP##_i64, \
2023 NULL, \
2024 }; \
2025 return do_prewiden_3d(s, a, widenfn[a->size], \
2026 addfn[a->size], SRC1WIDE); \
2029 DO_PREWIDEN(VADDL_S, s, ext, add, false)
2030 DO_PREWIDEN(VADDL_U, u, extu, add, false)
2031 DO_PREWIDEN(VSUBL_S, s, ext, sub, false)
2032 DO_PREWIDEN(VSUBL_U, u, extu, sub, false)
2033 DO_PREWIDEN(VADDW_S, s, ext, add, true)
2034 DO_PREWIDEN(VADDW_U, u, extu, add, true)
2035 DO_PREWIDEN(VSUBW_S, s, ext, sub, true)
2036 DO_PREWIDEN(VSUBW_U, u, extu, sub, true)
2038 static bool do_narrow_3d(DisasContext *s, arg_3diff *a,
2039 NeonGenTwo64OpFn *opfn, NeonGenNarrowFn *narrowfn)
2041 /* 3-regs different lengths, narrowing (VADDHN/VSUBHN/VRADDHN/VRSUBHN) */
2042 TCGv_i64 rn_64, rm_64;
2043 TCGv_i32 rd0, rd1;
2045 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
2046 return false;
2049 /* UNDEF accesses to D16-D31 if they don't exist. */
2050 if (!dc_isar_feature(aa32_simd_r32, s) &&
2051 ((a->vd | a->vn | a->vm) & 0x10)) {
2052 return false;
2055 if (!opfn || !narrowfn) {
2056 /* size == 3 case, which is an entirely different insn group */
2057 return false;
2060 if ((a->vn | a->vm) & 1) {
2061 return false;
2064 if (!vfp_access_check(s)) {
2065 return true;
2068 rn_64 = tcg_temp_new_i64();
2069 rm_64 = tcg_temp_new_i64();
2070 rd0 = tcg_temp_new_i32();
2071 rd1 = tcg_temp_new_i32();
2073 neon_load_reg64(rn_64, a->vn);
2074 neon_load_reg64(rm_64, a->vm);
2076 opfn(rn_64, rn_64, rm_64);
2078 narrowfn(rd0, rn_64);
2080 neon_load_reg64(rn_64, a->vn + 1);
2081 neon_load_reg64(rm_64, a->vm + 1);
2083 opfn(rn_64, rn_64, rm_64);
2085 narrowfn(rd1, rn_64);
2087 neon_store_reg(a->vd, 0, rd0);
2088 neon_store_reg(a->vd, 1, rd1);
2090 tcg_temp_free_i64(rn_64);
2091 tcg_temp_free_i64(rm_64);
2093 return true;
2096 #define DO_NARROW_3D(INSN, OP, NARROWTYPE, EXTOP) \
2097 static bool trans_##INSN##_3d(DisasContext *s, arg_3diff *a) \
2099 static NeonGenTwo64OpFn * const addfn[] = { \
2100 gen_helper_neon_##OP##l_u16, \
2101 gen_helper_neon_##OP##l_u32, \
2102 tcg_gen_##OP##_i64, \
2103 NULL, \
2104 }; \
2105 static NeonGenNarrowFn * const narrowfn[] = { \
2106 gen_helper_neon_##NARROWTYPE##_high_u8, \
2107 gen_helper_neon_##NARROWTYPE##_high_u16, \
2108 EXTOP, \
2109 NULL, \
2110 }; \
2111 return do_narrow_3d(s, a, addfn[a->size], narrowfn[a->size]); \
2114 static void gen_narrow_round_high_u32(TCGv_i32 rd, TCGv_i64 rn)
2116 tcg_gen_addi_i64(rn, rn, 1u << 31);
2117 tcg_gen_extrh_i64_i32(rd, rn);
2120 DO_NARROW_3D(VADDHN, add, narrow, tcg_gen_extrh_i64_i32)
2121 DO_NARROW_3D(VSUBHN, sub, narrow, tcg_gen_extrh_i64_i32)
2122 DO_NARROW_3D(VRADDHN, add, narrow_round, gen_narrow_round_high_u32)
2123 DO_NARROW_3D(VRSUBHN, sub, narrow_round, gen_narrow_round_high_u32)
2125 static bool do_long_3d(DisasContext *s, arg_3diff *a,
2126 NeonGenTwoOpWidenFn *opfn,
2127 NeonGenTwo64OpFn *accfn)
2130 * 3-regs different lengths, long operations.
2131 * These perform an operation on two inputs that returns a double-width
2132 * result, and then possibly perform an accumulation operation of
2133 * that result into the double-width destination.
2135 TCGv_i64 rd0, rd1, tmp;
2136 TCGv_i32 rn, rm;
2138 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
2139 return false;
2142 /* UNDEF accesses to D16-D31 if they don't exist. */
2143 if (!dc_isar_feature(aa32_simd_r32, s) &&
2144 ((a->vd | a->vn | a->vm) & 0x10)) {
2145 return false;
2148 if (!opfn) {
2149 /* size == 3 case, which is an entirely different insn group */
2150 return false;
2153 if (a->vd & 1) {
2154 return false;
2157 if (!vfp_access_check(s)) {
2158 return true;
2161 rd0 = tcg_temp_new_i64();
2162 rd1 = tcg_temp_new_i64();
2164 rn = neon_load_reg(a->vn, 0);
2165 rm = neon_load_reg(a->vm, 0);
2166 opfn(rd0, rn, rm);
2167 tcg_temp_free_i32(rn);
2168 tcg_temp_free_i32(rm);
2170 rn = neon_load_reg(a->vn, 1);
2171 rm = neon_load_reg(a->vm, 1);
2172 opfn(rd1, rn, rm);
2173 tcg_temp_free_i32(rn);
2174 tcg_temp_free_i32(rm);
2176 /* Don't store results until after all loads: they might overlap */
2177 if (accfn) {
2178 tmp = tcg_temp_new_i64();
2179 neon_load_reg64(tmp, a->vd);
2180 accfn(tmp, tmp, rd0);
2181 neon_store_reg64(tmp, a->vd);
2182 neon_load_reg64(tmp, a->vd + 1);
2183 accfn(tmp, tmp, rd1);
2184 neon_store_reg64(tmp, a->vd + 1);
2185 tcg_temp_free_i64(tmp);
2186 } else {
2187 neon_store_reg64(rd0, a->vd);
2188 neon_store_reg64(rd1, a->vd + 1);
2191 tcg_temp_free_i64(rd0);
2192 tcg_temp_free_i64(rd1);
2194 return true;
2197 static bool trans_VABDL_S_3d(DisasContext *s, arg_3diff *a)
2199 static NeonGenTwoOpWidenFn * const opfn[] = {
2200 gen_helper_neon_abdl_s16,
2201 gen_helper_neon_abdl_s32,
2202 gen_helper_neon_abdl_s64,
2203 NULL,
2206 return do_long_3d(s, a, opfn[a->size], NULL);
2209 static bool trans_VABDL_U_3d(DisasContext *s, arg_3diff *a)
2211 static NeonGenTwoOpWidenFn * const opfn[] = {
2212 gen_helper_neon_abdl_u16,
2213 gen_helper_neon_abdl_u32,
2214 gen_helper_neon_abdl_u64,
2215 NULL,
2218 return do_long_3d(s, a, opfn[a->size], NULL);
2221 static bool trans_VABAL_S_3d(DisasContext *s, arg_3diff *a)
2223 static NeonGenTwoOpWidenFn * const opfn[] = {
2224 gen_helper_neon_abdl_s16,
2225 gen_helper_neon_abdl_s32,
2226 gen_helper_neon_abdl_s64,
2227 NULL,
2229 static NeonGenTwo64OpFn * const addfn[] = {
2230 gen_helper_neon_addl_u16,
2231 gen_helper_neon_addl_u32,
2232 tcg_gen_add_i64,
2233 NULL,
2236 return do_long_3d(s, a, opfn[a->size], addfn[a->size]);
2239 static bool trans_VABAL_U_3d(DisasContext *s, arg_3diff *a)
2241 static NeonGenTwoOpWidenFn * const opfn[] = {
2242 gen_helper_neon_abdl_u16,
2243 gen_helper_neon_abdl_u32,
2244 gen_helper_neon_abdl_u64,
2245 NULL,
2247 static NeonGenTwo64OpFn * const addfn[] = {
2248 gen_helper_neon_addl_u16,
2249 gen_helper_neon_addl_u32,
2250 tcg_gen_add_i64,
2251 NULL,
2254 return do_long_3d(s, a, opfn[a->size], addfn[a->size]);
2257 static void gen_mull_s32(TCGv_i64 rd, TCGv_i32 rn, TCGv_i32 rm)
2259 TCGv_i32 lo = tcg_temp_new_i32();
2260 TCGv_i32 hi = tcg_temp_new_i32();
2262 tcg_gen_muls2_i32(lo, hi, rn, rm);
2263 tcg_gen_concat_i32_i64(rd, lo, hi);
2265 tcg_temp_free_i32(lo);
2266 tcg_temp_free_i32(hi);
2269 static void gen_mull_u32(TCGv_i64 rd, TCGv_i32 rn, TCGv_i32 rm)
2271 TCGv_i32 lo = tcg_temp_new_i32();
2272 TCGv_i32 hi = tcg_temp_new_i32();
2274 tcg_gen_mulu2_i32(lo, hi, rn, rm);
2275 tcg_gen_concat_i32_i64(rd, lo, hi);
2277 tcg_temp_free_i32(lo);
2278 tcg_temp_free_i32(hi);
2281 static bool trans_VMULL_S_3d(DisasContext *s, arg_3diff *a)
2283 static NeonGenTwoOpWidenFn * const opfn[] = {
2284 gen_helper_neon_mull_s8,
2285 gen_helper_neon_mull_s16,
2286 gen_mull_s32,
2287 NULL,
2290 return do_long_3d(s, a, opfn[a->size], NULL);
2293 static bool trans_VMULL_U_3d(DisasContext *s, arg_3diff *a)
2295 static NeonGenTwoOpWidenFn * const opfn[] = {
2296 gen_helper_neon_mull_u8,
2297 gen_helper_neon_mull_u16,
2298 gen_mull_u32,
2299 NULL,
2302 return do_long_3d(s, a, opfn[a->size], NULL);
2305 #define DO_VMLAL(INSN,MULL,ACC) \
2306 static bool trans_##INSN##_3d(DisasContext *s, arg_3diff *a) \
2308 static NeonGenTwoOpWidenFn * const opfn[] = { \
2309 gen_helper_neon_##MULL##8, \
2310 gen_helper_neon_##MULL##16, \
2311 gen_##MULL##32, \
2312 NULL, \
2313 }; \
2314 static NeonGenTwo64OpFn * const accfn[] = { \
2315 gen_helper_neon_##ACC##l_u16, \
2316 gen_helper_neon_##ACC##l_u32, \
2317 tcg_gen_##ACC##_i64, \
2318 NULL, \
2319 }; \
2320 return do_long_3d(s, a, opfn[a->size], accfn[a->size]); \
2323 DO_VMLAL(VMLAL_S,mull_s,add)
2324 DO_VMLAL(VMLAL_U,mull_u,add)
2325 DO_VMLAL(VMLSL_S,mull_s,sub)
2326 DO_VMLAL(VMLSL_U,mull_u,sub)
2328 static void gen_VQDMULL_16(TCGv_i64 rd, TCGv_i32 rn, TCGv_i32 rm)
2330 gen_helper_neon_mull_s16(rd, rn, rm);
2331 gen_helper_neon_addl_saturate_s32(rd, cpu_env, rd, rd);
2334 static void gen_VQDMULL_32(TCGv_i64 rd, TCGv_i32 rn, TCGv_i32 rm)
2336 gen_mull_s32(rd, rn, rm);
2337 gen_helper_neon_addl_saturate_s64(rd, cpu_env, rd, rd);
2340 static bool trans_VQDMULL_3d(DisasContext *s, arg_3diff *a)
2342 static NeonGenTwoOpWidenFn * const opfn[] = {
2343 NULL,
2344 gen_VQDMULL_16,
2345 gen_VQDMULL_32,
2346 NULL,
2349 return do_long_3d(s, a, opfn[a->size], NULL);
2352 static void gen_VQDMLAL_acc_16(TCGv_i64 rd, TCGv_i64 rn, TCGv_i64 rm)
2354 gen_helper_neon_addl_saturate_s32(rd, cpu_env, rn, rm);
2357 static void gen_VQDMLAL_acc_32(TCGv_i64 rd, TCGv_i64 rn, TCGv_i64 rm)
2359 gen_helper_neon_addl_saturate_s64(rd, cpu_env, rn, rm);
2362 static bool trans_VQDMLAL_3d(DisasContext *s, arg_3diff *a)
2364 static NeonGenTwoOpWidenFn * const opfn[] = {
2365 NULL,
2366 gen_VQDMULL_16,
2367 gen_VQDMULL_32,
2368 NULL,
2370 static NeonGenTwo64OpFn * const accfn[] = {
2371 NULL,
2372 gen_VQDMLAL_acc_16,
2373 gen_VQDMLAL_acc_32,
2374 NULL,
2377 return do_long_3d(s, a, opfn[a->size], accfn[a->size]);
2380 static void gen_VQDMLSL_acc_16(TCGv_i64 rd, TCGv_i64 rn, TCGv_i64 rm)
2382 gen_helper_neon_negl_u32(rm, rm);
2383 gen_helper_neon_addl_saturate_s32(rd, cpu_env, rn, rm);
2386 static void gen_VQDMLSL_acc_32(TCGv_i64 rd, TCGv_i64 rn, TCGv_i64 rm)
2388 tcg_gen_neg_i64(rm, rm);
2389 gen_helper_neon_addl_saturate_s64(rd, cpu_env, rn, rm);
2392 static bool trans_VQDMLSL_3d(DisasContext *s, arg_3diff *a)
2394 static NeonGenTwoOpWidenFn * const opfn[] = {
2395 NULL,
2396 gen_VQDMULL_16,
2397 gen_VQDMULL_32,
2398 NULL,
2400 static NeonGenTwo64OpFn * const accfn[] = {
2401 NULL,
2402 gen_VQDMLSL_acc_16,
2403 gen_VQDMLSL_acc_32,
2404 NULL,
2407 return do_long_3d(s, a, opfn[a->size], accfn[a->size]);
2410 static bool trans_VMULL_P_3d(DisasContext *s, arg_3diff *a)
2412 gen_helper_gvec_3 *fn_gvec;
2414 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
2415 return false;
2418 /* UNDEF accesses to D16-D31 if they don't exist. */
2419 if (!dc_isar_feature(aa32_simd_r32, s) &&
2420 ((a->vd | a->vn | a->vm) & 0x10)) {
2421 return false;
2424 if (a->vd & 1) {
2425 return false;
2428 switch (a->size) {
2429 case 0:
2430 fn_gvec = gen_helper_neon_pmull_h;
2431 break;
2432 case 2:
2433 if (!dc_isar_feature(aa32_pmull, s)) {
2434 return false;
2436 fn_gvec = gen_helper_gvec_pmull_q;
2437 break;
2438 default:
2439 return false;
2442 if (!vfp_access_check(s)) {
2443 return true;
2446 tcg_gen_gvec_3_ool(neon_reg_offset(a->vd, 0),
2447 neon_reg_offset(a->vn, 0),
2448 neon_reg_offset(a->vm, 0),
2449 16, 16, 0, fn_gvec);
2450 return true;
2453 static void gen_neon_dup_low16(TCGv_i32 var)
2455 TCGv_i32 tmp = tcg_temp_new_i32();
2456 tcg_gen_ext16u_i32(var, var);
2457 tcg_gen_shli_i32(tmp, var, 16);
2458 tcg_gen_or_i32(var, var, tmp);
2459 tcg_temp_free_i32(tmp);
2462 static void gen_neon_dup_high16(TCGv_i32 var)
2464 TCGv_i32 tmp = tcg_temp_new_i32();
2465 tcg_gen_andi_i32(var, var, 0xffff0000);
2466 tcg_gen_shri_i32(tmp, var, 16);
2467 tcg_gen_or_i32(var, var, tmp);
2468 tcg_temp_free_i32(tmp);
2471 static inline TCGv_i32 neon_get_scalar(int size, int reg)
2473 TCGv_i32 tmp;
2474 if (size == 1) {
2475 tmp = neon_load_reg(reg & 7, reg >> 4);
2476 if (reg & 8) {
2477 gen_neon_dup_high16(tmp);
2478 } else {
2479 gen_neon_dup_low16(tmp);
2481 } else {
2482 tmp = neon_load_reg(reg & 15, reg >> 4);
2484 return tmp;
2487 static bool do_2scalar(DisasContext *s, arg_2scalar *a,
2488 NeonGenTwoOpFn *opfn, NeonGenTwoOpFn *accfn)
2491 * Two registers and a scalar: perform an operation between
2492 * the input elements and the scalar, and then possibly
2493 * perform an accumulation operation of that result into the
2494 * destination.
2496 TCGv_i32 scalar;
2497 int pass;
2499 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
2500 return false;
2503 /* UNDEF accesses to D16-D31 if they don't exist. */
2504 if (!dc_isar_feature(aa32_simd_r32, s) &&
2505 ((a->vd | a->vn | a->vm) & 0x10)) {
2506 return false;
2509 if (!opfn) {
2510 /* Bad size (including size == 3, which is a different insn group) */
2511 return false;
2514 if (a->q && ((a->vd | a->vn) & 1)) {
2515 return false;
2518 if (!vfp_access_check(s)) {
2519 return true;
2522 scalar = neon_get_scalar(a->size, a->vm);
2524 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
2525 TCGv_i32 tmp = neon_load_reg(a->vn, pass);
2526 opfn(tmp, tmp, scalar);
2527 if (accfn) {
2528 TCGv_i32 rd = neon_load_reg(a->vd, pass);
2529 accfn(tmp, rd, tmp);
2530 tcg_temp_free_i32(rd);
2532 neon_store_reg(a->vd, pass, tmp);
2534 tcg_temp_free_i32(scalar);
2535 return true;
2538 static bool trans_VMUL_2sc(DisasContext *s, arg_2scalar *a)
2540 static NeonGenTwoOpFn * const opfn[] = {
2541 NULL,
2542 gen_helper_neon_mul_u16,
2543 tcg_gen_mul_i32,
2544 NULL,
2547 return do_2scalar(s, a, opfn[a->size], NULL);
2550 static bool trans_VMLA_2sc(DisasContext *s, arg_2scalar *a)
2552 static NeonGenTwoOpFn * const opfn[] = {
2553 NULL,
2554 gen_helper_neon_mul_u16,
2555 tcg_gen_mul_i32,
2556 NULL,
2558 static NeonGenTwoOpFn * const accfn[] = {
2559 NULL,
2560 gen_helper_neon_add_u16,
2561 tcg_gen_add_i32,
2562 NULL,
2565 return do_2scalar(s, a, opfn[a->size], accfn[a->size]);
2568 static bool trans_VMLS_2sc(DisasContext *s, arg_2scalar *a)
2570 static NeonGenTwoOpFn * const opfn[] = {
2571 NULL,
2572 gen_helper_neon_mul_u16,
2573 tcg_gen_mul_i32,
2574 NULL,
2576 static NeonGenTwoOpFn * const accfn[] = {
2577 NULL,
2578 gen_helper_neon_sub_u16,
2579 tcg_gen_sub_i32,
2580 NULL,
2583 return do_2scalar(s, a, opfn[a->size], accfn[a->size]);
2587 * Rather than have a float-specific version of do_2scalar just for
2588 * three insns, we wrap a NeonGenTwoSingleOpFn to turn it into
2589 * a NeonGenTwoOpFn.
2591 #define WRAP_FP_FN(WRAPNAME, FUNC) \
2592 static void WRAPNAME(TCGv_i32 rd, TCGv_i32 rn, TCGv_i32 rm) \
2594 TCGv_ptr fpstatus = get_fpstatus_ptr(1); \
2595 FUNC(rd, rn, rm, fpstatus); \
2596 tcg_temp_free_ptr(fpstatus); \
2599 WRAP_FP_FN(gen_VMUL_F_mul, gen_helper_vfp_muls)
2600 WRAP_FP_FN(gen_VMUL_F_add, gen_helper_vfp_adds)
2601 WRAP_FP_FN(gen_VMUL_F_sub, gen_helper_vfp_subs)
2603 static bool trans_VMUL_F_2sc(DisasContext *s, arg_2scalar *a)
2605 static NeonGenTwoOpFn * const opfn[] = {
2606 NULL,
2607 NULL, /* TODO: fp16 support */
2608 gen_VMUL_F_mul,
2609 NULL,
2612 return do_2scalar(s, a, opfn[a->size], NULL);
2615 static bool trans_VMLA_F_2sc(DisasContext *s, arg_2scalar *a)
2617 static NeonGenTwoOpFn * const opfn[] = {
2618 NULL,
2619 NULL, /* TODO: fp16 support */
2620 gen_VMUL_F_mul,
2621 NULL,
2623 static NeonGenTwoOpFn * const accfn[] = {
2624 NULL,
2625 NULL, /* TODO: fp16 support */
2626 gen_VMUL_F_add,
2627 NULL,
2630 return do_2scalar(s, a, opfn[a->size], accfn[a->size]);
2633 static bool trans_VMLS_F_2sc(DisasContext *s, arg_2scalar *a)
2635 static NeonGenTwoOpFn * const opfn[] = {
2636 NULL,
2637 NULL, /* TODO: fp16 support */
2638 gen_VMUL_F_mul,
2639 NULL,
2641 static NeonGenTwoOpFn * const accfn[] = {
2642 NULL,
2643 NULL, /* TODO: fp16 support */
2644 gen_VMUL_F_sub,
2645 NULL,
2648 return do_2scalar(s, a, opfn[a->size], accfn[a->size]);
2651 WRAP_ENV_FN(gen_VQDMULH_16, gen_helper_neon_qdmulh_s16)
2652 WRAP_ENV_FN(gen_VQDMULH_32, gen_helper_neon_qdmulh_s32)
2653 WRAP_ENV_FN(gen_VQRDMULH_16, gen_helper_neon_qrdmulh_s16)
2654 WRAP_ENV_FN(gen_VQRDMULH_32, gen_helper_neon_qrdmulh_s32)
2656 static bool trans_VQDMULH_2sc(DisasContext *s, arg_2scalar *a)
2658 static NeonGenTwoOpFn * const opfn[] = {
2659 NULL,
2660 gen_VQDMULH_16,
2661 gen_VQDMULH_32,
2662 NULL,
2665 return do_2scalar(s, a, opfn[a->size], NULL);
2668 static bool trans_VQRDMULH_2sc(DisasContext *s, arg_2scalar *a)
2670 static NeonGenTwoOpFn * const opfn[] = {
2671 NULL,
2672 gen_VQRDMULH_16,
2673 gen_VQRDMULH_32,
2674 NULL,
2677 return do_2scalar(s, a, opfn[a->size], NULL);
2680 static bool do_vqrdmlah_2sc(DisasContext *s, arg_2scalar *a,
2681 NeonGenThreeOpEnvFn *opfn)
2684 * VQRDMLAH/VQRDMLSH: this is like do_2scalar, but the opfn
2685 * performs a kind of fused op-then-accumulate using a helper
2686 * function that takes all of rd, rn and the scalar at once.
2688 TCGv_i32 scalar;
2689 int pass;
2691 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
2692 return false;
2695 if (!dc_isar_feature(aa32_rdm, s)) {
2696 return false;
2699 /* UNDEF accesses to D16-D31 if they don't exist. */
2700 if (!dc_isar_feature(aa32_simd_r32, s) &&
2701 ((a->vd | a->vn | a->vm) & 0x10)) {
2702 return false;
2705 if (!opfn) {
2706 /* Bad size (including size == 3, which is a different insn group) */
2707 return false;
2710 if (a->q && ((a->vd | a->vn) & 1)) {
2711 return false;
2714 if (!vfp_access_check(s)) {
2715 return true;
2718 scalar = neon_get_scalar(a->size, a->vm);
2720 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
2721 TCGv_i32 rn = neon_load_reg(a->vn, pass);
2722 TCGv_i32 rd = neon_load_reg(a->vd, pass);
2723 opfn(rd, cpu_env, rn, scalar, rd);
2724 tcg_temp_free_i32(rn);
2725 neon_store_reg(a->vd, pass, rd);
2727 tcg_temp_free_i32(scalar);
2729 return true;
2732 static bool trans_VQRDMLAH_2sc(DisasContext *s, arg_2scalar *a)
2734 static NeonGenThreeOpEnvFn *opfn[] = {
2735 NULL,
2736 gen_helper_neon_qrdmlah_s16,
2737 gen_helper_neon_qrdmlah_s32,
2738 NULL,
2740 return do_vqrdmlah_2sc(s, a, opfn[a->size]);
2743 static bool trans_VQRDMLSH_2sc(DisasContext *s, arg_2scalar *a)
2745 static NeonGenThreeOpEnvFn *opfn[] = {
2746 NULL,
2747 gen_helper_neon_qrdmlsh_s16,
2748 gen_helper_neon_qrdmlsh_s32,
2749 NULL,
2751 return do_vqrdmlah_2sc(s, a, opfn[a->size]);
2754 static bool do_2scalar_long(DisasContext *s, arg_2scalar *a,
2755 NeonGenTwoOpWidenFn *opfn,
2756 NeonGenTwo64OpFn *accfn)
2759 * Two registers and a scalar, long operations: perform an
2760 * operation on the input elements and the scalar which produces
2761 * a double-width result, and then possibly perform an accumulation
2762 * operation of that result into the destination.
2764 TCGv_i32 scalar, rn;
2765 TCGv_i64 rn0_64, rn1_64;
2767 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
2768 return false;
2771 /* UNDEF accesses to D16-D31 if they don't exist. */
2772 if (!dc_isar_feature(aa32_simd_r32, s) &&
2773 ((a->vd | a->vn | a->vm) & 0x10)) {
2774 return false;
2777 if (!opfn) {
2778 /* Bad size (including size == 3, which is a different insn group) */
2779 return false;
2782 if (a->vd & 1) {
2783 return false;
2786 if (!vfp_access_check(s)) {
2787 return true;
2790 scalar = neon_get_scalar(a->size, a->vm);
2792 /* Load all inputs before writing any outputs, in case of overlap */
2793 rn = neon_load_reg(a->vn, 0);
2794 rn0_64 = tcg_temp_new_i64();
2795 opfn(rn0_64, rn, scalar);
2796 tcg_temp_free_i32(rn);
2798 rn = neon_load_reg(a->vn, 1);
2799 rn1_64 = tcg_temp_new_i64();
2800 opfn(rn1_64, rn, scalar);
2801 tcg_temp_free_i32(rn);
2802 tcg_temp_free_i32(scalar);
2804 if (accfn) {
2805 TCGv_i64 t64 = tcg_temp_new_i64();
2806 neon_load_reg64(t64, a->vd);
2807 accfn(t64, t64, rn0_64);
2808 neon_store_reg64(t64, a->vd);
2809 neon_load_reg64(t64, a->vd + 1);
2810 accfn(t64, t64, rn1_64);
2811 neon_store_reg64(t64, a->vd + 1);
2812 tcg_temp_free_i64(t64);
2813 } else {
2814 neon_store_reg64(rn0_64, a->vd);
2815 neon_store_reg64(rn1_64, a->vd + 1);
2817 tcg_temp_free_i64(rn0_64);
2818 tcg_temp_free_i64(rn1_64);
2819 return true;
2822 static bool trans_VMULL_S_2sc(DisasContext *s, arg_2scalar *a)
2824 static NeonGenTwoOpWidenFn * const opfn[] = {
2825 NULL,
2826 gen_helper_neon_mull_s16,
2827 gen_mull_s32,
2828 NULL,
2831 return do_2scalar_long(s, a, opfn[a->size], NULL);
2834 static bool trans_VMULL_U_2sc(DisasContext *s, arg_2scalar *a)
2836 static NeonGenTwoOpWidenFn * const opfn[] = {
2837 NULL,
2838 gen_helper_neon_mull_u16,
2839 gen_mull_u32,
2840 NULL,
2843 return do_2scalar_long(s, a, opfn[a->size], NULL);
2846 #define DO_VMLAL_2SC(INSN, MULL, ACC) \
2847 static bool trans_##INSN##_2sc(DisasContext *s, arg_2scalar *a) \
2849 static NeonGenTwoOpWidenFn * const opfn[] = { \
2850 NULL, \
2851 gen_helper_neon_##MULL##16, \
2852 gen_##MULL##32, \
2853 NULL, \
2854 }; \
2855 static NeonGenTwo64OpFn * const accfn[] = { \
2856 NULL, \
2857 gen_helper_neon_##ACC##l_u32, \
2858 tcg_gen_##ACC##_i64, \
2859 NULL, \
2860 }; \
2861 return do_2scalar_long(s, a, opfn[a->size], accfn[a->size]); \
2864 DO_VMLAL_2SC(VMLAL_S, mull_s, add)
2865 DO_VMLAL_2SC(VMLAL_U, mull_u, add)
2866 DO_VMLAL_2SC(VMLSL_S, mull_s, sub)
2867 DO_VMLAL_2SC(VMLSL_U, mull_u, sub)
2869 static bool trans_VQDMULL_2sc(DisasContext *s, arg_2scalar *a)
2871 static NeonGenTwoOpWidenFn * const opfn[] = {
2872 NULL,
2873 gen_VQDMULL_16,
2874 gen_VQDMULL_32,
2875 NULL,
2878 return do_2scalar_long(s, a, opfn[a->size], NULL);
2881 static bool trans_VQDMLAL_2sc(DisasContext *s, arg_2scalar *a)
2883 static NeonGenTwoOpWidenFn * const opfn[] = {
2884 NULL,
2885 gen_VQDMULL_16,
2886 gen_VQDMULL_32,
2887 NULL,
2889 static NeonGenTwo64OpFn * const accfn[] = {
2890 NULL,
2891 gen_VQDMLAL_acc_16,
2892 gen_VQDMLAL_acc_32,
2893 NULL,
2896 return do_2scalar_long(s, a, opfn[a->size], accfn[a->size]);
2899 static bool trans_VQDMLSL_2sc(DisasContext *s, arg_2scalar *a)
2901 static NeonGenTwoOpWidenFn * const opfn[] = {
2902 NULL,
2903 gen_VQDMULL_16,
2904 gen_VQDMULL_32,
2905 NULL,
2907 static NeonGenTwo64OpFn * const accfn[] = {
2908 NULL,
2909 gen_VQDMLSL_acc_16,
2910 gen_VQDMLSL_acc_32,
2911 NULL,
2914 return do_2scalar_long(s, a, opfn[a->size], accfn[a->size]);
2917 static bool trans_VEXT(DisasContext *s, arg_VEXT *a)
2919 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
2920 return false;
2923 /* UNDEF accesses to D16-D31 if they don't exist. */
2924 if (!dc_isar_feature(aa32_simd_r32, s) &&
2925 ((a->vd | a->vn | a->vm) & 0x10)) {
2926 return false;
2929 if ((a->vn | a->vm | a->vd) & a->q) {
2930 return false;
2933 if (a->imm > 7 && !a->q) {
2934 return false;
2937 if (!vfp_access_check(s)) {
2938 return true;
2941 if (!a->q) {
2942 /* Extract 64 bits from <Vm:Vn> */
2943 TCGv_i64 left, right, dest;
2945 left = tcg_temp_new_i64();
2946 right = tcg_temp_new_i64();
2947 dest = tcg_temp_new_i64();
2949 neon_load_reg64(right, a->vn);
2950 neon_load_reg64(left, a->vm);
2951 tcg_gen_extract2_i64(dest, right, left, a->imm * 8);
2952 neon_store_reg64(dest, a->vd);
2954 tcg_temp_free_i64(left);
2955 tcg_temp_free_i64(right);
2956 tcg_temp_free_i64(dest);
2957 } else {
2958 /* Extract 128 bits from <Vm+1:Vm:Vn+1:Vn> */
2959 TCGv_i64 left, middle, right, destleft, destright;
2961 left = tcg_temp_new_i64();
2962 middle = tcg_temp_new_i64();
2963 right = tcg_temp_new_i64();
2964 destleft = tcg_temp_new_i64();
2965 destright = tcg_temp_new_i64();
2967 if (a->imm < 8) {
2968 neon_load_reg64(right, a->vn);
2969 neon_load_reg64(middle, a->vn + 1);
2970 tcg_gen_extract2_i64(destright, right, middle, a->imm * 8);
2971 neon_load_reg64(left, a->vm);
2972 tcg_gen_extract2_i64(destleft, middle, left, a->imm * 8);
2973 } else {
2974 neon_load_reg64(right, a->vn + 1);
2975 neon_load_reg64(middle, a->vm);
2976 tcg_gen_extract2_i64(destright, right, middle, (a->imm - 8) * 8);
2977 neon_load_reg64(left, a->vm + 1);
2978 tcg_gen_extract2_i64(destleft, middle, left, (a->imm - 8) * 8);
2981 neon_store_reg64(destright, a->vd);
2982 neon_store_reg64(destleft, a->vd + 1);
2984 tcg_temp_free_i64(destright);
2985 tcg_temp_free_i64(destleft);
2986 tcg_temp_free_i64(right);
2987 tcg_temp_free_i64(middle);
2988 tcg_temp_free_i64(left);
2990 return true;
2993 static bool trans_VTBL(DisasContext *s, arg_VTBL *a)
2995 int n;
2996 TCGv_i32 tmp, tmp2, tmp3, tmp4;
2997 TCGv_ptr ptr1;
2999 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3000 return false;
3003 /* UNDEF accesses to D16-D31 if they don't exist. */
3004 if (!dc_isar_feature(aa32_simd_r32, s) &&
3005 ((a->vd | a->vn | a->vm) & 0x10)) {
3006 return false;
3009 if (!vfp_access_check(s)) {
3010 return true;
3013 n = a->len + 1;
3014 if ((a->vn + n) > 32) {
3016 * This is UNPREDICTABLE; we choose to UNDEF to avoid the
3017 * helper function running off the end of the register file.
3019 return false;
3021 n <<= 3;
3022 if (a->op) {
3023 tmp = neon_load_reg(a->vd, 0);
3024 } else {
3025 tmp = tcg_temp_new_i32();
3026 tcg_gen_movi_i32(tmp, 0);
3028 tmp2 = neon_load_reg(a->vm, 0);
3029 ptr1 = vfp_reg_ptr(true, a->vn);
3030 tmp4 = tcg_const_i32(n);
3031 gen_helper_neon_tbl(tmp2, tmp2, tmp, ptr1, tmp4);
3032 tcg_temp_free_i32(tmp);
3033 if (a->op) {
3034 tmp = neon_load_reg(a->vd, 1);
3035 } else {
3036 tmp = tcg_temp_new_i32();
3037 tcg_gen_movi_i32(tmp, 0);
3039 tmp3 = neon_load_reg(a->vm, 1);
3040 gen_helper_neon_tbl(tmp3, tmp3, tmp, ptr1, tmp4);
3041 tcg_temp_free_i32(tmp4);
3042 tcg_temp_free_ptr(ptr1);
3043 neon_store_reg(a->vd, 0, tmp2);
3044 neon_store_reg(a->vd, 1, tmp3);
3045 tcg_temp_free_i32(tmp);
3046 return true;
3049 static bool trans_VDUP_scalar(DisasContext *s, arg_VDUP_scalar *a)
3051 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3052 return false;
3055 /* UNDEF accesses to D16-D31 if they don't exist. */
3056 if (!dc_isar_feature(aa32_simd_r32, s) &&
3057 ((a->vd | a->vm) & 0x10)) {
3058 return false;
3061 if (a->vd & a->q) {
3062 return false;
3065 if (!vfp_access_check(s)) {
3066 return true;
3069 tcg_gen_gvec_dup_mem(a->size, neon_reg_offset(a->vd, 0),
3070 neon_element_offset(a->vm, a->index, a->size),
3071 a->q ? 16 : 8, a->q ? 16 : 8);
3072 return true;
3075 static bool trans_VREV64(DisasContext *s, arg_VREV64 *a)
3077 int pass, half;
3079 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3080 return false;
3083 /* UNDEF accesses to D16-D31 if they don't exist. */
3084 if (!dc_isar_feature(aa32_simd_r32, s) &&
3085 ((a->vd | a->vm) & 0x10)) {
3086 return false;
3089 if ((a->vd | a->vm) & a->q) {
3090 return false;
3093 if (a->size == 3) {
3094 return false;
3097 if (!vfp_access_check(s)) {
3098 return true;
3101 for (pass = 0; pass < (a->q ? 2 : 1); pass++) {
3102 TCGv_i32 tmp[2];
3104 for (half = 0; half < 2; half++) {
3105 tmp[half] = neon_load_reg(a->vm, pass * 2 + half);
3106 switch (a->size) {
3107 case 0:
3108 tcg_gen_bswap32_i32(tmp[half], tmp[half]);
3109 break;
3110 case 1:
3111 gen_swap_half(tmp[half], tmp[half]);
3112 break;
3113 case 2:
3114 break;
3115 default:
3116 g_assert_not_reached();
3119 neon_store_reg(a->vd, pass * 2, tmp[1]);
3120 neon_store_reg(a->vd, pass * 2 + 1, tmp[0]);
3122 return true;
3125 static bool do_2misc_pairwise(DisasContext *s, arg_2misc *a,
3126 NeonGenWidenFn *widenfn,
3127 NeonGenTwo64OpFn *opfn,
3128 NeonGenTwo64OpFn *accfn)
3131 * Pairwise long operations: widen both halves of the pair,
3132 * combine the pairs with the opfn, and then possibly accumulate
3133 * into the destination with the accfn.
3135 int pass;
3137 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3138 return false;
3141 /* UNDEF accesses to D16-D31 if they don't exist. */
3142 if (!dc_isar_feature(aa32_simd_r32, s) &&
3143 ((a->vd | a->vm) & 0x10)) {
3144 return false;
3147 if ((a->vd | a->vm) & a->q) {
3148 return false;
3151 if (!widenfn) {
3152 return false;
3155 if (!vfp_access_check(s)) {
3156 return true;
3159 for (pass = 0; pass < a->q + 1; pass++) {
3160 TCGv_i32 tmp;
3161 TCGv_i64 rm0_64, rm1_64, rd_64;
3163 rm0_64 = tcg_temp_new_i64();
3164 rm1_64 = tcg_temp_new_i64();
3165 rd_64 = tcg_temp_new_i64();
3166 tmp = neon_load_reg(a->vm, pass * 2);
3167 widenfn(rm0_64, tmp);
3168 tcg_temp_free_i32(tmp);
3169 tmp = neon_load_reg(a->vm, pass * 2 + 1);
3170 widenfn(rm1_64, tmp);
3171 tcg_temp_free_i32(tmp);
3172 opfn(rd_64, rm0_64, rm1_64);
3173 tcg_temp_free_i64(rm0_64);
3174 tcg_temp_free_i64(rm1_64);
3176 if (accfn) {
3177 TCGv_i64 tmp64 = tcg_temp_new_i64();
3178 neon_load_reg64(tmp64, a->vd + pass);
3179 accfn(rd_64, tmp64, rd_64);
3180 tcg_temp_free_i64(tmp64);
3182 neon_store_reg64(rd_64, a->vd + pass);
3183 tcg_temp_free_i64(rd_64);
3185 return true;
3188 static bool trans_VPADDL_S(DisasContext *s, arg_2misc *a)
3190 static NeonGenWidenFn * const widenfn[] = {
3191 gen_helper_neon_widen_s8,
3192 gen_helper_neon_widen_s16,
3193 tcg_gen_ext_i32_i64,
3194 NULL,
3196 static NeonGenTwo64OpFn * const opfn[] = {
3197 gen_helper_neon_paddl_u16,
3198 gen_helper_neon_paddl_u32,
3199 tcg_gen_add_i64,
3200 NULL,
3203 return do_2misc_pairwise(s, a, widenfn[a->size], opfn[a->size], NULL);
3206 static bool trans_VPADDL_U(DisasContext *s, arg_2misc *a)
3208 static NeonGenWidenFn * const widenfn[] = {
3209 gen_helper_neon_widen_u8,
3210 gen_helper_neon_widen_u16,
3211 tcg_gen_extu_i32_i64,
3212 NULL,
3214 static NeonGenTwo64OpFn * const opfn[] = {
3215 gen_helper_neon_paddl_u16,
3216 gen_helper_neon_paddl_u32,
3217 tcg_gen_add_i64,
3218 NULL,
3221 return do_2misc_pairwise(s, a, widenfn[a->size], opfn[a->size], NULL);
3224 static bool trans_VPADAL_S(DisasContext *s, arg_2misc *a)
3226 static NeonGenWidenFn * const widenfn[] = {
3227 gen_helper_neon_widen_s8,
3228 gen_helper_neon_widen_s16,
3229 tcg_gen_ext_i32_i64,
3230 NULL,
3232 static NeonGenTwo64OpFn * const opfn[] = {
3233 gen_helper_neon_paddl_u16,
3234 gen_helper_neon_paddl_u32,
3235 tcg_gen_add_i64,
3236 NULL,
3238 static NeonGenTwo64OpFn * const accfn[] = {
3239 gen_helper_neon_addl_u16,
3240 gen_helper_neon_addl_u32,
3241 tcg_gen_add_i64,
3242 NULL,
3245 return do_2misc_pairwise(s, a, widenfn[a->size], opfn[a->size],
3246 accfn[a->size]);
3249 static bool trans_VPADAL_U(DisasContext *s, arg_2misc *a)
3251 static NeonGenWidenFn * const widenfn[] = {
3252 gen_helper_neon_widen_u8,
3253 gen_helper_neon_widen_u16,
3254 tcg_gen_extu_i32_i64,
3255 NULL,
3257 static NeonGenTwo64OpFn * const opfn[] = {
3258 gen_helper_neon_paddl_u16,
3259 gen_helper_neon_paddl_u32,
3260 tcg_gen_add_i64,
3261 NULL,
3263 static NeonGenTwo64OpFn * const accfn[] = {
3264 gen_helper_neon_addl_u16,
3265 gen_helper_neon_addl_u32,
3266 tcg_gen_add_i64,
3267 NULL,
3270 return do_2misc_pairwise(s, a, widenfn[a->size], opfn[a->size],
3271 accfn[a->size]);
3274 typedef void ZipFn(TCGv_ptr, TCGv_ptr);
3276 static bool do_zip_uzp(DisasContext *s, arg_2misc *a,
3277 ZipFn *fn)
3279 TCGv_ptr pd, pm;
3281 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3282 return false;
3285 /* UNDEF accesses to D16-D31 if they don't exist. */
3286 if (!dc_isar_feature(aa32_simd_r32, s) &&
3287 ((a->vd | a->vm) & 0x10)) {
3288 return false;
3291 if ((a->vd | a->vm) & a->q) {
3292 return false;
3295 if (!fn) {
3296 /* Bad size or size/q combination */
3297 return false;
3300 if (!vfp_access_check(s)) {
3301 return true;
3304 pd = vfp_reg_ptr(true, a->vd);
3305 pm = vfp_reg_ptr(true, a->vm);
3306 fn(pd, pm);
3307 tcg_temp_free_ptr(pd);
3308 tcg_temp_free_ptr(pm);
3309 return true;
3312 static bool trans_VUZP(DisasContext *s, arg_2misc *a)
3314 static ZipFn * const fn[2][4] = {
3316 gen_helper_neon_unzip8,
3317 gen_helper_neon_unzip16,
3318 NULL,
3319 NULL,
3320 }, {
3321 gen_helper_neon_qunzip8,
3322 gen_helper_neon_qunzip16,
3323 gen_helper_neon_qunzip32,
3324 NULL,
3327 return do_zip_uzp(s, a, fn[a->q][a->size]);
3330 static bool trans_VZIP(DisasContext *s, arg_2misc *a)
3332 static ZipFn * const fn[2][4] = {
3334 gen_helper_neon_zip8,
3335 gen_helper_neon_zip16,
3336 NULL,
3337 NULL,
3338 }, {
3339 gen_helper_neon_qzip8,
3340 gen_helper_neon_qzip16,
3341 gen_helper_neon_qzip32,
3342 NULL,
3345 return do_zip_uzp(s, a, fn[a->q][a->size]);
3348 static bool do_vmovn(DisasContext *s, arg_2misc *a,
3349 NeonGenNarrowEnvFn *narrowfn)
3351 TCGv_i64 rm;
3352 TCGv_i32 rd0, rd1;
3354 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3355 return false;
3358 /* UNDEF accesses to D16-D31 if they don't exist. */
3359 if (!dc_isar_feature(aa32_simd_r32, s) &&
3360 ((a->vd | a->vm) & 0x10)) {
3361 return false;
3364 if (a->vm & 1) {
3365 return false;
3368 if (!narrowfn) {
3369 return false;
3372 if (!vfp_access_check(s)) {
3373 return true;
3376 rm = tcg_temp_new_i64();
3377 rd0 = tcg_temp_new_i32();
3378 rd1 = tcg_temp_new_i32();
3380 neon_load_reg64(rm, a->vm);
3381 narrowfn(rd0, cpu_env, rm);
3382 neon_load_reg64(rm, a->vm + 1);
3383 narrowfn(rd1, cpu_env, rm);
3384 neon_store_reg(a->vd, 0, rd0);
3385 neon_store_reg(a->vd, 1, rd1);
3386 tcg_temp_free_i64(rm);
3387 return true;
3390 #define DO_VMOVN(INSN, FUNC) \
3391 static bool trans_##INSN(DisasContext *s, arg_2misc *a) \
3393 static NeonGenNarrowEnvFn * const narrowfn[] = { \
3394 FUNC##8, \
3395 FUNC##16, \
3396 FUNC##32, \
3397 NULL, \
3398 }; \
3399 return do_vmovn(s, a, narrowfn[a->size]); \
3402 DO_VMOVN(VMOVN, gen_neon_narrow_u)
3403 DO_VMOVN(VQMOVUN, gen_helper_neon_unarrow_sat)
3404 DO_VMOVN(VQMOVN_S, gen_helper_neon_narrow_sat_s)
3405 DO_VMOVN(VQMOVN_U, gen_helper_neon_narrow_sat_u)
3407 static bool trans_VSHLL(DisasContext *s, arg_2misc *a)
3409 TCGv_i32 rm0, rm1;
3410 TCGv_i64 rd;
3411 static NeonGenWidenFn * const widenfns[] = {
3412 gen_helper_neon_widen_u8,
3413 gen_helper_neon_widen_u16,
3414 tcg_gen_extu_i32_i64,
3415 NULL,
3417 NeonGenWidenFn *widenfn = widenfns[a->size];
3419 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3420 return false;
3423 /* UNDEF accesses to D16-D31 if they don't exist. */
3424 if (!dc_isar_feature(aa32_simd_r32, s) &&
3425 ((a->vd | a->vm) & 0x10)) {
3426 return false;
3429 if (a->vd & 1) {
3430 return false;
3433 if (!widenfn) {
3434 return false;
3437 if (!vfp_access_check(s)) {
3438 return true;
3441 rd = tcg_temp_new_i64();
3443 rm0 = neon_load_reg(a->vm, 0);
3444 rm1 = neon_load_reg(a->vm, 1);
3446 widenfn(rd, rm0);
3447 tcg_gen_shli_i64(rd, rd, 8 << a->size);
3448 neon_store_reg64(rd, a->vd);
3449 widenfn(rd, rm1);
3450 tcg_gen_shli_i64(rd, rd, 8 << a->size);
3451 neon_store_reg64(rd, a->vd + 1);
3453 tcg_temp_free_i64(rd);
3454 tcg_temp_free_i32(rm0);
3455 tcg_temp_free_i32(rm1);
3456 return true;
3459 static bool trans_VCVT_F16_F32(DisasContext *s, arg_2misc *a)
3461 TCGv_ptr fpst;
3462 TCGv_i32 ahp, tmp, tmp2, tmp3;
3464 if (!arm_dc_feature(s, ARM_FEATURE_NEON) ||
3465 !dc_isar_feature(aa32_fp16_spconv, s)) {
3466 return false;
3469 /* UNDEF accesses to D16-D31 if they don't exist. */
3470 if (!dc_isar_feature(aa32_simd_r32, s) &&
3471 ((a->vd | a->vm) & 0x10)) {
3472 return false;
3475 if ((a->vm & 1) || (a->size != 1)) {
3476 return false;
3479 if (!vfp_access_check(s)) {
3480 return true;
3483 fpst = get_fpstatus_ptr(true);
3484 ahp = get_ahp_flag();
3485 tmp = neon_load_reg(a->vm, 0);
3486 gen_helper_vfp_fcvt_f32_to_f16(tmp, tmp, fpst, ahp);
3487 tmp2 = neon_load_reg(a->vm, 1);
3488 gen_helper_vfp_fcvt_f32_to_f16(tmp2, tmp2, fpst, ahp);
3489 tcg_gen_shli_i32(tmp2, tmp2, 16);
3490 tcg_gen_or_i32(tmp2, tmp2, tmp);
3491 tcg_temp_free_i32(tmp);
3492 tmp = neon_load_reg(a->vm, 2);
3493 gen_helper_vfp_fcvt_f32_to_f16(tmp, tmp, fpst, ahp);
3494 tmp3 = neon_load_reg(a->vm, 3);
3495 neon_store_reg(a->vd, 0, tmp2);
3496 gen_helper_vfp_fcvt_f32_to_f16(tmp3, tmp3, fpst, ahp);
3497 tcg_gen_shli_i32(tmp3, tmp3, 16);
3498 tcg_gen_or_i32(tmp3, tmp3, tmp);
3499 neon_store_reg(a->vd, 1, tmp3);
3500 tcg_temp_free_i32(tmp);
3501 tcg_temp_free_i32(ahp);
3502 tcg_temp_free_ptr(fpst);
3504 return true;
3507 static bool trans_VCVT_F32_F16(DisasContext *s, arg_2misc *a)
3509 TCGv_ptr fpst;
3510 TCGv_i32 ahp, tmp, tmp2, tmp3;
3512 if (!arm_dc_feature(s, ARM_FEATURE_NEON) ||
3513 !dc_isar_feature(aa32_fp16_spconv, s)) {
3514 return false;
3517 /* UNDEF accesses to D16-D31 if they don't exist. */
3518 if (!dc_isar_feature(aa32_simd_r32, s) &&
3519 ((a->vd | a->vm) & 0x10)) {
3520 return false;
3523 if ((a->vd & 1) || (a->size != 1)) {
3524 return false;
3527 if (!vfp_access_check(s)) {
3528 return true;
3531 fpst = get_fpstatus_ptr(true);
3532 ahp = get_ahp_flag();
3533 tmp3 = tcg_temp_new_i32();
3534 tmp = neon_load_reg(a->vm, 0);
3535 tmp2 = neon_load_reg(a->vm, 1);
3536 tcg_gen_ext16u_i32(tmp3, tmp);
3537 gen_helper_vfp_fcvt_f16_to_f32(tmp3, tmp3, fpst, ahp);
3538 neon_store_reg(a->vd, 0, tmp3);
3539 tcg_gen_shri_i32(tmp, tmp, 16);
3540 gen_helper_vfp_fcvt_f16_to_f32(tmp, tmp, fpst, ahp);
3541 neon_store_reg(a->vd, 1, tmp);
3542 tmp3 = tcg_temp_new_i32();
3543 tcg_gen_ext16u_i32(tmp3, tmp2);
3544 gen_helper_vfp_fcvt_f16_to_f32(tmp3, tmp3, fpst, ahp);
3545 neon_store_reg(a->vd, 2, tmp3);
3546 tcg_gen_shri_i32(tmp2, tmp2, 16);
3547 gen_helper_vfp_fcvt_f16_to_f32(tmp2, tmp2, fpst, ahp);
3548 neon_store_reg(a->vd, 3, tmp2);
3549 tcg_temp_free_i32(ahp);
3550 tcg_temp_free_ptr(fpst);
3552 return true;
3555 static bool do_2misc_vec(DisasContext *s, arg_2misc *a, GVecGen2Fn *fn)
3557 int vec_size = a->q ? 16 : 8;
3558 int rd_ofs = neon_reg_offset(a->vd, 0);
3559 int rm_ofs = neon_reg_offset(a->vm, 0);
3561 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3562 return false;
3565 /* UNDEF accesses to D16-D31 if they don't exist. */
3566 if (!dc_isar_feature(aa32_simd_r32, s) &&
3567 ((a->vd | a->vm) & 0x10)) {
3568 return false;
3571 if (a->size == 3) {
3572 return false;
3575 if ((a->vd | a->vm) & a->q) {
3576 return false;
3579 if (!vfp_access_check(s)) {
3580 return true;
3583 fn(a->size, rd_ofs, rm_ofs, vec_size, vec_size);
3585 return true;
3588 #define DO_2MISC_VEC(INSN, FN) \
3589 static bool trans_##INSN(DisasContext *s, arg_2misc *a) \
3591 return do_2misc_vec(s, a, FN); \
3594 DO_2MISC_VEC(VNEG, tcg_gen_gvec_neg)
3595 DO_2MISC_VEC(VABS, tcg_gen_gvec_abs)
3596 DO_2MISC_VEC(VCEQ0, gen_gvec_ceq0)
3597 DO_2MISC_VEC(VCGT0, gen_gvec_cgt0)
3598 DO_2MISC_VEC(VCLE0, gen_gvec_cle0)
3599 DO_2MISC_VEC(VCGE0, gen_gvec_cge0)
3600 DO_2MISC_VEC(VCLT0, gen_gvec_clt0)
3602 static bool trans_VMVN(DisasContext *s, arg_2misc *a)
3604 if (a->size != 0) {
3605 return false;
3607 return do_2misc_vec(s, a, tcg_gen_gvec_not);
3610 #define WRAP_2M_3_OOL_FN(WRAPNAME, FUNC, DATA) \
3611 static void WRAPNAME(unsigned vece, uint32_t rd_ofs, \
3612 uint32_t rm_ofs, uint32_t oprsz, \
3613 uint32_t maxsz) \
3615 tcg_gen_gvec_3_ool(rd_ofs, rd_ofs, rm_ofs, oprsz, maxsz, \
3616 DATA, FUNC); \
3619 #define WRAP_2M_2_OOL_FN(WRAPNAME, FUNC, DATA) \
3620 static void WRAPNAME(unsigned vece, uint32_t rd_ofs, \
3621 uint32_t rm_ofs, uint32_t oprsz, \
3622 uint32_t maxsz) \
3624 tcg_gen_gvec_2_ool(rd_ofs, rm_ofs, oprsz, maxsz, DATA, FUNC); \
3627 WRAP_2M_3_OOL_FN(gen_AESE, gen_helper_crypto_aese, 0)
3628 WRAP_2M_3_OOL_FN(gen_AESD, gen_helper_crypto_aese, 1)
3629 WRAP_2M_2_OOL_FN(gen_AESMC, gen_helper_crypto_aesmc, 0)
3630 WRAP_2M_2_OOL_FN(gen_AESIMC, gen_helper_crypto_aesmc, 1)
3631 WRAP_2M_2_OOL_FN(gen_SHA1H, gen_helper_crypto_sha1h, 0)
3632 WRAP_2M_2_OOL_FN(gen_SHA1SU1, gen_helper_crypto_sha1su1, 0)
3633 WRAP_2M_2_OOL_FN(gen_SHA256SU0, gen_helper_crypto_sha256su0, 0)
3635 #define DO_2M_CRYPTO(INSN, FEATURE, SIZE) \
3636 static bool trans_##INSN(DisasContext *s, arg_2misc *a) \
3638 if (!dc_isar_feature(FEATURE, s) || a->size != SIZE) { \
3639 return false; \
3641 return do_2misc_vec(s, a, gen_##INSN); \
3644 DO_2M_CRYPTO(AESE, aa32_aes, 0)
3645 DO_2M_CRYPTO(AESD, aa32_aes, 0)
3646 DO_2M_CRYPTO(AESMC, aa32_aes, 0)
3647 DO_2M_CRYPTO(AESIMC, aa32_aes, 0)
3648 DO_2M_CRYPTO(SHA1H, aa32_sha1, 2)
3649 DO_2M_CRYPTO(SHA1SU1, aa32_sha1, 2)
3650 DO_2M_CRYPTO(SHA256SU0, aa32_sha2, 2)
3652 static bool do_2misc(DisasContext *s, arg_2misc *a, NeonGenOneOpFn *fn)
3654 int pass;
3656 /* Handle a 2-reg-misc operation by iterating 32 bits at a time */
3657 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3658 return false;
3661 /* UNDEF accesses to D16-D31 if they don't exist. */
3662 if (!dc_isar_feature(aa32_simd_r32, s) &&
3663 ((a->vd | a->vm) & 0x10)) {
3664 return false;
3667 if (!fn) {
3668 return false;
3671 if ((a->vd | a->vm) & a->q) {
3672 return false;
3675 if (!vfp_access_check(s)) {
3676 return true;
3679 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
3680 TCGv_i32 tmp = neon_load_reg(a->vm, pass);
3681 fn(tmp, tmp);
3682 neon_store_reg(a->vd, pass, tmp);
3685 return true;
3688 static bool trans_VREV32(DisasContext *s, arg_2misc *a)
3690 static NeonGenOneOpFn * const fn[] = {
3691 tcg_gen_bswap32_i32,
3692 gen_swap_half,
3693 NULL,
3694 NULL,
3696 return do_2misc(s, a, fn[a->size]);
3699 static bool trans_VREV16(DisasContext *s, arg_2misc *a)
3701 if (a->size != 0) {
3702 return false;
3704 return do_2misc(s, a, gen_rev16);
3707 static bool trans_VCLS(DisasContext *s, arg_2misc *a)
3709 static NeonGenOneOpFn * const fn[] = {
3710 gen_helper_neon_cls_s8,
3711 gen_helper_neon_cls_s16,
3712 gen_helper_neon_cls_s32,
3713 NULL,
3715 return do_2misc(s, a, fn[a->size]);
3718 static void do_VCLZ_32(TCGv_i32 rd, TCGv_i32 rm)
3720 tcg_gen_clzi_i32(rd, rm, 32);
3723 static bool trans_VCLZ(DisasContext *s, arg_2misc *a)
3725 static NeonGenOneOpFn * const fn[] = {
3726 gen_helper_neon_clz_u8,
3727 gen_helper_neon_clz_u16,
3728 do_VCLZ_32,
3729 NULL,
3731 return do_2misc(s, a, fn[a->size]);
3734 static bool trans_VCNT(DisasContext *s, arg_2misc *a)
3736 if (a->size != 0) {
3737 return false;
3739 return do_2misc(s, a, gen_helper_neon_cnt_u8);
3742 static bool trans_VABS_F(DisasContext *s, arg_2misc *a)
3744 if (a->size != 2) {
3745 return false;
3747 /* TODO: FP16 : size == 1 */
3748 return do_2misc(s, a, gen_helper_vfp_abss);
3751 static bool trans_VNEG_F(DisasContext *s, arg_2misc *a)
3753 if (a->size != 2) {
3754 return false;
3756 /* TODO: FP16 : size == 1 */
3757 return do_2misc(s, a, gen_helper_vfp_negs);
3760 static bool trans_VRECPE(DisasContext *s, arg_2misc *a)
3762 if (a->size != 2) {
3763 return false;
3765 return do_2misc(s, a, gen_helper_recpe_u32);
3768 static bool trans_VRSQRTE(DisasContext *s, arg_2misc *a)
3770 if (a->size != 2) {
3771 return false;
3773 return do_2misc(s, a, gen_helper_rsqrte_u32);
3776 #define WRAP_1OP_ENV_FN(WRAPNAME, FUNC) \
3777 static void WRAPNAME(TCGv_i32 d, TCGv_i32 m) \
3779 FUNC(d, cpu_env, m); \
3782 WRAP_1OP_ENV_FN(gen_VQABS_s8, gen_helper_neon_qabs_s8)
3783 WRAP_1OP_ENV_FN(gen_VQABS_s16, gen_helper_neon_qabs_s16)
3784 WRAP_1OP_ENV_FN(gen_VQABS_s32, gen_helper_neon_qabs_s32)
3785 WRAP_1OP_ENV_FN(gen_VQNEG_s8, gen_helper_neon_qneg_s8)
3786 WRAP_1OP_ENV_FN(gen_VQNEG_s16, gen_helper_neon_qneg_s16)
3787 WRAP_1OP_ENV_FN(gen_VQNEG_s32, gen_helper_neon_qneg_s32)
3789 static bool trans_VQABS(DisasContext *s, arg_2misc *a)
3791 static NeonGenOneOpFn * const fn[] = {
3792 gen_VQABS_s8,
3793 gen_VQABS_s16,
3794 gen_VQABS_s32,
3795 NULL,
3797 return do_2misc(s, a, fn[a->size]);
3800 static bool trans_VQNEG(DisasContext *s, arg_2misc *a)
3802 static NeonGenOneOpFn * const fn[] = {
3803 gen_VQNEG_s8,
3804 gen_VQNEG_s16,
3805 gen_VQNEG_s32,
3806 NULL,
3808 return do_2misc(s, a, fn[a->size]);
3811 static bool do_2misc_fp(DisasContext *s, arg_2misc *a,
3812 NeonGenOneSingleOpFn *fn)
3814 int pass;
3815 TCGv_ptr fpst;
3817 /* Handle a 2-reg-misc operation by iterating 32 bits at a time */
3818 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
3819 return false;
3822 /* UNDEF accesses to D16-D31 if they don't exist. */
3823 if (!dc_isar_feature(aa32_simd_r32, s) &&
3824 ((a->vd | a->vm) & 0x10)) {
3825 return false;
3828 if (a->size != 2) {
3829 /* TODO: FP16 will be the size == 1 case */
3830 return false;
3833 if ((a->vd | a->vm) & a->q) {
3834 return false;
3837 if (!vfp_access_check(s)) {
3838 return true;
3841 fpst = get_fpstatus_ptr(1);
3842 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
3843 TCGv_i32 tmp = neon_load_reg(a->vm, pass);
3844 fn(tmp, tmp, fpst);
3845 neon_store_reg(a->vd, pass, tmp);
3847 tcg_temp_free_ptr(fpst);
3849 return true;
3852 #define DO_2MISC_FP(INSN, FUNC) \
3853 static bool trans_##INSN(DisasContext *s, arg_2misc *a) \
3855 return do_2misc_fp(s, a, FUNC); \
3858 DO_2MISC_FP(VRECPE_F, gen_helper_recpe_f32)
3859 DO_2MISC_FP(VRSQRTE_F, gen_helper_rsqrte_f32)
3860 DO_2MISC_FP(VCVT_FS, gen_helper_vfp_sitos)
3861 DO_2MISC_FP(VCVT_FU, gen_helper_vfp_uitos)
3862 DO_2MISC_FP(VCVT_SF, gen_helper_vfp_tosizs)
3863 DO_2MISC_FP(VCVT_UF, gen_helper_vfp_touizs)
3865 static bool trans_VRINTX(DisasContext *s, arg_2misc *a)
3867 if (!arm_dc_feature(s, ARM_FEATURE_V8)) {
3868 return false;
3870 return do_2misc_fp(s, a, gen_helper_rints_exact);
3873 #define WRAP_FP_CMP0_FWD(WRAPNAME, FUNC) \
3874 static void WRAPNAME(TCGv_i32 d, TCGv_i32 m, TCGv_ptr fpst) \
3876 TCGv_i32 zero = tcg_const_i32(0); \
3877 FUNC(d, m, zero, fpst); \
3878 tcg_temp_free_i32(zero); \
3880 #define WRAP_FP_CMP0_REV(WRAPNAME, FUNC) \
3881 static void WRAPNAME(TCGv_i32 d, TCGv_i32 m, TCGv_ptr fpst) \
3883 TCGv_i32 zero = tcg_const_i32(0); \
3884 FUNC(d, zero, m, fpst); \
3885 tcg_temp_free_i32(zero); \
3888 #define DO_FP_CMP0(INSN, FUNC, REV) \
3889 WRAP_FP_CMP0_##REV(gen_##INSN, FUNC) \
3890 static bool trans_##INSN(DisasContext *s, arg_2misc *a) \
3892 return do_2misc_fp(s, a, gen_##INSN); \
3895 DO_FP_CMP0(VCGT0_F, gen_helper_neon_cgt_f32, FWD)
3896 DO_FP_CMP0(VCGE0_F, gen_helper_neon_cge_f32, FWD)
3897 DO_FP_CMP0(VCEQ0_F, gen_helper_neon_ceq_f32, FWD)
3898 DO_FP_CMP0(VCLE0_F, gen_helper_neon_cge_f32, REV)
3899 DO_FP_CMP0(VCLT0_F, gen_helper_neon_cgt_f32, REV)
3901 static bool do_vrint(DisasContext *s, arg_2misc *a, int rmode)
3904 * Handle a VRINT* operation by iterating 32 bits at a time,
3905 * with a specified rounding mode in operation.
3907 int pass;
3908 TCGv_ptr fpst;
3909 TCGv_i32 tcg_rmode;
3911 if (!arm_dc_feature(s, ARM_FEATURE_NEON) ||
3912 !arm_dc_feature(s, ARM_FEATURE_V8)) {
3913 return false;
3916 /* UNDEF accesses to D16-D31 if they don't exist. */
3917 if (!dc_isar_feature(aa32_simd_r32, s) &&
3918 ((a->vd | a->vm) & 0x10)) {
3919 return false;
3922 if (a->size != 2) {
3923 /* TODO: FP16 will be the size == 1 case */
3924 return false;
3927 if ((a->vd | a->vm) & a->q) {
3928 return false;
3931 if (!vfp_access_check(s)) {
3932 return true;
3935 fpst = get_fpstatus_ptr(1);
3936 tcg_rmode = tcg_const_i32(arm_rmode_to_sf(rmode));
3937 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode, cpu_env);
3938 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
3939 TCGv_i32 tmp = neon_load_reg(a->vm, pass);
3940 gen_helper_rints(tmp, tmp, fpst);
3941 neon_store_reg(a->vd, pass, tmp);
3943 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode, cpu_env);
3944 tcg_temp_free_i32(tcg_rmode);
3945 tcg_temp_free_ptr(fpst);
3947 return true;
3950 #define DO_VRINT(INSN, RMODE) \
3951 static bool trans_##INSN(DisasContext *s, arg_2misc *a) \
3953 return do_vrint(s, a, RMODE); \
3956 DO_VRINT(VRINTN, FPROUNDING_TIEEVEN)
3957 DO_VRINT(VRINTA, FPROUNDING_TIEAWAY)
3958 DO_VRINT(VRINTZ, FPROUNDING_ZERO)
3959 DO_VRINT(VRINTM, FPROUNDING_NEGINF)
3960 DO_VRINT(VRINTP, FPROUNDING_POSINF)
3962 static bool do_vcvt(DisasContext *s, arg_2misc *a, int rmode, bool is_signed)
3965 * Handle a VCVT* operation by iterating 32 bits at a time,
3966 * with a specified rounding mode in operation.
3968 int pass;
3969 TCGv_ptr fpst;
3970 TCGv_i32 tcg_rmode, tcg_shift;
3972 if (!arm_dc_feature(s, ARM_FEATURE_NEON) ||
3973 !arm_dc_feature(s, ARM_FEATURE_V8)) {
3974 return false;
3977 /* UNDEF accesses to D16-D31 if they don't exist. */
3978 if (!dc_isar_feature(aa32_simd_r32, s) &&
3979 ((a->vd | a->vm) & 0x10)) {
3980 return false;
3983 if (a->size != 2) {
3984 /* TODO: FP16 will be the size == 1 case */
3985 return false;
3988 if ((a->vd | a->vm) & a->q) {
3989 return false;
3992 if (!vfp_access_check(s)) {
3993 return true;
3996 fpst = get_fpstatus_ptr(1);
3997 tcg_shift = tcg_const_i32(0);
3998 tcg_rmode = tcg_const_i32(arm_rmode_to_sf(rmode));
3999 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode, cpu_env);
4000 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
4001 TCGv_i32 tmp = neon_load_reg(a->vm, pass);
4002 if (is_signed) {
4003 gen_helper_vfp_tosls(tmp, tmp, tcg_shift, fpst);
4004 } else {
4005 gen_helper_vfp_touls(tmp, tmp, tcg_shift, fpst);
4007 neon_store_reg(a->vd, pass, tmp);
4009 gen_helper_set_neon_rmode(tcg_rmode, tcg_rmode, cpu_env);
4010 tcg_temp_free_i32(tcg_rmode);
4011 tcg_temp_free_i32(tcg_shift);
4012 tcg_temp_free_ptr(fpst);
4014 return true;
4017 #define DO_VCVT(INSN, RMODE, SIGNED) \
4018 static bool trans_##INSN(DisasContext *s, arg_2misc *a) \
4020 return do_vcvt(s, a, RMODE, SIGNED); \
4023 DO_VCVT(VCVTAU, FPROUNDING_TIEAWAY, false)
4024 DO_VCVT(VCVTAS, FPROUNDING_TIEAWAY, true)
4025 DO_VCVT(VCVTNU, FPROUNDING_TIEEVEN, false)
4026 DO_VCVT(VCVTNS, FPROUNDING_TIEEVEN, true)
4027 DO_VCVT(VCVTPU, FPROUNDING_POSINF, false)
4028 DO_VCVT(VCVTPS, FPROUNDING_POSINF, true)
4029 DO_VCVT(VCVTMU, FPROUNDING_NEGINF, false)
4030 DO_VCVT(VCVTMS, FPROUNDING_NEGINF, true)
4032 static bool trans_VSWP(DisasContext *s, arg_2misc *a)
4034 TCGv_i64 rm, rd;
4035 int pass;
4037 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
4038 return false;
4041 /* UNDEF accesses to D16-D31 if they don't exist. */
4042 if (!dc_isar_feature(aa32_simd_r32, s) &&
4043 ((a->vd | a->vm) & 0x10)) {
4044 return false;
4047 if (a->size != 0) {
4048 return false;
4051 if ((a->vd | a->vm) & a->q) {
4052 return false;
4055 if (!vfp_access_check(s)) {
4056 return true;
4059 rm = tcg_temp_new_i64();
4060 rd = tcg_temp_new_i64();
4061 for (pass = 0; pass < (a->q ? 2 : 1); pass++) {
4062 neon_load_reg64(rm, a->vm + pass);
4063 neon_load_reg64(rd, a->vd + pass);
4064 neon_store_reg64(rm, a->vd + pass);
4065 neon_store_reg64(rd, a->vm + pass);
4067 tcg_temp_free_i64(rm);
4068 tcg_temp_free_i64(rd);
4070 return true;
4072 static void gen_neon_trn_u8(TCGv_i32 t0, TCGv_i32 t1)
4074 TCGv_i32 rd, tmp;
4076 rd = tcg_temp_new_i32();
4077 tmp = tcg_temp_new_i32();
4079 tcg_gen_shli_i32(rd, t0, 8);
4080 tcg_gen_andi_i32(rd, rd, 0xff00ff00);
4081 tcg_gen_andi_i32(tmp, t1, 0x00ff00ff);
4082 tcg_gen_or_i32(rd, rd, tmp);
4084 tcg_gen_shri_i32(t1, t1, 8);
4085 tcg_gen_andi_i32(t1, t1, 0x00ff00ff);
4086 tcg_gen_andi_i32(tmp, t0, 0xff00ff00);
4087 tcg_gen_or_i32(t1, t1, tmp);
4088 tcg_gen_mov_i32(t0, rd);
4090 tcg_temp_free_i32(tmp);
4091 tcg_temp_free_i32(rd);
4094 static void gen_neon_trn_u16(TCGv_i32 t0, TCGv_i32 t1)
4096 TCGv_i32 rd, tmp;
4098 rd = tcg_temp_new_i32();
4099 tmp = tcg_temp_new_i32();
4101 tcg_gen_shli_i32(rd, t0, 16);
4102 tcg_gen_andi_i32(tmp, t1, 0xffff);
4103 tcg_gen_or_i32(rd, rd, tmp);
4104 tcg_gen_shri_i32(t1, t1, 16);
4105 tcg_gen_andi_i32(tmp, t0, 0xffff0000);
4106 tcg_gen_or_i32(t1, t1, tmp);
4107 tcg_gen_mov_i32(t0, rd);
4109 tcg_temp_free_i32(tmp);
4110 tcg_temp_free_i32(rd);
4113 static bool trans_VTRN(DisasContext *s, arg_2misc *a)
4115 TCGv_i32 tmp, tmp2;
4116 int pass;
4118 if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
4119 return false;
4122 /* UNDEF accesses to D16-D31 if they don't exist. */
4123 if (!dc_isar_feature(aa32_simd_r32, s) &&
4124 ((a->vd | a->vm) & 0x10)) {
4125 return false;
4128 if ((a->vd | a->vm) & a->q) {
4129 return false;
4132 if (a->size == 3) {
4133 return false;
4136 if (!vfp_access_check(s)) {
4137 return true;
4140 if (a->size == 2) {
4141 for (pass = 0; pass < (a->q ? 4 : 2); pass += 2) {
4142 tmp = neon_load_reg(a->vm, pass);
4143 tmp2 = neon_load_reg(a->vd, pass + 1);
4144 neon_store_reg(a->vm, pass, tmp2);
4145 neon_store_reg(a->vd, pass + 1, tmp);
4147 } else {
4148 for (pass = 0; pass < (a->q ? 4 : 2); pass++) {
4149 tmp = neon_load_reg(a->vm, pass);
4150 tmp2 = neon_load_reg(a->vd, pass);
4151 if (a->size == 0) {
4152 gen_neon_trn_u8(tmp, tmp2);
4153 } else {
4154 gen_neon_trn_u16(tmp, tmp2);
4156 neon_store_reg(a->vm, pass, tmp2);
4157 neon_store_reg(a->vd, pass, tmp);
4160 return true;