cpu: Directly use get_memory_mapping() fallback handlers in place
[qemu/ar7.git] / target / arm / translate-sve.c
blob9574efe9578b3cfe94a022e59a16f7cc12b87f4d
1 /*
2 * AArch64 SVE translation
4 * Copyright (c) 2018 Linaro, Ltd
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "cpu.h"
22 #include "exec/exec-all.h"
23 #include "tcg/tcg-op.h"
24 #include "tcg/tcg-op-gvec.h"
25 #include "tcg/tcg-gvec-desc.h"
26 #include "qemu/log.h"
27 #include "arm_ldst.h"
28 #include "translate.h"
29 #include "internals.h"
30 #include "exec/helper-proto.h"
31 #include "exec/helper-gen.h"
32 #include "exec/log.h"
33 #include "trace-tcg.h"
34 #include "translate-a64.h"
35 #include "fpu/softfloat.h"
38 typedef void GVecGen2sFn(unsigned, uint32_t, uint32_t,
39 TCGv_i64, uint32_t, uint32_t);
41 typedef void gen_helper_gvec_flags_3(TCGv_i32, TCGv_ptr, TCGv_ptr,
42 TCGv_ptr, TCGv_i32);
43 typedef void gen_helper_gvec_flags_4(TCGv_i32, TCGv_ptr, TCGv_ptr,
44 TCGv_ptr, TCGv_ptr, TCGv_i32);
46 typedef void gen_helper_gvec_mem(TCGv_env, TCGv_ptr, TCGv_i64, TCGv_i32);
47 typedef void gen_helper_gvec_mem_scatter(TCGv_env, TCGv_ptr, TCGv_ptr,
48 TCGv_ptr, TCGv_i64, TCGv_i32);
51 * Helpers for extracting complex instruction fields.
54 /* See e.g. ASR (immediate, predicated).
55 * Returns -1 for unallocated encoding; diagnose later.
57 static int tszimm_esz(DisasContext *s, int x)
59 x >>= 3; /* discard imm3 */
60 return 31 - clz32(x);
63 static int tszimm_shr(DisasContext *s, int x)
65 return (16 << tszimm_esz(s, x)) - x;
68 /* See e.g. LSL (immediate, predicated). */
69 static int tszimm_shl(DisasContext *s, int x)
71 return x - (8 << tszimm_esz(s, x));
74 static inline int plus1(DisasContext *s, int x)
76 return x + 1;
79 /* The SH bit is in bit 8. Extract the low 8 and shift. */
80 static inline int expand_imm_sh8s(DisasContext *s, int x)
82 return (int8_t)x << (x & 0x100 ? 8 : 0);
85 static inline int expand_imm_sh8u(DisasContext *s, int x)
87 return (uint8_t)x << (x & 0x100 ? 8 : 0);
90 /* Convert a 2-bit memory size (msz) to a 4-bit data type (dtype)
91 * with unsigned data. C.f. SVE Memory Contiguous Load Group.
93 static inline int msz_dtype(DisasContext *s, int msz)
95 static const uint8_t dtype[4] = { 0, 5, 10, 15 };
96 return dtype[msz];
100 * Include the generated decoder.
103 #include "decode-sve.c.inc"
106 * Implement all of the translator functions referenced by the decoder.
109 /* Return the offset info CPUARMState of the predicate vector register Pn.
110 * Note for this purpose, FFR is P16.
112 static inline int pred_full_reg_offset(DisasContext *s, int regno)
114 return offsetof(CPUARMState, vfp.pregs[regno]);
117 /* Return the byte size of the whole predicate register, VL / 64. */
118 static inline int pred_full_reg_size(DisasContext *s)
120 return s->sve_len >> 3;
123 /* Round up the size of a register to a size allowed by
124 * the tcg vector infrastructure. Any operation which uses this
125 * size may assume that the bits above pred_full_reg_size are zero,
126 * and must leave them the same way.
128 * Note that this is not needed for the vector registers as they
129 * are always properly sized for tcg vectors.
131 static int size_for_gvec(int size)
133 if (size <= 8) {
134 return 8;
135 } else {
136 return QEMU_ALIGN_UP(size, 16);
140 static int pred_gvec_reg_size(DisasContext *s)
142 return size_for_gvec(pred_full_reg_size(s));
145 /* Invoke an out-of-line helper on 2 Zregs. */
146 static void gen_gvec_ool_zz(DisasContext *s, gen_helper_gvec_2 *fn,
147 int rd, int rn, int data)
149 unsigned vsz = vec_full_reg_size(s);
150 tcg_gen_gvec_2_ool(vec_full_reg_offset(s, rd),
151 vec_full_reg_offset(s, rn),
152 vsz, vsz, data, fn);
155 /* Invoke an out-of-line helper on 3 Zregs. */
156 static void gen_gvec_ool_zzz(DisasContext *s, gen_helper_gvec_3 *fn,
157 int rd, int rn, int rm, int data)
159 unsigned vsz = vec_full_reg_size(s);
160 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, rd),
161 vec_full_reg_offset(s, rn),
162 vec_full_reg_offset(s, rm),
163 vsz, vsz, data, fn);
166 /* Invoke an out-of-line helper on 4 Zregs. */
167 static void gen_gvec_ool_zzzz(DisasContext *s, gen_helper_gvec_4 *fn,
168 int rd, int rn, int rm, int ra, int data)
170 unsigned vsz = vec_full_reg_size(s);
171 tcg_gen_gvec_4_ool(vec_full_reg_offset(s, rd),
172 vec_full_reg_offset(s, rn),
173 vec_full_reg_offset(s, rm),
174 vec_full_reg_offset(s, ra),
175 vsz, vsz, data, fn);
178 /* Invoke an out-of-line helper on 2 Zregs and a predicate. */
179 static void gen_gvec_ool_zzp(DisasContext *s, gen_helper_gvec_3 *fn,
180 int rd, int rn, int pg, int data)
182 unsigned vsz = vec_full_reg_size(s);
183 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, rd),
184 vec_full_reg_offset(s, rn),
185 pred_full_reg_offset(s, pg),
186 vsz, vsz, data, fn);
189 /* Invoke an out-of-line helper on 3 Zregs and a predicate. */
190 static void gen_gvec_ool_zzzp(DisasContext *s, gen_helper_gvec_4 *fn,
191 int rd, int rn, int rm, int pg, int data)
193 unsigned vsz = vec_full_reg_size(s);
194 tcg_gen_gvec_4_ool(vec_full_reg_offset(s, rd),
195 vec_full_reg_offset(s, rn),
196 vec_full_reg_offset(s, rm),
197 pred_full_reg_offset(s, pg),
198 vsz, vsz, data, fn);
201 /* Invoke a vector expander on two Zregs. */
202 static void gen_gvec_fn_zz(DisasContext *s, GVecGen2Fn *gvec_fn,
203 int esz, int rd, int rn)
205 unsigned vsz = vec_full_reg_size(s);
206 gvec_fn(esz, vec_full_reg_offset(s, rd),
207 vec_full_reg_offset(s, rn), vsz, vsz);
210 /* Invoke a vector expander on three Zregs. */
211 static void gen_gvec_fn_zzz(DisasContext *s, GVecGen3Fn *gvec_fn,
212 int esz, int rd, int rn, int rm)
214 unsigned vsz = vec_full_reg_size(s);
215 gvec_fn(esz, vec_full_reg_offset(s, rd),
216 vec_full_reg_offset(s, rn),
217 vec_full_reg_offset(s, rm), vsz, vsz);
220 /* Invoke a vector expander on four Zregs. */
221 static void gen_gvec_fn_zzzz(DisasContext *s, GVecGen4Fn *gvec_fn,
222 int esz, int rd, int rn, int rm, int ra)
224 unsigned vsz = vec_full_reg_size(s);
225 gvec_fn(esz, vec_full_reg_offset(s, rd),
226 vec_full_reg_offset(s, rn),
227 vec_full_reg_offset(s, rm),
228 vec_full_reg_offset(s, ra), vsz, vsz);
231 /* Invoke a vector move on two Zregs. */
232 static bool do_mov_z(DisasContext *s, int rd, int rn)
234 if (sve_access_check(s)) {
235 gen_gvec_fn_zz(s, tcg_gen_gvec_mov, MO_8, rd, rn);
237 return true;
240 /* Initialize a Zreg with replications of a 64-bit immediate. */
241 static void do_dupi_z(DisasContext *s, int rd, uint64_t word)
243 unsigned vsz = vec_full_reg_size(s);
244 tcg_gen_gvec_dup_imm(MO_64, vec_full_reg_offset(s, rd), vsz, vsz, word);
247 /* Invoke a vector expander on three Pregs. */
248 static void gen_gvec_fn_ppp(DisasContext *s, GVecGen3Fn *gvec_fn,
249 int rd, int rn, int rm)
251 unsigned psz = pred_gvec_reg_size(s);
252 gvec_fn(MO_64, pred_full_reg_offset(s, rd),
253 pred_full_reg_offset(s, rn),
254 pred_full_reg_offset(s, rm), psz, psz);
257 /* Invoke a vector move on two Pregs. */
258 static bool do_mov_p(DisasContext *s, int rd, int rn)
260 if (sve_access_check(s)) {
261 unsigned psz = pred_gvec_reg_size(s);
262 tcg_gen_gvec_mov(MO_8, pred_full_reg_offset(s, rd),
263 pred_full_reg_offset(s, rn), psz, psz);
265 return true;
268 /* Set the cpu flags as per a return from an SVE helper. */
269 static void do_pred_flags(TCGv_i32 t)
271 tcg_gen_mov_i32(cpu_NF, t);
272 tcg_gen_andi_i32(cpu_ZF, t, 2);
273 tcg_gen_andi_i32(cpu_CF, t, 1);
274 tcg_gen_movi_i32(cpu_VF, 0);
277 /* Subroutines computing the ARM PredTest psuedofunction. */
278 static void do_predtest1(TCGv_i64 d, TCGv_i64 g)
280 TCGv_i32 t = tcg_temp_new_i32();
282 gen_helper_sve_predtest1(t, d, g);
283 do_pred_flags(t);
284 tcg_temp_free_i32(t);
287 static void do_predtest(DisasContext *s, int dofs, int gofs, int words)
289 TCGv_ptr dptr = tcg_temp_new_ptr();
290 TCGv_ptr gptr = tcg_temp_new_ptr();
291 TCGv_i32 t;
293 tcg_gen_addi_ptr(dptr, cpu_env, dofs);
294 tcg_gen_addi_ptr(gptr, cpu_env, gofs);
295 t = tcg_const_i32(words);
297 gen_helper_sve_predtest(t, dptr, gptr, t);
298 tcg_temp_free_ptr(dptr);
299 tcg_temp_free_ptr(gptr);
301 do_pred_flags(t);
302 tcg_temp_free_i32(t);
305 /* For each element size, the bits within a predicate word that are active. */
306 const uint64_t pred_esz_masks[4] = {
307 0xffffffffffffffffull, 0x5555555555555555ull,
308 0x1111111111111111ull, 0x0101010101010101ull
312 *** SVE Logical - Unpredicated Group
315 static bool do_zzz_fn(DisasContext *s, arg_rrr_esz *a, GVecGen3Fn *gvec_fn)
317 if (sve_access_check(s)) {
318 gen_gvec_fn_zzz(s, gvec_fn, a->esz, a->rd, a->rn, a->rm);
320 return true;
323 static bool trans_AND_zzz(DisasContext *s, arg_rrr_esz *a)
325 return do_zzz_fn(s, a, tcg_gen_gvec_and);
328 static bool trans_ORR_zzz(DisasContext *s, arg_rrr_esz *a)
330 return do_zzz_fn(s, a, tcg_gen_gvec_or);
333 static bool trans_EOR_zzz(DisasContext *s, arg_rrr_esz *a)
335 return do_zzz_fn(s, a, tcg_gen_gvec_xor);
338 static bool trans_BIC_zzz(DisasContext *s, arg_rrr_esz *a)
340 return do_zzz_fn(s, a, tcg_gen_gvec_andc);
343 static void gen_xar8_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, int64_t sh)
345 TCGv_i64 t = tcg_temp_new_i64();
346 uint64_t mask = dup_const(MO_8, 0xff >> sh);
348 tcg_gen_xor_i64(t, n, m);
349 tcg_gen_shri_i64(d, t, sh);
350 tcg_gen_shli_i64(t, t, 8 - sh);
351 tcg_gen_andi_i64(d, d, mask);
352 tcg_gen_andi_i64(t, t, ~mask);
353 tcg_gen_or_i64(d, d, t);
354 tcg_temp_free_i64(t);
357 static void gen_xar16_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, int64_t sh)
359 TCGv_i64 t = tcg_temp_new_i64();
360 uint64_t mask = dup_const(MO_16, 0xffff >> sh);
362 tcg_gen_xor_i64(t, n, m);
363 tcg_gen_shri_i64(d, t, sh);
364 tcg_gen_shli_i64(t, t, 16 - sh);
365 tcg_gen_andi_i64(d, d, mask);
366 tcg_gen_andi_i64(t, t, ~mask);
367 tcg_gen_or_i64(d, d, t);
368 tcg_temp_free_i64(t);
371 static void gen_xar_i32(TCGv_i32 d, TCGv_i32 n, TCGv_i32 m, int32_t sh)
373 tcg_gen_xor_i32(d, n, m);
374 tcg_gen_rotri_i32(d, d, sh);
377 static void gen_xar_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, int64_t sh)
379 tcg_gen_xor_i64(d, n, m);
380 tcg_gen_rotri_i64(d, d, sh);
383 static void gen_xar_vec(unsigned vece, TCGv_vec d, TCGv_vec n,
384 TCGv_vec m, int64_t sh)
386 tcg_gen_xor_vec(vece, d, n, m);
387 tcg_gen_rotri_vec(vece, d, d, sh);
390 void gen_gvec_xar(unsigned vece, uint32_t rd_ofs, uint32_t rn_ofs,
391 uint32_t rm_ofs, int64_t shift,
392 uint32_t opr_sz, uint32_t max_sz)
394 static const TCGOpcode vecop[] = { INDEX_op_rotli_vec, 0 };
395 static const GVecGen3i ops[4] = {
396 { .fni8 = gen_xar8_i64,
397 .fniv = gen_xar_vec,
398 .fno = gen_helper_sve2_xar_b,
399 .opt_opc = vecop,
400 .vece = MO_8 },
401 { .fni8 = gen_xar16_i64,
402 .fniv = gen_xar_vec,
403 .fno = gen_helper_sve2_xar_h,
404 .opt_opc = vecop,
405 .vece = MO_16 },
406 { .fni4 = gen_xar_i32,
407 .fniv = gen_xar_vec,
408 .fno = gen_helper_sve2_xar_s,
409 .opt_opc = vecop,
410 .vece = MO_32 },
411 { .fni8 = gen_xar_i64,
412 .fniv = gen_xar_vec,
413 .fno = gen_helper_gvec_xar_d,
414 .opt_opc = vecop,
415 .vece = MO_64 }
417 int esize = 8 << vece;
419 /* The SVE2 range is 1 .. esize; the AdvSIMD range is 0 .. esize-1. */
420 tcg_debug_assert(shift >= 0);
421 tcg_debug_assert(shift <= esize);
422 shift &= esize - 1;
424 if (shift == 0) {
425 /* xar with no rotate devolves to xor. */
426 tcg_gen_gvec_xor(vece, rd_ofs, rn_ofs, rm_ofs, opr_sz, max_sz);
427 } else {
428 tcg_gen_gvec_3i(rd_ofs, rn_ofs, rm_ofs, opr_sz, max_sz,
429 shift, &ops[vece]);
433 static bool trans_XAR(DisasContext *s, arg_rrri_esz *a)
435 if (a->esz < 0 || !dc_isar_feature(aa64_sve2, s)) {
436 return false;
438 if (sve_access_check(s)) {
439 unsigned vsz = vec_full_reg_size(s);
440 gen_gvec_xar(a->esz, vec_full_reg_offset(s, a->rd),
441 vec_full_reg_offset(s, a->rn),
442 vec_full_reg_offset(s, a->rm), a->imm, vsz, vsz);
444 return true;
447 static bool do_sve2_zzzz_fn(DisasContext *s, arg_rrrr_esz *a, GVecGen4Fn *fn)
449 if (!dc_isar_feature(aa64_sve2, s)) {
450 return false;
452 if (sve_access_check(s)) {
453 gen_gvec_fn_zzzz(s, fn, a->esz, a->rd, a->rn, a->rm, a->ra);
455 return true;
458 static void gen_eor3_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, TCGv_i64 k)
460 tcg_gen_xor_i64(d, n, m);
461 tcg_gen_xor_i64(d, d, k);
464 static void gen_eor3_vec(unsigned vece, TCGv_vec d, TCGv_vec n,
465 TCGv_vec m, TCGv_vec k)
467 tcg_gen_xor_vec(vece, d, n, m);
468 tcg_gen_xor_vec(vece, d, d, k);
471 static void gen_eor3(unsigned vece, uint32_t d, uint32_t n, uint32_t m,
472 uint32_t a, uint32_t oprsz, uint32_t maxsz)
474 static const GVecGen4 op = {
475 .fni8 = gen_eor3_i64,
476 .fniv = gen_eor3_vec,
477 .fno = gen_helper_sve2_eor3,
478 .vece = MO_64,
479 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
481 tcg_gen_gvec_4(d, n, m, a, oprsz, maxsz, &op);
484 static bool trans_EOR3(DisasContext *s, arg_rrrr_esz *a)
486 return do_sve2_zzzz_fn(s, a, gen_eor3);
489 static void gen_bcax_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, TCGv_i64 k)
491 tcg_gen_andc_i64(d, m, k);
492 tcg_gen_xor_i64(d, d, n);
495 static void gen_bcax_vec(unsigned vece, TCGv_vec d, TCGv_vec n,
496 TCGv_vec m, TCGv_vec k)
498 tcg_gen_andc_vec(vece, d, m, k);
499 tcg_gen_xor_vec(vece, d, d, n);
502 static void gen_bcax(unsigned vece, uint32_t d, uint32_t n, uint32_t m,
503 uint32_t a, uint32_t oprsz, uint32_t maxsz)
505 static const GVecGen4 op = {
506 .fni8 = gen_bcax_i64,
507 .fniv = gen_bcax_vec,
508 .fno = gen_helper_sve2_bcax,
509 .vece = MO_64,
510 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
512 tcg_gen_gvec_4(d, n, m, a, oprsz, maxsz, &op);
515 static bool trans_BCAX(DisasContext *s, arg_rrrr_esz *a)
517 return do_sve2_zzzz_fn(s, a, gen_bcax);
520 static void gen_bsl(unsigned vece, uint32_t d, uint32_t n, uint32_t m,
521 uint32_t a, uint32_t oprsz, uint32_t maxsz)
523 /* BSL differs from the generic bitsel in argument ordering. */
524 tcg_gen_gvec_bitsel(vece, d, a, n, m, oprsz, maxsz);
527 static bool trans_BSL(DisasContext *s, arg_rrrr_esz *a)
529 return do_sve2_zzzz_fn(s, a, gen_bsl);
532 static void gen_bsl1n_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, TCGv_i64 k)
534 tcg_gen_andc_i64(n, k, n);
535 tcg_gen_andc_i64(m, m, k);
536 tcg_gen_or_i64(d, n, m);
539 static void gen_bsl1n_vec(unsigned vece, TCGv_vec d, TCGv_vec n,
540 TCGv_vec m, TCGv_vec k)
542 if (TCG_TARGET_HAS_bitsel_vec) {
543 tcg_gen_not_vec(vece, n, n);
544 tcg_gen_bitsel_vec(vece, d, k, n, m);
545 } else {
546 tcg_gen_andc_vec(vece, n, k, n);
547 tcg_gen_andc_vec(vece, m, m, k);
548 tcg_gen_or_vec(vece, d, n, m);
552 static void gen_bsl1n(unsigned vece, uint32_t d, uint32_t n, uint32_t m,
553 uint32_t a, uint32_t oprsz, uint32_t maxsz)
555 static const GVecGen4 op = {
556 .fni8 = gen_bsl1n_i64,
557 .fniv = gen_bsl1n_vec,
558 .fno = gen_helper_sve2_bsl1n,
559 .vece = MO_64,
560 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
562 tcg_gen_gvec_4(d, n, m, a, oprsz, maxsz, &op);
565 static bool trans_BSL1N(DisasContext *s, arg_rrrr_esz *a)
567 return do_sve2_zzzz_fn(s, a, gen_bsl1n);
570 static void gen_bsl2n_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, TCGv_i64 k)
573 * Z[dn] = (n & k) | (~m & ~k)
574 * = | ~(m | k)
576 tcg_gen_and_i64(n, n, k);
577 if (TCG_TARGET_HAS_orc_i64) {
578 tcg_gen_or_i64(m, m, k);
579 tcg_gen_orc_i64(d, n, m);
580 } else {
581 tcg_gen_nor_i64(m, m, k);
582 tcg_gen_or_i64(d, n, m);
586 static void gen_bsl2n_vec(unsigned vece, TCGv_vec d, TCGv_vec n,
587 TCGv_vec m, TCGv_vec k)
589 if (TCG_TARGET_HAS_bitsel_vec) {
590 tcg_gen_not_vec(vece, m, m);
591 tcg_gen_bitsel_vec(vece, d, k, n, m);
592 } else {
593 tcg_gen_and_vec(vece, n, n, k);
594 tcg_gen_or_vec(vece, m, m, k);
595 tcg_gen_orc_vec(vece, d, n, m);
599 static void gen_bsl2n(unsigned vece, uint32_t d, uint32_t n, uint32_t m,
600 uint32_t a, uint32_t oprsz, uint32_t maxsz)
602 static const GVecGen4 op = {
603 .fni8 = gen_bsl2n_i64,
604 .fniv = gen_bsl2n_vec,
605 .fno = gen_helper_sve2_bsl2n,
606 .vece = MO_64,
607 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
609 tcg_gen_gvec_4(d, n, m, a, oprsz, maxsz, &op);
612 static bool trans_BSL2N(DisasContext *s, arg_rrrr_esz *a)
614 return do_sve2_zzzz_fn(s, a, gen_bsl2n);
617 static void gen_nbsl_i64(TCGv_i64 d, TCGv_i64 n, TCGv_i64 m, TCGv_i64 k)
619 tcg_gen_and_i64(n, n, k);
620 tcg_gen_andc_i64(m, m, k);
621 tcg_gen_nor_i64(d, n, m);
624 static void gen_nbsl_vec(unsigned vece, TCGv_vec d, TCGv_vec n,
625 TCGv_vec m, TCGv_vec k)
627 tcg_gen_bitsel_vec(vece, d, k, n, m);
628 tcg_gen_not_vec(vece, d, d);
631 static void gen_nbsl(unsigned vece, uint32_t d, uint32_t n, uint32_t m,
632 uint32_t a, uint32_t oprsz, uint32_t maxsz)
634 static const GVecGen4 op = {
635 .fni8 = gen_nbsl_i64,
636 .fniv = gen_nbsl_vec,
637 .fno = gen_helper_sve2_nbsl,
638 .vece = MO_64,
639 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
641 tcg_gen_gvec_4(d, n, m, a, oprsz, maxsz, &op);
644 static bool trans_NBSL(DisasContext *s, arg_rrrr_esz *a)
646 return do_sve2_zzzz_fn(s, a, gen_nbsl);
650 *** SVE Integer Arithmetic - Unpredicated Group
653 static bool trans_ADD_zzz(DisasContext *s, arg_rrr_esz *a)
655 return do_zzz_fn(s, a, tcg_gen_gvec_add);
658 static bool trans_SUB_zzz(DisasContext *s, arg_rrr_esz *a)
660 return do_zzz_fn(s, a, tcg_gen_gvec_sub);
663 static bool trans_SQADD_zzz(DisasContext *s, arg_rrr_esz *a)
665 return do_zzz_fn(s, a, tcg_gen_gvec_ssadd);
668 static bool trans_SQSUB_zzz(DisasContext *s, arg_rrr_esz *a)
670 return do_zzz_fn(s, a, tcg_gen_gvec_sssub);
673 static bool trans_UQADD_zzz(DisasContext *s, arg_rrr_esz *a)
675 return do_zzz_fn(s, a, tcg_gen_gvec_usadd);
678 static bool trans_UQSUB_zzz(DisasContext *s, arg_rrr_esz *a)
680 return do_zzz_fn(s, a, tcg_gen_gvec_ussub);
684 *** SVE Integer Arithmetic - Binary Predicated Group
687 static bool do_zpzz_ool(DisasContext *s, arg_rprr_esz *a, gen_helper_gvec_4 *fn)
689 if (fn == NULL) {
690 return false;
692 if (sve_access_check(s)) {
693 gen_gvec_ool_zzzp(s, fn, a->rd, a->rn, a->rm, a->pg, 0);
695 return true;
698 /* Select active elememnts from Zn and inactive elements from Zm,
699 * storing the result in Zd.
701 static void do_sel_z(DisasContext *s, int rd, int rn, int rm, int pg, int esz)
703 static gen_helper_gvec_4 * const fns[4] = {
704 gen_helper_sve_sel_zpzz_b, gen_helper_sve_sel_zpzz_h,
705 gen_helper_sve_sel_zpzz_s, gen_helper_sve_sel_zpzz_d
707 gen_gvec_ool_zzzp(s, fns[esz], rd, rn, rm, pg, 0);
710 #define DO_ZPZZ(NAME, name) \
711 static bool trans_##NAME##_zpzz(DisasContext *s, arg_rprr_esz *a) \
713 static gen_helper_gvec_4 * const fns[4] = { \
714 gen_helper_sve_##name##_zpzz_b, gen_helper_sve_##name##_zpzz_h, \
715 gen_helper_sve_##name##_zpzz_s, gen_helper_sve_##name##_zpzz_d, \
716 }; \
717 return do_zpzz_ool(s, a, fns[a->esz]); \
720 DO_ZPZZ(AND, and)
721 DO_ZPZZ(EOR, eor)
722 DO_ZPZZ(ORR, orr)
723 DO_ZPZZ(BIC, bic)
725 DO_ZPZZ(ADD, add)
726 DO_ZPZZ(SUB, sub)
728 DO_ZPZZ(SMAX, smax)
729 DO_ZPZZ(UMAX, umax)
730 DO_ZPZZ(SMIN, smin)
731 DO_ZPZZ(UMIN, umin)
732 DO_ZPZZ(SABD, sabd)
733 DO_ZPZZ(UABD, uabd)
735 DO_ZPZZ(MUL, mul)
736 DO_ZPZZ(SMULH, smulh)
737 DO_ZPZZ(UMULH, umulh)
739 DO_ZPZZ(ASR, asr)
740 DO_ZPZZ(LSR, lsr)
741 DO_ZPZZ(LSL, lsl)
743 static bool trans_SDIV_zpzz(DisasContext *s, arg_rprr_esz *a)
745 static gen_helper_gvec_4 * const fns[4] = {
746 NULL, NULL, gen_helper_sve_sdiv_zpzz_s, gen_helper_sve_sdiv_zpzz_d
748 return do_zpzz_ool(s, a, fns[a->esz]);
751 static bool trans_UDIV_zpzz(DisasContext *s, arg_rprr_esz *a)
753 static gen_helper_gvec_4 * const fns[4] = {
754 NULL, NULL, gen_helper_sve_udiv_zpzz_s, gen_helper_sve_udiv_zpzz_d
756 return do_zpzz_ool(s, a, fns[a->esz]);
759 static bool trans_SEL_zpzz(DisasContext *s, arg_rprr_esz *a)
761 if (sve_access_check(s)) {
762 do_sel_z(s, a->rd, a->rn, a->rm, a->pg, a->esz);
764 return true;
767 #undef DO_ZPZZ
770 *** SVE Integer Arithmetic - Unary Predicated Group
773 static bool do_zpz_ool(DisasContext *s, arg_rpr_esz *a, gen_helper_gvec_3 *fn)
775 if (fn == NULL) {
776 return false;
778 if (sve_access_check(s)) {
779 gen_gvec_ool_zzp(s, fn, a->rd, a->rn, a->pg, 0);
781 return true;
784 #define DO_ZPZ(NAME, name) \
785 static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
787 static gen_helper_gvec_3 * const fns[4] = { \
788 gen_helper_sve_##name##_b, gen_helper_sve_##name##_h, \
789 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d, \
790 }; \
791 return do_zpz_ool(s, a, fns[a->esz]); \
794 DO_ZPZ(CLS, cls)
795 DO_ZPZ(CLZ, clz)
796 DO_ZPZ(CNT_zpz, cnt_zpz)
797 DO_ZPZ(CNOT, cnot)
798 DO_ZPZ(NOT_zpz, not_zpz)
799 DO_ZPZ(ABS, abs)
800 DO_ZPZ(NEG, neg)
802 static bool trans_FABS(DisasContext *s, arg_rpr_esz *a)
804 static gen_helper_gvec_3 * const fns[4] = {
805 NULL,
806 gen_helper_sve_fabs_h,
807 gen_helper_sve_fabs_s,
808 gen_helper_sve_fabs_d
810 return do_zpz_ool(s, a, fns[a->esz]);
813 static bool trans_FNEG(DisasContext *s, arg_rpr_esz *a)
815 static gen_helper_gvec_3 * const fns[4] = {
816 NULL,
817 gen_helper_sve_fneg_h,
818 gen_helper_sve_fneg_s,
819 gen_helper_sve_fneg_d
821 return do_zpz_ool(s, a, fns[a->esz]);
824 static bool trans_SXTB(DisasContext *s, arg_rpr_esz *a)
826 static gen_helper_gvec_3 * const fns[4] = {
827 NULL,
828 gen_helper_sve_sxtb_h,
829 gen_helper_sve_sxtb_s,
830 gen_helper_sve_sxtb_d
832 return do_zpz_ool(s, a, fns[a->esz]);
835 static bool trans_UXTB(DisasContext *s, arg_rpr_esz *a)
837 static gen_helper_gvec_3 * const fns[4] = {
838 NULL,
839 gen_helper_sve_uxtb_h,
840 gen_helper_sve_uxtb_s,
841 gen_helper_sve_uxtb_d
843 return do_zpz_ool(s, a, fns[a->esz]);
846 static bool trans_SXTH(DisasContext *s, arg_rpr_esz *a)
848 static gen_helper_gvec_3 * const fns[4] = {
849 NULL, NULL,
850 gen_helper_sve_sxth_s,
851 gen_helper_sve_sxth_d
853 return do_zpz_ool(s, a, fns[a->esz]);
856 static bool trans_UXTH(DisasContext *s, arg_rpr_esz *a)
858 static gen_helper_gvec_3 * const fns[4] = {
859 NULL, NULL,
860 gen_helper_sve_uxth_s,
861 gen_helper_sve_uxth_d
863 return do_zpz_ool(s, a, fns[a->esz]);
866 static bool trans_SXTW(DisasContext *s, arg_rpr_esz *a)
868 return do_zpz_ool(s, a, a->esz == 3 ? gen_helper_sve_sxtw_d : NULL);
871 static bool trans_UXTW(DisasContext *s, arg_rpr_esz *a)
873 return do_zpz_ool(s, a, a->esz == 3 ? gen_helper_sve_uxtw_d : NULL);
876 #undef DO_ZPZ
879 *** SVE Integer Reduction Group
882 typedef void gen_helper_gvec_reduc(TCGv_i64, TCGv_ptr, TCGv_ptr, TCGv_i32);
883 static bool do_vpz_ool(DisasContext *s, arg_rpr_esz *a,
884 gen_helper_gvec_reduc *fn)
886 unsigned vsz = vec_full_reg_size(s);
887 TCGv_ptr t_zn, t_pg;
888 TCGv_i32 desc;
889 TCGv_i64 temp;
891 if (fn == NULL) {
892 return false;
894 if (!sve_access_check(s)) {
895 return true;
898 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
899 temp = tcg_temp_new_i64();
900 t_zn = tcg_temp_new_ptr();
901 t_pg = tcg_temp_new_ptr();
903 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, a->rn));
904 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->pg));
905 fn(temp, t_zn, t_pg, desc);
906 tcg_temp_free_ptr(t_zn);
907 tcg_temp_free_ptr(t_pg);
908 tcg_temp_free_i32(desc);
910 write_fp_dreg(s, a->rd, temp);
911 tcg_temp_free_i64(temp);
912 return true;
915 #define DO_VPZ(NAME, name) \
916 static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
918 static gen_helper_gvec_reduc * const fns[4] = { \
919 gen_helper_sve_##name##_b, gen_helper_sve_##name##_h, \
920 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d, \
921 }; \
922 return do_vpz_ool(s, a, fns[a->esz]); \
925 DO_VPZ(ORV, orv)
926 DO_VPZ(ANDV, andv)
927 DO_VPZ(EORV, eorv)
929 DO_VPZ(UADDV, uaddv)
930 DO_VPZ(SMAXV, smaxv)
931 DO_VPZ(UMAXV, umaxv)
932 DO_VPZ(SMINV, sminv)
933 DO_VPZ(UMINV, uminv)
935 static bool trans_SADDV(DisasContext *s, arg_rpr_esz *a)
937 static gen_helper_gvec_reduc * const fns[4] = {
938 gen_helper_sve_saddv_b, gen_helper_sve_saddv_h,
939 gen_helper_sve_saddv_s, NULL
941 return do_vpz_ool(s, a, fns[a->esz]);
944 #undef DO_VPZ
947 *** SVE Shift by Immediate - Predicated Group
951 * Copy Zn into Zd, storing zeros into inactive elements.
952 * If invert, store zeros into the active elements.
954 static bool do_movz_zpz(DisasContext *s, int rd, int rn, int pg,
955 int esz, bool invert)
957 static gen_helper_gvec_3 * const fns[4] = {
958 gen_helper_sve_movz_b, gen_helper_sve_movz_h,
959 gen_helper_sve_movz_s, gen_helper_sve_movz_d,
962 if (sve_access_check(s)) {
963 gen_gvec_ool_zzp(s, fns[esz], rd, rn, pg, invert);
965 return true;
968 static bool do_zpzi_ool(DisasContext *s, arg_rpri_esz *a,
969 gen_helper_gvec_3 *fn)
971 if (sve_access_check(s)) {
972 gen_gvec_ool_zzp(s, fn, a->rd, a->rn, a->pg, a->imm);
974 return true;
977 static bool trans_ASR_zpzi(DisasContext *s, arg_rpri_esz *a)
979 static gen_helper_gvec_3 * const fns[4] = {
980 gen_helper_sve_asr_zpzi_b, gen_helper_sve_asr_zpzi_h,
981 gen_helper_sve_asr_zpzi_s, gen_helper_sve_asr_zpzi_d,
983 if (a->esz < 0) {
984 /* Invalid tsz encoding -- see tszimm_esz. */
985 return false;
987 /* Shift by element size is architecturally valid. For
988 arithmetic right-shift, it's the same as by one less. */
989 a->imm = MIN(a->imm, (8 << a->esz) - 1);
990 return do_zpzi_ool(s, a, fns[a->esz]);
993 static bool trans_LSR_zpzi(DisasContext *s, arg_rpri_esz *a)
995 static gen_helper_gvec_3 * const fns[4] = {
996 gen_helper_sve_lsr_zpzi_b, gen_helper_sve_lsr_zpzi_h,
997 gen_helper_sve_lsr_zpzi_s, gen_helper_sve_lsr_zpzi_d,
999 if (a->esz < 0) {
1000 return false;
1002 /* Shift by element size is architecturally valid.
1003 For logical shifts, it is a zeroing operation. */
1004 if (a->imm >= (8 << a->esz)) {
1005 return do_movz_zpz(s, a->rd, a->rd, a->pg, a->esz, true);
1006 } else {
1007 return do_zpzi_ool(s, a, fns[a->esz]);
1011 static bool trans_LSL_zpzi(DisasContext *s, arg_rpri_esz *a)
1013 static gen_helper_gvec_3 * const fns[4] = {
1014 gen_helper_sve_lsl_zpzi_b, gen_helper_sve_lsl_zpzi_h,
1015 gen_helper_sve_lsl_zpzi_s, gen_helper_sve_lsl_zpzi_d,
1017 if (a->esz < 0) {
1018 return false;
1020 /* Shift by element size is architecturally valid.
1021 For logical shifts, it is a zeroing operation. */
1022 if (a->imm >= (8 << a->esz)) {
1023 return do_movz_zpz(s, a->rd, a->rd, a->pg, a->esz, true);
1024 } else {
1025 return do_zpzi_ool(s, a, fns[a->esz]);
1029 static bool trans_ASRD(DisasContext *s, arg_rpri_esz *a)
1031 static gen_helper_gvec_3 * const fns[4] = {
1032 gen_helper_sve_asrd_b, gen_helper_sve_asrd_h,
1033 gen_helper_sve_asrd_s, gen_helper_sve_asrd_d,
1035 if (a->esz < 0) {
1036 return false;
1038 /* Shift by element size is architecturally valid. For arithmetic
1039 right shift for division, it is a zeroing operation. */
1040 if (a->imm >= (8 << a->esz)) {
1041 return do_movz_zpz(s, a->rd, a->rd, a->pg, a->esz, true);
1042 } else {
1043 return do_zpzi_ool(s, a, fns[a->esz]);
1047 static bool trans_SQSHL_zpzi(DisasContext *s, arg_rpri_esz *a)
1049 static gen_helper_gvec_3 * const fns[4] = {
1050 gen_helper_sve2_sqshl_zpzi_b, gen_helper_sve2_sqshl_zpzi_h,
1051 gen_helper_sve2_sqshl_zpzi_s, gen_helper_sve2_sqshl_zpzi_d,
1053 if (a->esz < 0 || !dc_isar_feature(aa64_sve2, s)) {
1054 return false;
1056 return do_zpzi_ool(s, a, fns[a->esz]);
1059 static bool trans_UQSHL_zpzi(DisasContext *s, arg_rpri_esz *a)
1061 static gen_helper_gvec_3 * const fns[4] = {
1062 gen_helper_sve2_uqshl_zpzi_b, gen_helper_sve2_uqshl_zpzi_h,
1063 gen_helper_sve2_uqshl_zpzi_s, gen_helper_sve2_uqshl_zpzi_d,
1065 if (a->esz < 0 || !dc_isar_feature(aa64_sve2, s)) {
1066 return false;
1068 return do_zpzi_ool(s, a, fns[a->esz]);
1071 static bool trans_SRSHR(DisasContext *s, arg_rpri_esz *a)
1073 static gen_helper_gvec_3 * const fns[4] = {
1074 gen_helper_sve2_srshr_b, gen_helper_sve2_srshr_h,
1075 gen_helper_sve2_srshr_s, gen_helper_sve2_srshr_d,
1077 if (a->esz < 0 || !dc_isar_feature(aa64_sve2, s)) {
1078 return false;
1080 return do_zpzi_ool(s, a, fns[a->esz]);
1083 static bool trans_URSHR(DisasContext *s, arg_rpri_esz *a)
1085 static gen_helper_gvec_3 * const fns[4] = {
1086 gen_helper_sve2_urshr_b, gen_helper_sve2_urshr_h,
1087 gen_helper_sve2_urshr_s, gen_helper_sve2_urshr_d,
1089 if (a->esz < 0 || !dc_isar_feature(aa64_sve2, s)) {
1090 return false;
1092 return do_zpzi_ool(s, a, fns[a->esz]);
1095 static bool trans_SQSHLU(DisasContext *s, arg_rpri_esz *a)
1097 static gen_helper_gvec_3 * const fns[4] = {
1098 gen_helper_sve2_sqshlu_b, gen_helper_sve2_sqshlu_h,
1099 gen_helper_sve2_sqshlu_s, gen_helper_sve2_sqshlu_d,
1101 if (a->esz < 0 || !dc_isar_feature(aa64_sve2, s)) {
1102 return false;
1104 return do_zpzi_ool(s, a, fns[a->esz]);
1108 *** SVE Bitwise Shift - Predicated Group
1111 #define DO_ZPZW(NAME, name) \
1112 static bool trans_##NAME##_zpzw(DisasContext *s, arg_rprr_esz *a) \
1114 static gen_helper_gvec_4 * const fns[3] = { \
1115 gen_helper_sve_##name##_zpzw_b, gen_helper_sve_##name##_zpzw_h, \
1116 gen_helper_sve_##name##_zpzw_s, \
1117 }; \
1118 if (a->esz < 0 || a->esz >= 3) { \
1119 return false; \
1121 return do_zpzz_ool(s, a, fns[a->esz]); \
1124 DO_ZPZW(ASR, asr)
1125 DO_ZPZW(LSR, lsr)
1126 DO_ZPZW(LSL, lsl)
1128 #undef DO_ZPZW
1131 *** SVE Bitwise Shift - Unpredicated Group
1134 static bool do_shift_imm(DisasContext *s, arg_rri_esz *a, bool asr,
1135 void (*gvec_fn)(unsigned, uint32_t, uint32_t,
1136 int64_t, uint32_t, uint32_t))
1138 if (a->esz < 0) {
1139 /* Invalid tsz encoding -- see tszimm_esz. */
1140 return false;
1142 if (sve_access_check(s)) {
1143 unsigned vsz = vec_full_reg_size(s);
1144 /* Shift by element size is architecturally valid. For
1145 arithmetic right-shift, it's the same as by one less.
1146 Otherwise it is a zeroing operation. */
1147 if (a->imm >= 8 << a->esz) {
1148 if (asr) {
1149 a->imm = (8 << a->esz) - 1;
1150 } else {
1151 do_dupi_z(s, a->rd, 0);
1152 return true;
1155 gvec_fn(a->esz, vec_full_reg_offset(s, a->rd),
1156 vec_full_reg_offset(s, a->rn), a->imm, vsz, vsz);
1158 return true;
1161 static bool trans_ASR_zzi(DisasContext *s, arg_rri_esz *a)
1163 return do_shift_imm(s, a, true, tcg_gen_gvec_sari);
1166 static bool trans_LSR_zzi(DisasContext *s, arg_rri_esz *a)
1168 return do_shift_imm(s, a, false, tcg_gen_gvec_shri);
1171 static bool trans_LSL_zzi(DisasContext *s, arg_rri_esz *a)
1173 return do_shift_imm(s, a, false, tcg_gen_gvec_shli);
1176 static bool do_zzw_ool(DisasContext *s, arg_rrr_esz *a, gen_helper_gvec_3 *fn)
1178 if (fn == NULL) {
1179 return false;
1181 if (sve_access_check(s)) {
1182 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, 0);
1184 return true;
1187 #define DO_ZZW(NAME, name) \
1188 static bool trans_##NAME##_zzw(DisasContext *s, arg_rrr_esz *a) \
1190 static gen_helper_gvec_3 * const fns[4] = { \
1191 gen_helper_sve_##name##_zzw_b, gen_helper_sve_##name##_zzw_h, \
1192 gen_helper_sve_##name##_zzw_s, NULL \
1193 }; \
1194 return do_zzw_ool(s, a, fns[a->esz]); \
1197 DO_ZZW(ASR, asr)
1198 DO_ZZW(LSR, lsr)
1199 DO_ZZW(LSL, lsl)
1201 #undef DO_ZZW
1204 *** SVE Integer Multiply-Add Group
1207 static bool do_zpzzz_ool(DisasContext *s, arg_rprrr_esz *a,
1208 gen_helper_gvec_5 *fn)
1210 if (sve_access_check(s)) {
1211 unsigned vsz = vec_full_reg_size(s);
1212 tcg_gen_gvec_5_ool(vec_full_reg_offset(s, a->rd),
1213 vec_full_reg_offset(s, a->ra),
1214 vec_full_reg_offset(s, a->rn),
1215 vec_full_reg_offset(s, a->rm),
1216 pred_full_reg_offset(s, a->pg),
1217 vsz, vsz, 0, fn);
1219 return true;
1222 #define DO_ZPZZZ(NAME, name) \
1223 static bool trans_##NAME(DisasContext *s, arg_rprrr_esz *a) \
1225 static gen_helper_gvec_5 * const fns[4] = { \
1226 gen_helper_sve_##name##_b, gen_helper_sve_##name##_h, \
1227 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d, \
1228 }; \
1229 return do_zpzzz_ool(s, a, fns[a->esz]); \
1232 DO_ZPZZZ(MLA, mla)
1233 DO_ZPZZZ(MLS, mls)
1235 #undef DO_ZPZZZ
1238 *** SVE Index Generation Group
1241 static void do_index(DisasContext *s, int esz, int rd,
1242 TCGv_i64 start, TCGv_i64 incr)
1244 unsigned vsz = vec_full_reg_size(s);
1245 TCGv_i32 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
1246 TCGv_ptr t_zd = tcg_temp_new_ptr();
1248 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, rd));
1249 if (esz == 3) {
1250 gen_helper_sve_index_d(t_zd, start, incr, desc);
1251 } else {
1252 typedef void index_fn(TCGv_ptr, TCGv_i32, TCGv_i32, TCGv_i32);
1253 static index_fn * const fns[3] = {
1254 gen_helper_sve_index_b,
1255 gen_helper_sve_index_h,
1256 gen_helper_sve_index_s,
1258 TCGv_i32 s32 = tcg_temp_new_i32();
1259 TCGv_i32 i32 = tcg_temp_new_i32();
1261 tcg_gen_extrl_i64_i32(s32, start);
1262 tcg_gen_extrl_i64_i32(i32, incr);
1263 fns[esz](t_zd, s32, i32, desc);
1265 tcg_temp_free_i32(s32);
1266 tcg_temp_free_i32(i32);
1268 tcg_temp_free_ptr(t_zd);
1269 tcg_temp_free_i32(desc);
1272 static bool trans_INDEX_ii(DisasContext *s, arg_INDEX_ii *a)
1274 if (sve_access_check(s)) {
1275 TCGv_i64 start = tcg_const_i64(a->imm1);
1276 TCGv_i64 incr = tcg_const_i64(a->imm2);
1277 do_index(s, a->esz, a->rd, start, incr);
1278 tcg_temp_free_i64(start);
1279 tcg_temp_free_i64(incr);
1281 return true;
1284 static bool trans_INDEX_ir(DisasContext *s, arg_INDEX_ir *a)
1286 if (sve_access_check(s)) {
1287 TCGv_i64 start = tcg_const_i64(a->imm);
1288 TCGv_i64 incr = cpu_reg(s, a->rm);
1289 do_index(s, a->esz, a->rd, start, incr);
1290 tcg_temp_free_i64(start);
1292 return true;
1295 static bool trans_INDEX_ri(DisasContext *s, arg_INDEX_ri *a)
1297 if (sve_access_check(s)) {
1298 TCGv_i64 start = cpu_reg(s, a->rn);
1299 TCGv_i64 incr = tcg_const_i64(a->imm);
1300 do_index(s, a->esz, a->rd, start, incr);
1301 tcg_temp_free_i64(incr);
1303 return true;
1306 static bool trans_INDEX_rr(DisasContext *s, arg_INDEX_rr *a)
1308 if (sve_access_check(s)) {
1309 TCGv_i64 start = cpu_reg(s, a->rn);
1310 TCGv_i64 incr = cpu_reg(s, a->rm);
1311 do_index(s, a->esz, a->rd, start, incr);
1313 return true;
1317 *** SVE Stack Allocation Group
1320 static bool trans_ADDVL(DisasContext *s, arg_ADDVL *a)
1322 if (sve_access_check(s)) {
1323 TCGv_i64 rd = cpu_reg_sp(s, a->rd);
1324 TCGv_i64 rn = cpu_reg_sp(s, a->rn);
1325 tcg_gen_addi_i64(rd, rn, a->imm * vec_full_reg_size(s));
1327 return true;
1330 static bool trans_ADDPL(DisasContext *s, arg_ADDPL *a)
1332 if (sve_access_check(s)) {
1333 TCGv_i64 rd = cpu_reg_sp(s, a->rd);
1334 TCGv_i64 rn = cpu_reg_sp(s, a->rn);
1335 tcg_gen_addi_i64(rd, rn, a->imm * pred_full_reg_size(s));
1337 return true;
1340 static bool trans_RDVL(DisasContext *s, arg_RDVL *a)
1342 if (sve_access_check(s)) {
1343 TCGv_i64 reg = cpu_reg(s, a->rd);
1344 tcg_gen_movi_i64(reg, a->imm * vec_full_reg_size(s));
1346 return true;
1350 *** SVE Compute Vector Address Group
1353 static bool do_adr(DisasContext *s, arg_rrri *a, gen_helper_gvec_3 *fn)
1355 if (sve_access_check(s)) {
1356 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, a->imm);
1358 return true;
1361 static bool trans_ADR_p32(DisasContext *s, arg_rrri *a)
1363 return do_adr(s, a, gen_helper_sve_adr_p32);
1366 static bool trans_ADR_p64(DisasContext *s, arg_rrri *a)
1368 return do_adr(s, a, gen_helper_sve_adr_p64);
1371 static bool trans_ADR_s32(DisasContext *s, arg_rrri *a)
1373 return do_adr(s, a, gen_helper_sve_adr_s32);
1376 static bool trans_ADR_u32(DisasContext *s, arg_rrri *a)
1378 return do_adr(s, a, gen_helper_sve_adr_u32);
1382 *** SVE Integer Misc - Unpredicated Group
1385 static bool trans_FEXPA(DisasContext *s, arg_rr_esz *a)
1387 static gen_helper_gvec_2 * const fns[4] = {
1388 NULL,
1389 gen_helper_sve_fexpa_h,
1390 gen_helper_sve_fexpa_s,
1391 gen_helper_sve_fexpa_d,
1393 if (a->esz == 0) {
1394 return false;
1396 if (sve_access_check(s)) {
1397 gen_gvec_ool_zz(s, fns[a->esz], a->rd, a->rn, 0);
1399 return true;
1402 static bool trans_FTSSEL(DisasContext *s, arg_rrr_esz *a)
1404 static gen_helper_gvec_3 * const fns[4] = {
1405 NULL,
1406 gen_helper_sve_ftssel_h,
1407 gen_helper_sve_ftssel_s,
1408 gen_helper_sve_ftssel_d,
1410 if (a->esz == 0) {
1411 return false;
1413 if (sve_access_check(s)) {
1414 gen_gvec_ool_zzz(s, fns[a->esz], a->rd, a->rn, a->rm, 0);
1416 return true;
1420 *** SVE Predicate Logical Operations Group
1423 static bool do_pppp_flags(DisasContext *s, arg_rprr_s *a,
1424 const GVecGen4 *gvec_op)
1426 if (!sve_access_check(s)) {
1427 return true;
1430 unsigned psz = pred_gvec_reg_size(s);
1431 int dofs = pred_full_reg_offset(s, a->rd);
1432 int nofs = pred_full_reg_offset(s, a->rn);
1433 int mofs = pred_full_reg_offset(s, a->rm);
1434 int gofs = pred_full_reg_offset(s, a->pg);
1436 if (!a->s) {
1437 tcg_gen_gvec_4(dofs, nofs, mofs, gofs, psz, psz, gvec_op);
1438 return true;
1441 if (psz == 8) {
1442 /* Do the operation and the flags generation in temps. */
1443 TCGv_i64 pd = tcg_temp_new_i64();
1444 TCGv_i64 pn = tcg_temp_new_i64();
1445 TCGv_i64 pm = tcg_temp_new_i64();
1446 TCGv_i64 pg = tcg_temp_new_i64();
1448 tcg_gen_ld_i64(pn, cpu_env, nofs);
1449 tcg_gen_ld_i64(pm, cpu_env, mofs);
1450 tcg_gen_ld_i64(pg, cpu_env, gofs);
1452 gvec_op->fni8(pd, pn, pm, pg);
1453 tcg_gen_st_i64(pd, cpu_env, dofs);
1455 do_predtest1(pd, pg);
1457 tcg_temp_free_i64(pd);
1458 tcg_temp_free_i64(pn);
1459 tcg_temp_free_i64(pm);
1460 tcg_temp_free_i64(pg);
1461 } else {
1462 /* The operation and flags generation is large. The computation
1463 * of the flags depends on the original contents of the guarding
1464 * predicate. If the destination overwrites the guarding predicate,
1465 * then the easiest way to get this right is to save a copy.
1467 int tofs = gofs;
1468 if (a->rd == a->pg) {
1469 tofs = offsetof(CPUARMState, vfp.preg_tmp);
1470 tcg_gen_gvec_mov(0, tofs, gofs, psz, psz);
1473 tcg_gen_gvec_4(dofs, nofs, mofs, gofs, psz, psz, gvec_op);
1474 do_predtest(s, dofs, tofs, psz / 8);
1476 return true;
1479 static void gen_and_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1481 tcg_gen_and_i64(pd, pn, pm);
1482 tcg_gen_and_i64(pd, pd, pg);
1485 static void gen_and_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1486 TCGv_vec pm, TCGv_vec pg)
1488 tcg_gen_and_vec(vece, pd, pn, pm);
1489 tcg_gen_and_vec(vece, pd, pd, pg);
1492 static bool trans_AND_pppp(DisasContext *s, arg_rprr_s *a)
1494 static const GVecGen4 op = {
1495 .fni8 = gen_and_pg_i64,
1496 .fniv = gen_and_pg_vec,
1497 .fno = gen_helper_sve_and_pppp,
1498 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1501 if (!a->s) {
1502 if (!sve_access_check(s)) {
1503 return true;
1505 if (a->rn == a->rm) {
1506 if (a->pg == a->rn) {
1507 do_mov_p(s, a->rd, a->rn);
1508 } else {
1509 gen_gvec_fn_ppp(s, tcg_gen_gvec_and, a->rd, a->rn, a->pg);
1511 return true;
1512 } else if (a->pg == a->rn || a->pg == a->rm) {
1513 gen_gvec_fn_ppp(s, tcg_gen_gvec_and, a->rd, a->rn, a->rm);
1514 return true;
1517 return do_pppp_flags(s, a, &op);
1520 static void gen_bic_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1522 tcg_gen_andc_i64(pd, pn, pm);
1523 tcg_gen_and_i64(pd, pd, pg);
1526 static void gen_bic_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1527 TCGv_vec pm, TCGv_vec pg)
1529 tcg_gen_andc_vec(vece, pd, pn, pm);
1530 tcg_gen_and_vec(vece, pd, pd, pg);
1533 static bool trans_BIC_pppp(DisasContext *s, arg_rprr_s *a)
1535 static const GVecGen4 op = {
1536 .fni8 = gen_bic_pg_i64,
1537 .fniv = gen_bic_pg_vec,
1538 .fno = gen_helper_sve_bic_pppp,
1539 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1542 if (!a->s && a->pg == a->rn) {
1543 if (sve_access_check(s)) {
1544 gen_gvec_fn_ppp(s, tcg_gen_gvec_andc, a->rd, a->rn, a->rm);
1546 return true;
1548 return do_pppp_flags(s, a, &op);
1551 static void gen_eor_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1553 tcg_gen_xor_i64(pd, pn, pm);
1554 tcg_gen_and_i64(pd, pd, pg);
1557 static void gen_eor_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1558 TCGv_vec pm, TCGv_vec pg)
1560 tcg_gen_xor_vec(vece, pd, pn, pm);
1561 tcg_gen_and_vec(vece, pd, pd, pg);
1564 static bool trans_EOR_pppp(DisasContext *s, arg_rprr_s *a)
1566 static const GVecGen4 op = {
1567 .fni8 = gen_eor_pg_i64,
1568 .fniv = gen_eor_pg_vec,
1569 .fno = gen_helper_sve_eor_pppp,
1570 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1572 return do_pppp_flags(s, a, &op);
1575 static bool trans_SEL_pppp(DisasContext *s, arg_rprr_s *a)
1577 if (a->s) {
1578 return false;
1580 if (sve_access_check(s)) {
1581 unsigned psz = pred_gvec_reg_size(s);
1582 tcg_gen_gvec_bitsel(MO_8, pred_full_reg_offset(s, a->rd),
1583 pred_full_reg_offset(s, a->pg),
1584 pred_full_reg_offset(s, a->rn),
1585 pred_full_reg_offset(s, a->rm), psz, psz);
1587 return true;
1590 static void gen_orr_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1592 tcg_gen_or_i64(pd, pn, pm);
1593 tcg_gen_and_i64(pd, pd, pg);
1596 static void gen_orr_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1597 TCGv_vec pm, TCGv_vec pg)
1599 tcg_gen_or_vec(vece, pd, pn, pm);
1600 tcg_gen_and_vec(vece, pd, pd, pg);
1603 static bool trans_ORR_pppp(DisasContext *s, arg_rprr_s *a)
1605 static const GVecGen4 op = {
1606 .fni8 = gen_orr_pg_i64,
1607 .fniv = gen_orr_pg_vec,
1608 .fno = gen_helper_sve_orr_pppp,
1609 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1612 if (!a->s && a->pg == a->rn && a->rn == a->rm) {
1613 return do_mov_p(s, a->rd, a->rn);
1615 return do_pppp_flags(s, a, &op);
1618 static void gen_orn_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1620 tcg_gen_orc_i64(pd, pn, pm);
1621 tcg_gen_and_i64(pd, pd, pg);
1624 static void gen_orn_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1625 TCGv_vec pm, TCGv_vec pg)
1627 tcg_gen_orc_vec(vece, pd, pn, pm);
1628 tcg_gen_and_vec(vece, pd, pd, pg);
1631 static bool trans_ORN_pppp(DisasContext *s, arg_rprr_s *a)
1633 static const GVecGen4 op = {
1634 .fni8 = gen_orn_pg_i64,
1635 .fniv = gen_orn_pg_vec,
1636 .fno = gen_helper_sve_orn_pppp,
1637 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1639 return do_pppp_flags(s, a, &op);
1642 static void gen_nor_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1644 tcg_gen_or_i64(pd, pn, pm);
1645 tcg_gen_andc_i64(pd, pg, pd);
1648 static void gen_nor_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1649 TCGv_vec pm, TCGv_vec pg)
1651 tcg_gen_or_vec(vece, pd, pn, pm);
1652 tcg_gen_andc_vec(vece, pd, pg, pd);
1655 static bool trans_NOR_pppp(DisasContext *s, arg_rprr_s *a)
1657 static const GVecGen4 op = {
1658 .fni8 = gen_nor_pg_i64,
1659 .fniv = gen_nor_pg_vec,
1660 .fno = gen_helper_sve_nor_pppp,
1661 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1663 return do_pppp_flags(s, a, &op);
1666 static void gen_nand_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1668 tcg_gen_and_i64(pd, pn, pm);
1669 tcg_gen_andc_i64(pd, pg, pd);
1672 static void gen_nand_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1673 TCGv_vec pm, TCGv_vec pg)
1675 tcg_gen_and_vec(vece, pd, pn, pm);
1676 tcg_gen_andc_vec(vece, pd, pg, pd);
1679 static bool trans_NAND_pppp(DisasContext *s, arg_rprr_s *a)
1681 static const GVecGen4 op = {
1682 .fni8 = gen_nand_pg_i64,
1683 .fniv = gen_nand_pg_vec,
1684 .fno = gen_helper_sve_nand_pppp,
1685 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1687 return do_pppp_flags(s, a, &op);
1691 *** SVE Predicate Misc Group
1694 static bool trans_PTEST(DisasContext *s, arg_PTEST *a)
1696 if (sve_access_check(s)) {
1697 int nofs = pred_full_reg_offset(s, a->rn);
1698 int gofs = pred_full_reg_offset(s, a->pg);
1699 int words = DIV_ROUND_UP(pred_full_reg_size(s), 8);
1701 if (words == 1) {
1702 TCGv_i64 pn = tcg_temp_new_i64();
1703 TCGv_i64 pg = tcg_temp_new_i64();
1705 tcg_gen_ld_i64(pn, cpu_env, nofs);
1706 tcg_gen_ld_i64(pg, cpu_env, gofs);
1707 do_predtest1(pn, pg);
1709 tcg_temp_free_i64(pn);
1710 tcg_temp_free_i64(pg);
1711 } else {
1712 do_predtest(s, nofs, gofs, words);
1715 return true;
1718 /* See the ARM pseudocode DecodePredCount. */
1719 static unsigned decode_pred_count(unsigned fullsz, int pattern, int esz)
1721 unsigned elements = fullsz >> esz;
1722 unsigned bound;
1724 switch (pattern) {
1725 case 0x0: /* POW2 */
1726 return pow2floor(elements);
1727 case 0x1: /* VL1 */
1728 case 0x2: /* VL2 */
1729 case 0x3: /* VL3 */
1730 case 0x4: /* VL4 */
1731 case 0x5: /* VL5 */
1732 case 0x6: /* VL6 */
1733 case 0x7: /* VL7 */
1734 case 0x8: /* VL8 */
1735 bound = pattern;
1736 break;
1737 case 0x9: /* VL16 */
1738 case 0xa: /* VL32 */
1739 case 0xb: /* VL64 */
1740 case 0xc: /* VL128 */
1741 case 0xd: /* VL256 */
1742 bound = 16 << (pattern - 9);
1743 break;
1744 case 0x1d: /* MUL4 */
1745 return elements - elements % 4;
1746 case 0x1e: /* MUL3 */
1747 return elements - elements % 3;
1748 case 0x1f: /* ALL */
1749 return elements;
1750 default: /* #uimm5 */
1751 return 0;
1753 return elements >= bound ? bound : 0;
1756 /* This handles all of the predicate initialization instructions,
1757 * PTRUE, PFALSE, SETFFR. For PFALSE, we will have set PAT == 32
1758 * so that decode_pred_count returns 0. For SETFFR, we will have
1759 * set RD == 16 == FFR.
1761 static bool do_predset(DisasContext *s, int esz, int rd, int pat, bool setflag)
1763 if (!sve_access_check(s)) {
1764 return true;
1767 unsigned fullsz = vec_full_reg_size(s);
1768 unsigned ofs = pred_full_reg_offset(s, rd);
1769 unsigned numelem, setsz, i;
1770 uint64_t word, lastword;
1771 TCGv_i64 t;
1773 numelem = decode_pred_count(fullsz, pat, esz);
1775 /* Determine what we must store into each bit, and how many. */
1776 if (numelem == 0) {
1777 lastword = word = 0;
1778 setsz = fullsz;
1779 } else {
1780 setsz = numelem << esz;
1781 lastword = word = pred_esz_masks[esz];
1782 if (setsz % 64) {
1783 lastword &= MAKE_64BIT_MASK(0, setsz % 64);
1787 t = tcg_temp_new_i64();
1788 if (fullsz <= 64) {
1789 tcg_gen_movi_i64(t, lastword);
1790 tcg_gen_st_i64(t, cpu_env, ofs);
1791 goto done;
1794 if (word == lastword) {
1795 unsigned maxsz = size_for_gvec(fullsz / 8);
1796 unsigned oprsz = size_for_gvec(setsz / 8);
1798 if (oprsz * 8 == setsz) {
1799 tcg_gen_gvec_dup_imm(MO_64, ofs, oprsz, maxsz, word);
1800 goto done;
1804 setsz /= 8;
1805 fullsz /= 8;
1807 tcg_gen_movi_i64(t, word);
1808 for (i = 0; i < QEMU_ALIGN_DOWN(setsz, 8); i += 8) {
1809 tcg_gen_st_i64(t, cpu_env, ofs + i);
1811 if (lastword != word) {
1812 tcg_gen_movi_i64(t, lastword);
1813 tcg_gen_st_i64(t, cpu_env, ofs + i);
1814 i += 8;
1816 if (i < fullsz) {
1817 tcg_gen_movi_i64(t, 0);
1818 for (; i < fullsz; i += 8) {
1819 tcg_gen_st_i64(t, cpu_env, ofs + i);
1823 done:
1824 tcg_temp_free_i64(t);
1826 /* PTRUES */
1827 if (setflag) {
1828 tcg_gen_movi_i32(cpu_NF, -(word != 0));
1829 tcg_gen_movi_i32(cpu_CF, word == 0);
1830 tcg_gen_movi_i32(cpu_VF, 0);
1831 tcg_gen_mov_i32(cpu_ZF, cpu_NF);
1833 return true;
1836 static bool trans_PTRUE(DisasContext *s, arg_PTRUE *a)
1838 return do_predset(s, a->esz, a->rd, a->pat, a->s);
1841 static bool trans_SETFFR(DisasContext *s, arg_SETFFR *a)
1843 /* Note pat == 31 is #all, to set all elements. */
1844 return do_predset(s, 0, FFR_PRED_NUM, 31, false);
1847 static bool trans_PFALSE(DisasContext *s, arg_PFALSE *a)
1849 /* Note pat == 32 is #unimp, to set no elements. */
1850 return do_predset(s, 0, a->rd, 32, false);
1853 static bool trans_RDFFR_p(DisasContext *s, arg_RDFFR_p *a)
1855 /* The path through do_pppp_flags is complicated enough to want to avoid
1856 * duplication. Frob the arguments into the form of a predicated AND.
1858 arg_rprr_s alt_a = {
1859 .rd = a->rd, .pg = a->pg, .s = a->s,
1860 .rn = FFR_PRED_NUM, .rm = FFR_PRED_NUM,
1862 return trans_AND_pppp(s, &alt_a);
1865 static bool trans_RDFFR(DisasContext *s, arg_RDFFR *a)
1867 return do_mov_p(s, a->rd, FFR_PRED_NUM);
1870 static bool trans_WRFFR(DisasContext *s, arg_WRFFR *a)
1872 return do_mov_p(s, FFR_PRED_NUM, a->rn);
1875 static bool do_pfirst_pnext(DisasContext *s, arg_rr_esz *a,
1876 void (*gen_fn)(TCGv_i32, TCGv_ptr,
1877 TCGv_ptr, TCGv_i32))
1879 if (!sve_access_check(s)) {
1880 return true;
1883 TCGv_ptr t_pd = tcg_temp_new_ptr();
1884 TCGv_ptr t_pg = tcg_temp_new_ptr();
1885 TCGv_i32 t;
1886 unsigned desc = 0;
1888 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, pred_full_reg_size(s));
1889 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
1891 tcg_gen_addi_ptr(t_pd, cpu_env, pred_full_reg_offset(s, a->rd));
1892 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->rn));
1893 t = tcg_const_i32(desc);
1895 gen_fn(t, t_pd, t_pg, t);
1896 tcg_temp_free_ptr(t_pd);
1897 tcg_temp_free_ptr(t_pg);
1899 do_pred_flags(t);
1900 tcg_temp_free_i32(t);
1901 return true;
1904 static bool trans_PFIRST(DisasContext *s, arg_rr_esz *a)
1906 return do_pfirst_pnext(s, a, gen_helper_sve_pfirst);
1909 static bool trans_PNEXT(DisasContext *s, arg_rr_esz *a)
1911 return do_pfirst_pnext(s, a, gen_helper_sve_pnext);
1915 *** SVE Element Count Group
1918 /* Perform an inline saturating addition of a 32-bit value within
1919 * a 64-bit register. The second operand is known to be positive,
1920 * which halves the comparisions we must perform to bound the result.
1922 static void do_sat_addsub_32(TCGv_i64 reg, TCGv_i64 val, bool u, bool d)
1924 int64_t ibound;
1925 TCGv_i64 bound;
1926 TCGCond cond;
1928 /* Use normal 64-bit arithmetic to detect 32-bit overflow. */
1929 if (u) {
1930 tcg_gen_ext32u_i64(reg, reg);
1931 } else {
1932 tcg_gen_ext32s_i64(reg, reg);
1934 if (d) {
1935 tcg_gen_sub_i64(reg, reg, val);
1936 ibound = (u ? 0 : INT32_MIN);
1937 cond = TCG_COND_LT;
1938 } else {
1939 tcg_gen_add_i64(reg, reg, val);
1940 ibound = (u ? UINT32_MAX : INT32_MAX);
1941 cond = TCG_COND_GT;
1943 bound = tcg_const_i64(ibound);
1944 tcg_gen_movcond_i64(cond, reg, reg, bound, bound, reg);
1945 tcg_temp_free_i64(bound);
1948 /* Similarly with 64-bit values. */
1949 static void do_sat_addsub_64(TCGv_i64 reg, TCGv_i64 val, bool u, bool d)
1951 TCGv_i64 t0 = tcg_temp_new_i64();
1952 TCGv_i64 t1 = tcg_temp_new_i64();
1953 TCGv_i64 t2;
1955 if (u) {
1956 if (d) {
1957 tcg_gen_sub_i64(t0, reg, val);
1958 tcg_gen_movi_i64(t1, 0);
1959 tcg_gen_movcond_i64(TCG_COND_LTU, reg, reg, val, t1, t0);
1960 } else {
1961 tcg_gen_add_i64(t0, reg, val);
1962 tcg_gen_movi_i64(t1, -1);
1963 tcg_gen_movcond_i64(TCG_COND_LTU, reg, t0, reg, t1, t0);
1965 } else {
1966 if (d) {
1967 /* Detect signed overflow for subtraction. */
1968 tcg_gen_xor_i64(t0, reg, val);
1969 tcg_gen_sub_i64(t1, reg, val);
1970 tcg_gen_xor_i64(reg, reg, t1);
1971 tcg_gen_and_i64(t0, t0, reg);
1973 /* Bound the result. */
1974 tcg_gen_movi_i64(reg, INT64_MIN);
1975 t2 = tcg_const_i64(0);
1976 tcg_gen_movcond_i64(TCG_COND_LT, reg, t0, t2, reg, t1);
1977 } else {
1978 /* Detect signed overflow for addition. */
1979 tcg_gen_xor_i64(t0, reg, val);
1980 tcg_gen_add_i64(reg, reg, val);
1981 tcg_gen_xor_i64(t1, reg, val);
1982 tcg_gen_andc_i64(t0, t1, t0);
1984 /* Bound the result. */
1985 tcg_gen_movi_i64(t1, INT64_MAX);
1986 t2 = tcg_const_i64(0);
1987 tcg_gen_movcond_i64(TCG_COND_LT, reg, t0, t2, t1, reg);
1989 tcg_temp_free_i64(t2);
1991 tcg_temp_free_i64(t0);
1992 tcg_temp_free_i64(t1);
1995 /* Similarly with a vector and a scalar operand. */
1996 static void do_sat_addsub_vec(DisasContext *s, int esz, int rd, int rn,
1997 TCGv_i64 val, bool u, bool d)
1999 unsigned vsz = vec_full_reg_size(s);
2000 TCGv_ptr dptr, nptr;
2001 TCGv_i32 t32, desc;
2002 TCGv_i64 t64;
2004 dptr = tcg_temp_new_ptr();
2005 nptr = tcg_temp_new_ptr();
2006 tcg_gen_addi_ptr(dptr, cpu_env, vec_full_reg_offset(s, rd));
2007 tcg_gen_addi_ptr(nptr, cpu_env, vec_full_reg_offset(s, rn));
2008 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
2010 switch (esz) {
2011 case MO_8:
2012 t32 = tcg_temp_new_i32();
2013 tcg_gen_extrl_i64_i32(t32, val);
2014 if (d) {
2015 tcg_gen_neg_i32(t32, t32);
2017 if (u) {
2018 gen_helper_sve_uqaddi_b(dptr, nptr, t32, desc);
2019 } else {
2020 gen_helper_sve_sqaddi_b(dptr, nptr, t32, desc);
2022 tcg_temp_free_i32(t32);
2023 break;
2025 case MO_16:
2026 t32 = tcg_temp_new_i32();
2027 tcg_gen_extrl_i64_i32(t32, val);
2028 if (d) {
2029 tcg_gen_neg_i32(t32, t32);
2031 if (u) {
2032 gen_helper_sve_uqaddi_h(dptr, nptr, t32, desc);
2033 } else {
2034 gen_helper_sve_sqaddi_h(dptr, nptr, t32, desc);
2036 tcg_temp_free_i32(t32);
2037 break;
2039 case MO_32:
2040 t64 = tcg_temp_new_i64();
2041 if (d) {
2042 tcg_gen_neg_i64(t64, val);
2043 } else {
2044 tcg_gen_mov_i64(t64, val);
2046 if (u) {
2047 gen_helper_sve_uqaddi_s(dptr, nptr, t64, desc);
2048 } else {
2049 gen_helper_sve_sqaddi_s(dptr, nptr, t64, desc);
2051 tcg_temp_free_i64(t64);
2052 break;
2054 case MO_64:
2055 if (u) {
2056 if (d) {
2057 gen_helper_sve_uqsubi_d(dptr, nptr, val, desc);
2058 } else {
2059 gen_helper_sve_uqaddi_d(dptr, nptr, val, desc);
2061 } else if (d) {
2062 t64 = tcg_temp_new_i64();
2063 tcg_gen_neg_i64(t64, val);
2064 gen_helper_sve_sqaddi_d(dptr, nptr, t64, desc);
2065 tcg_temp_free_i64(t64);
2066 } else {
2067 gen_helper_sve_sqaddi_d(dptr, nptr, val, desc);
2069 break;
2071 default:
2072 g_assert_not_reached();
2075 tcg_temp_free_ptr(dptr);
2076 tcg_temp_free_ptr(nptr);
2077 tcg_temp_free_i32(desc);
2080 static bool trans_CNT_r(DisasContext *s, arg_CNT_r *a)
2082 if (sve_access_check(s)) {
2083 unsigned fullsz = vec_full_reg_size(s);
2084 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
2085 tcg_gen_movi_i64(cpu_reg(s, a->rd), numelem * a->imm);
2087 return true;
2090 static bool trans_INCDEC_r(DisasContext *s, arg_incdec_cnt *a)
2092 if (sve_access_check(s)) {
2093 unsigned fullsz = vec_full_reg_size(s);
2094 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
2095 int inc = numelem * a->imm * (a->d ? -1 : 1);
2096 TCGv_i64 reg = cpu_reg(s, a->rd);
2098 tcg_gen_addi_i64(reg, reg, inc);
2100 return true;
2103 static bool trans_SINCDEC_r_32(DisasContext *s, arg_incdec_cnt *a)
2105 if (!sve_access_check(s)) {
2106 return true;
2109 unsigned fullsz = vec_full_reg_size(s);
2110 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
2111 int inc = numelem * a->imm;
2112 TCGv_i64 reg = cpu_reg(s, a->rd);
2114 /* Use normal 64-bit arithmetic to detect 32-bit overflow. */
2115 if (inc == 0) {
2116 if (a->u) {
2117 tcg_gen_ext32u_i64(reg, reg);
2118 } else {
2119 tcg_gen_ext32s_i64(reg, reg);
2121 } else {
2122 TCGv_i64 t = tcg_const_i64(inc);
2123 do_sat_addsub_32(reg, t, a->u, a->d);
2124 tcg_temp_free_i64(t);
2126 return true;
2129 static bool trans_SINCDEC_r_64(DisasContext *s, arg_incdec_cnt *a)
2131 if (!sve_access_check(s)) {
2132 return true;
2135 unsigned fullsz = vec_full_reg_size(s);
2136 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
2137 int inc = numelem * a->imm;
2138 TCGv_i64 reg = cpu_reg(s, a->rd);
2140 if (inc != 0) {
2141 TCGv_i64 t = tcg_const_i64(inc);
2142 do_sat_addsub_64(reg, t, a->u, a->d);
2143 tcg_temp_free_i64(t);
2145 return true;
2148 static bool trans_INCDEC_v(DisasContext *s, arg_incdec2_cnt *a)
2150 if (a->esz == 0) {
2151 return false;
2154 unsigned fullsz = vec_full_reg_size(s);
2155 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
2156 int inc = numelem * a->imm;
2158 if (inc != 0) {
2159 if (sve_access_check(s)) {
2160 TCGv_i64 t = tcg_const_i64(a->d ? -inc : inc);
2161 tcg_gen_gvec_adds(a->esz, vec_full_reg_offset(s, a->rd),
2162 vec_full_reg_offset(s, a->rn),
2163 t, fullsz, fullsz);
2164 tcg_temp_free_i64(t);
2166 } else {
2167 do_mov_z(s, a->rd, a->rn);
2169 return true;
2172 static bool trans_SINCDEC_v(DisasContext *s, arg_incdec2_cnt *a)
2174 if (a->esz == 0) {
2175 return false;
2178 unsigned fullsz = vec_full_reg_size(s);
2179 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
2180 int inc = numelem * a->imm;
2182 if (inc != 0) {
2183 if (sve_access_check(s)) {
2184 TCGv_i64 t = tcg_const_i64(inc);
2185 do_sat_addsub_vec(s, a->esz, a->rd, a->rn, t, a->u, a->d);
2186 tcg_temp_free_i64(t);
2188 } else {
2189 do_mov_z(s, a->rd, a->rn);
2191 return true;
2195 *** SVE Bitwise Immediate Group
2198 static bool do_zz_dbm(DisasContext *s, arg_rr_dbm *a, GVecGen2iFn *gvec_fn)
2200 uint64_t imm;
2201 if (!logic_imm_decode_wmask(&imm, extract32(a->dbm, 12, 1),
2202 extract32(a->dbm, 0, 6),
2203 extract32(a->dbm, 6, 6))) {
2204 return false;
2206 if (sve_access_check(s)) {
2207 unsigned vsz = vec_full_reg_size(s);
2208 gvec_fn(MO_64, vec_full_reg_offset(s, a->rd),
2209 vec_full_reg_offset(s, a->rn), imm, vsz, vsz);
2211 return true;
2214 static bool trans_AND_zzi(DisasContext *s, arg_rr_dbm *a)
2216 return do_zz_dbm(s, a, tcg_gen_gvec_andi);
2219 static bool trans_ORR_zzi(DisasContext *s, arg_rr_dbm *a)
2221 return do_zz_dbm(s, a, tcg_gen_gvec_ori);
2224 static bool trans_EOR_zzi(DisasContext *s, arg_rr_dbm *a)
2226 return do_zz_dbm(s, a, tcg_gen_gvec_xori);
2229 static bool trans_DUPM(DisasContext *s, arg_DUPM *a)
2231 uint64_t imm;
2232 if (!logic_imm_decode_wmask(&imm, extract32(a->dbm, 12, 1),
2233 extract32(a->dbm, 0, 6),
2234 extract32(a->dbm, 6, 6))) {
2235 return false;
2237 if (sve_access_check(s)) {
2238 do_dupi_z(s, a->rd, imm);
2240 return true;
2244 *** SVE Integer Wide Immediate - Predicated Group
2247 /* Implement all merging copies. This is used for CPY (immediate),
2248 * FCPY, CPY (scalar), CPY (SIMD&FP scalar).
2250 static void do_cpy_m(DisasContext *s, int esz, int rd, int rn, int pg,
2251 TCGv_i64 val)
2253 typedef void gen_cpy(TCGv_ptr, TCGv_ptr, TCGv_ptr, TCGv_i64, TCGv_i32);
2254 static gen_cpy * const fns[4] = {
2255 gen_helper_sve_cpy_m_b, gen_helper_sve_cpy_m_h,
2256 gen_helper_sve_cpy_m_s, gen_helper_sve_cpy_m_d,
2258 unsigned vsz = vec_full_reg_size(s);
2259 TCGv_i32 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
2260 TCGv_ptr t_zd = tcg_temp_new_ptr();
2261 TCGv_ptr t_zn = tcg_temp_new_ptr();
2262 TCGv_ptr t_pg = tcg_temp_new_ptr();
2264 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, rd));
2265 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, rn));
2266 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
2268 fns[esz](t_zd, t_zn, t_pg, val, desc);
2270 tcg_temp_free_ptr(t_zd);
2271 tcg_temp_free_ptr(t_zn);
2272 tcg_temp_free_ptr(t_pg);
2273 tcg_temp_free_i32(desc);
2276 static bool trans_FCPY(DisasContext *s, arg_FCPY *a)
2278 if (a->esz == 0) {
2279 return false;
2281 if (sve_access_check(s)) {
2282 /* Decode the VFP immediate. */
2283 uint64_t imm = vfp_expand_imm(a->esz, a->imm);
2284 TCGv_i64 t_imm = tcg_const_i64(imm);
2285 do_cpy_m(s, a->esz, a->rd, a->rn, a->pg, t_imm);
2286 tcg_temp_free_i64(t_imm);
2288 return true;
2291 static bool trans_CPY_m_i(DisasContext *s, arg_rpri_esz *a)
2293 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
2294 return false;
2296 if (sve_access_check(s)) {
2297 TCGv_i64 t_imm = tcg_const_i64(a->imm);
2298 do_cpy_m(s, a->esz, a->rd, a->rn, a->pg, t_imm);
2299 tcg_temp_free_i64(t_imm);
2301 return true;
2304 static bool trans_CPY_z_i(DisasContext *s, arg_CPY_z_i *a)
2306 static gen_helper_gvec_2i * const fns[4] = {
2307 gen_helper_sve_cpy_z_b, gen_helper_sve_cpy_z_h,
2308 gen_helper_sve_cpy_z_s, gen_helper_sve_cpy_z_d,
2311 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
2312 return false;
2314 if (sve_access_check(s)) {
2315 unsigned vsz = vec_full_reg_size(s);
2316 TCGv_i64 t_imm = tcg_const_i64(a->imm);
2317 tcg_gen_gvec_2i_ool(vec_full_reg_offset(s, a->rd),
2318 pred_full_reg_offset(s, a->pg),
2319 t_imm, vsz, vsz, 0, fns[a->esz]);
2320 tcg_temp_free_i64(t_imm);
2322 return true;
2326 *** SVE Permute Extract Group
2329 static bool do_EXT(DisasContext *s, int rd, int rn, int rm, int imm)
2331 if (!sve_access_check(s)) {
2332 return true;
2335 unsigned vsz = vec_full_reg_size(s);
2336 unsigned n_ofs = imm >= vsz ? 0 : imm;
2337 unsigned n_siz = vsz - n_ofs;
2338 unsigned d = vec_full_reg_offset(s, rd);
2339 unsigned n = vec_full_reg_offset(s, rn);
2340 unsigned m = vec_full_reg_offset(s, rm);
2342 /* Use host vector move insns if we have appropriate sizes
2343 * and no unfortunate overlap.
2345 if (m != d
2346 && n_ofs == size_for_gvec(n_ofs)
2347 && n_siz == size_for_gvec(n_siz)
2348 && (d != n || n_siz <= n_ofs)) {
2349 tcg_gen_gvec_mov(0, d, n + n_ofs, n_siz, n_siz);
2350 if (n_ofs != 0) {
2351 tcg_gen_gvec_mov(0, d + n_siz, m, n_ofs, n_ofs);
2353 } else {
2354 tcg_gen_gvec_3_ool(d, n, m, vsz, vsz, n_ofs, gen_helper_sve_ext);
2356 return true;
2359 static bool trans_EXT(DisasContext *s, arg_EXT *a)
2361 return do_EXT(s, a->rd, a->rn, a->rm, a->imm);
2364 static bool trans_EXT_sve2(DisasContext *s, arg_rri *a)
2366 if (!dc_isar_feature(aa64_sve2, s)) {
2367 return false;
2369 return do_EXT(s, a->rd, a->rn, (a->rn + 1) % 32, a->imm);
2373 *** SVE Permute - Unpredicated Group
2376 static bool trans_DUP_s(DisasContext *s, arg_DUP_s *a)
2378 if (sve_access_check(s)) {
2379 unsigned vsz = vec_full_reg_size(s);
2380 tcg_gen_gvec_dup_i64(a->esz, vec_full_reg_offset(s, a->rd),
2381 vsz, vsz, cpu_reg_sp(s, a->rn));
2383 return true;
2386 static bool trans_DUP_x(DisasContext *s, arg_DUP_x *a)
2388 if ((a->imm & 0x1f) == 0) {
2389 return false;
2391 if (sve_access_check(s)) {
2392 unsigned vsz = vec_full_reg_size(s);
2393 unsigned dofs = vec_full_reg_offset(s, a->rd);
2394 unsigned esz, index;
2396 esz = ctz32(a->imm);
2397 index = a->imm >> (esz + 1);
2399 if ((index << esz) < vsz) {
2400 unsigned nofs = vec_reg_offset(s, a->rn, index, esz);
2401 tcg_gen_gvec_dup_mem(esz, dofs, nofs, vsz, vsz);
2402 } else {
2404 * While dup_mem handles 128-bit elements, dup_imm does not.
2405 * Thankfully element size doesn't matter for splatting zero.
2407 tcg_gen_gvec_dup_imm(MO_64, dofs, vsz, vsz, 0);
2410 return true;
2413 static void do_insr_i64(DisasContext *s, arg_rrr_esz *a, TCGv_i64 val)
2415 typedef void gen_insr(TCGv_ptr, TCGv_ptr, TCGv_i64, TCGv_i32);
2416 static gen_insr * const fns[4] = {
2417 gen_helper_sve_insr_b, gen_helper_sve_insr_h,
2418 gen_helper_sve_insr_s, gen_helper_sve_insr_d,
2420 unsigned vsz = vec_full_reg_size(s);
2421 TCGv_i32 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
2422 TCGv_ptr t_zd = tcg_temp_new_ptr();
2423 TCGv_ptr t_zn = tcg_temp_new_ptr();
2425 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, a->rd));
2426 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, a->rn));
2428 fns[a->esz](t_zd, t_zn, val, desc);
2430 tcg_temp_free_ptr(t_zd);
2431 tcg_temp_free_ptr(t_zn);
2432 tcg_temp_free_i32(desc);
2435 static bool trans_INSR_f(DisasContext *s, arg_rrr_esz *a)
2437 if (sve_access_check(s)) {
2438 TCGv_i64 t = tcg_temp_new_i64();
2439 tcg_gen_ld_i64(t, cpu_env, vec_reg_offset(s, a->rm, 0, MO_64));
2440 do_insr_i64(s, a, t);
2441 tcg_temp_free_i64(t);
2443 return true;
2446 static bool trans_INSR_r(DisasContext *s, arg_rrr_esz *a)
2448 if (sve_access_check(s)) {
2449 do_insr_i64(s, a, cpu_reg(s, a->rm));
2451 return true;
2454 static bool trans_REV_v(DisasContext *s, arg_rr_esz *a)
2456 static gen_helper_gvec_2 * const fns[4] = {
2457 gen_helper_sve_rev_b, gen_helper_sve_rev_h,
2458 gen_helper_sve_rev_s, gen_helper_sve_rev_d
2461 if (sve_access_check(s)) {
2462 gen_gvec_ool_zz(s, fns[a->esz], a->rd, a->rn, 0);
2464 return true;
2467 static bool trans_TBL(DisasContext *s, arg_rrr_esz *a)
2469 static gen_helper_gvec_3 * const fns[4] = {
2470 gen_helper_sve_tbl_b, gen_helper_sve_tbl_h,
2471 gen_helper_sve_tbl_s, gen_helper_sve_tbl_d
2474 if (sve_access_check(s)) {
2475 gen_gvec_ool_zzz(s, fns[a->esz], a->rd, a->rn, a->rm, 0);
2477 return true;
2480 static bool trans_TBL_sve2(DisasContext *s, arg_rrr_esz *a)
2482 static gen_helper_gvec_4 * const fns[4] = {
2483 gen_helper_sve2_tbl_b, gen_helper_sve2_tbl_h,
2484 gen_helper_sve2_tbl_s, gen_helper_sve2_tbl_d
2487 if (!dc_isar_feature(aa64_sve2, s)) {
2488 return false;
2490 if (sve_access_check(s)) {
2491 gen_gvec_ool_zzzz(s, fns[a->esz], a->rd, a->rn,
2492 (a->rn + 1) % 32, a->rm, 0);
2494 return true;
2497 static bool trans_TBX(DisasContext *s, arg_rrr_esz *a)
2499 static gen_helper_gvec_3 * const fns[4] = {
2500 gen_helper_sve2_tbx_b, gen_helper_sve2_tbx_h,
2501 gen_helper_sve2_tbx_s, gen_helper_sve2_tbx_d
2504 if (!dc_isar_feature(aa64_sve2, s)) {
2505 return false;
2507 if (sve_access_check(s)) {
2508 gen_gvec_ool_zzz(s, fns[a->esz], a->rd, a->rn, a->rm, 0);
2510 return true;
2513 static bool trans_UNPK(DisasContext *s, arg_UNPK *a)
2515 static gen_helper_gvec_2 * const fns[4][2] = {
2516 { NULL, NULL },
2517 { gen_helper_sve_sunpk_h, gen_helper_sve_uunpk_h },
2518 { gen_helper_sve_sunpk_s, gen_helper_sve_uunpk_s },
2519 { gen_helper_sve_sunpk_d, gen_helper_sve_uunpk_d },
2522 if (a->esz == 0) {
2523 return false;
2525 if (sve_access_check(s)) {
2526 unsigned vsz = vec_full_reg_size(s);
2527 tcg_gen_gvec_2_ool(vec_full_reg_offset(s, a->rd),
2528 vec_full_reg_offset(s, a->rn)
2529 + (a->h ? vsz / 2 : 0),
2530 vsz, vsz, 0, fns[a->esz][a->u]);
2532 return true;
2536 *** SVE Permute - Predicates Group
2539 static bool do_perm_pred3(DisasContext *s, arg_rrr_esz *a, bool high_odd,
2540 gen_helper_gvec_3 *fn)
2542 if (!sve_access_check(s)) {
2543 return true;
2546 unsigned vsz = pred_full_reg_size(s);
2548 TCGv_ptr t_d = tcg_temp_new_ptr();
2549 TCGv_ptr t_n = tcg_temp_new_ptr();
2550 TCGv_ptr t_m = tcg_temp_new_ptr();
2551 TCGv_i32 t_desc;
2552 uint32_t desc = 0;
2554 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, vsz);
2555 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
2556 desc = FIELD_DP32(desc, PREDDESC, DATA, high_odd);
2558 tcg_gen_addi_ptr(t_d, cpu_env, pred_full_reg_offset(s, a->rd));
2559 tcg_gen_addi_ptr(t_n, cpu_env, pred_full_reg_offset(s, a->rn));
2560 tcg_gen_addi_ptr(t_m, cpu_env, pred_full_reg_offset(s, a->rm));
2561 t_desc = tcg_const_i32(desc);
2563 fn(t_d, t_n, t_m, t_desc);
2565 tcg_temp_free_ptr(t_d);
2566 tcg_temp_free_ptr(t_n);
2567 tcg_temp_free_ptr(t_m);
2568 tcg_temp_free_i32(t_desc);
2569 return true;
2572 static bool do_perm_pred2(DisasContext *s, arg_rr_esz *a, bool high_odd,
2573 gen_helper_gvec_2 *fn)
2575 if (!sve_access_check(s)) {
2576 return true;
2579 unsigned vsz = pred_full_reg_size(s);
2580 TCGv_ptr t_d = tcg_temp_new_ptr();
2581 TCGv_ptr t_n = tcg_temp_new_ptr();
2582 TCGv_i32 t_desc;
2583 uint32_t desc = 0;
2585 tcg_gen_addi_ptr(t_d, cpu_env, pred_full_reg_offset(s, a->rd));
2586 tcg_gen_addi_ptr(t_n, cpu_env, pred_full_reg_offset(s, a->rn));
2588 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, vsz);
2589 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
2590 desc = FIELD_DP32(desc, PREDDESC, DATA, high_odd);
2591 t_desc = tcg_const_i32(desc);
2593 fn(t_d, t_n, t_desc);
2595 tcg_temp_free_i32(t_desc);
2596 tcg_temp_free_ptr(t_d);
2597 tcg_temp_free_ptr(t_n);
2598 return true;
2601 static bool trans_ZIP1_p(DisasContext *s, arg_rrr_esz *a)
2603 return do_perm_pred3(s, a, 0, gen_helper_sve_zip_p);
2606 static bool trans_ZIP2_p(DisasContext *s, arg_rrr_esz *a)
2608 return do_perm_pred3(s, a, 1, gen_helper_sve_zip_p);
2611 static bool trans_UZP1_p(DisasContext *s, arg_rrr_esz *a)
2613 return do_perm_pred3(s, a, 0, gen_helper_sve_uzp_p);
2616 static bool trans_UZP2_p(DisasContext *s, arg_rrr_esz *a)
2618 return do_perm_pred3(s, a, 1, gen_helper_sve_uzp_p);
2621 static bool trans_TRN1_p(DisasContext *s, arg_rrr_esz *a)
2623 return do_perm_pred3(s, a, 0, gen_helper_sve_trn_p);
2626 static bool trans_TRN2_p(DisasContext *s, arg_rrr_esz *a)
2628 return do_perm_pred3(s, a, 1, gen_helper_sve_trn_p);
2631 static bool trans_REV_p(DisasContext *s, arg_rr_esz *a)
2633 return do_perm_pred2(s, a, 0, gen_helper_sve_rev_p);
2636 static bool trans_PUNPKLO(DisasContext *s, arg_PUNPKLO *a)
2638 return do_perm_pred2(s, a, 0, gen_helper_sve_punpk_p);
2641 static bool trans_PUNPKHI(DisasContext *s, arg_PUNPKHI *a)
2643 return do_perm_pred2(s, a, 1, gen_helper_sve_punpk_p);
2647 *** SVE Permute - Interleaving Group
2650 static bool do_zip(DisasContext *s, arg_rrr_esz *a, bool high)
2652 static gen_helper_gvec_3 * const fns[4] = {
2653 gen_helper_sve_zip_b, gen_helper_sve_zip_h,
2654 gen_helper_sve_zip_s, gen_helper_sve_zip_d,
2657 if (sve_access_check(s)) {
2658 unsigned vsz = vec_full_reg_size(s);
2659 unsigned high_ofs = high ? vsz / 2 : 0;
2660 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, a->rd),
2661 vec_full_reg_offset(s, a->rn) + high_ofs,
2662 vec_full_reg_offset(s, a->rm) + high_ofs,
2663 vsz, vsz, 0, fns[a->esz]);
2665 return true;
2668 static bool do_zzz_data_ool(DisasContext *s, arg_rrr_esz *a, int data,
2669 gen_helper_gvec_3 *fn)
2671 if (sve_access_check(s)) {
2672 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, data);
2674 return true;
2677 static bool trans_ZIP1_z(DisasContext *s, arg_rrr_esz *a)
2679 return do_zip(s, a, false);
2682 static bool trans_ZIP2_z(DisasContext *s, arg_rrr_esz *a)
2684 return do_zip(s, a, true);
2687 static bool do_zip_q(DisasContext *s, arg_rrr_esz *a, bool high)
2689 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
2690 return false;
2692 if (sve_access_check(s)) {
2693 unsigned vsz = vec_full_reg_size(s);
2694 unsigned high_ofs = high ? QEMU_ALIGN_DOWN(vsz, 32) / 2 : 0;
2695 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, a->rd),
2696 vec_full_reg_offset(s, a->rn) + high_ofs,
2697 vec_full_reg_offset(s, a->rm) + high_ofs,
2698 vsz, vsz, 0, gen_helper_sve2_zip_q);
2700 return true;
2703 static bool trans_ZIP1_q(DisasContext *s, arg_rrr_esz *a)
2705 return do_zip_q(s, a, false);
2708 static bool trans_ZIP2_q(DisasContext *s, arg_rrr_esz *a)
2710 return do_zip_q(s, a, true);
2713 static gen_helper_gvec_3 * const uzp_fns[4] = {
2714 gen_helper_sve_uzp_b, gen_helper_sve_uzp_h,
2715 gen_helper_sve_uzp_s, gen_helper_sve_uzp_d,
2718 static bool trans_UZP1_z(DisasContext *s, arg_rrr_esz *a)
2720 return do_zzz_data_ool(s, a, 0, uzp_fns[a->esz]);
2723 static bool trans_UZP2_z(DisasContext *s, arg_rrr_esz *a)
2725 return do_zzz_data_ool(s, a, 1 << a->esz, uzp_fns[a->esz]);
2728 static bool trans_UZP1_q(DisasContext *s, arg_rrr_esz *a)
2730 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
2731 return false;
2733 return do_zzz_data_ool(s, a, 0, gen_helper_sve2_uzp_q);
2736 static bool trans_UZP2_q(DisasContext *s, arg_rrr_esz *a)
2738 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
2739 return false;
2741 return do_zzz_data_ool(s, a, 16, gen_helper_sve2_uzp_q);
2744 static gen_helper_gvec_3 * const trn_fns[4] = {
2745 gen_helper_sve_trn_b, gen_helper_sve_trn_h,
2746 gen_helper_sve_trn_s, gen_helper_sve_trn_d,
2749 static bool trans_TRN1_z(DisasContext *s, arg_rrr_esz *a)
2751 return do_zzz_data_ool(s, a, 0, trn_fns[a->esz]);
2754 static bool trans_TRN2_z(DisasContext *s, arg_rrr_esz *a)
2756 return do_zzz_data_ool(s, a, 1 << a->esz, trn_fns[a->esz]);
2759 static bool trans_TRN1_q(DisasContext *s, arg_rrr_esz *a)
2761 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
2762 return false;
2764 return do_zzz_data_ool(s, a, 0, gen_helper_sve2_trn_q);
2767 static bool trans_TRN2_q(DisasContext *s, arg_rrr_esz *a)
2769 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
2770 return false;
2772 return do_zzz_data_ool(s, a, 16, gen_helper_sve2_trn_q);
2776 *** SVE Permute Vector - Predicated Group
2779 static bool trans_COMPACT(DisasContext *s, arg_rpr_esz *a)
2781 static gen_helper_gvec_3 * const fns[4] = {
2782 NULL, NULL, gen_helper_sve_compact_s, gen_helper_sve_compact_d
2784 return do_zpz_ool(s, a, fns[a->esz]);
2787 /* Call the helper that computes the ARM LastActiveElement pseudocode
2788 * function, scaled by the element size. This includes the not found
2789 * indication; e.g. not found for esz=3 is -8.
2791 static void find_last_active(DisasContext *s, TCGv_i32 ret, int esz, int pg)
2793 /* Predicate sizes may be smaller and cannot use simd_desc. We cannot
2794 * round up, as we do elsewhere, because we need the exact size.
2796 TCGv_ptr t_p = tcg_temp_new_ptr();
2797 TCGv_i32 t_desc;
2798 unsigned desc = 0;
2800 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, pred_full_reg_size(s));
2801 desc = FIELD_DP32(desc, PREDDESC, ESZ, esz);
2803 tcg_gen_addi_ptr(t_p, cpu_env, pred_full_reg_offset(s, pg));
2804 t_desc = tcg_const_i32(desc);
2806 gen_helper_sve_last_active_element(ret, t_p, t_desc);
2808 tcg_temp_free_i32(t_desc);
2809 tcg_temp_free_ptr(t_p);
2812 /* Increment LAST to the offset of the next element in the vector,
2813 * wrapping around to 0.
2815 static void incr_last_active(DisasContext *s, TCGv_i32 last, int esz)
2817 unsigned vsz = vec_full_reg_size(s);
2819 tcg_gen_addi_i32(last, last, 1 << esz);
2820 if (is_power_of_2(vsz)) {
2821 tcg_gen_andi_i32(last, last, vsz - 1);
2822 } else {
2823 TCGv_i32 max = tcg_const_i32(vsz);
2824 TCGv_i32 zero = tcg_const_i32(0);
2825 tcg_gen_movcond_i32(TCG_COND_GEU, last, last, max, zero, last);
2826 tcg_temp_free_i32(max);
2827 tcg_temp_free_i32(zero);
2831 /* If LAST < 0, set LAST to the offset of the last element in the vector. */
2832 static void wrap_last_active(DisasContext *s, TCGv_i32 last, int esz)
2834 unsigned vsz = vec_full_reg_size(s);
2836 if (is_power_of_2(vsz)) {
2837 tcg_gen_andi_i32(last, last, vsz - 1);
2838 } else {
2839 TCGv_i32 max = tcg_const_i32(vsz - (1 << esz));
2840 TCGv_i32 zero = tcg_const_i32(0);
2841 tcg_gen_movcond_i32(TCG_COND_LT, last, last, zero, max, last);
2842 tcg_temp_free_i32(max);
2843 tcg_temp_free_i32(zero);
2847 /* Load an unsigned element of ESZ from BASE+OFS. */
2848 static TCGv_i64 load_esz(TCGv_ptr base, int ofs, int esz)
2850 TCGv_i64 r = tcg_temp_new_i64();
2852 switch (esz) {
2853 case 0:
2854 tcg_gen_ld8u_i64(r, base, ofs);
2855 break;
2856 case 1:
2857 tcg_gen_ld16u_i64(r, base, ofs);
2858 break;
2859 case 2:
2860 tcg_gen_ld32u_i64(r, base, ofs);
2861 break;
2862 case 3:
2863 tcg_gen_ld_i64(r, base, ofs);
2864 break;
2865 default:
2866 g_assert_not_reached();
2868 return r;
2871 /* Load an unsigned element of ESZ from RM[LAST]. */
2872 static TCGv_i64 load_last_active(DisasContext *s, TCGv_i32 last,
2873 int rm, int esz)
2875 TCGv_ptr p = tcg_temp_new_ptr();
2876 TCGv_i64 r;
2878 /* Convert offset into vector into offset into ENV.
2879 * The final adjustment for the vector register base
2880 * is added via constant offset to the load.
2882 #ifdef HOST_WORDS_BIGENDIAN
2883 /* Adjust for element ordering. See vec_reg_offset. */
2884 if (esz < 3) {
2885 tcg_gen_xori_i32(last, last, 8 - (1 << esz));
2887 #endif
2888 tcg_gen_ext_i32_ptr(p, last);
2889 tcg_gen_add_ptr(p, p, cpu_env);
2891 r = load_esz(p, vec_full_reg_offset(s, rm), esz);
2892 tcg_temp_free_ptr(p);
2894 return r;
2897 /* Compute CLAST for a Zreg. */
2898 static bool do_clast_vector(DisasContext *s, arg_rprr_esz *a, bool before)
2900 TCGv_i32 last;
2901 TCGLabel *over;
2902 TCGv_i64 ele;
2903 unsigned vsz, esz = a->esz;
2905 if (!sve_access_check(s)) {
2906 return true;
2909 last = tcg_temp_local_new_i32();
2910 over = gen_new_label();
2912 find_last_active(s, last, esz, a->pg);
2914 /* There is of course no movcond for a 2048-bit vector,
2915 * so we must branch over the actual store.
2917 tcg_gen_brcondi_i32(TCG_COND_LT, last, 0, over);
2919 if (!before) {
2920 incr_last_active(s, last, esz);
2923 ele = load_last_active(s, last, a->rm, esz);
2924 tcg_temp_free_i32(last);
2926 vsz = vec_full_reg_size(s);
2927 tcg_gen_gvec_dup_i64(esz, vec_full_reg_offset(s, a->rd), vsz, vsz, ele);
2928 tcg_temp_free_i64(ele);
2930 /* If this insn used MOVPRFX, we may need a second move. */
2931 if (a->rd != a->rn) {
2932 TCGLabel *done = gen_new_label();
2933 tcg_gen_br(done);
2935 gen_set_label(over);
2936 do_mov_z(s, a->rd, a->rn);
2938 gen_set_label(done);
2939 } else {
2940 gen_set_label(over);
2942 return true;
2945 static bool trans_CLASTA_z(DisasContext *s, arg_rprr_esz *a)
2947 return do_clast_vector(s, a, false);
2950 static bool trans_CLASTB_z(DisasContext *s, arg_rprr_esz *a)
2952 return do_clast_vector(s, a, true);
2955 /* Compute CLAST for a scalar. */
2956 static void do_clast_scalar(DisasContext *s, int esz, int pg, int rm,
2957 bool before, TCGv_i64 reg_val)
2959 TCGv_i32 last = tcg_temp_new_i32();
2960 TCGv_i64 ele, cmp, zero;
2962 find_last_active(s, last, esz, pg);
2964 /* Extend the original value of last prior to incrementing. */
2965 cmp = tcg_temp_new_i64();
2966 tcg_gen_ext_i32_i64(cmp, last);
2968 if (!before) {
2969 incr_last_active(s, last, esz);
2972 /* The conceit here is that while last < 0 indicates not found, after
2973 * adjusting for cpu_env->vfp.zregs[rm], it is still a valid address
2974 * from which we can load garbage. We then discard the garbage with
2975 * a conditional move.
2977 ele = load_last_active(s, last, rm, esz);
2978 tcg_temp_free_i32(last);
2980 zero = tcg_const_i64(0);
2981 tcg_gen_movcond_i64(TCG_COND_GE, reg_val, cmp, zero, ele, reg_val);
2983 tcg_temp_free_i64(zero);
2984 tcg_temp_free_i64(cmp);
2985 tcg_temp_free_i64(ele);
2988 /* Compute CLAST for a Vreg. */
2989 static bool do_clast_fp(DisasContext *s, arg_rpr_esz *a, bool before)
2991 if (sve_access_check(s)) {
2992 int esz = a->esz;
2993 int ofs = vec_reg_offset(s, a->rd, 0, esz);
2994 TCGv_i64 reg = load_esz(cpu_env, ofs, esz);
2996 do_clast_scalar(s, esz, a->pg, a->rn, before, reg);
2997 write_fp_dreg(s, a->rd, reg);
2998 tcg_temp_free_i64(reg);
3000 return true;
3003 static bool trans_CLASTA_v(DisasContext *s, arg_rpr_esz *a)
3005 return do_clast_fp(s, a, false);
3008 static bool trans_CLASTB_v(DisasContext *s, arg_rpr_esz *a)
3010 return do_clast_fp(s, a, true);
3013 /* Compute CLAST for a Xreg. */
3014 static bool do_clast_general(DisasContext *s, arg_rpr_esz *a, bool before)
3016 TCGv_i64 reg;
3018 if (!sve_access_check(s)) {
3019 return true;
3022 reg = cpu_reg(s, a->rd);
3023 switch (a->esz) {
3024 case 0:
3025 tcg_gen_ext8u_i64(reg, reg);
3026 break;
3027 case 1:
3028 tcg_gen_ext16u_i64(reg, reg);
3029 break;
3030 case 2:
3031 tcg_gen_ext32u_i64(reg, reg);
3032 break;
3033 case 3:
3034 break;
3035 default:
3036 g_assert_not_reached();
3039 do_clast_scalar(s, a->esz, a->pg, a->rn, before, reg);
3040 return true;
3043 static bool trans_CLASTA_r(DisasContext *s, arg_rpr_esz *a)
3045 return do_clast_general(s, a, false);
3048 static bool trans_CLASTB_r(DisasContext *s, arg_rpr_esz *a)
3050 return do_clast_general(s, a, true);
3053 /* Compute LAST for a scalar. */
3054 static TCGv_i64 do_last_scalar(DisasContext *s, int esz,
3055 int pg, int rm, bool before)
3057 TCGv_i32 last = tcg_temp_new_i32();
3058 TCGv_i64 ret;
3060 find_last_active(s, last, esz, pg);
3061 if (before) {
3062 wrap_last_active(s, last, esz);
3063 } else {
3064 incr_last_active(s, last, esz);
3067 ret = load_last_active(s, last, rm, esz);
3068 tcg_temp_free_i32(last);
3069 return ret;
3072 /* Compute LAST for a Vreg. */
3073 static bool do_last_fp(DisasContext *s, arg_rpr_esz *a, bool before)
3075 if (sve_access_check(s)) {
3076 TCGv_i64 val = do_last_scalar(s, a->esz, a->pg, a->rn, before);
3077 write_fp_dreg(s, a->rd, val);
3078 tcg_temp_free_i64(val);
3080 return true;
3083 static bool trans_LASTA_v(DisasContext *s, arg_rpr_esz *a)
3085 return do_last_fp(s, a, false);
3088 static bool trans_LASTB_v(DisasContext *s, arg_rpr_esz *a)
3090 return do_last_fp(s, a, true);
3093 /* Compute LAST for a Xreg. */
3094 static bool do_last_general(DisasContext *s, arg_rpr_esz *a, bool before)
3096 if (sve_access_check(s)) {
3097 TCGv_i64 val = do_last_scalar(s, a->esz, a->pg, a->rn, before);
3098 tcg_gen_mov_i64(cpu_reg(s, a->rd), val);
3099 tcg_temp_free_i64(val);
3101 return true;
3104 static bool trans_LASTA_r(DisasContext *s, arg_rpr_esz *a)
3106 return do_last_general(s, a, false);
3109 static bool trans_LASTB_r(DisasContext *s, arg_rpr_esz *a)
3111 return do_last_general(s, a, true);
3114 static bool trans_CPY_m_r(DisasContext *s, arg_rpr_esz *a)
3116 if (sve_access_check(s)) {
3117 do_cpy_m(s, a->esz, a->rd, a->rd, a->pg, cpu_reg_sp(s, a->rn));
3119 return true;
3122 static bool trans_CPY_m_v(DisasContext *s, arg_rpr_esz *a)
3124 if (sve_access_check(s)) {
3125 int ofs = vec_reg_offset(s, a->rn, 0, a->esz);
3126 TCGv_i64 t = load_esz(cpu_env, ofs, a->esz);
3127 do_cpy_m(s, a->esz, a->rd, a->rd, a->pg, t);
3128 tcg_temp_free_i64(t);
3130 return true;
3133 static bool trans_REVB(DisasContext *s, arg_rpr_esz *a)
3135 static gen_helper_gvec_3 * const fns[4] = {
3136 NULL,
3137 gen_helper_sve_revb_h,
3138 gen_helper_sve_revb_s,
3139 gen_helper_sve_revb_d,
3141 return do_zpz_ool(s, a, fns[a->esz]);
3144 static bool trans_REVH(DisasContext *s, arg_rpr_esz *a)
3146 static gen_helper_gvec_3 * const fns[4] = {
3147 NULL,
3148 NULL,
3149 gen_helper_sve_revh_s,
3150 gen_helper_sve_revh_d,
3152 return do_zpz_ool(s, a, fns[a->esz]);
3155 static bool trans_REVW(DisasContext *s, arg_rpr_esz *a)
3157 return do_zpz_ool(s, a, a->esz == 3 ? gen_helper_sve_revw_d : NULL);
3160 static bool trans_RBIT(DisasContext *s, arg_rpr_esz *a)
3162 static gen_helper_gvec_3 * const fns[4] = {
3163 gen_helper_sve_rbit_b,
3164 gen_helper_sve_rbit_h,
3165 gen_helper_sve_rbit_s,
3166 gen_helper_sve_rbit_d,
3168 return do_zpz_ool(s, a, fns[a->esz]);
3171 static bool trans_SPLICE(DisasContext *s, arg_rprr_esz *a)
3173 if (sve_access_check(s)) {
3174 gen_gvec_ool_zzzp(s, gen_helper_sve_splice,
3175 a->rd, a->rn, a->rm, a->pg, a->esz);
3177 return true;
3180 static bool trans_SPLICE_sve2(DisasContext *s, arg_rpr_esz *a)
3182 if (!dc_isar_feature(aa64_sve2, s)) {
3183 return false;
3185 if (sve_access_check(s)) {
3186 gen_gvec_ool_zzzp(s, gen_helper_sve_splice,
3187 a->rd, a->rn, (a->rn + 1) % 32, a->pg, a->esz);
3189 return true;
3193 *** SVE Integer Compare - Vectors Group
3196 static bool do_ppzz_flags(DisasContext *s, arg_rprr_esz *a,
3197 gen_helper_gvec_flags_4 *gen_fn)
3199 TCGv_ptr pd, zn, zm, pg;
3200 unsigned vsz;
3201 TCGv_i32 t;
3203 if (gen_fn == NULL) {
3204 return false;
3206 if (!sve_access_check(s)) {
3207 return true;
3210 vsz = vec_full_reg_size(s);
3211 t = tcg_const_i32(simd_desc(vsz, vsz, 0));
3212 pd = tcg_temp_new_ptr();
3213 zn = tcg_temp_new_ptr();
3214 zm = tcg_temp_new_ptr();
3215 pg = tcg_temp_new_ptr();
3217 tcg_gen_addi_ptr(pd, cpu_env, pred_full_reg_offset(s, a->rd));
3218 tcg_gen_addi_ptr(zn, cpu_env, vec_full_reg_offset(s, a->rn));
3219 tcg_gen_addi_ptr(zm, cpu_env, vec_full_reg_offset(s, a->rm));
3220 tcg_gen_addi_ptr(pg, cpu_env, pred_full_reg_offset(s, a->pg));
3222 gen_fn(t, pd, zn, zm, pg, t);
3224 tcg_temp_free_ptr(pd);
3225 tcg_temp_free_ptr(zn);
3226 tcg_temp_free_ptr(zm);
3227 tcg_temp_free_ptr(pg);
3229 do_pred_flags(t);
3231 tcg_temp_free_i32(t);
3232 return true;
3235 #define DO_PPZZ(NAME, name) \
3236 static bool trans_##NAME##_ppzz(DisasContext *s, arg_rprr_esz *a) \
3238 static gen_helper_gvec_flags_4 * const fns[4] = { \
3239 gen_helper_sve_##name##_ppzz_b, gen_helper_sve_##name##_ppzz_h, \
3240 gen_helper_sve_##name##_ppzz_s, gen_helper_sve_##name##_ppzz_d, \
3241 }; \
3242 return do_ppzz_flags(s, a, fns[a->esz]); \
3245 DO_PPZZ(CMPEQ, cmpeq)
3246 DO_PPZZ(CMPNE, cmpne)
3247 DO_PPZZ(CMPGT, cmpgt)
3248 DO_PPZZ(CMPGE, cmpge)
3249 DO_PPZZ(CMPHI, cmphi)
3250 DO_PPZZ(CMPHS, cmphs)
3252 #undef DO_PPZZ
3254 #define DO_PPZW(NAME, name) \
3255 static bool trans_##NAME##_ppzw(DisasContext *s, arg_rprr_esz *a) \
3257 static gen_helper_gvec_flags_4 * const fns[4] = { \
3258 gen_helper_sve_##name##_ppzw_b, gen_helper_sve_##name##_ppzw_h, \
3259 gen_helper_sve_##name##_ppzw_s, NULL \
3260 }; \
3261 return do_ppzz_flags(s, a, fns[a->esz]); \
3264 DO_PPZW(CMPEQ, cmpeq)
3265 DO_PPZW(CMPNE, cmpne)
3266 DO_PPZW(CMPGT, cmpgt)
3267 DO_PPZW(CMPGE, cmpge)
3268 DO_PPZW(CMPHI, cmphi)
3269 DO_PPZW(CMPHS, cmphs)
3270 DO_PPZW(CMPLT, cmplt)
3271 DO_PPZW(CMPLE, cmple)
3272 DO_PPZW(CMPLO, cmplo)
3273 DO_PPZW(CMPLS, cmpls)
3275 #undef DO_PPZW
3278 *** SVE Integer Compare - Immediate Groups
3281 static bool do_ppzi_flags(DisasContext *s, arg_rpri_esz *a,
3282 gen_helper_gvec_flags_3 *gen_fn)
3284 TCGv_ptr pd, zn, pg;
3285 unsigned vsz;
3286 TCGv_i32 t;
3288 if (gen_fn == NULL) {
3289 return false;
3291 if (!sve_access_check(s)) {
3292 return true;
3295 vsz = vec_full_reg_size(s);
3296 t = tcg_const_i32(simd_desc(vsz, vsz, a->imm));
3297 pd = tcg_temp_new_ptr();
3298 zn = tcg_temp_new_ptr();
3299 pg = tcg_temp_new_ptr();
3301 tcg_gen_addi_ptr(pd, cpu_env, pred_full_reg_offset(s, a->rd));
3302 tcg_gen_addi_ptr(zn, cpu_env, vec_full_reg_offset(s, a->rn));
3303 tcg_gen_addi_ptr(pg, cpu_env, pred_full_reg_offset(s, a->pg));
3305 gen_fn(t, pd, zn, pg, t);
3307 tcg_temp_free_ptr(pd);
3308 tcg_temp_free_ptr(zn);
3309 tcg_temp_free_ptr(pg);
3311 do_pred_flags(t);
3313 tcg_temp_free_i32(t);
3314 return true;
3317 #define DO_PPZI(NAME, name) \
3318 static bool trans_##NAME##_ppzi(DisasContext *s, arg_rpri_esz *a) \
3320 static gen_helper_gvec_flags_3 * const fns[4] = { \
3321 gen_helper_sve_##name##_ppzi_b, gen_helper_sve_##name##_ppzi_h, \
3322 gen_helper_sve_##name##_ppzi_s, gen_helper_sve_##name##_ppzi_d, \
3323 }; \
3324 return do_ppzi_flags(s, a, fns[a->esz]); \
3327 DO_PPZI(CMPEQ, cmpeq)
3328 DO_PPZI(CMPNE, cmpne)
3329 DO_PPZI(CMPGT, cmpgt)
3330 DO_PPZI(CMPGE, cmpge)
3331 DO_PPZI(CMPHI, cmphi)
3332 DO_PPZI(CMPHS, cmphs)
3333 DO_PPZI(CMPLT, cmplt)
3334 DO_PPZI(CMPLE, cmple)
3335 DO_PPZI(CMPLO, cmplo)
3336 DO_PPZI(CMPLS, cmpls)
3338 #undef DO_PPZI
3341 *** SVE Partition Break Group
3344 static bool do_brk3(DisasContext *s, arg_rprr_s *a,
3345 gen_helper_gvec_4 *fn, gen_helper_gvec_flags_4 *fn_s)
3347 if (!sve_access_check(s)) {
3348 return true;
3351 unsigned vsz = pred_full_reg_size(s);
3353 /* Predicate sizes may be smaller and cannot use simd_desc. */
3354 TCGv_ptr d = tcg_temp_new_ptr();
3355 TCGv_ptr n = tcg_temp_new_ptr();
3356 TCGv_ptr m = tcg_temp_new_ptr();
3357 TCGv_ptr g = tcg_temp_new_ptr();
3358 TCGv_i32 t = tcg_const_i32(FIELD_DP32(0, PREDDESC, OPRSZ, vsz));
3360 tcg_gen_addi_ptr(d, cpu_env, pred_full_reg_offset(s, a->rd));
3361 tcg_gen_addi_ptr(n, cpu_env, pred_full_reg_offset(s, a->rn));
3362 tcg_gen_addi_ptr(m, cpu_env, pred_full_reg_offset(s, a->rm));
3363 tcg_gen_addi_ptr(g, cpu_env, pred_full_reg_offset(s, a->pg));
3365 if (a->s) {
3366 fn_s(t, d, n, m, g, t);
3367 do_pred_flags(t);
3368 } else {
3369 fn(d, n, m, g, t);
3371 tcg_temp_free_ptr(d);
3372 tcg_temp_free_ptr(n);
3373 tcg_temp_free_ptr(m);
3374 tcg_temp_free_ptr(g);
3375 tcg_temp_free_i32(t);
3376 return true;
3379 static bool do_brk2(DisasContext *s, arg_rpr_s *a,
3380 gen_helper_gvec_3 *fn, gen_helper_gvec_flags_3 *fn_s)
3382 if (!sve_access_check(s)) {
3383 return true;
3386 unsigned vsz = pred_full_reg_size(s);
3388 /* Predicate sizes may be smaller and cannot use simd_desc. */
3389 TCGv_ptr d = tcg_temp_new_ptr();
3390 TCGv_ptr n = tcg_temp_new_ptr();
3391 TCGv_ptr g = tcg_temp_new_ptr();
3392 TCGv_i32 t = tcg_const_i32(FIELD_DP32(0, PREDDESC, OPRSZ, vsz));
3394 tcg_gen_addi_ptr(d, cpu_env, pred_full_reg_offset(s, a->rd));
3395 tcg_gen_addi_ptr(n, cpu_env, pred_full_reg_offset(s, a->rn));
3396 tcg_gen_addi_ptr(g, cpu_env, pred_full_reg_offset(s, a->pg));
3398 if (a->s) {
3399 fn_s(t, d, n, g, t);
3400 do_pred_flags(t);
3401 } else {
3402 fn(d, n, g, t);
3404 tcg_temp_free_ptr(d);
3405 tcg_temp_free_ptr(n);
3406 tcg_temp_free_ptr(g);
3407 tcg_temp_free_i32(t);
3408 return true;
3411 static bool trans_BRKPA(DisasContext *s, arg_rprr_s *a)
3413 return do_brk3(s, a, gen_helper_sve_brkpa, gen_helper_sve_brkpas);
3416 static bool trans_BRKPB(DisasContext *s, arg_rprr_s *a)
3418 return do_brk3(s, a, gen_helper_sve_brkpb, gen_helper_sve_brkpbs);
3421 static bool trans_BRKA_m(DisasContext *s, arg_rpr_s *a)
3423 return do_brk2(s, a, gen_helper_sve_brka_m, gen_helper_sve_brkas_m);
3426 static bool trans_BRKB_m(DisasContext *s, arg_rpr_s *a)
3428 return do_brk2(s, a, gen_helper_sve_brkb_m, gen_helper_sve_brkbs_m);
3431 static bool trans_BRKA_z(DisasContext *s, arg_rpr_s *a)
3433 return do_brk2(s, a, gen_helper_sve_brka_z, gen_helper_sve_brkas_z);
3436 static bool trans_BRKB_z(DisasContext *s, arg_rpr_s *a)
3438 return do_brk2(s, a, gen_helper_sve_brkb_z, gen_helper_sve_brkbs_z);
3441 static bool trans_BRKN(DisasContext *s, arg_rpr_s *a)
3443 return do_brk2(s, a, gen_helper_sve_brkn, gen_helper_sve_brkns);
3447 *** SVE Predicate Count Group
3450 static void do_cntp(DisasContext *s, TCGv_i64 val, int esz, int pn, int pg)
3452 unsigned psz = pred_full_reg_size(s);
3454 if (psz <= 8) {
3455 uint64_t psz_mask;
3457 tcg_gen_ld_i64(val, cpu_env, pred_full_reg_offset(s, pn));
3458 if (pn != pg) {
3459 TCGv_i64 g = tcg_temp_new_i64();
3460 tcg_gen_ld_i64(g, cpu_env, pred_full_reg_offset(s, pg));
3461 tcg_gen_and_i64(val, val, g);
3462 tcg_temp_free_i64(g);
3465 /* Reduce the pred_esz_masks value simply to reduce the
3466 * size of the code generated here.
3468 psz_mask = MAKE_64BIT_MASK(0, psz * 8);
3469 tcg_gen_andi_i64(val, val, pred_esz_masks[esz] & psz_mask);
3471 tcg_gen_ctpop_i64(val, val);
3472 } else {
3473 TCGv_ptr t_pn = tcg_temp_new_ptr();
3474 TCGv_ptr t_pg = tcg_temp_new_ptr();
3475 unsigned desc = 0;
3476 TCGv_i32 t_desc;
3478 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, psz);
3479 desc = FIELD_DP32(desc, PREDDESC, ESZ, esz);
3481 tcg_gen_addi_ptr(t_pn, cpu_env, pred_full_reg_offset(s, pn));
3482 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
3483 t_desc = tcg_const_i32(desc);
3485 gen_helper_sve_cntp(val, t_pn, t_pg, t_desc);
3486 tcg_temp_free_ptr(t_pn);
3487 tcg_temp_free_ptr(t_pg);
3488 tcg_temp_free_i32(t_desc);
3492 static bool trans_CNTP(DisasContext *s, arg_CNTP *a)
3494 if (sve_access_check(s)) {
3495 do_cntp(s, cpu_reg(s, a->rd), a->esz, a->rn, a->pg);
3497 return true;
3500 static bool trans_INCDECP_r(DisasContext *s, arg_incdec_pred *a)
3502 if (sve_access_check(s)) {
3503 TCGv_i64 reg = cpu_reg(s, a->rd);
3504 TCGv_i64 val = tcg_temp_new_i64();
3506 do_cntp(s, val, a->esz, a->pg, a->pg);
3507 if (a->d) {
3508 tcg_gen_sub_i64(reg, reg, val);
3509 } else {
3510 tcg_gen_add_i64(reg, reg, val);
3512 tcg_temp_free_i64(val);
3514 return true;
3517 static bool trans_INCDECP_z(DisasContext *s, arg_incdec2_pred *a)
3519 if (a->esz == 0) {
3520 return false;
3522 if (sve_access_check(s)) {
3523 unsigned vsz = vec_full_reg_size(s);
3524 TCGv_i64 val = tcg_temp_new_i64();
3525 GVecGen2sFn *gvec_fn = a->d ? tcg_gen_gvec_subs : tcg_gen_gvec_adds;
3527 do_cntp(s, val, a->esz, a->pg, a->pg);
3528 gvec_fn(a->esz, vec_full_reg_offset(s, a->rd),
3529 vec_full_reg_offset(s, a->rn), val, vsz, vsz);
3531 return true;
3534 static bool trans_SINCDECP_r_32(DisasContext *s, arg_incdec_pred *a)
3536 if (sve_access_check(s)) {
3537 TCGv_i64 reg = cpu_reg(s, a->rd);
3538 TCGv_i64 val = tcg_temp_new_i64();
3540 do_cntp(s, val, a->esz, a->pg, a->pg);
3541 do_sat_addsub_32(reg, val, a->u, a->d);
3543 return true;
3546 static bool trans_SINCDECP_r_64(DisasContext *s, arg_incdec_pred *a)
3548 if (sve_access_check(s)) {
3549 TCGv_i64 reg = cpu_reg(s, a->rd);
3550 TCGv_i64 val = tcg_temp_new_i64();
3552 do_cntp(s, val, a->esz, a->pg, a->pg);
3553 do_sat_addsub_64(reg, val, a->u, a->d);
3555 return true;
3558 static bool trans_SINCDECP_z(DisasContext *s, arg_incdec2_pred *a)
3560 if (a->esz == 0) {
3561 return false;
3563 if (sve_access_check(s)) {
3564 TCGv_i64 val = tcg_temp_new_i64();
3565 do_cntp(s, val, a->esz, a->pg, a->pg);
3566 do_sat_addsub_vec(s, a->esz, a->rd, a->rn, val, a->u, a->d);
3568 return true;
3572 *** SVE Integer Compare Scalars Group
3575 static bool trans_CTERM(DisasContext *s, arg_CTERM *a)
3577 if (!sve_access_check(s)) {
3578 return true;
3581 TCGCond cond = (a->ne ? TCG_COND_NE : TCG_COND_EQ);
3582 TCGv_i64 rn = read_cpu_reg(s, a->rn, a->sf);
3583 TCGv_i64 rm = read_cpu_reg(s, a->rm, a->sf);
3584 TCGv_i64 cmp = tcg_temp_new_i64();
3586 tcg_gen_setcond_i64(cond, cmp, rn, rm);
3587 tcg_gen_extrl_i64_i32(cpu_NF, cmp);
3588 tcg_temp_free_i64(cmp);
3590 /* VF = !NF & !CF. */
3591 tcg_gen_xori_i32(cpu_VF, cpu_NF, 1);
3592 tcg_gen_andc_i32(cpu_VF, cpu_VF, cpu_CF);
3594 /* Both NF and VF actually look at bit 31. */
3595 tcg_gen_neg_i32(cpu_NF, cpu_NF);
3596 tcg_gen_neg_i32(cpu_VF, cpu_VF);
3597 return true;
3600 static bool trans_WHILE(DisasContext *s, arg_WHILE *a)
3602 TCGv_i64 op0, op1, t0, t1, tmax;
3603 TCGv_i32 t2, t3;
3604 TCGv_ptr ptr;
3605 unsigned vsz = vec_full_reg_size(s);
3606 unsigned desc = 0;
3607 TCGCond cond;
3608 uint64_t maxval;
3609 /* Note that GE/HS has a->eq == 0 and GT/HI has a->eq == 1. */
3610 bool eq = a->eq == a->lt;
3612 /* The greater-than conditions are all SVE2. */
3613 if (!a->lt && !dc_isar_feature(aa64_sve2, s)) {
3614 return false;
3616 if (!sve_access_check(s)) {
3617 return true;
3620 op0 = read_cpu_reg(s, a->rn, 1);
3621 op1 = read_cpu_reg(s, a->rm, 1);
3623 if (!a->sf) {
3624 if (a->u) {
3625 tcg_gen_ext32u_i64(op0, op0);
3626 tcg_gen_ext32u_i64(op1, op1);
3627 } else {
3628 tcg_gen_ext32s_i64(op0, op0);
3629 tcg_gen_ext32s_i64(op1, op1);
3633 /* For the helper, compress the different conditions into a computation
3634 * of how many iterations for which the condition is true.
3636 t0 = tcg_temp_new_i64();
3637 t1 = tcg_temp_new_i64();
3639 if (a->lt) {
3640 tcg_gen_sub_i64(t0, op1, op0);
3641 if (a->u) {
3642 maxval = a->sf ? UINT64_MAX : UINT32_MAX;
3643 cond = eq ? TCG_COND_LEU : TCG_COND_LTU;
3644 } else {
3645 maxval = a->sf ? INT64_MAX : INT32_MAX;
3646 cond = eq ? TCG_COND_LE : TCG_COND_LT;
3648 } else {
3649 tcg_gen_sub_i64(t0, op0, op1);
3650 if (a->u) {
3651 maxval = 0;
3652 cond = eq ? TCG_COND_GEU : TCG_COND_GTU;
3653 } else {
3654 maxval = a->sf ? INT64_MIN : INT32_MIN;
3655 cond = eq ? TCG_COND_GE : TCG_COND_GT;
3659 tmax = tcg_const_i64(vsz >> a->esz);
3660 if (eq) {
3661 /* Equality means one more iteration. */
3662 tcg_gen_addi_i64(t0, t0, 1);
3665 * For the less-than while, if op1 is maxval (and the only time
3666 * the addition above could overflow), then we produce an all-true
3667 * predicate by setting the count to the vector length. This is
3668 * because the pseudocode is described as an increment + compare
3669 * loop, and the maximum integer would always compare true.
3670 * Similarly, the greater-than while has the same issue with the
3671 * minimum integer due to the decrement + compare loop.
3673 tcg_gen_movi_i64(t1, maxval);
3674 tcg_gen_movcond_i64(TCG_COND_EQ, t0, op1, t1, tmax, t0);
3677 /* Bound to the maximum. */
3678 tcg_gen_umin_i64(t0, t0, tmax);
3679 tcg_temp_free_i64(tmax);
3681 /* Set the count to zero if the condition is false. */
3682 tcg_gen_movi_i64(t1, 0);
3683 tcg_gen_movcond_i64(cond, t0, op0, op1, t0, t1);
3684 tcg_temp_free_i64(t1);
3686 /* Since we're bounded, pass as a 32-bit type. */
3687 t2 = tcg_temp_new_i32();
3688 tcg_gen_extrl_i64_i32(t2, t0);
3689 tcg_temp_free_i64(t0);
3691 /* Scale elements to bits. */
3692 tcg_gen_shli_i32(t2, t2, a->esz);
3694 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, vsz / 8);
3695 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
3696 t3 = tcg_const_i32(desc);
3698 ptr = tcg_temp_new_ptr();
3699 tcg_gen_addi_ptr(ptr, cpu_env, pred_full_reg_offset(s, a->rd));
3701 if (a->lt) {
3702 gen_helper_sve_whilel(t2, ptr, t2, t3);
3703 } else {
3704 gen_helper_sve_whileg(t2, ptr, t2, t3);
3706 do_pred_flags(t2);
3708 tcg_temp_free_ptr(ptr);
3709 tcg_temp_free_i32(t2);
3710 tcg_temp_free_i32(t3);
3711 return true;
3714 static bool trans_WHILE_ptr(DisasContext *s, arg_WHILE_ptr *a)
3716 TCGv_i64 op0, op1, diff, t1, tmax;
3717 TCGv_i32 t2, t3;
3718 TCGv_ptr ptr;
3719 unsigned vsz = vec_full_reg_size(s);
3720 unsigned desc = 0;
3722 if (!dc_isar_feature(aa64_sve2, s)) {
3723 return false;
3725 if (!sve_access_check(s)) {
3726 return true;
3729 op0 = read_cpu_reg(s, a->rn, 1);
3730 op1 = read_cpu_reg(s, a->rm, 1);
3732 tmax = tcg_const_i64(vsz);
3733 diff = tcg_temp_new_i64();
3735 if (a->rw) {
3736 /* WHILERW */
3737 /* diff = abs(op1 - op0), noting that op0/1 are unsigned. */
3738 t1 = tcg_temp_new_i64();
3739 tcg_gen_sub_i64(diff, op0, op1);
3740 tcg_gen_sub_i64(t1, op1, op0);
3741 tcg_gen_movcond_i64(TCG_COND_GEU, diff, op0, op1, diff, t1);
3742 tcg_temp_free_i64(t1);
3743 /* Round down to a multiple of ESIZE. */
3744 tcg_gen_andi_i64(diff, diff, -1 << a->esz);
3745 /* If op1 == op0, diff == 0, and the condition is always true. */
3746 tcg_gen_movcond_i64(TCG_COND_EQ, diff, op0, op1, tmax, diff);
3747 } else {
3748 /* WHILEWR */
3749 tcg_gen_sub_i64(diff, op1, op0);
3750 /* Round down to a multiple of ESIZE. */
3751 tcg_gen_andi_i64(diff, diff, -1 << a->esz);
3752 /* If op0 >= op1, diff <= 0, the condition is always true. */
3753 tcg_gen_movcond_i64(TCG_COND_GEU, diff, op0, op1, tmax, diff);
3756 /* Bound to the maximum. */
3757 tcg_gen_umin_i64(diff, diff, tmax);
3758 tcg_temp_free_i64(tmax);
3760 /* Since we're bounded, pass as a 32-bit type. */
3761 t2 = tcg_temp_new_i32();
3762 tcg_gen_extrl_i64_i32(t2, diff);
3763 tcg_temp_free_i64(diff);
3765 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, vsz / 8);
3766 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
3767 t3 = tcg_const_i32(desc);
3769 ptr = tcg_temp_new_ptr();
3770 tcg_gen_addi_ptr(ptr, cpu_env, pred_full_reg_offset(s, a->rd));
3772 gen_helper_sve_whilel(t2, ptr, t2, t3);
3773 do_pred_flags(t2);
3775 tcg_temp_free_ptr(ptr);
3776 tcg_temp_free_i32(t2);
3777 tcg_temp_free_i32(t3);
3778 return true;
3782 *** SVE Integer Wide Immediate - Unpredicated Group
3785 static bool trans_FDUP(DisasContext *s, arg_FDUP *a)
3787 if (a->esz == 0) {
3788 return false;
3790 if (sve_access_check(s)) {
3791 unsigned vsz = vec_full_reg_size(s);
3792 int dofs = vec_full_reg_offset(s, a->rd);
3793 uint64_t imm;
3795 /* Decode the VFP immediate. */
3796 imm = vfp_expand_imm(a->esz, a->imm);
3797 tcg_gen_gvec_dup_imm(a->esz, dofs, vsz, vsz, imm);
3799 return true;
3802 static bool trans_DUP_i(DisasContext *s, arg_DUP_i *a)
3804 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
3805 return false;
3807 if (sve_access_check(s)) {
3808 unsigned vsz = vec_full_reg_size(s);
3809 int dofs = vec_full_reg_offset(s, a->rd);
3811 tcg_gen_gvec_dup_imm(a->esz, dofs, vsz, vsz, a->imm);
3813 return true;
3816 static bool trans_ADD_zzi(DisasContext *s, arg_rri_esz *a)
3818 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
3819 return false;
3821 if (sve_access_check(s)) {
3822 unsigned vsz = vec_full_reg_size(s);
3823 tcg_gen_gvec_addi(a->esz, vec_full_reg_offset(s, a->rd),
3824 vec_full_reg_offset(s, a->rn), a->imm, vsz, vsz);
3826 return true;
3829 static bool trans_SUB_zzi(DisasContext *s, arg_rri_esz *a)
3831 a->imm = -a->imm;
3832 return trans_ADD_zzi(s, a);
3835 static bool trans_SUBR_zzi(DisasContext *s, arg_rri_esz *a)
3837 static const TCGOpcode vecop_list[] = { INDEX_op_sub_vec, 0 };
3838 static const GVecGen2s op[4] = {
3839 { .fni8 = tcg_gen_vec_sub8_i64,
3840 .fniv = tcg_gen_sub_vec,
3841 .fno = gen_helper_sve_subri_b,
3842 .opt_opc = vecop_list,
3843 .vece = MO_8,
3844 .scalar_first = true },
3845 { .fni8 = tcg_gen_vec_sub16_i64,
3846 .fniv = tcg_gen_sub_vec,
3847 .fno = gen_helper_sve_subri_h,
3848 .opt_opc = vecop_list,
3849 .vece = MO_16,
3850 .scalar_first = true },
3851 { .fni4 = tcg_gen_sub_i32,
3852 .fniv = tcg_gen_sub_vec,
3853 .fno = gen_helper_sve_subri_s,
3854 .opt_opc = vecop_list,
3855 .vece = MO_32,
3856 .scalar_first = true },
3857 { .fni8 = tcg_gen_sub_i64,
3858 .fniv = tcg_gen_sub_vec,
3859 .fno = gen_helper_sve_subri_d,
3860 .opt_opc = vecop_list,
3861 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
3862 .vece = MO_64,
3863 .scalar_first = true }
3866 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
3867 return false;
3869 if (sve_access_check(s)) {
3870 unsigned vsz = vec_full_reg_size(s);
3871 TCGv_i64 c = tcg_const_i64(a->imm);
3872 tcg_gen_gvec_2s(vec_full_reg_offset(s, a->rd),
3873 vec_full_reg_offset(s, a->rn),
3874 vsz, vsz, c, &op[a->esz]);
3875 tcg_temp_free_i64(c);
3877 return true;
3880 static bool trans_MUL_zzi(DisasContext *s, arg_rri_esz *a)
3882 if (sve_access_check(s)) {
3883 unsigned vsz = vec_full_reg_size(s);
3884 tcg_gen_gvec_muli(a->esz, vec_full_reg_offset(s, a->rd),
3885 vec_full_reg_offset(s, a->rn), a->imm, vsz, vsz);
3887 return true;
3890 static bool do_zzi_sat(DisasContext *s, arg_rri_esz *a, bool u, bool d)
3892 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
3893 return false;
3895 if (sve_access_check(s)) {
3896 TCGv_i64 val = tcg_const_i64(a->imm);
3897 do_sat_addsub_vec(s, a->esz, a->rd, a->rn, val, u, d);
3898 tcg_temp_free_i64(val);
3900 return true;
3903 static bool trans_SQADD_zzi(DisasContext *s, arg_rri_esz *a)
3905 return do_zzi_sat(s, a, false, false);
3908 static bool trans_UQADD_zzi(DisasContext *s, arg_rri_esz *a)
3910 return do_zzi_sat(s, a, true, false);
3913 static bool trans_SQSUB_zzi(DisasContext *s, arg_rri_esz *a)
3915 return do_zzi_sat(s, a, false, true);
3918 static bool trans_UQSUB_zzi(DisasContext *s, arg_rri_esz *a)
3920 return do_zzi_sat(s, a, true, true);
3923 static bool do_zzi_ool(DisasContext *s, arg_rri_esz *a, gen_helper_gvec_2i *fn)
3925 if (sve_access_check(s)) {
3926 unsigned vsz = vec_full_reg_size(s);
3927 TCGv_i64 c = tcg_const_i64(a->imm);
3929 tcg_gen_gvec_2i_ool(vec_full_reg_offset(s, a->rd),
3930 vec_full_reg_offset(s, a->rn),
3931 c, vsz, vsz, 0, fn);
3932 tcg_temp_free_i64(c);
3934 return true;
3937 #define DO_ZZI(NAME, name) \
3938 static bool trans_##NAME##_zzi(DisasContext *s, arg_rri_esz *a) \
3940 static gen_helper_gvec_2i * const fns[4] = { \
3941 gen_helper_sve_##name##i_b, gen_helper_sve_##name##i_h, \
3942 gen_helper_sve_##name##i_s, gen_helper_sve_##name##i_d, \
3943 }; \
3944 return do_zzi_ool(s, a, fns[a->esz]); \
3947 DO_ZZI(SMAX, smax)
3948 DO_ZZI(UMAX, umax)
3949 DO_ZZI(SMIN, smin)
3950 DO_ZZI(UMIN, umin)
3952 #undef DO_ZZI
3954 static bool trans_DOT_zzzz(DisasContext *s, arg_DOT_zzzz *a)
3956 static gen_helper_gvec_4 * const fns[2][2] = {
3957 { gen_helper_gvec_sdot_b, gen_helper_gvec_sdot_h },
3958 { gen_helper_gvec_udot_b, gen_helper_gvec_udot_h }
3961 if (sve_access_check(s)) {
3962 gen_gvec_ool_zzzz(s, fns[a->u][a->sz], a->rd, a->rn, a->rm, a->ra, 0);
3964 return true;
3968 * SVE Multiply - Indexed
3971 static bool do_zzxz_ool(DisasContext *s, arg_rrxr_esz *a,
3972 gen_helper_gvec_4 *fn)
3974 if (fn == NULL) {
3975 return false;
3977 if (sve_access_check(s)) {
3978 gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, a->index);
3980 return true;
3983 #define DO_RRXR(NAME, FUNC) \
3984 static bool NAME(DisasContext *s, arg_rrxr_esz *a) \
3985 { return do_zzxz_ool(s, a, FUNC); }
3987 DO_RRXR(trans_SDOT_zzxw_s, gen_helper_gvec_sdot_idx_b)
3988 DO_RRXR(trans_SDOT_zzxw_d, gen_helper_gvec_sdot_idx_h)
3989 DO_RRXR(trans_UDOT_zzxw_s, gen_helper_gvec_udot_idx_b)
3990 DO_RRXR(trans_UDOT_zzxw_d, gen_helper_gvec_udot_idx_h)
3992 static bool trans_SUDOT_zzxw_s(DisasContext *s, arg_rrxr_esz *a)
3994 if (!dc_isar_feature(aa64_sve_i8mm, s)) {
3995 return false;
3997 return do_zzxz_ool(s, a, gen_helper_gvec_sudot_idx_b);
4000 static bool trans_USDOT_zzxw_s(DisasContext *s, arg_rrxr_esz *a)
4002 if (!dc_isar_feature(aa64_sve_i8mm, s)) {
4003 return false;
4005 return do_zzxz_ool(s, a, gen_helper_gvec_usdot_idx_b);
4008 #undef DO_RRXR
4010 static bool do_sve2_zzz_data(DisasContext *s, int rd, int rn, int rm, int data,
4011 gen_helper_gvec_3 *fn)
4013 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
4014 return false;
4016 if (sve_access_check(s)) {
4017 unsigned vsz = vec_full_reg_size(s);
4018 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, rd),
4019 vec_full_reg_offset(s, rn),
4020 vec_full_reg_offset(s, rm),
4021 vsz, vsz, data, fn);
4023 return true;
4026 #define DO_SVE2_RRX(NAME, FUNC) \
4027 static bool NAME(DisasContext *s, arg_rrx_esz *a) \
4028 { return do_sve2_zzz_data(s, a->rd, a->rn, a->rm, a->index, FUNC); }
4030 DO_SVE2_RRX(trans_MUL_zzx_h, gen_helper_gvec_mul_idx_h)
4031 DO_SVE2_RRX(trans_MUL_zzx_s, gen_helper_gvec_mul_idx_s)
4032 DO_SVE2_RRX(trans_MUL_zzx_d, gen_helper_gvec_mul_idx_d)
4034 DO_SVE2_RRX(trans_SQDMULH_zzx_h, gen_helper_sve2_sqdmulh_idx_h)
4035 DO_SVE2_RRX(trans_SQDMULH_zzx_s, gen_helper_sve2_sqdmulh_idx_s)
4036 DO_SVE2_RRX(trans_SQDMULH_zzx_d, gen_helper_sve2_sqdmulh_idx_d)
4038 DO_SVE2_RRX(trans_SQRDMULH_zzx_h, gen_helper_sve2_sqrdmulh_idx_h)
4039 DO_SVE2_RRX(trans_SQRDMULH_zzx_s, gen_helper_sve2_sqrdmulh_idx_s)
4040 DO_SVE2_RRX(trans_SQRDMULH_zzx_d, gen_helper_sve2_sqrdmulh_idx_d)
4042 #undef DO_SVE2_RRX
4044 #define DO_SVE2_RRX_TB(NAME, FUNC, TOP) \
4045 static bool NAME(DisasContext *s, arg_rrx_esz *a) \
4047 return do_sve2_zzz_data(s, a->rd, a->rn, a->rm, \
4048 (a->index << 1) | TOP, FUNC); \
4051 DO_SVE2_RRX_TB(trans_SQDMULLB_zzx_s, gen_helper_sve2_sqdmull_idx_s, false)
4052 DO_SVE2_RRX_TB(trans_SQDMULLB_zzx_d, gen_helper_sve2_sqdmull_idx_d, false)
4053 DO_SVE2_RRX_TB(trans_SQDMULLT_zzx_s, gen_helper_sve2_sqdmull_idx_s, true)
4054 DO_SVE2_RRX_TB(trans_SQDMULLT_zzx_d, gen_helper_sve2_sqdmull_idx_d, true)
4056 DO_SVE2_RRX_TB(trans_SMULLB_zzx_s, gen_helper_sve2_smull_idx_s, false)
4057 DO_SVE2_RRX_TB(trans_SMULLB_zzx_d, gen_helper_sve2_smull_idx_d, false)
4058 DO_SVE2_RRX_TB(trans_SMULLT_zzx_s, gen_helper_sve2_smull_idx_s, true)
4059 DO_SVE2_RRX_TB(trans_SMULLT_zzx_d, gen_helper_sve2_smull_idx_d, true)
4061 DO_SVE2_RRX_TB(trans_UMULLB_zzx_s, gen_helper_sve2_umull_idx_s, false)
4062 DO_SVE2_RRX_TB(trans_UMULLB_zzx_d, gen_helper_sve2_umull_idx_d, false)
4063 DO_SVE2_RRX_TB(trans_UMULLT_zzx_s, gen_helper_sve2_umull_idx_s, true)
4064 DO_SVE2_RRX_TB(trans_UMULLT_zzx_d, gen_helper_sve2_umull_idx_d, true)
4066 #undef DO_SVE2_RRX_TB
4068 static bool do_sve2_zzzz_data(DisasContext *s, int rd, int rn, int rm, int ra,
4069 int data, gen_helper_gvec_4 *fn)
4071 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
4072 return false;
4074 if (sve_access_check(s)) {
4075 unsigned vsz = vec_full_reg_size(s);
4076 tcg_gen_gvec_4_ool(vec_full_reg_offset(s, rd),
4077 vec_full_reg_offset(s, rn),
4078 vec_full_reg_offset(s, rm),
4079 vec_full_reg_offset(s, ra),
4080 vsz, vsz, data, fn);
4082 return true;
4085 #define DO_SVE2_RRXR(NAME, FUNC) \
4086 static bool NAME(DisasContext *s, arg_rrxr_esz *a) \
4087 { return do_sve2_zzzz_data(s, a->rd, a->rn, a->rm, a->ra, a->index, FUNC); }
4089 DO_SVE2_RRXR(trans_MLA_zzxz_h, gen_helper_gvec_mla_idx_h)
4090 DO_SVE2_RRXR(trans_MLA_zzxz_s, gen_helper_gvec_mla_idx_s)
4091 DO_SVE2_RRXR(trans_MLA_zzxz_d, gen_helper_gvec_mla_idx_d)
4093 DO_SVE2_RRXR(trans_MLS_zzxz_h, gen_helper_gvec_mls_idx_h)
4094 DO_SVE2_RRXR(trans_MLS_zzxz_s, gen_helper_gvec_mls_idx_s)
4095 DO_SVE2_RRXR(trans_MLS_zzxz_d, gen_helper_gvec_mls_idx_d)
4097 DO_SVE2_RRXR(trans_SQRDMLAH_zzxz_h, gen_helper_sve2_sqrdmlah_idx_h)
4098 DO_SVE2_RRXR(trans_SQRDMLAH_zzxz_s, gen_helper_sve2_sqrdmlah_idx_s)
4099 DO_SVE2_RRXR(trans_SQRDMLAH_zzxz_d, gen_helper_sve2_sqrdmlah_idx_d)
4101 DO_SVE2_RRXR(trans_SQRDMLSH_zzxz_h, gen_helper_sve2_sqrdmlsh_idx_h)
4102 DO_SVE2_RRXR(trans_SQRDMLSH_zzxz_s, gen_helper_sve2_sqrdmlsh_idx_s)
4103 DO_SVE2_RRXR(trans_SQRDMLSH_zzxz_d, gen_helper_sve2_sqrdmlsh_idx_d)
4105 #undef DO_SVE2_RRXR
4107 #define DO_SVE2_RRXR_TB(NAME, FUNC, TOP) \
4108 static bool NAME(DisasContext *s, arg_rrxr_esz *a) \
4110 return do_sve2_zzzz_data(s, a->rd, a->rn, a->rm, a->rd, \
4111 (a->index << 1) | TOP, FUNC); \
4114 DO_SVE2_RRXR_TB(trans_SQDMLALB_zzxw_s, gen_helper_sve2_sqdmlal_idx_s, false)
4115 DO_SVE2_RRXR_TB(trans_SQDMLALB_zzxw_d, gen_helper_sve2_sqdmlal_idx_d, false)
4116 DO_SVE2_RRXR_TB(trans_SQDMLALT_zzxw_s, gen_helper_sve2_sqdmlal_idx_s, true)
4117 DO_SVE2_RRXR_TB(trans_SQDMLALT_zzxw_d, gen_helper_sve2_sqdmlal_idx_d, true)
4119 DO_SVE2_RRXR_TB(trans_SQDMLSLB_zzxw_s, gen_helper_sve2_sqdmlsl_idx_s, false)
4120 DO_SVE2_RRXR_TB(trans_SQDMLSLB_zzxw_d, gen_helper_sve2_sqdmlsl_idx_d, false)
4121 DO_SVE2_RRXR_TB(trans_SQDMLSLT_zzxw_s, gen_helper_sve2_sqdmlsl_idx_s, true)
4122 DO_SVE2_RRXR_TB(trans_SQDMLSLT_zzxw_d, gen_helper_sve2_sqdmlsl_idx_d, true)
4124 DO_SVE2_RRXR_TB(trans_SMLALB_zzxw_s, gen_helper_sve2_smlal_idx_s, false)
4125 DO_SVE2_RRXR_TB(trans_SMLALB_zzxw_d, gen_helper_sve2_smlal_idx_d, false)
4126 DO_SVE2_RRXR_TB(trans_SMLALT_zzxw_s, gen_helper_sve2_smlal_idx_s, true)
4127 DO_SVE2_RRXR_TB(trans_SMLALT_zzxw_d, gen_helper_sve2_smlal_idx_d, true)
4129 DO_SVE2_RRXR_TB(trans_UMLALB_zzxw_s, gen_helper_sve2_umlal_idx_s, false)
4130 DO_SVE2_RRXR_TB(trans_UMLALB_zzxw_d, gen_helper_sve2_umlal_idx_d, false)
4131 DO_SVE2_RRXR_TB(trans_UMLALT_zzxw_s, gen_helper_sve2_umlal_idx_s, true)
4132 DO_SVE2_RRXR_TB(trans_UMLALT_zzxw_d, gen_helper_sve2_umlal_idx_d, true)
4134 DO_SVE2_RRXR_TB(trans_SMLSLB_zzxw_s, gen_helper_sve2_smlsl_idx_s, false)
4135 DO_SVE2_RRXR_TB(trans_SMLSLB_zzxw_d, gen_helper_sve2_smlsl_idx_d, false)
4136 DO_SVE2_RRXR_TB(trans_SMLSLT_zzxw_s, gen_helper_sve2_smlsl_idx_s, true)
4137 DO_SVE2_RRXR_TB(trans_SMLSLT_zzxw_d, gen_helper_sve2_smlsl_idx_d, true)
4139 DO_SVE2_RRXR_TB(trans_UMLSLB_zzxw_s, gen_helper_sve2_umlsl_idx_s, false)
4140 DO_SVE2_RRXR_TB(trans_UMLSLB_zzxw_d, gen_helper_sve2_umlsl_idx_d, false)
4141 DO_SVE2_RRXR_TB(trans_UMLSLT_zzxw_s, gen_helper_sve2_umlsl_idx_s, true)
4142 DO_SVE2_RRXR_TB(trans_UMLSLT_zzxw_d, gen_helper_sve2_umlsl_idx_d, true)
4144 #undef DO_SVE2_RRXR_TB
4146 #define DO_SVE2_RRXR_ROT(NAME, FUNC) \
4147 static bool trans_##NAME(DisasContext *s, arg_##NAME *a) \
4149 return do_sve2_zzzz_data(s, a->rd, a->rn, a->rm, a->ra, \
4150 (a->index << 2) | a->rot, FUNC); \
4153 DO_SVE2_RRXR_ROT(CMLA_zzxz_h, gen_helper_sve2_cmla_idx_h)
4154 DO_SVE2_RRXR_ROT(CMLA_zzxz_s, gen_helper_sve2_cmla_idx_s)
4156 DO_SVE2_RRXR_ROT(SQRDCMLAH_zzxz_h, gen_helper_sve2_sqrdcmlah_idx_h)
4157 DO_SVE2_RRXR_ROT(SQRDCMLAH_zzxz_s, gen_helper_sve2_sqrdcmlah_idx_s)
4159 DO_SVE2_RRXR_ROT(CDOT_zzxw_s, gen_helper_sve2_cdot_idx_s)
4160 DO_SVE2_RRXR_ROT(CDOT_zzxw_d, gen_helper_sve2_cdot_idx_d)
4162 #undef DO_SVE2_RRXR_ROT
4165 *** SVE Floating Point Multiply-Add Indexed Group
4168 static bool do_FMLA_zzxz(DisasContext *s, arg_rrxr_esz *a, bool sub)
4170 static gen_helper_gvec_4_ptr * const fns[3] = {
4171 gen_helper_gvec_fmla_idx_h,
4172 gen_helper_gvec_fmla_idx_s,
4173 gen_helper_gvec_fmla_idx_d,
4176 if (sve_access_check(s)) {
4177 unsigned vsz = vec_full_reg_size(s);
4178 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4179 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
4180 vec_full_reg_offset(s, a->rn),
4181 vec_full_reg_offset(s, a->rm),
4182 vec_full_reg_offset(s, a->ra),
4183 status, vsz, vsz, (a->index << 1) | sub,
4184 fns[a->esz - 1]);
4185 tcg_temp_free_ptr(status);
4187 return true;
4190 static bool trans_FMLA_zzxz(DisasContext *s, arg_FMLA_zzxz *a)
4192 return do_FMLA_zzxz(s, a, false);
4195 static bool trans_FMLS_zzxz(DisasContext *s, arg_FMLA_zzxz *a)
4197 return do_FMLA_zzxz(s, a, true);
4201 *** SVE Floating Point Multiply Indexed Group
4204 static bool trans_FMUL_zzx(DisasContext *s, arg_FMUL_zzx *a)
4206 static gen_helper_gvec_3_ptr * const fns[3] = {
4207 gen_helper_gvec_fmul_idx_h,
4208 gen_helper_gvec_fmul_idx_s,
4209 gen_helper_gvec_fmul_idx_d,
4212 if (sve_access_check(s)) {
4213 unsigned vsz = vec_full_reg_size(s);
4214 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4215 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
4216 vec_full_reg_offset(s, a->rn),
4217 vec_full_reg_offset(s, a->rm),
4218 status, vsz, vsz, a->index, fns[a->esz - 1]);
4219 tcg_temp_free_ptr(status);
4221 return true;
4225 *** SVE Floating Point Fast Reduction Group
4228 typedef void gen_helper_fp_reduce(TCGv_i64, TCGv_ptr, TCGv_ptr,
4229 TCGv_ptr, TCGv_i32);
4231 static void do_reduce(DisasContext *s, arg_rpr_esz *a,
4232 gen_helper_fp_reduce *fn)
4234 unsigned vsz = vec_full_reg_size(s);
4235 unsigned p2vsz = pow2ceil(vsz);
4236 TCGv_i32 t_desc = tcg_const_i32(simd_desc(vsz, vsz, p2vsz));
4237 TCGv_ptr t_zn, t_pg, status;
4238 TCGv_i64 temp;
4240 temp = tcg_temp_new_i64();
4241 t_zn = tcg_temp_new_ptr();
4242 t_pg = tcg_temp_new_ptr();
4244 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, a->rn));
4245 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->pg));
4246 status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4248 fn(temp, t_zn, t_pg, status, t_desc);
4249 tcg_temp_free_ptr(t_zn);
4250 tcg_temp_free_ptr(t_pg);
4251 tcg_temp_free_ptr(status);
4252 tcg_temp_free_i32(t_desc);
4254 write_fp_dreg(s, a->rd, temp);
4255 tcg_temp_free_i64(temp);
4258 #define DO_VPZ(NAME, name) \
4259 static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
4261 static gen_helper_fp_reduce * const fns[3] = { \
4262 gen_helper_sve_##name##_h, \
4263 gen_helper_sve_##name##_s, \
4264 gen_helper_sve_##name##_d, \
4265 }; \
4266 if (a->esz == 0) { \
4267 return false; \
4269 if (sve_access_check(s)) { \
4270 do_reduce(s, a, fns[a->esz - 1]); \
4272 return true; \
4275 DO_VPZ(FADDV, faddv)
4276 DO_VPZ(FMINNMV, fminnmv)
4277 DO_VPZ(FMAXNMV, fmaxnmv)
4278 DO_VPZ(FMINV, fminv)
4279 DO_VPZ(FMAXV, fmaxv)
4282 *** SVE Floating Point Unary Operations - Unpredicated Group
4285 static void do_zz_fp(DisasContext *s, arg_rr_esz *a, gen_helper_gvec_2_ptr *fn)
4287 unsigned vsz = vec_full_reg_size(s);
4288 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4290 tcg_gen_gvec_2_ptr(vec_full_reg_offset(s, a->rd),
4291 vec_full_reg_offset(s, a->rn),
4292 status, vsz, vsz, 0, fn);
4293 tcg_temp_free_ptr(status);
4296 static bool trans_FRECPE(DisasContext *s, arg_rr_esz *a)
4298 static gen_helper_gvec_2_ptr * const fns[3] = {
4299 gen_helper_gvec_frecpe_h,
4300 gen_helper_gvec_frecpe_s,
4301 gen_helper_gvec_frecpe_d,
4303 if (a->esz == 0) {
4304 return false;
4306 if (sve_access_check(s)) {
4307 do_zz_fp(s, a, fns[a->esz - 1]);
4309 return true;
4312 static bool trans_FRSQRTE(DisasContext *s, arg_rr_esz *a)
4314 static gen_helper_gvec_2_ptr * const fns[3] = {
4315 gen_helper_gvec_frsqrte_h,
4316 gen_helper_gvec_frsqrte_s,
4317 gen_helper_gvec_frsqrte_d,
4319 if (a->esz == 0) {
4320 return false;
4322 if (sve_access_check(s)) {
4323 do_zz_fp(s, a, fns[a->esz - 1]);
4325 return true;
4329 *** SVE Floating Point Compare with Zero Group
4332 static void do_ppz_fp(DisasContext *s, arg_rpr_esz *a,
4333 gen_helper_gvec_3_ptr *fn)
4335 unsigned vsz = vec_full_reg_size(s);
4336 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4338 tcg_gen_gvec_3_ptr(pred_full_reg_offset(s, a->rd),
4339 vec_full_reg_offset(s, a->rn),
4340 pred_full_reg_offset(s, a->pg),
4341 status, vsz, vsz, 0, fn);
4342 tcg_temp_free_ptr(status);
4345 #define DO_PPZ(NAME, name) \
4346 static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
4348 static gen_helper_gvec_3_ptr * const fns[3] = { \
4349 gen_helper_sve_##name##_h, \
4350 gen_helper_sve_##name##_s, \
4351 gen_helper_sve_##name##_d, \
4352 }; \
4353 if (a->esz == 0) { \
4354 return false; \
4356 if (sve_access_check(s)) { \
4357 do_ppz_fp(s, a, fns[a->esz - 1]); \
4359 return true; \
4362 DO_PPZ(FCMGE_ppz0, fcmge0)
4363 DO_PPZ(FCMGT_ppz0, fcmgt0)
4364 DO_PPZ(FCMLE_ppz0, fcmle0)
4365 DO_PPZ(FCMLT_ppz0, fcmlt0)
4366 DO_PPZ(FCMEQ_ppz0, fcmeq0)
4367 DO_PPZ(FCMNE_ppz0, fcmne0)
4369 #undef DO_PPZ
4372 *** SVE floating-point trig multiply-add coefficient
4375 static bool trans_FTMAD(DisasContext *s, arg_FTMAD *a)
4377 static gen_helper_gvec_3_ptr * const fns[3] = {
4378 gen_helper_sve_ftmad_h,
4379 gen_helper_sve_ftmad_s,
4380 gen_helper_sve_ftmad_d,
4383 if (a->esz == 0) {
4384 return false;
4386 if (sve_access_check(s)) {
4387 unsigned vsz = vec_full_reg_size(s);
4388 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4389 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
4390 vec_full_reg_offset(s, a->rn),
4391 vec_full_reg_offset(s, a->rm),
4392 status, vsz, vsz, a->imm, fns[a->esz - 1]);
4393 tcg_temp_free_ptr(status);
4395 return true;
4399 *** SVE Floating Point Accumulating Reduction Group
4402 static bool trans_FADDA(DisasContext *s, arg_rprr_esz *a)
4404 typedef void fadda_fn(TCGv_i64, TCGv_i64, TCGv_ptr,
4405 TCGv_ptr, TCGv_ptr, TCGv_i32);
4406 static fadda_fn * const fns[3] = {
4407 gen_helper_sve_fadda_h,
4408 gen_helper_sve_fadda_s,
4409 gen_helper_sve_fadda_d,
4411 unsigned vsz = vec_full_reg_size(s);
4412 TCGv_ptr t_rm, t_pg, t_fpst;
4413 TCGv_i64 t_val;
4414 TCGv_i32 t_desc;
4416 if (a->esz == 0) {
4417 return false;
4419 if (!sve_access_check(s)) {
4420 return true;
4423 t_val = load_esz(cpu_env, vec_reg_offset(s, a->rn, 0, a->esz), a->esz);
4424 t_rm = tcg_temp_new_ptr();
4425 t_pg = tcg_temp_new_ptr();
4426 tcg_gen_addi_ptr(t_rm, cpu_env, vec_full_reg_offset(s, a->rm));
4427 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->pg));
4428 t_fpst = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4429 t_desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
4431 fns[a->esz - 1](t_val, t_val, t_rm, t_pg, t_fpst, t_desc);
4433 tcg_temp_free_i32(t_desc);
4434 tcg_temp_free_ptr(t_fpst);
4435 tcg_temp_free_ptr(t_pg);
4436 tcg_temp_free_ptr(t_rm);
4438 write_fp_dreg(s, a->rd, t_val);
4439 tcg_temp_free_i64(t_val);
4440 return true;
4444 *** SVE Floating Point Arithmetic - Unpredicated Group
4447 static bool do_zzz_fp(DisasContext *s, arg_rrr_esz *a,
4448 gen_helper_gvec_3_ptr *fn)
4450 if (fn == NULL) {
4451 return false;
4453 if (sve_access_check(s)) {
4454 unsigned vsz = vec_full_reg_size(s);
4455 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4456 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
4457 vec_full_reg_offset(s, a->rn),
4458 vec_full_reg_offset(s, a->rm),
4459 status, vsz, vsz, 0, fn);
4460 tcg_temp_free_ptr(status);
4462 return true;
4466 #define DO_FP3(NAME, name) \
4467 static bool trans_##NAME(DisasContext *s, arg_rrr_esz *a) \
4469 static gen_helper_gvec_3_ptr * const fns[4] = { \
4470 NULL, gen_helper_gvec_##name##_h, \
4471 gen_helper_gvec_##name##_s, gen_helper_gvec_##name##_d \
4472 }; \
4473 return do_zzz_fp(s, a, fns[a->esz]); \
4476 DO_FP3(FADD_zzz, fadd)
4477 DO_FP3(FSUB_zzz, fsub)
4478 DO_FP3(FMUL_zzz, fmul)
4479 DO_FP3(FTSMUL, ftsmul)
4480 DO_FP3(FRECPS, recps)
4481 DO_FP3(FRSQRTS, rsqrts)
4483 #undef DO_FP3
4486 *** SVE Floating Point Arithmetic - Predicated Group
4489 static bool do_zpzz_fp(DisasContext *s, arg_rprr_esz *a,
4490 gen_helper_gvec_4_ptr *fn)
4492 if (fn == NULL) {
4493 return false;
4495 if (sve_access_check(s)) {
4496 unsigned vsz = vec_full_reg_size(s);
4497 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4498 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
4499 vec_full_reg_offset(s, a->rn),
4500 vec_full_reg_offset(s, a->rm),
4501 pred_full_reg_offset(s, a->pg),
4502 status, vsz, vsz, 0, fn);
4503 tcg_temp_free_ptr(status);
4505 return true;
4508 #define DO_FP3(NAME, name) \
4509 static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
4511 static gen_helper_gvec_4_ptr * const fns[4] = { \
4512 NULL, gen_helper_sve_##name##_h, \
4513 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d \
4514 }; \
4515 return do_zpzz_fp(s, a, fns[a->esz]); \
4518 DO_FP3(FADD_zpzz, fadd)
4519 DO_FP3(FSUB_zpzz, fsub)
4520 DO_FP3(FMUL_zpzz, fmul)
4521 DO_FP3(FMIN_zpzz, fmin)
4522 DO_FP3(FMAX_zpzz, fmax)
4523 DO_FP3(FMINNM_zpzz, fminnum)
4524 DO_FP3(FMAXNM_zpzz, fmaxnum)
4525 DO_FP3(FABD, fabd)
4526 DO_FP3(FSCALE, fscalbn)
4527 DO_FP3(FDIV, fdiv)
4528 DO_FP3(FMULX, fmulx)
4530 #undef DO_FP3
4532 typedef void gen_helper_sve_fp2scalar(TCGv_ptr, TCGv_ptr, TCGv_ptr,
4533 TCGv_i64, TCGv_ptr, TCGv_i32);
4535 static void do_fp_scalar(DisasContext *s, int zd, int zn, int pg, bool is_fp16,
4536 TCGv_i64 scalar, gen_helper_sve_fp2scalar *fn)
4538 unsigned vsz = vec_full_reg_size(s);
4539 TCGv_ptr t_zd, t_zn, t_pg, status;
4540 TCGv_i32 desc;
4542 t_zd = tcg_temp_new_ptr();
4543 t_zn = tcg_temp_new_ptr();
4544 t_pg = tcg_temp_new_ptr();
4545 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, zd));
4546 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, zn));
4547 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
4549 status = fpstatus_ptr(is_fp16 ? FPST_FPCR_F16 : FPST_FPCR);
4550 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
4551 fn(t_zd, t_zn, t_pg, scalar, status, desc);
4553 tcg_temp_free_i32(desc);
4554 tcg_temp_free_ptr(status);
4555 tcg_temp_free_ptr(t_pg);
4556 tcg_temp_free_ptr(t_zn);
4557 tcg_temp_free_ptr(t_zd);
4560 static void do_fp_imm(DisasContext *s, arg_rpri_esz *a, uint64_t imm,
4561 gen_helper_sve_fp2scalar *fn)
4563 TCGv_i64 temp = tcg_const_i64(imm);
4564 do_fp_scalar(s, a->rd, a->rn, a->pg, a->esz == MO_16, temp, fn);
4565 tcg_temp_free_i64(temp);
4568 #define DO_FP_IMM(NAME, name, const0, const1) \
4569 static bool trans_##NAME##_zpzi(DisasContext *s, arg_rpri_esz *a) \
4571 static gen_helper_sve_fp2scalar * const fns[3] = { \
4572 gen_helper_sve_##name##_h, \
4573 gen_helper_sve_##name##_s, \
4574 gen_helper_sve_##name##_d \
4575 }; \
4576 static uint64_t const val[3][2] = { \
4577 { float16_##const0, float16_##const1 }, \
4578 { float32_##const0, float32_##const1 }, \
4579 { float64_##const0, float64_##const1 }, \
4580 }; \
4581 if (a->esz == 0) { \
4582 return false; \
4584 if (sve_access_check(s)) { \
4585 do_fp_imm(s, a, val[a->esz - 1][a->imm], fns[a->esz - 1]); \
4587 return true; \
4590 DO_FP_IMM(FADD, fadds, half, one)
4591 DO_FP_IMM(FSUB, fsubs, half, one)
4592 DO_FP_IMM(FMUL, fmuls, half, two)
4593 DO_FP_IMM(FSUBR, fsubrs, half, one)
4594 DO_FP_IMM(FMAXNM, fmaxnms, zero, one)
4595 DO_FP_IMM(FMINNM, fminnms, zero, one)
4596 DO_FP_IMM(FMAX, fmaxs, zero, one)
4597 DO_FP_IMM(FMIN, fmins, zero, one)
4599 #undef DO_FP_IMM
4601 static bool do_fp_cmp(DisasContext *s, arg_rprr_esz *a,
4602 gen_helper_gvec_4_ptr *fn)
4604 if (fn == NULL) {
4605 return false;
4607 if (sve_access_check(s)) {
4608 unsigned vsz = vec_full_reg_size(s);
4609 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4610 tcg_gen_gvec_4_ptr(pred_full_reg_offset(s, a->rd),
4611 vec_full_reg_offset(s, a->rn),
4612 vec_full_reg_offset(s, a->rm),
4613 pred_full_reg_offset(s, a->pg),
4614 status, vsz, vsz, 0, fn);
4615 tcg_temp_free_ptr(status);
4617 return true;
4620 #define DO_FPCMP(NAME, name) \
4621 static bool trans_##NAME##_ppzz(DisasContext *s, arg_rprr_esz *a) \
4623 static gen_helper_gvec_4_ptr * const fns[4] = { \
4624 NULL, gen_helper_sve_##name##_h, \
4625 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d \
4626 }; \
4627 return do_fp_cmp(s, a, fns[a->esz]); \
4630 DO_FPCMP(FCMGE, fcmge)
4631 DO_FPCMP(FCMGT, fcmgt)
4632 DO_FPCMP(FCMEQ, fcmeq)
4633 DO_FPCMP(FCMNE, fcmne)
4634 DO_FPCMP(FCMUO, fcmuo)
4635 DO_FPCMP(FACGE, facge)
4636 DO_FPCMP(FACGT, facgt)
4638 #undef DO_FPCMP
4640 static bool trans_FCADD(DisasContext *s, arg_FCADD *a)
4642 static gen_helper_gvec_4_ptr * const fns[3] = {
4643 gen_helper_sve_fcadd_h,
4644 gen_helper_sve_fcadd_s,
4645 gen_helper_sve_fcadd_d
4648 if (a->esz == 0) {
4649 return false;
4651 if (sve_access_check(s)) {
4652 unsigned vsz = vec_full_reg_size(s);
4653 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4654 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
4655 vec_full_reg_offset(s, a->rn),
4656 vec_full_reg_offset(s, a->rm),
4657 pred_full_reg_offset(s, a->pg),
4658 status, vsz, vsz, a->rot, fns[a->esz - 1]);
4659 tcg_temp_free_ptr(status);
4661 return true;
4664 static bool do_fmla(DisasContext *s, arg_rprrr_esz *a,
4665 gen_helper_gvec_5_ptr *fn)
4667 if (a->esz == 0) {
4668 return false;
4670 if (sve_access_check(s)) {
4671 unsigned vsz = vec_full_reg_size(s);
4672 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4673 tcg_gen_gvec_5_ptr(vec_full_reg_offset(s, a->rd),
4674 vec_full_reg_offset(s, a->rn),
4675 vec_full_reg_offset(s, a->rm),
4676 vec_full_reg_offset(s, a->ra),
4677 pred_full_reg_offset(s, a->pg),
4678 status, vsz, vsz, 0, fn);
4679 tcg_temp_free_ptr(status);
4681 return true;
4684 #define DO_FMLA(NAME, name) \
4685 static bool trans_##NAME(DisasContext *s, arg_rprrr_esz *a) \
4687 static gen_helper_gvec_5_ptr * const fns[4] = { \
4688 NULL, gen_helper_sve_##name##_h, \
4689 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d \
4690 }; \
4691 return do_fmla(s, a, fns[a->esz]); \
4694 DO_FMLA(FMLA_zpzzz, fmla_zpzzz)
4695 DO_FMLA(FMLS_zpzzz, fmls_zpzzz)
4696 DO_FMLA(FNMLA_zpzzz, fnmla_zpzzz)
4697 DO_FMLA(FNMLS_zpzzz, fnmls_zpzzz)
4699 #undef DO_FMLA
4701 static bool trans_FCMLA_zpzzz(DisasContext *s, arg_FCMLA_zpzzz *a)
4703 static gen_helper_gvec_5_ptr * const fns[4] = {
4704 NULL,
4705 gen_helper_sve_fcmla_zpzzz_h,
4706 gen_helper_sve_fcmla_zpzzz_s,
4707 gen_helper_sve_fcmla_zpzzz_d,
4710 if (a->esz == 0) {
4711 return false;
4713 if (sve_access_check(s)) {
4714 unsigned vsz = vec_full_reg_size(s);
4715 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4716 tcg_gen_gvec_5_ptr(vec_full_reg_offset(s, a->rd),
4717 vec_full_reg_offset(s, a->rn),
4718 vec_full_reg_offset(s, a->rm),
4719 vec_full_reg_offset(s, a->ra),
4720 pred_full_reg_offset(s, a->pg),
4721 status, vsz, vsz, a->rot, fns[a->esz]);
4722 tcg_temp_free_ptr(status);
4724 return true;
4727 static bool trans_FCMLA_zzxz(DisasContext *s, arg_FCMLA_zzxz *a)
4729 static gen_helper_gvec_4_ptr * const fns[2] = {
4730 gen_helper_gvec_fcmlah_idx,
4731 gen_helper_gvec_fcmlas_idx,
4734 tcg_debug_assert(a->esz == 1 || a->esz == 2);
4735 tcg_debug_assert(a->rd == a->ra);
4736 if (sve_access_check(s)) {
4737 unsigned vsz = vec_full_reg_size(s);
4738 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4739 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
4740 vec_full_reg_offset(s, a->rn),
4741 vec_full_reg_offset(s, a->rm),
4742 vec_full_reg_offset(s, a->ra),
4743 status, vsz, vsz,
4744 a->index * 4 + a->rot,
4745 fns[a->esz - 1]);
4746 tcg_temp_free_ptr(status);
4748 return true;
4752 *** SVE Floating Point Unary Operations Predicated Group
4755 static bool do_zpz_ptr(DisasContext *s, int rd, int rn, int pg,
4756 bool is_fp16, gen_helper_gvec_3_ptr *fn)
4758 if (sve_access_check(s)) {
4759 unsigned vsz = vec_full_reg_size(s);
4760 TCGv_ptr status = fpstatus_ptr(is_fp16 ? FPST_FPCR_F16 : FPST_FPCR);
4761 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, rd),
4762 vec_full_reg_offset(s, rn),
4763 pred_full_reg_offset(s, pg),
4764 status, vsz, vsz, 0, fn);
4765 tcg_temp_free_ptr(status);
4767 return true;
4770 static bool trans_FCVT_sh(DisasContext *s, arg_rpr_esz *a)
4772 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_sh);
4775 static bool trans_FCVT_hs(DisasContext *s, arg_rpr_esz *a)
4777 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_hs);
4780 static bool trans_FCVT_dh(DisasContext *s, arg_rpr_esz *a)
4782 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_dh);
4785 static bool trans_FCVT_hd(DisasContext *s, arg_rpr_esz *a)
4787 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_hd);
4790 static bool trans_FCVT_ds(DisasContext *s, arg_rpr_esz *a)
4792 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_ds);
4795 static bool trans_FCVT_sd(DisasContext *s, arg_rpr_esz *a)
4797 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_sd);
4800 static bool trans_FCVTZS_hh(DisasContext *s, arg_rpr_esz *a)
4802 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzs_hh);
4805 static bool trans_FCVTZU_hh(DisasContext *s, arg_rpr_esz *a)
4807 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzu_hh);
4810 static bool trans_FCVTZS_hs(DisasContext *s, arg_rpr_esz *a)
4812 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzs_hs);
4815 static bool trans_FCVTZU_hs(DisasContext *s, arg_rpr_esz *a)
4817 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzu_hs);
4820 static bool trans_FCVTZS_hd(DisasContext *s, arg_rpr_esz *a)
4822 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzs_hd);
4825 static bool trans_FCVTZU_hd(DisasContext *s, arg_rpr_esz *a)
4827 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzu_hd);
4830 static bool trans_FCVTZS_ss(DisasContext *s, arg_rpr_esz *a)
4832 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_ss);
4835 static bool trans_FCVTZU_ss(DisasContext *s, arg_rpr_esz *a)
4837 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_ss);
4840 static bool trans_FCVTZS_sd(DisasContext *s, arg_rpr_esz *a)
4842 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_sd);
4845 static bool trans_FCVTZU_sd(DisasContext *s, arg_rpr_esz *a)
4847 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_sd);
4850 static bool trans_FCVTZS_ds(DisasContext *s, arg_rpr_esz *a)
4852 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_ds);
4855 static bool trans_FCVTZU_ds(DisasContext *s, arg_rpr_esz *a)
4857 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_ds);
4860 static bool trans_FCVTZS_dd(DisasContext *s, arg_rpr_esz *a)
4862 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_dd);
4865 static bool trans_FCVTZU_dd(DisasContext *s, arg_rpr_esz *a)
4867 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_dd);
4870 static gen_helper_gvec_3_ptr * const frint_fns[3] = {
4871 gen_helper_sve_frint_h,
4872 gen_helper_sve_frint_s,
4873 gen_helper_sve_frint_d
4876 static bool trans_FRINTI(DisasContext *s, arg_rpr_esz *a)
4878 if (a->esz == 0) {
4879 return false;
4881 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16,
4882 frint_fns[a->esz - 1]);
4885 static bool trans_FRINTX(DisasContext *s, arg_rpr_esz *a)
4887 static gen_helper_gvec_3_ptr * const fns[3] = {
4888 gen_helper_sve_frintx_h,
4889 gen_helper_sve_frintx_s,
4890 gen_helper_sve_frintx_d
4892 if (a->esz == 0) {
4893 return false;
4895 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16, fns[a->esz - 1]);
4898 static bool do_frint_mode(DisasContext *s, arg_rpr_esz *a,
4899 int mode, gen_helper_gvec_3_ptr *fn)
4901 if (sve_access_check(s)) {
4902 unsigned vsz = vec_full_reg_size(s);
4903 TCGv_i32 tmode = tcg_const_i32(mode);
4904 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4906 gen_helper_set_rmode(tmode, tmode, status);
4908 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
4909 vec_full_reg_offset(s, a->rn),
4910 pred_full_reg_offset(s, a->pg),
4911 status, vsz, vsz, 0, fn);
4913 gen_helper_set_rmode(tmode, tmode, status);
4914 tcg_temp_free_i32(tmode);
4915 tcg_temp_free_ptr(status);
4917 return true;
4920 static bool trans_FRINTN(DisasContext *s, arg_rpr_esz *a)
4922 if (a->esz == 0) {
4923 return false;
4925 return do_frint_mode(s, a, float_round_nearest_even, frint_fns[a->esz - 1]);
4928 static bool trans_FRINTP(DisasContext *s, arg_rpr_esz *a)
4930 if (a->esz == 0) {
4931 return false;
4933 return do_frint_mode(s, a, float_round_up, frint_fns[a->esz - 1]);
4936 static bool trans_FRINTM(DisasContext *s, arg_rpr_esz *a)
4938 if (a->esz == 0) {
4939 return false;
4941 return do_frint_mode(s, a, float_round_down, frint_fns[a->esz - 1]);
4944 static bool trans_FRINTZ(DisasContext *s, arg_rpr_esz *a)
4946 if (a->esz == 0) {
4947 return false;
4949 return do_frint_mode(s, a, float_round_to_zero, frint_fns[a->esz - 1]);
4952 static bool trans_FRINTA(DisasContext *s, arg_rpr_esz *a)
4954 if (a->esz == 0) {
4955 return false;
4957 return do_frint_mode(s, a, float_round_ties_away, frint_fns[a->esz - 1]);
4960 static bool trans_FRECPX(DisasContext *s, arg_rpr_esz *a)
4962 static gen_helper_gvec_3_ptr * const fns[3] = {
4963 gen_helper_sve_frecpx_h,
4964 gen_helper_sve_frecpx_s,
4965 gen_helper_sve_frecpx_d
4967 if (a->esz == 0) {
4968 return false;
4970 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16, fns[a->esz - 1]);
4973 static bool trans_FSQRT(DisasContext *s, arg_rpr_esz *a)
4975 static gen_helper_gvec_3_ptr * const fns[3] = {
4976 gen_helper_sve_fsqrt_h,
4977 gen_helper_sve_fsqrt_s,
4978 gen_helper_sve_fsqrt_d
4980 if (a->esz == 0) {
4981 return false;
4983 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16, fns[a->esz - 1]);
4986 static bool trans_SCVTF_hh(DisasContext *s, arg_rpr_esz *a)
4988 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_scvt_hh);
4991 static bool trans_SCVTF_sh(DisasContext *s, arg_rpr_esz *a)
4993 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_scvt_sh);
4996 static bool trans_SCVTF_dh(DisasContext *s, arg_rpr_esz *a)
4998 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_scvt_dh);
5001 static bool trans_SCVTF_ss(DisasContext *s, arg_rpr_esz *a)
5003 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_ss);
5006 static bool trans_SCVTF_ds(DisasContext *s, arg_rpr_esz *a)
5008 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_ds);
5011 static bool trans_SCVTF_sd(DisasContext *s, arg_rpr_esz *a)
5013 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_sd);
5016 static bool trans_SCVTF_dd(DisasContext *s, arg_rpr_esz *a)
5018 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_dd);
5021 static bool trans_UCVTF_hh(DisasContext *s, arg_rpr_esz *a)
5023 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_ucvt_hh);
5026 static bool trans_UCVTF_sh(DisasContext *s, arg_rpr_esz *a)
5028 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_ucvt_sh);
5031 static bool trans_UCVTF_dh(DisasContext *s, arg_rpr_esz *a)
5033 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_ucvt_dh);
5036 static bool trans_UCVTF_ss(DisasContext *s, arg_rpr_esz *a)
5038 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_ss);
5041 static bool trans_UCVTF_ds(DisasContext *s, arg_rpr_esz *a)
5043 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_ds);
5046 static bool trans_UCVTF_sd(DisasContext *s, arg_rpr_esz *a)
5048 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_sd);
5051 static bool trans_UCVTF_dd(DisasContext *s, arg_rpr_esz *a)
5053 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_dd);
5057 *** SVE Memory - 32-bit Gather and Unsized Contiguous Group
5060 /* Subroutine loading a vector register at VOFS of LEN bytes.
5061 * The load should begin at the address Rn + IMM.
5064 static void do_ldr(DisasContext *s, uint32_t vofs, int len, int rn, int imm)
5066 int len_align = QEMU_ALIGN_DOWN(len, 8);
5067 int len_remain = len % 8;
5068 int nparts = len / 8 + ctpop8(len_remain);
5069 int midx = get_mem_index(s);
5070 TCGv_i64 dirty_addr, clean_addr, t0, t1;
5072 dirty_addr = tcg_temp_new_i64();
5073 tcg_gen_addi_i64(dirty_addr, cpu_reg_sp(s, rn), imm);
5074 clean_addr = gen_mte_checkN(s, dirty_addr, false, rn != 31, len);
5075 tcg_temp_free_i64(dirty_addr);
5078 * Note that unpredicated load/store of vector/predicate registers
5079 * are defined as a stream of bytes, which equates to little-endian
5080 * operations on larger quantities.
5081 * Attempt to keep code expansion to a minimum by limiting the
5082 * amount of unrolling done.
5084 if (nparts <= 4) {
5085 int i;
5087 t0 = tcg_temp_new_i64();
5088 for (i = 0; i < len_align; i += 8) {
5089 tcg_gen_qemu_ld_i64(t0, clean_addr, midx, MO_LEQ);
5090 tcg_gen_st_i64(t0, cpu_env, vofs + i);
5091 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
5093 tcg_temp_free_i64(t0);
5094 } else {
5095 TCGLabel *loop = gen_new_label();
5096 TCGv_ptr tp, i = tcg_const_local_ptr(0);
5098 /* Copy the clean address into a local temp, live across the loop. */
5099 t0 = clean_addr;
5100 clean_addr = new_tmp_a64_local(s);
5101 tcg_gen_mov_i64(clean_addr, t0);
5103 gen_set_label(loop);
5105 t0 = tcg_temp_new_i64();
5106 tcg_gen_qemu_ld_i64(t0, clean_addr, midx, MO_LEQ);
5107 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
5109 tp = tcg_temp_new_ptr();
5110 tcg_gen_add_ptr(tp, cpu_env, i);
5111 tcg_gen_addi_ptr(i, i, 8);
5112 tcg_gen_st_i64(t0, tp, vofs);
5113 tcg_temp_free_ptr(tp);
5114 tcg_temp_free_i64(t0);
5116 tcg_gen_brcondi_ptr(TCG_COND_LTU, i, len_align, loop);
5117 tcg_temp_free_ptr(i);
5121 * Predicate register loads can be any multiple of 2.
5122 * Note that we still store the entire 64-bit unit into cpu_env.
5124 if (len_remain) {
5125 t0 = tcg_temp_new_i64();
5126 switch (len_remain) {
5127 case 2:
5128 case 4:
5129 case 8:
5130 tcg_gen_qemu_ld_i64(t0, clean_addr, midx,
5131 MO_LE | ctz32(len_remain));
5132 break;
5134 case 6:
5135 t1 = tcg_temp_new_i64();
5136 tcg_gen_qemu_ld_i64(t0, clean_addr, midx, MO_LEUL);
5137 tcg_gen_addi_i64(clean_addr, clean_addr, 4);
5138 tcg_gen_qemu_ld_i64(t1, clean_addr, midx, MO_LEUW);
5139 tcg_gen_deposit_i64(t0, t0, t1, 32, 32);
5140 tcg_temp_free_i64(t1);
5141 break;
5143 default:
5144 g_assert_not_reached();
5146 tcg_gen_st_i64(t0, cpu_env, vofs + len_align);
5147 tcg_temp_free_i64(t0);
5151 /* Similarly for stores. */
5152 static void do_str(DisasContext *s, uint32_t vofs, int len, int rn, int imm)
5154 int len_align = QEMU_ALIGN_DOWN(len, 8);
5155 int len_remain = len % 8;
5156 int nparts = len / 8 + ctpop8(len_remain);
5157 int midx = get_mem_index(s);
5158 TCGv_i64 dirty_addr, clean_addr, t0;
5160 dirty_addr = tcg_temp_new_i64();
5161 tcg_gen_addi_i64(dirty_addr, cpu_reg_sp(s, rn), imm);
5162 clean_addr = gen_mte_checkN(s, dirty_addr, false, rn != 31, len);
5163 tcg_temp_free_i64(dirty_addr);
5165 /* Note that unpredicated load/store of vector/predicate registers
5166 * are defined as a stream of bytes, which equates to little-endian
5167 * operations on larger quantities. There is no nice way to force
5168 * a little-endian store for aarch64_be-linux-user out of line.
5170 * Attempt to keep code expansion to a minimum by limiting the
5171 * amount of unrolling done.
5173 if (nparts <= 4) {
5174 int i;
5176 t0 = tcg_temp_new_i64();
5177 for (i = 0; i < len_align; i += 8) {
5178 tcg_gen_ld_i64(t0, cpu_env, vofs + i);
5179 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEQ);
5180 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
5182 tcg_temp_free_i64(t0);
5183 } else {
5184 TCGLabel *loop = gen_new_label();
5185 TCGv_ptr tp, i = tcg_const_local_ptr(0);
5187 /* Copy the clean address into a local temp, live across the loop. */
5188 t0 = clean_addr;
5189 clean_addr = new_tmp_a64_local(s);
5190 tcg_gen_mov_i64(clean_addr, t0);
5192 gen_set_label(loop);
5194 t0 = tcg_temp_new_i64();
5195 tp = tcg_temp_new_ptr();
5196 tcg_gen_add_ptr(tp, cpu_env, i);
5197 tcg_gen_ld_i64(t0, tp, vofs);
5198 tcg_gen_addi_ptr(i, i, 8);
5199 tcg_temp_free_ptr(tp);
5201 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEQ);
5202 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
5203 tcg_temp_free_i64(t0);
5205 tcg_gen_brcondi_ptr(TCG_COND_LTU, i, len_align, loop);
5206 tcg_temp_free_ptr(i);
5209 /* Predicate register stores can be any multiple of 2. */
5210 if (len_remain) {
5211 t0 = tcg_temp_new_i64();
5212 tcg_gen_ld_i64(t0, cpu_env, vofs + len_align);
5214 switch (len_remain) {
5215 case 2:
5216 case 4:
5217 case 8:
5218 tcg_gen_qemu_st_i64(t0, clean_addr, midx,
5219 MO_LE | ctz32(len_remain));
5220 break;
5222 case 6:
5223 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEUL);
5224 tcg_gen_addi_i64(clean_addr, clean_addr, 4);
5225 tcg_gen_shri_i64(t0, t0, 32);
5226 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEUW);
5227 break;
5229 default:
5230 g_assert_not_reached();
5232 tcg_temp_free_i64(t0);
5236 static bool trans_LDR_zri(DisasContext *s, arg_rri *a)
5238 if (sve_access_check(s)) {
5239 int size = vec_full_reg_size(s);
5240 int off = vec_full_reg_offset(s, a->rd);
5241 do_ldr(s, off, size, a->rn, a->imm * size);
5243 return true;
5246 static bool trans_LDR_pri(DisasContext *s, arg_rri *a)
5248 if (sve_access_check(s)) {
5249 int size = pred_full_reg_size(s);
5250 int off = pred_full_reg_offset(s, a->rd);
5251 do_ldr(s, off, size, a->rn, a->imm * size);
5253 return true;
5256 static bool trans_STR_zri(DisasContext *s, arg_rri *a)
5258 if (sve_access_check(s)) {
5259 int size = vec_full_reg_size(s);
5260 int off = vec_full_reg_offset(s, a->rd);
5261 do_str(s, off, size, a->rn, a->imm * size);
5263 return true;
5266 static bool trans_STR_pri(DisasContext *s, arg_rri *a)
5268 if (sve_access_check(s)) {
5269 int size = pred_full_reg_size(s);
5270 int off = pred_full_reg_offset(s, a->rd);
5271 do_str(s, off, size, a->rn, a->imm * size);
5273 return true;
5277 *** SVE Memory - Contiguous Load Group
5280 /* The memory mode of the dtype. */
5281 static const MemOp dtype_mop[16] = {
5282 MO_UB, MO_UB, MO_UB, MO_UB,
5283 MO_SL, MO_UW, MO_UW, MO_UW,
5284 MO_SW, MO_SW, MO_UL, MO_UL,
5285 MO_SB, MO_SB, MO_SB, MO_Q
5288 #define dtype_msz(x) (dtype_mop[x] & MO_SIZE)
5290 /* The vector element size of dtype. */
5291 static const uint8_t dtype_esz[16] = {
5292 0, 1, 2, 3,
5293 3, 1, 2, 3,
5294 3, 2, 2, 3,
5295 3, 2, 1, 3
5298 static void do_mem_zpa(DisasContext *s, int zt, int pg, TCGv_i64 addr,
5299 int dtype, uint32_t mte_n, bool is_write,
5300 gen_helper_gvec_mem *fn)
5302 unsigned vsz = vec_full_reg_size(s);
5303 TCGv_ptr t_pg;
5304 TCGv_i32 t_desc;
5305 int desc = 0;
5308 * For e.g. LD4, there are not enough arguments to pass all 4
5309 * registers as pointers, so encode the regno into the data field.
5310 * For consistency, do this even for LD1.
5312 if (s->mte_active[0]) {
5313 int msz = dtype_msz(dtype);
5315 desc = FIELD_DP32(desc, MTEDESC, MIDX, get_mem_index(s));
5316 desc = FIELD_DP32(desc, MTEDESC, TBI, s->tbid);
5317 desc = FIELD_DP32(desc, MTEDESC, TCMA, s->tcma);
5318 desc = FIELD_DP32(desc, MTEDESC, WRITE, is_write);
5319 desc = FIELD_DP32(desc, MTEDESC, SIZEM1, (mte_n << msz) - 1);
5320 desc <<= SVE_MTEDESC_SHIFT;
5321 } else {
5322 addr = clean_data_tbi(s, addr);
5325 desc = simd_desc(vsz, vsz, zt | desc);
5326 t_desc = tcg_const_i32(desc);
5327 t_pg = tcg_temp_new_ptr();
5329 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
5330 fn(cpu_env, t_pg, addr, t_desc);
5332 tcg_temp_free_ptr(t_pg);
5333 tcg_temp_free_i32(t_desc);
5336 /* Indexed by [mte][be][dtype][nreg] */
5337 static gen_helper_gvec_mem * const ldr_fns[2][2][16][4] = {
5338 { /* mte inactive, little-endian */
5339 { { gen_helper_sve_ld1bb_r, gen_helper_sve_ld2bb_r,
5340 gen_helper_sve_ld3bb_r, gen_helper_sve_ld4bb_r },
5341 { gen_helper_sve_ld1bhu_r, NULL, NULL, NULL },
5342 { gen_helper_sve_ld1bsu_r, NULL, NULL, NULL },
5343 { gen_helper_sve_ld1bdu_r, NULL, NULL, NULL },
5345 { gen_helper_sve_ld1sds_le_r, NULL, NULL, NULL },
5346 { gen_helper_sve_ld1hh_le_r, gen_helper_sve_ld2hh_le_r,
5347 gen_helper_sve_ld3hh_le_r, gen_helper_sve_ld4hh_le_r },
5348 { gen_helper_sve_ld1hsu_le_r, NULL, NULL, NULL },
5349 { gen_helper_sve_ld1hdu_le_r, NULL, NULL, NULL },
5351 { gen_helper_sve_ld1hds_le_r, NULL, NULL, NULL },
5352 { gen_helper_sve_ld1hss_le_r, NULL, NULL, NULL },
5353 { gen_helper_sve_ld1ss_le_r, gen_helper_sve_ld2ss_le_r,
5354 gen_helper_sve_ld3ss_le_r, gen_helper_sve_ld4ss_le_r },
5355 { gen_helper_sve_ld1sdu_le_r, NULL, NULL, NULL },
5357 { gen_helper_sve_ld1bds_r, NULL, NULL, NULL },
5358 { gen_helper_sve_ld1bss_r, NULL, NULL, NULL },
5359 { gen_helper_sve_ld1bhs_r, NULL, NULL, NULL },
5360 { gen_helper_sve_ld1dd_le_r, gen_helper_sve_ld2dd_le_r,
5361 gen_helper_sve_ld3dd_le_r, gen_helper_sve_ld4dd_le_r } },
5363 /* mte inactive, big-endian */
5364 { { gen_helper_sve_ld1bb_r, gen_helper_sve_ld2bb_r,
5365 gen_helper_sve_ld3bb_r, gen_helper_sve_ld4bb_r },
5366 { gen_helper_sve_ld1bhu_r, NULL, NULL, NULL },
5367 { gen_helper_sve_ld1bsu_r, NULL, NULL, NULL },
5368 { gen_helper_sve_ld1bdu_r, NULL, NULL, NULL },
5370 { gen_helper_sve_ld1sds_be_r, NULL, NULL, NULL },
5371 { gen_helper_sve_ld1hh_be_r, gen_helper_sve_ld2hh_be_r,
5372 gen_helper_sve_ld3hh_be_r, gen_helper_sve_ld4hh_be_r },
5373 { gen_helper_sve_ld1hsu_be_r, NULL, NULL, NULL },
5374 { gen_helper_sve_ld1hdu_be_r, NULL, NULL, NULL },
5376 { gen_helper_sve_ld1hds_be_r, NULL, NULL, NULL },
5377 { gen_helper_sve_ld1hss_be_r, NULL, NULL, NULL },
5378 { gen_helper_sve_ld1ss_be_r, gen_helper_sve_ld2ss_be_r,
5379 gen_helper_sve_ld3ss_be_r, gen_helper_sve_ld4ss_be_r },
5380 { gen_helper_sve_ld1sdu_be_r, NULL, NULL, NULL },
5382 { gen_helper_sve_ld1bds_r, NULL, NULL, NULL },
5383 { gen_helper_sve_ld1bss_r, NULL, NULL, NULL },
5384 { gen_helper_sve_ld1bhs_r, NULL, NULL, NULL },
5385 { gen_helper_sve_ld1dd_be_r, gen_helper_sve_ld2dd_be_r,
5386 gen_helper_sve_ld3dd_be_r, gen_helper_sve_ld4dd_be_r } } },
5388 { /* mte active, little-endian */
5389 { { gen_helper_sve_ld1bb_r_mte,
5390 gen_helper_sve_ld2bb_r_mte,
5391 gen_helper_sve_ld3bb_r_mte,
5392 gen_helper_sve_ld4bb_r_mte },
5393 { gen_helper_sve_ld1bhu_r_mte, NULL, NULL, NULL },
5394 { gen_helper_sve_ld1bsu_r_mte, NULL, NULL, NULL },
5395 { gen_helper_sve_ld1bdu_r_mte, NULL, NULL, NULL },
5397 { gen_helper_sve_ld1sds_le_r_mte, NULL, NULL, NULL },
5398 { gen_helper_sve_ld1hh_le_r_mte,
5399 gen_helper_sve_ld2hh_le_r_mte,
5400 gen_helper_sve_ld3hh_le_r_mte,
5401 gen_helper_sve_ld4hh_le_r_mte },
5402 { gen_helper_sve_ld1hsu_le_r_mte, NULL, NULL, NULL },
5403 { gen_helper_sve_ld1hdu_le_r_mte, NULL, NULL, NULL },
5405 { gen_helper_sve_ld1hds_le_r_mte, NULL, NULL, NULL },
5406 { gen_helper_sve_ld1hss_le_r_mte, NULL, NULL, NULL },
5407 { gen_helper_sve_ld1ss_le_r_mte,
5408 gen_helper_sve_ld2ss_le_r_mte,
5409 gen_helper_sve_ld3ss_le_r_mte,
5410 gen_helper_sve_ld4ss_le_r_mte },
5411 { gen_helper_sve_ld1sdu_le_r_mte, NULL, NULL, NULL },
5413 { gen_helper_sve_ld1bds_r_mte, NULL, NULL, NULL },
5414 { gen_helper_sve_ld1bss_r_mte, NULL, NULL, NULL },
5415 { gen_helper_sve_ld1bhs_r_mte, NULL, NULL, NULL },
5416 { gen_helper_sve_ld1dd_le_r_mte,
5417 gen_helper_sve_ld2dd_le_r_mte,
5418 gen_helper_sve_ld3dd_le_r_mte,
5419 gen_helper_sve_ld4dd_le_r_mte } },
5421 /* mte active, big-endian */
5422 { { gen_helper_sve_ld1bb_r_mte,
5423 gen_helper_sve_ld2bb_r_mte,
5424 gen_helper_sve_ld3bb_r_mte,
5425 gen_helper_sve_ld4bb_r_mte },
5426 { gen_helper_sve_ld1bhu_r_mte, NULL, NULL, NULL },
5427 { gen_helper_sve_ld1bsu_r_mte, NULL, NULL, NULL },
5428 { gen_helper_sve_ld1bdu_r_mte, NULL, NULL, NULL },
5430 { gen_helper_sve_ld1sds_be_r_mte, NULL, NULL, NULL },
5431 { gen_helper_sve_ld1hh_be_r_mte,
5432 gen_helper_sve_ld2hh_be_r_mte,
5433 gen_helper_sve_ld3hh_be_r_mte,
5434 gen_helper_sve_ld4hh_be_r_mte },
5435 { gen_helper_sve_ld1hsu_be_r_mte, NULL, NULL, NULL },
5436 { gen_helper_sve_ld1hdu_be_r_mte, NULL, NULL, NULL },
5438 { gen_helper_sve_ld1hds_be_r_mte, NULL, NULL, NULL },
5439 { gen_helper_sve_ld1hss_be_r_mte, NULL, NULL, NULL },
5440 { gen_helper_sve_ld1ss_be_r_mte,
5441 gen_helper_sve_ld2ss_be_r_mte,
5442 gen_helper_sve_ld3ss_be_r_mte,
5443 gen_helper_sve_ld4ss_be_r_mte },
5444 { gen_helper_sve_ld1sdu_be_r_mte, NULL, NULL, NULL },
5446 { gen_helper_sve_ld1bds_r_mte, NULL, NULL, NULL },
5447 { gen_helper_sve_ld1bss_r_mte, NULL, NULL, NULL },
5448 { gen_helper_sve_ld1bhs_r_mte, NULL, NULL, NULL },
5449 { gen_helper_sve_ld1dd_be_r_mte,
5450 gen_helper_sve_ld2dd_be_r_mte,
5451 gen_helper_sve_ld3dd_be_r_mte,
5452 gen_helper_sve_ld4dd_be_r_mte } } },
5455 static void do_ld_zpa(DisasContext *s, int zt, int pg,
5456 TCGv_i64 addr, int dtype, int nreg)
5458 gen_helper_gvec_mem *fn
5459 = ldr_fns[s->mte_active[0]][s->be_data == MO_BE][dtype][nreg];
5462 * While there are holes in the table, they are not
5463 * accessible via the instruction encoding.
5465 assert(fn != NULL);
5466 do_mem_zpa(s, zt, pg, addr, dtype, nreg, false, fn);
5469 static bool trans_LD_zprr(DisasContext *s, arg_rprr_load *a)
5471 if (a->rm == 31) {
5472 return false;
5474 if (sve_access_check(s)) {
5475 TCGv_i64 addr = new_tmp_a64(s);
5476 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), dtype_msz(a->dtype));
5477 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
5478 do_ld_zpa(s, a->rd, a->pg, addr, a->dtype, a->nreg);
5480 return true;
5483 static bool trans_LD_zpri(DisasContext *s, arg_rpri_load *a)
5485 if (sve_access_check(s)) {
5486 int vsz = vec_full_reg_size(s);
5487 int elements = vsz >> dtype_esz[a->dtype];
5488 TCGv_i64 addr = new_tmp_a64(s);
5490 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn),
5491 (a->imm * elements * (a->nreg + 1))
5492 << dtype_msz(a->dtype));
5493 do_ld_zpa(s, a->rd, a->pg, addr, a->dtype, a->nreg);
5495 return true;
5498 static bool trans_LDFF1_zprr(DisasContext *s, arg_rprr_load *a)
5500 static gen_helper_gvec_mem * const fns[2][2][16] = {
5501 { /* mte inactive, little-endian */
5502 { gen_helper_sve_ldff1bb_r,
5503 gen_helper_sve_ldff1bhu_r,
5504 gen_helper_sve_ldff1bsu_r,
5505 gen_helper_sve_ldff1bdu_r,
5507 gen_helper_sve_ldff1sds_le_r,
5508 gen_helper_sve_ldff1hh_le_r,
5509 gen_helper_sve_ldff1hsu_le_r,
5510 gen_helper_sve_ldff1hdu_le_r,
5512 gen_helper_sve_ldff1hds_le_r,
5513 gen_helper_sve_ldff1hss_le_r,
5514 gen_helper_sve_ldff1ss_le_r,
5515 gen_helper_sve_ldff1sdu_le_r,
5517 gen_helper_sve_ldff1bds_r,
5518 gen_helper_sve_ldff1bss_r,
5519 gen_helper_sve_ldff1bhs_r,
5520 gen_helper_sve_ldff1dd_le_r },
5522 /* mte inactive, big-endian */
5523 { gen_helper_sve_ldff1bb_r,
5524 gen_helper_sve_ldff1bhu_r,
5525 gen_helper_sve_ldff1bsu_r,
5526 gen_helper_sve_ldff1bdu_r,
5528 gen_helper_sve_ldff1sds_be_r,
5529 gen_helper_sve_ldff1hh_be_r,
5530 gen_helper_sve_ldff1hsu_be_r,
5531 gen_helper_sve_ldff1hdu_be_r,
5533 gen_helper_sve_ldff1hds_be_r,
5534 gen_helper_sve_ldff1hss_be_r,
5535 gen_helper_sve_ldff1ss_be_r,
5536 gen_helper_sve_ldff1sdu_be_r,
5538 gen_helper_sve_ldff1bds_r,
5539 gen_helper_sve_ldff1bss_r,
5540 gen_helper_sve_ldff1bhs_r,
5541 gen_helper_sve_ldff1dd_be_r } },
5543 { /* mte active, little-endian */
5544 { gen_helper_sve_ldff1bb_r_mte,
5545 gen_helper_sve_ldff1bhu_r_mte,
5546 gen_helper_sve_ldff1bsu_r_mte,
5547 gen_helper_sve_ldff1bdu_r_mte,
5549 gen_helper_sve_ldff1sds_le_r_mte,
5550 gen_helper_sve_ldff1hh_le_r_mte,
5551 gen_helper_sve_ldff1hsu_le_r_mte,
5552 gen_helper_sve_ldff1hdu_le_r_mte,
5554 gen_helper_sve_ldff1hds_le_r_mte,
5555 gen_helper_sve_ldff1hss_le_r_mte,
5556 gen_helper_sve_ldff1ss_le_r_mte,
5557 gen_helper_sve_ldff1sdu_le_r_mte,
5559 gen_helper_sve_ldff1bds_r_mte,
5560 gen_helper_sve_ldff1bss_r_mte,
5561 gen_helper_sve_ldff1bhs_r_mte,
5562 gen_helper_sve_ldff1dd_le_r_mte },
5564 /* mte active, big-endian */
5565 { gen_helper_sve_ldff1bb_r_mte,
5566 gen_helper_sve_ldff1bhu_r_mte,
5567 gen_helper_sve_ldff1bsu_r_mte,
5568 gen_helper_sve_ldff1bdu_r_mte,
5570 gen_helper_sve_ldff1sds_be_r_mte,
5571 gen_helper_sve_ldff1hh_be_r_mte,
5572 gen_helper_sve_ldff1hsu_be_r_mte,
5573 gen_helper_sve_ldff1hdu_be_r_mte,
5575 gen_helper_sve_ldff1hds_be_r_mte,
5576 gen_helper_sve_ldff1hss_be_r_mte,
5577 gen_helper_sve_ldff1ss_be_r_mte,
5578 gen_helper_sve_ldff1sdu_be_r_mte,
5580 gen_helper_sve_ldff1bds_r_mte,
5581 gen_helper_sve_ldff1bss_r_mte,
5582 gen_helper_sve_ldff1bhs_r_mte,
5583 gen_helper_sve_ldff1dd_be_r_mte } },
5586 if (sve_access_check(s)) {
5587 TCGv_i64 addr = new_tmp_a64(s);
5588 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), dtype_msz(a->dtype));
5589 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
5590 do_mem_zpa(s, a->rd, a->pg, addr, a->dtype, 1, false,
5591 fns[s->mte_active[0]][s->be_data == MO_BE][a->dtype]);
5593 return true;
5596 static bool trans_LDNF1_zpri(DisasContext *s, arg_rpri_load *a)
5598 static gen_helper_gvec_mem * const fns[2][2][16] = {
5599 { /* mte inactive, little-endian */
5600 { gen_helper_sve_ldnf1bb_r,
5601 gen_helper_sve_ldnf1bhu_r,
5602 gen_helper_sve_ldnf1bsu_r,
5603 gen_helper_sve_ldnf1bdu_r,
5605 gen_helper_sve_ldnf1sds_le_r,
5606 gen_helper_sve_ldnf1hh_le_r,
5607 gen_helper_sve_ldnf1hsu_le_r,
5608 gen_helper_sve_ldnf1hdu_le_r,
5610 gen_helper_sve_ldnf1hds_le_r,
5611 gen_helper_sve_ldnf1hss_le_r,
5612 gen_helper_sve_ldnf1ss_le_r,
5613 gen_helper_sve_ldnf1sdu_le_r,
5615 gen_helper_sve_ldnf1bds_r,
5616 gen_helper_sve_ldnf1bss_r,
5617 gen_helper_sve_ldnf1bhs_r,
5618 gen_helper_sve_ldnf1dd_le_r },
5620 /* mte inactive, big-endian */
5621 { gen_helper_sve_ldnf1bb_r,
5622 gen_helper_sve_ldnf1bhu_r,
5623 gen_helper_sve_ldnf1bsu_r,
5624 gen_helper_sve_ldnf1bdu_r,
5626 gen_helper_sve_ldnf1sds_be_r,
5627 gen_helper_sve_ldnf1hh_be_r,
5628 gen_helper_sve_ldnf1hsu_be_r,
5629 gen_helper_sve_ldnf1hdu_be_r,
5631 gen_helper_sve_ldnf1hds_be_r,
5632 gen_helper_sve_ldnf1hss_be_r,
5633 gen_helper_sve_ldnf1ss_be_r,
5634 gen_helper_sve_ldnf1sdu_be_r,
5636 gen_helper_sve_ldnf1bds_r,
5637 gen_helper_sve_ldnf1bss_r,
5638 gen_helper_sve_ldnf1bhs_r,
5639 gen_helper_sve_ldnf1dd_be_r } },
5641 { /* mte inactive, little-endian */
5642 { gen_helper_sve_ldnf1bb_r_mte,
5643 gen_helper_sve_ldnf1bhu_r_mte,
5644 gen_helper_sve_ldnf1bsu_r_mte,
5645 gen_helper_sve_ldnf1bdu_r_mte,
5647 gen_helper_sve_ldnf1sds_le_r_mte,
5648 gen_helper_sve_ldnf1hh_le_r_mte,
5649 gen_helper_sve_ldnf1hsu_le_r_mte,
5650 gen_helper_sve_ldnf1hdu_le_r_mte,
5652 gen_helper_sve_ldnf1hds_le_r_mte,
5653 gen_helper_sve_ldnf1hss_le_r_mte,
5654 gen_helper_sve_ldnf1ss_le_r_mte,
5655 gen_helper_sve_ldnf1sdu_le_r_mte,
5657 gen_helper_sve_ldnf1bds_r_mte,
5658 gen_helper_sve_ldnf1bss_r_mte,
5659 gen_helper_sve_ldnf1bhs_r_mte,
5660 gen_helper_sve_ldnf1dd_le_r_mte },
5662 /* mte inactive, big-endian */
5663 { gen_helper_sve_ldnf1bb_r_mte,
5664 gen_helper_sve_ldnf1bhu_r_mte,
5665 gen_helper_sve_ldnf1bsu_r_mte,
5666 gen_helper_sve_ldnf1bdu_r_mte,
5668 gen_helper_sve_ldnf1sds_be_r_mte,
5669 gen_helper_sve_ldnf1hh_be_r_mte,
5670 gen_helper_sve_ldnf1hsu_be_r_mte,
5671 gen_helper_sve_ldnf1hdu_be_r_mte,
5673 gen_helper_sve_ldnf1hds_be_r_mte,
5674 gen_helper_sve_ldnf1hss_be_r_mte,
5675 gen_helper_sve_ldnf1ss_be_r_mte,
5676 gen_helper_sve_ldnf1sdu_be_r_mte,
5678 gen_helper_sve_ldnf1bds_r_mte,
5679 gen_helper_sve_ldnf1bss_r_mte,
5680 gen_helper_sve_ldnf1bhs_r_mte,
5681 gen_helper_sve_ldnf1dd_be_r_mte } },
5684 if (sve_access_check(s)) {
5685 int vsz = vec_full_reg_size(s);
5686 int elements = vsz >> dtype_esz[a->dtype];
5687 int off = (a->imm * elements) << dtype_msz(a->dtype);
5688 TCGv_i64 addr = new_tmp_a64(s);
5690 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn), off);
5691 do_mem_zpa(s, a->rd, a->pg, addr, a->dtype, 1, false,
5692 fns[s->mte_active[0]][s->be_data == MO_BE][a->dtype]);
5694 return true;
5697 static void do_ldrq(DisasContext *s, int zt, int pg, TCGv_i64 addr, int dtype)
5699 unsigned vsz = vec_full_reg_size(s);
5700 TCGv_ptr t_pg;
5701 int poff;
5703 /* Load the first quadword using the normal predicated load helpers. */
5704 poff = pred_full_reg_offset(s, pg);
5705 if (vsz > 16) {
5707 * Zero-extend the first 16 bits of the predicate into a temporary.
5708 * This avoids triggering an assert making sure we don't have bits
5709 * set within a predicate beyond VQ, but we have lowered VQ to 1
5710 * for this load operation.
5712 TCGv_i64 tmp = tcg_temp_new_i64();
5713 #ifdef HOST_WORDS_BIGENDIAN
5714 poff += 6;
5715 #endif
5716 tcg_gen_ld16u_i64(tmp, cpu_env, poff);
5718 poff = offsetof(CPUARMState, vfp.preg_tmp);
5719 tcg_gen_st_i64(tmp, cpu_env, poff);
5720 tcg_temp_free_i64(tmp);
5723 t_pg = tcg_temp_new_ptr();
5724 tcg_gen_addi_ptr(t_pg, cpu_env, poff);
5726 gen_helper_gvec_mem *fn
5727 = ldr_fns[s->mte_active[0]][s->be_data == MO_BE][dtype][0];
5728 fn(cpu_env, t_pg, addr, tcg_constant_i32(simd_desc(16, 16, zt)));
5730 tcg_temp_free_ptr(t_pg);
5732 /* Replicate that first quadword. */
5733 if (vsz > 16) {
5734 int doff = vec_full_reg_offset(s, zt);
5735 tcg_gen_gvec_dup_mem(4, doff + 16, doff, vsz - 16, vsz - 16);
5739 static bool trans_LD1RQ_zprr(DisasContext *s, arg_rprr_load *a)
5741 if (a->rm == 31) {
5742 return false;
5744 if (sve_access_check(s)) {
5745 int msz = dtype_msz(a->dtype);
5746 TCGv_i64 addr = new_tmp_a64(s);
5747 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), msz);
5748 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
5749 do_ldrq(s, a->rd, a->pg, addr, a->dtype);
5751 return true;
5754 static bool trans_LD1RQ_zpri(DisasContext *s, arg_rpri_load *a)
5756 if (sve_access_check(s)) {
5757 TCGv_i64 addr = new_tmp_a64(s);
5758 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn), a->imm * 16);
5759 do_ldrq(s, a->rd, a->pg, addr, a->dtype);
5761 return true;
5764 static void do_ldro(DisasContext *s, int zt, int pg, TCGv_i64 addr, int dtype)
5766 unsigned vsz = vec_full_reg_size(s);
5767 unsigned vsz_r32;
5768 TCGv_ptr t_pg;
5769 int poff, doff;
5771 if (vsz < 32) {
5773 * Note that this UNDEFINED check comes after CheckSVEEnabled()
5774 * in the ARM pseudocode, which is the sve_access_check() done
5775 * in our caller. We should not now return false from the caller.
5777 unallocated_encoding(s);
5778 return;
5781 /* Load the first octaword using the normal predicated load helpers. */
5783 poff = pred_full_reg_offset(s, pg);
5784 if (vsz > 32) {
5786 * Zero-extend the first 32 bits of the predicate into a temporary.
5787 * This avoids triggering an assert making sure we don't have bits
5788 * set within a predicate beyond VQ, but we have lowered VQ to 2
5789 * for this load operation.
5791 TCGv_i64 tmp = tcg_temp_new_i64();
5792 #ifdef HOST_WORDS_BIGENDIAN
5793 poff += 4;
5794 #endif
5795 tcg_gen_ld32u_i64(tmp, cpu_env, poff);
5797 poff = offsetof(CPUARMState, vfp.preg_tmp);
5798 tcg_gen_st_i64(tmp, cpu_env, poff);
5799 tcg_temp_free_i64(tmp);
5802 t_pg = tcg_temp_new_ptr();
5803 tcg_gen_addi_ptr(t_pg, cpu_env, poff);
5805 gen_helper_gvec_mem *fn
5806 = ldr_fns[s->mte_active[0]][s->be_data == MO_BE][dtype][0];
5807 fn(cpu_env, t_pg, addr, tcg_constant_i32(simd_desc(32, 32, zt)));
5809 tcg_temp_free_ptr(t_pg);
5812 * Replicate that first octaword.
5813 * The replication happens in units of 32; if the full vector size
5814 * is not a multiple of 32, the final bits are zeroed.
5816 doff = vec_full_reg_offset(s, zt);
5817 vsz_r32 = QEMU_ALIGN_DOWN(vsz, 32);
5818 if (vsz >= 64) {
5819 tcg_gen_gvec_dup_mem(5, doff + 32, doff, vsz_r32 - 32, vsz_r32 - 32);
5821 vsz -= vsz_r32;
5822 if (vsz) {
5823 tcg_gen_gvec_dup_imm(MO_64, doff + vsz_r32, vsz, vsz, 0);
5827 static bool trans_LD1RO_zprr(DisasContext *s, arg_rprr_load *a)
5829 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
5830 return false;
5832 if (a->rm == 31) {
5833 return false;
5835 if (sve_access_check(s)) {
5836 TCGv_i64 addr = new_tmp_a64(s);
5837 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), dtype_msz(a->dtype));
5838 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
5839 do_ldro(s, a->rd, a->pg, addr, a->dtype);
5841 return true;
5844 static bool trans_LD1RO_zpri(DisasContext *s, arg_rpri_load *a)
5846 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
5847 return false;
5849 if (sve_access_check(s)) {
5850 TCGv_i64 addr = new_tmp_a64(s);
5851 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn), a->imm * 32);
5852 do_ldro(s, a->rd, a->pg, addr, a->dtype);
5854 return true;
5857 /* Load and broadcast element. */
5858 static bool trans_LD1R_zpri(DisasContext *s, arg_rpri_load *a)
5860 unsigned vsz = vec_full_reg_size(s);
5861 unsigned psz = pred_full_reg_size(s);
5862 unsigned esz = dtype_esz[a->dtype];
5863 unsigned msz = dtype_msz(a->dtype);
5864 TCGLabel *over;
5865 TCGv_i64 temp, clean_addr;
5867 if (!sve_access_check(s)) {
5868 return true;
5871 over = gen_new_label();
5873 /* If the guarding predicate has no bits set, no load occurs. */
5874 if (psz <= 8) {
5875 /* Reduce the pred_esz_masks value simply to reduce the
5876 * size of the code generated here.
5878 uint64_t psz_mask = MAKE_64BIT_MASK(0, psz * 8);
5879 temp = tcg_temp_new_i64();
5880 tcg_gen_ld_i64(temp, cpu_env, pred_full_reg_offset(s, a->pg));
5881 tcg_gen_andi_i64(temp, temp, pred_esz_masks[esz] & psz_mask);
5882 tcg_gen_brcondi_i64(TCG_COND_EQ, temp, 0, over);
5883 tcg_temp_free_i64(temp);
5884 } else {
5885 TCGv_i32 t32 = tcg_temp_new_i32();
5886 find_last_active(s, t32, esz, a->pg);
5887 tcg_gen_brcondi_i32(TCG_COND_LT, t32, 0, over);
5888 tcg_temp_free_i32(t32);
5891 /* Load the data. */
5892 temp = tcg_temp_new_i64();
5893 tcg_gen_addi_i64(temp, cpu_reg_sp(s, a->rn), a->imm << msz);
5894 clean_addr = gen_mte_check1(s, temp, false, true, msz);
5896 tcg_gen_qemu_ld_i64(temp, clean_addr, get_mem_index(s),
5897 finalize_memop(s, dtype_mop[a->dtype]));
5899 /* Broadcast to *all* elements. */
5900 tcg_gen_gvec_dup_i64(esz, vec_full_reg_offset(s, a->rd),
5901 vsz, vsz, temp);
5902 tcg_temp_free_i64(temp);
5904 /* Zero the inactive elements. */
5905 gen_set_label(over);
5906 return do_movz_zpz(s, a->rd, a->rd, a->pg, esz, false);
5909 static void do_st_zpa(DisasContext *s, int zt, int pg, TCGv_i64 addr,
5910 int msz, int esz, int nreg)
5912 static gen_helper_gvec_mem * const fn_single[2][2][4][4] = {
5913 { { { gen_helper_sve_st1bb_r,
5914 gen_helper_sve_st1bh_r,
5915 gen_helper_sve_st1bs_r,
5916 gen_helper_sve_st1bd_r },
5917 { NULL,
5918 gen_helper_sve_st1hh_le_r,
5919 gen_helper_sve_st1hs_le_r,
5920 gen_helper_sve_st1hd_le_r },
5921 { NULL, NULL,
5922 gen_helper_sve_st1ss_le_r,
5923 gen_helper_sve_st1sd_le_r },
5924 { NULL, NULL, NULL,
5925 gen_helper_sve_st1dd_le_r } },
5926 { { gen_helper_sve_st1bb_r,
5927 gen_helper_sve_st1bh_r,
5928 gen_helper_sve_st1bs_r,
5929 gen_helper_sve_st1bd_r },
5930 { NULL,
5931 gen_helper_sve_st1hh_be_r,
5932 gen_helper_sve_st1hs_be_r,
5933 gen_helper_sve_st1hd_be_r },
5934 { NULL, NULL,
5935 gen_helper_sve_st1ss_be_r,
5936 gen_helper_sve_st1sd_be_r },
5937 { NULL, NULL, NULL,
5938 gen_helper_sve_st1dd_be_r } } },
5940 { { { gen_helper_sve_st1bb_r_mte,
5941 gen_helper_sve_st1bh_r_mte,
5942 gen_helper_sve_st1bs_r_mte,
5943 gen_helper_sve_st1bd_r_mte },
5944 { NULL,
5945 gen_helper_sve_st1hh_le_r_mte,
5946 gen_helper_sve_st1hs_le_r_mte,
5947 gen_helper_sve_st1hd_le_r_mte },
5948 { NULL, NULL,
5949 gen_helper_sve_st1ss_le_r_mte,
5950 gen_helper_sve_st1sd_le_r_mte },
5951 { NULL, NULL, NULL,
5952 gen_helper_sve_st1dd_le_r_mte } },
5953 { { gen_helper_sve_st1bb_r_mte,
5954 gen_helper_sve_st1bh_r_mte,
5955 gen_helper_sve_st1bs_r_mte,
5956 gen_helper_sve_st1bd_r_mte },
5957 { NULL,
5958 gen_helper_sve_st1hh_be_r_mte,
5959 gen_helper_sve_st1hs_be_r_mte,
5960 gen_helper_sve_st1hd_be_r_mte },
5961 { NULL, NULL,
5962 gen_helper_sve_st1ss_be_r_mte,
5963 gen_helper_sve_st1sd_be_r_mte },
5964 { NULL, NULL, NULL,
5965 gen_helper_sve_st1dd_be_r_mte } } },
5967 static gen_helper_gvec_mem * const fn_multiple[2][2][3][4] = {
5968 { { { gen_helper_sve_st2bb_r,
5969 gen_helper_sve_st2hh_le_r,
5970 gen_helper_sve_st2ss_le_r,
5971 gen_helper_sve_st2dd_le_r },
5972 { gen_helper_sve_st3bb_r,
5973 gen_helper_sve_st3hh_le_r,
5974 gen_helper_sve_st3ss_le_r,
5975 gen_helper_sve_st3dd_le_r },
5976 { gen_helper_sve_st4bb_r,
5977 gen_helper_sve_st4hh_le_r,
5978 gen_helper_sve_st4ss_le_r,
5979 gen_helper_sve_st4dd_le_r } },
5980 { { gen_helper_sve_st2bb_r,
5981 gen_helper_sve_st2hh_be_r,
5982 gen_helper_sve_st2ss_be_r,
5983 gen_helper_sve_st2dd_be_r },
5984 { gen_helper_sve_st3bb_r,
5985 gen_helper_sve_st3hh_be_r,
5986 gen_helper_sve_st3ss_be_r,
5987 gen_helper_sve_st3dd_be_r },
5988 { gen_helper_sve_st4bb_r,
5989 gen_helper_sve_st4hh_be_r,
5990 gen_helper_sve_st4ss_be_r,
5991 gen_helper_sve_st4dd_be_r } } },
5992 { { { gen_helper_sve_st2bb_r_mte,
5993 gen_helper_sve_st2hh_le_r_mte,
5994 gen_helper_sve_st2ss_le_r_mte,
5995 gen_helper_sve_st2dd_le_r_mte },
5996 { gen_helper_sve_st3bb_r_mte,
5997 gen_helper_sve_st3hh_le_r_mte,
5998 gen_helper_sve_st3ss_le_r_mte,
5999 gen_helper_sve_st3dd_le_r_mte },
6000 { gen_helper_sve_st4bb_r_mte,
6001 gen_helper_sve_st4hh_le_r_mte,
6002 gen_helper_sve_st4ss_le_r_mte,
6003 gen_helper_sve_st4dd_le_r_mte } },
6004 { { gen_helper_sve_st2bb_r_mte,
6005 gen_helper_sve_st2hh_be_r_mte,
6006 gen_helper_sve_st2ss_be_r_mte,
6007 gen_helper_sve_st2dd_be_r_mte },
6008 { gen_helper_sve_st3bb_r_mte,
6009 gen_helper_sve_st3hh_be_r_mte,
6010 gen_helper_sve_st3ss_be_r_mte,
6011 gen_helper_sve_st3dd_be_r_mte },
6012 { gen_helper_sve_st4bb_r_mte,
6013 gen_helper_sve_st4hh_be_r_mte,
6014 gen_helper_sve_st4ss_be_r_mte,
6015 gen_helper_sve_st4dd_be_r_mte } } },
6017 gen_helper_gvec_mem *fn;
6018 int be = s->be_data == MO_BE;
6020 if (nreg == 0) {
6021 /* ST1 */
6022 fn = fn_single[s->mte_active[0]][be][msz][esz];
6023 nreg = 1;
6024 } else {
6025 /* ST2, ST3, ST4 -- msz == esz, enforced by encoding */
6026 assert(msz == esz);
6027 fn = fn_multiple[s->mte_active[0]][be][nreg - 1][msz];
6029 assert(fn != NULL);
6030 do_mem_zpa(s, zt, pg, addr, msz_dtype(s, msz), nreg, true, fn);
6033 static bool trans_ST_zprr(DisasContext *s, arg_rprr_store *a)
6035 if (a->rm == 31 || a->msz > a->esz) {
6036 return false;
6038 if (sve_access_check(s)) {
6039 TCGv_i64 addr = new_tmp_a64(s);
6040 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), a->msz);
6041 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
6042 do_st_zpa(s, a->rd, a->pg, addr, a->msz, a->esz, a->nreg);
6044 return true;
6047 static bool trans_ST_zpri(DisasContext *s, arg_rpri_store *a)
6049 if (a->msz > a->esz) {
6050 return false;
6052 if (sve_access_check(s)) {
6053 int vsz = vec_full_reg_size(s);
6054 int elements = vsz >> a->esz;
6055 TCGv_i64 addr = new_tmp_a64(s);
6057 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn),
6058 (a->imm * elements * (a->nreg + 1)) << a->msz);
6059 do_st_zpa(s, a->rd, a->pg, addr, a->msz, a->esz, a->nreg);
6061 return true;
6065 *** SVE gather loads / scatter stores
6068 static void do_mem_zpz(DisasContext *s, int zt, int pg, int zm,
6069 int scale, TCGv_i64 scalar, int msz, bool is_write,
6070 gen_helper_gvec_mem_scatter *fn)
6072 unsigned vsz = vec_full_reg_size(s);
6073 TCGv_ptr t_zm = tcg_temp_new_ptr();
6074 TCGv_ptr t_pg = tcg_temp_new_ptr();
6075 TCGv_ptr t_zt = tcg_temp_new_ptr();
6076 TCGv_i32 t_desc;
6077 int desc = 0;
6079 if (s->mte_active[0]) {
6080 desc = FIELD_DP32(desc, MTEDESC, MIDX, get_mem_index(s));
6081 desc = FIELD_DP32(desc, MTEDESC, TBI, s->tbid);
6082 desc = FIELD_DP32(desc, MTEDESC, TCMA, s->tcma);
6083 desc = FIELD_DP32(desc, MTEDESC, WRITE, is_write);
6084 desc = FIELD_DP32(desc, MTEDESC, SIZEM1, (1 << msz) - 1);
6085 desc <<= SVE_MTEDESC_SHIFT;
6087 desc = simd_desc(vsz, vsz, desc | scale);
6088 t_desc = tcg_const_i32(desc);
6090 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
6091 tcg_gen_addi_ptr(t_zm, cpu_env, vec_full_reg_offset(s, zm));
6092 tcg_gen_addi_ptr(t_zt, cpu_env, vec_full_reg_offset(s, zt));
6093 fn(cpu_env, t_zt, t_pg, t_zm, scalar, t_desc);
6095 tcg_temp_free_ptr(t_zt);
6096 tcg_temp_free_ptr(t_zm);
6097 tcg_temp_free_ptr(t_pg);
6098 tcg_temp_free_i32(t_desc);
6101 /* Indexed by [mte][be][ff][xs][u][msz]. */
6102 static gen_helper_gvec_mem_scatter * const
6103 gather_load_fn32[2][2][2][2][2][3] = {
6104 { /* MTE Inactive */
6105 { /* Little-endian */
6106 { { { gen_helper_sve_ldbss_zsu,
6107 gen_helper_sve_ldhss_le_zsu,
6108 NULL, },
6109 { gen_helper_sve_ldbsu_zsu,
6110 gen_helper_sve_ldhsu_le_zsu,
6111 gen_helper_sve_ldss_le_zsu, } },
6112 { { gen_helper_sve_ldbss_zss,
6113 gen_helper_sve_ldhss_le_zss,
6114 NULL, },
6115 { gen_helper_sve_ldbsu_zss,
6116 gen_helper_sve_ldhsu_le_zss,
6117 gen_helper_sve_ldss_le_zss, } } },
6119 /* First-fault */
6120 { { { gen_helper_sve_ldffbss_zsu,
6121 gen_helper_sve_ldffhss_le_zsu,
6122 NULL, },
6123 { gen_helper_sve_ldffbsu_zsu,
6124 gen_helper_sve_ldffhsu_le_zsu,
6125 gen_helper_sve_ldffss_le_zsu, } },
6126 { { gen_helper_sve_ldffbss_zss,
6127 gen_helper_sve_ldffhss_le_zss,
6128 NULL, },
6129 { gen_helper_sve_ldffbsu_zss,
6130 gen_helper_sve_ldffhsu_le_zss,
6131 gen_helper_sve_ldffss_le_zss, } } } },
6133 { /* Big-endian */
6134 { { { gen_helper_sve_ldbss_zsu,
6135 gen_helper_sve_ldhss_be_zsu,
6136 NULL, },
6137 { gen_helper_sve_ldbsu_zsu,
6138 gen_helper_sve_ldhsu_be_zsu,
6139 gen_helper_sve_ldss_be_zsu, } },
6140 { { gen_helper_sve_ldbss_zss,
6141 gen_helper_sve_ldhss_be_zss,
6142 NULL, },
6143 { gen_helper_sve_ldbsu_zss,
6144 gen_helper_sve_ldhsu_be_zss,
6145 gen_helper_sve_ldss_be_zss, } } },
6147 /* First-fault */
6148 { { { gen_helper_sve_ldffbss_zsu,
6149 gen_helper_sve_ldffhss_be_zsu,
6150 NULL, },
6151 { gen_helper_sve_ldffbsu_zsu,
6152 gen_helper_sve_ldffhsu_be_zsu,
6153 gen_helper_sve_ldffss_be_zsu, } },
6154 { { gen_helper_sve_ldffbss_zss,
6155 gen_helper_sve_ldffhss_be_zss,
6156 NULL, },
6157 { gen_helper_sve_ldffbsu_zss,
6158 gen_helper_sve_ldffhsu_be_zss,
6159 gen_helper_sve_ldffss_be_zss, } } } } },
6160 { /* MTE Active */
6161 { /* Little-endian */
6162 { { { gen_helper_sve_ldbss_zsu_mte,
6163 gen_helper_sve_ldhss_le_zsu_mte,
6164 NULL, },
6165 { gen_helper_sve_ldbsu_zsu_mte,
6166 gen_helper_sve_ldhsu_le_zsu_mte,
6167 gen_helper_sve_ldss_le_zsu_mte, } },
6168 { { gen_helper_sve_ldbss_zss_mte,
6169 gen_helper_sve_ldhss_le_zss_mte,
6170 NULL, },
6171 { gen_helper_sve_ldbsu_zss_mte,
6172 gen_helper_sve_ldhsu_le_zss_mte,
6173 gen_helper_sve_ldss_le_zss_mte, } } },
6175 /* First-fault */
6176 { { { gen_helper_sve_ldffbss_zsu_mte,
6177 gen_helper_sve_ldffhss_le_zsu_mte,
6178 NULL, },
6179 { gen_helper_sve_ldffbsu_zsu_mte,
6180 gen_helper_sve_ldffhsu_le_zsu_mte,
6181 gen_helper_sve_ldffss_le_zsu_mte, } },
6182 { { gen_helper_sve_ldffbss_zss_mte,
6183 gen_helper_sve_ldffhss_le_zss_mte,
6184 NULL, },
6185 { gen_helper_sve_ldffbsu_zss_mte,
6186 gen_helper_sve_ldffhsu_le_zss_mte,
6187 gen_helper_sve_ldffss_le_zss_mte, } } } },
6189 { /* Big-endian */
6190 { { { gen_helper_sve_ldbss_zsu_mte,
6191 gen_helper_sve_ldhss_be_zsu_mte,
6192 NULL, },
6193 { gen_helper_sve_ldbsu_zsu_mte,
6194 gen_helper_sve_ldhsu_be_zsu_mte,
6195 gen_helper_sve_ldss_be_zsu_mte, } },
6196 { { gen_helper_sve_ldbss_zss_mte,
6197 gen_helper_sve_ldhss_be_zss_mte,
6198 NULL, },
6199 { gen_helper_sve_ldbsu_zss_mte,
6200 gen_helper_sve_ldhsu_be_zss_mte,
6201 gen_helper_sve_ldss_be_zss_mte, } } },
6203 /* First-fault */
6204 { { { gen_helper_sve_ldffbss_zsu_mte,
6205 gen_helper_sve_ldffhss_be_zsu_mte,
6206 NULL, },
6207 { gen_helper_sve_ldffbsu_zsu_mte,
6208 gen_helper_sve_ldffhsu_be_zsu_mte,
6209 gen_helper_sve_ldffss_be_zsu_mte, } },
6210 { { gen_helper_sve_ldffbss_zss_mte,
6211 gen_helper_sve_ldffhss_be_zss_mte,
6212 NULL, },
6213 { gen_helper_sve_ldffbsu_zss_mte,
6214 gen_helper_sve_ldffhsu_be_zss_mte,
6215 gen_helper_sve_ldffss_be_zss_mte, } } } } },
6218 /* Note that we overload xs=2 to indicate 64-bit offset. */
6219 static gen_helper_gvec_mem_scatter * const
6220 gather_load_fn64[2][2][2][3][2][4] = {
6221 { /* MTE Inactive */
6222 { /* Little-endian */
6223 { { { gen_helper_sve_ldbds_zsu,
6224 gen_helper_sve_ldhds_le_zsu,
6225 gen_helper_sve_ldsds_le_zsu,
6226 NULL, },
6227 { gen_helper_sve_ldbdu_zsu,
6228 gen_helper_sve_ldhdu_le_zsu,
6229 gen_helper_sve_ldsdu_le_zsu,
6230 gen_helper_sve_lddd_le_zsu, } },
6231 { { gen_helper_sve_ldbds_zss,
6232 gen_helper_sve_ldhds_le_zss,
6233 gen_helper_sve_ldsds_le_zss,
6234 NULL, },
6235 { gen_helper_sve_ldbdu_zss,
6236 gen_helper_sve_ldhdu_le_zss,
6237 gen_helper_sve_ldsdu_le_zss,
6238 gen_helper_sve_lddd_le_zss, } },
6239 { { gen_helper_sve_ldbds_zd,
6240 gen_helper_sve_ldhds_le_zd,
6241 gen_helper_sve_ldsds_le_zd,
6242 NULL, },
6243 { gen_helper_sve_ldbdu_zd,
6244 gen_helper_sve_ldhdu_le_zd,
6245 gen_helper_sve_ldsdu_le_zd,
6246 gen_helper_sve_lddd_le_zd, } } },
6248 /* First-fault */
6249 { { { gen_helper_sve_ldffbds_zsu,
6250 gen_helper_sve_ldffhds_le_zsu,
6251 gen_helper_sve_ldffsds_le_zsu,
6252 NULL, },
6253 { gen_helper_sve_ldffbdu_zsu,
6254 gen_helper_sve_ldffhdu_le_zsu,
6255 gen_helper_sve_ldffsdu_le_zsu,
6256 gen_helper_sve_ldffdd_le_zsu, } },
6257 { { gen_helper_sve_ldffbds_zss,
6258 gen_helper_sve_ldffhds_le_zss,
6259 gen_helper_sve_ldffsds_le_zss,
6260 NULL, },
6261 { gen_helper_sve_ldffbdu_zss,
6262 gen_helper_sve_ldffhdu_le_zss,
6263 gen_helper_sve_ldffsdu_le_zss,
6264 gen_helper_sve_ldffdd_le_zss, } },
6265 { { gen_helper_sve_ldffbds_zd,
6266 gen_helper_sve_ldffhds_le_zd,
6267 gen_helper_sve_ldffsds_le_zd,
6268 NULL, },
6269 { gen_helper_sve_ldffbdu_zd,
6270 gen_helper_sve_ldffhdu_le_zd,
6271 gen_helper_sve_ldffsdu_le_zd,
6272 gen_helper_sve_ldffdd_le_zd, } } } },
6273 { /* Big-endian */
6274 { { { gen_helper_sve_ldbds_zsu,
6275 gen_helper_sve_ldhds_be_zsu,
6276 gen_helper_sve_ldsds_be_zsu,
6277 NULL, },
6278 { gen_helper_sve_ldbdu_zsu,
6279 gen_helper_sve_ldhdu_be_zsu,
6280 gen_helper_sve_ldsdu_be_zsu,
6281 gen_helper_sve_lddd_be_zsu, } },
6282 { { gen_helper_sve_ldbds_zss,
6283 gen_helper_sve_ldhds_be_zss,
6284 gen_helper_sve_ldsds_be_zss,
6285 NULL, },
6286 { gen_helper_sve_ldbdu_zss,
6287 gen_helper_sve_ldhdu_be_zss,
6288 gen_helper_sve_ldsdu_be_zss,
6289 gen_helper_sve_lddd_be_zss, } },
6290 { { gen_helper_sve_ldbds_zd,
6291 gen_helper_sve_ldhds_be_zd,
6292 gen_helper_sve_ldsds_be_zd,
6293 NULL, },
6294 { gen_helper_sve_ldbdu_zd,
6295 gen_helper_sve_ldhdu_be_zd,
6296 gen_helper_sve_ldsdu_be_zd,
6297 gen_helper_sve_lddd_be_zd, } } },
6299 /* First-fault */
6300 { { { gen_helper_sve_ldffbds_zsu,
6301 gen_helper_sve_ldffhds_be_zsu,
6302 gen_helper_sve_ldffsds_be_zsu,
6303 NULL, },
6304 { gen_helper_sve_ldffbdu_zsu,
6305 gen_helper_sve_ldffhdu_be_zsu,
6306 gen_helper_sve_ldffsdu_be_zsu,
6307 gen_helper_sve_ldffdd_be_zsu, } },
6308 { { gen_helper_sve_ldffbds_zss,
6309 gen_helper_sve_ldffhds_be_zss,
6310 gen_helper_sve_ldffsds_be_zss,
6311 NULL, },
6312 { gen_helper_sve_ldffbdu_zss,
6313 gen_helper_sve_ldffhdu_be_zss,
6314 gen_helper_sve_ldffsdu_be_zss,
6315 gen_helper_sve_ldffdd_be_zss, } },
6316 { { gen_helper_sve_ldffbds_zd,
6317 gen_helper_sve_ldffhds_be_zd,
6318 gen_helper_sve_ldffsds_be_zd,
6319 NULL, },
6320 { gen_helper_sve_ldffbdu_zd,
6321 gen_helper_sve_ldffhdu_be_zd,
6322 gen_helper_sve_ldffsdu_be_zd,
6323 gen_helper_sve_ldffdd_be_zd, } } } } },
6324 { /* MTE Active */
6325 { /* Little-endian */
6326 { { { gen_helper_sve_ldbds_zsu_mte,
6327 gen_helper_sve_ldhds_le_zsu_mte,
6328 gen_helper_sve_ldsds_le_zsu_mte,
6329 NULL, },
6330 { gen_helper_sve_ldbdu_zsu_mte,
6331 gen_helper_sve_ldhdu_le_zsu_mte,
6332 gen_helper_sve_ldsdu_le_zsu_mte,
6333 gen_helper_sve_lddd_le_zsu_mte, } },
6334 { { gen_helper_sve_ldbds_zss_mte,
6335 gen_helper_sve_ldhds_le_zss_mte,
6336 gen_helper_sve_ldsds_le_zss_mte,
6337 NULL, },
6338 { gen_helper_sve_ldbdu_zss_mte,
6339 gen_helper_sve_ldhdu_le_zss_mte,
6340 gen_helper_sve_ldsdu_le_zss_mte,
6341 gen_helper_sve_lddd_le_zss_mte, } },
6342 { { gen_helper_sve_ldbds_zd_mte,
6343 gen_helper_sve_ldhds_le_zd_mte,
6344 gen_helper_sve_ldsds_le_zd_mte,
6345 NULL, },
6346 { gen_helper_sve_ldbdu_zd_mte,
6347 gen_helper_sve_ldhdu_le_zd_mte,
6348 gen_helper_sve_ldsdu_le_zd_mte,
6349 gen_helper_sve_lddd_le_zd_mte, } } },
6351 /* First-fault */
6352 { { { gen_helper_sve_ldffbds_zsu_mte,
6353 gen_helper_sve_ldffhds_le_zsu_mte,
6354 gen_helper_sve_ldffsds_le_zsu_mte,
6355 NULL, },
6356 { gen_helper_sve_ldffbdu_zsu_mte,
6357 gen_helper_sve_ldffhdu_le_zsu_mte,
6358 gen_helper_sve_ldffsdu_le_zsu_mte,
6359 gen_helper_sve_ldffdd_le_zsu_mte, } },
6360 { { gen_helper_sve_ldffbds_zss_mte,
6361 gen_helper_sve_ldffhds_le_zss_mte,
6362 gen_helper_sve_ldffsds_le_zss_mte,
6363 NULL, },
6364 { gen_helper_sve_ldffbdu_zss_mte,
6365 gen_helper_sve_ldffhdu_le_zss_mte,
6366 gen_helper_sve_ldffsdu_le_zss_mte,
6367 gen_helper_sve_ldffdd_le_zss_mte, } },
6368 { { gen_helper_sve_ldffbds_zd_mte,
6369 gen_helper_sve_ldffhds_le_zd_mte,
6370 gen_helper_sve_ldffsds_le_zd_mte,
6371 NULL, },
6372 { gen_helper_sve_ldffbdu_zd_mte,
6373 gen_helper_sve_ldffhdu_le_zd_mte,
6374 gen_helper_sve_ldffsdu_le_zd_mte,
6375 gen_helper_sve_ldffdd_le_zd_mte, } } } },
6376 { /* Big-endian */
6377 { { { gen_helper_sve_ldbds_zsu_mte,
6378 gen_helper_sve_ldhds_be_zsu_mte,
6379 gen_helper_sve_ldsds_be_zsu_mte,
6380 NULL, },
6381 { gen_helper_sve_ldbdu_zsu_mte,
6382 gen_helper_sve_ldhdu_be_zsu_mte,
6383 gen_helper_sve_ldsdu_be_zsu_mte,
6384 gen_helper_sve_lddd_be_zsu_mte, } },
6385 { { gen_helper_sve_ldbds_zss_mte,
6386 gen_helper_sve_ldhds_be_zss_mte,
6387 gen_helper_sve_ldsds_be_zss_mte,
6388 NULL, },
6389 { gen_helper_sve_ldbdu_zss_mte,
6390 gen_helper_sve_ldhdu_be_zss_mte,
6391 gen_helper_sve_ldsdu_be_zss_mte,
6392 gen_helper_sve_lddd_be_zss_mte, } },
6393 { { gen_helper_sve_ldbds_zd_mte,
6394 gen_helper_sve_ldhds_be_zd_mte,
6395 gen_helper_sve_ldsds_be_zd_mte,
6396 NULL, },
6397 { gen_helper_sve_ldbdu_zd_mte,
6398 gen_helper_sve_ldhdu_be_zd_mte,
6399 gen_helper_sve_ldsdu_be_zd_mte,
6400 gen_helper_sve_lddd_be_zd_mte, } } },
6402 /* First-fault */
6403 { { { gen_helper_sve_ldffbds_zsu_mte,
6404 gen_helper_sve_ldffhds_be_zsu_mte,
6405 gen_helper_sve_ldffsds_be_zsu_mte,
6406 NULL, },
6407 { gen_helper_sve_ldffbdu_zsu_mte,
6408 gen_helper_sve_ldffhdu_be_zsu_mte,
6409 gen_helper_sve_ldffsdu_be_zsu_mte,
6410 gen_helper_sve_ldffdd_be_zsu_mte, } },
6411 { { gen_helper_sve_ldffbds_zss_mte,
6412 gen_helper_sve_ldffhds_be_zss_mte,
6413 gen_helper_sve_ldffsds_be_zss_mte,
6414 NULL, },
6415 { gen_helper_sve_ldffbdu_zss_mte,
6416 gen_helper_sve_ldffhdu_be_zss_mte,
6417 gen_helper_sve_ldffsdu_be_zss_mte,
6418 gen_helper_sve_ldffdd_be_zss_mte, } },
6419 { { gen_helper_sve_ldffbds_zd_mte,
6420 gen_helper_sve_ldffhds_be_zd_mte,
6421 gen_helper_sve_ldffsds_be_zd_mte,
6422 NULL, },
6423 { gen_helper_sve_ldffbdu_zd_mte,
6424 gen_helper_sve_ldffhdu_be_zd_mte,
6425 gen_helper_sve_ldffsdu_be_zd_mte,
6426 gen_helper_sve_ldffdd_be_zd_mte, } } } } },
6429 static bool trans_LD1_zprz(DisasContext *s, arg_LD1_zprz *a)
6431 gen_helper_gvec_mem_scatter *fn = NULL;
6432 bool be = s->be_data == MO_BE;
6433 bool mte = s->mte_active[0];
6435 if (!sve_access_check(s)) {
6436 return true;
6439 switch (a->esz) {
6440 case MO_32:
6441 fn = gather_load_fn32[mte][be][a->ff][a->xs][a->u][a->msz];
6442 break;
6443 case MO_64:
6444 fn = gather_load_fn64[mte][be][a->ff][a->xs][a->u][a->msz];
6445 break;
6447 assert(fn != NULL);
6449 do_mem_zpz(s, a->rd, a->pg, a->rm, a->scale * a->msz,
6450 cpu_reg_sp(s, a->rn), a->msz, false, fn);
6451 return true;
6454 static bool trans_LD1_zpiz(DisasContext *s, arg_LD1_zpiz *a)
6456 gen_helper_gvec_mem_scatter *fn = NULL;
6457 bool be = s->be_data == MO_BE;
6458 bool mte = s->mte_active[0];
6459 TCGv_i64 imm;
6461 if (a->esz < a->msz || (a->esz == a->msz && !a->u)) {
6462 return false;
6464 if (!sve_access_check(s)) {
6465 return true;
6468 switch (a->esz) {
6469 case MO_32:
6470 fn = gather_load_fn32[mte][be][a->ff][0][a->u][a->msz];
6471 break;
6472 case MO_64:
6473 fn = gather_load_fn64[mte][be][a->ff][2][a->u][a->msz];
6474 break;
6476 assert(fn != NULL);
6478 /* Treat LD1_zpiz (zn[x] + imm) the same way as LD1_zprz (rn + zm[x])
6479 * by loading the immediate into the scalar parameter.
6481 imm = tcg_const_i64(a->imm << a->msz);
6482 do_mem_zpz(s, a->rd, a->pg, a->rn, 0, imm, a->msz, false, fn);
6483 tcg_temp_free_i64(imm);
6484 return true;
6487 static bool trans_LDNT1_zprz(DisasContext *s, arg_LD1_zprz *a)
6489 if (!dc_isar_feature(aa64_sve2, s)) {
6490 return false;
6492 return trans_LD1_zprz(s, a);
6495 /* Indexed by [mte][be][xs][msz]. */
6496 static gen_helper_gvec_mem_scatter * const scatter_store_fn32[2][2][2][3] = {
6497 { /* MTE Inactive */
6498 { /* Little-endian */
6499 { gen_helper_sve_stbs_zsu,
6500 gen_helper_sve_sths_le_zsu,
6501 gen_helper_sve_stss_le_zsu, },
6502 { gen_helper_sve_stbs_zss,
6503 gen_helper_sve_sths_le_zss,
6504 gen_helper_sve_stss_le_zss, } },
6505 { /* Big-endian */
6506 { gen_helper_sve_stbs_zsu,
6507 gen_helper_sve_sths_be_zsu,
6508 gen_helper_sve_stss_be_zsu, },
6509 { gen_helper_sve_stbs_zss,
6510 gen_helper_sve_sths_be_zss,
6511 gen_helper_sve_stss_be_zss, } } },
6512 { /* MTE Active */
6513 { /* Little-endian */
6514 { gen_helper_sve_stbs_zsu_mte,
6515 gen_helper_sve_sths_le_zsu_mte,
6516 gen_helper_sve_stss_le_zsu_mte, },
6517 { gen_helper_sve_stbs_zss_mte,
6518 gen_helper_sve_sths_le_zss_mte,
6519 gen_helper_sve_stss_le_zss_mte, } },
6520 { /* Big-endian */
6521 { gen_helper_sve_stbs_zsu_mte,
6522 gen_helper_sve_sths_be_zsu_mte,
6523 gen_helper_sve_stss_be_zsu_mte, },
6524 { gen_helper_sve_stbs_zss_mte,
6525 gen_helper_sve_sths_be_zss_mte,
6526 gen_helper_sve_stss_be_zss_mte, } } },
6529 /* Note that we overload xs=2 to indicate 64-bit offset. */
6530 static gen_helper_gvec_mem_scatter * const scatter_store_fn64[2][2][3][4] = {
6531 { /* MTE Inactive */
6532 { /* Little-endian */
6533 { gen_helper_sve_stbd_zsu,
6534 gen_helper_sve_sthd_le_zsu,
6535 gen_helper_sve_stsd_le_zsu,
6536 gen_helper_sve_stdd_le_zsu, },
6537 { gen_helper_sve_stbd_zss,
6538 gen_helper_sve_sthd_le_zss,
6539 gen_helper_sve_stsd_le_zss,
6540 gen_helper_sve_stdd_le_zss, },
6541 { gen_helper_sve_stbd_zd,
6542 gen_helper_sve_sthd_le_zd,
6543 gen_helper_sve_stsd_le_zd,
6544 gen_helper_sve_stdd_le_zd, } },
6545 { /* Big-endian */
6546 { gen_helper_sve_stbd_zsu,
6547 gen_helper_sve_sthd_be_zsu,
6548 gen_helper_sve_stsd_be_zsu,
6549 gen_helper_sve_stdd_be_zsu, },
6550 { gen_helper_sve_stbd_zss,
6551 gen_helper_sve_sthd_be_zss,
6552 gen_helper_sve_stsd_be_zss,
6553 gen_helper_sve_stdd_be_zss, },
6554 { gen_helper_sve_stbd_zd,
6555 gen_helper_sve_sthd_be_zd,
6556 gen_helper_sve_stsd_be_zd,
6557 gen_helper_sve_stdd_be_zd, } } },
6558 { /* MTE Inactive */
6559 { /* Little-endian */
6560 { gen_helper_sve_stbd_zsu_mte,
6561 gen_helper_sve_sthd_le_zsu_mte,
6562 gen_helper_sve_stsd_le_zsu_mte,
6563 gen_helper_sve_stdd_le_zsu_mte, },
6564 { gen_helper_sve_stbd_zss_mte,
6565 gen_helper_sve_sthd_le_zss_mte,
6566 gen_helper_sve_stsd_le_zss_mte,
6567 gen_helper_sve_stdd_le_zss_mte, },
6568 { gen_helper_sve_stbd_zd_mte,
6569 gen_helper_sve_sthd_le_zd_mte,
6570 gen_helper_sve_stsd_le_zd_mte,
6571 gen_helper_sve_stdd_le_zd_mte, } },
6572 { /* Big-endian */
6573 { gen_helper_sve_stbd_zsu_mte,
6574 gen_helper_sve_sthd_be_zsu_mte,
6575 gen_helper_sve_stsd_be_zsu_mte,
6576 gen_helper_sve_stdd_be_zsu_mte, },
6577 { gen_helper_sve_stbd_zss_mte,
6578 gen_helper_sve_sthd_be_zss_mte,
6579 gen_helper_sve_stsd_be_zss_mte,
6580 gen_helper_sve_stdd_be_zss_mte, },
6581 { gen_helper_sve_stbd_zd_mte,
6582 gen_helper_sve_sthd_be_zd_mte,
6583 gen_helper_sve_stsd_be_zd_mte,
6584 gen_helper_sve_stdd_be_zd_mte, } } },
6587 static bool trans_ST1_zprz(DisasContext *s, arg_ST1_zprz *a)
6589 gen_helper_gvec_mem_scatter *fn;
6590 bool be = s->be_data == MO_BE;
6591 bool mte = s->mte_active[0];
6593 if (a->esz < a->msz || (a->msz == 0 && a->scale)) {
6594 return false;
6596 if (!sve_access_check(s)) {
6597 return true;
6599 switch (a->esz) {
6600 case MO_32:
6601 fn = scatter_store_fn32[mte][be][a->xs][a->msz];
6602 break;
6603 case MO_64:
6604 fn = scatter_store_fn64[mte][be][a->xs][a->msz];
6605 break;
6606 default:
6607 g_assert_not_reached();
6609 do_mem_zpz(s, a->rd, a->pg, a->rm, a->scale * a->msz,
6610 cpu_reg_sp(s, a->rn), a->msz, true, fn);
6611 return true;
6614 static bool trans_ST1_zpiz(DisasContext *s, arg_ST1_zpiz *a)
6616 gen_helper_gvec_mem_scatter *fn = NULL;
6617 bool be = s->be_data == MO_BE;
6618 bool mte = s->mte_active[0];
6619 TCGv_i64 imm;
6621 if (a->esz < a->msz) {
6622 return false;
6624 if (!sve_access_check(s)) {
6625 return true;
6628 switch (a->esz) {
6629 case MO_32:
6630 fn = scatter_store_fn32[mte][be][0][a->msz];
6631 break;
6632 case MO_64:
6633 fn = scatter_store_fn64[mte][be][2][a->msz];
6634 break;
6636 assert(fn != NULL);
6638 /* Treat ST1_zpiz (zn[x] + imm) the same way as ST1_zprz (rn + zm[x])
6639 * by loading the immediate into the scalar parameter.
6641 imm = tcg_const_i64(a->imm << a->msz);
6642 do_mem_zpz(s, a->rd, a->pg, a->rn, 0, imm, a->msz, true, fn);
6643 tcg_temp_free_i64(imm);
6644 return true;
6647 static bool trans_STNT1_zprz(DisasContext *s, arg_ST1_zprz *a)
6649 if (!dc_isar_feature(aa64_sve2, s)) {
6650 return false;
6652 return trans_ST1_zprz(s, a);
6656 * Prefetches
6659 static bool trans_PRF(DisasContext *s, arg_PRF *a)
6661 /* Prefetch is a nop within QEMU. */
6662 (void)sve_access_check(s);
6663 return true;
6666 static bool trans_PRF_rr(DisasContext *s, arg_PRF_rr *a)
6668 if (a->rm == 31) {
6669 return false;
6671 /* Prefetch is a nop within QEMU. */
6672 (void)sve_access_check(s);
6673 return true;
6677 * Move Prefix
6679 * TODO: The implementation so far could handle predicated merging movprfx.
6680 * The helper functions as written take an extra source register to
6681 * use in the operation, but the result is only written when predication
6682 * succeeds. For unpredicated movprfx, we need to rearrange the helpers
6683 * to allow the final write back to the destination to be unconditional.
6684 * For predicated zeroing movprfx, we need to rearrange the helpers to
6685 * allow the final write back to zero inactives.
6687 * In the meantime, just emit the moves.
6690 static bool trans_MOVPRFX(DisasContext *s, arg_MOVPRFX *a)
6692 return do_mov_z(s, a->rd, a->rn);
6695 static bool trans_MOVPRFX_m(DisasContext *s, arg_rpr_esz *a)
6697 if (sve_access_check(s)) {
6698 do_sel_z(s, a->rd, a->rn, a->rd, a->pg, a->esz);
6700 return true;
6703 static bool trans_MOVPRFX_z(DisasContext *s, arg_rpr_esz *a)
6705 return do_movz_zpz(s, a->rd, a->rn, a->pg, a->esz, false);
6709 * SVE2 Integer Multiply - Unpredicated
6712 static bool trans_MUL_zzz(DisasContext *s, arg_rrr_esz *a)
6714 if (!dc_isar_feature(aa64_sve2, s)) {
6715 return false;
6717 if (sve_access_check(s)) {
6718 gen_gvec_fn_zzz(s, tcg_gen_gvec_mul, a->esz, a->rd, a->rn, a->rm);
6720 return true;
6723 static bool do_sve2_zzz_ool(DisasContext *s, arg_rrr_esz *a,
6724 gen_helper_gvec_3 *fn)
6726 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
6727 return false;
6729 if (sve_access_check(s)) {
6730 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, 0);
6732 return true;
6735 static bool trans_SMULH_zzz(DisasContext *s, arg_rrr_esz *a)
6737 static gen_helper_gvec_3 * const fns[4] = {
6738 gen_helper_gvec_smulh_b, gen_helper_gvec_smulh_h,
6739 gen_helper_gvec_smulh_s, gen_helper_gvec_smulh_d,
6741 return do_sve2_zzz_ool(s, a, fns[a->esz]);
6744 static bool trans_UMULH_zzz(DisasContext *s, arg_rrr_esz *a)
6746 static gen_helper_gvec_3 * const fns[4] = {
6747 gen_helper_gvec_umulh_b, gen_helper_gvec_umulh_h,
6748 gen_helper_gvec_umulh_s, gen_helper_gvec_umulh_d,
6750 return do_sve2_zzz_ool(s, a, fns[a->esz]);
6753 static bool trans_PMUL_zzz(DisasContext *s, arg_rrr_esz *a)
6755 return do_sve2_zzz_ool(s, a, gen_helper_gvec_pmul_b);
6758 static bool trans_SQDMULH_zzz(DisasContext *s, arg_rrr_esz *a)
6760 static gen_helper_gvec_3 * const fns[4] = {
6761 gen_helper_sve2_sqdmulh_b, gen_helper_sve2_sqdmulh_h,
6762 gen_helper_sve2_sqdmulh_s, gen_helper_sve2_sqdmulh_d,
6764 return do_sve2_zzz_ool(s, a, fns[a->esz]);
6767 static bool trans_SQRDMULH_zzz(DisasContext *s, arg_rrr_esz *a)
6769 static gen_helper_gvec_3 * const fns[4] = {
6770 gen_helper_sve2_sqrdmulh_b, gen_helper_sve2_sqrdmulh_h,
6771 gen_helper_sve2_sqrdmulh_s, gen_helper_sve2_sqrdmulh_d,
6773 return do_sve2_zzz_ool(s, a, fns[a->esz]);
6777 * SVE2 Integer - Predicated
6780 static bool do_sve2_zpzz_ool(DisasContext *s, arg_rprr_esz *a,
6781 gen_helper_gvec_4 *fn)
6783 if (!dc_isar_feature(aa64_sve2, s)) {
6784 return false;
6786 return do_zpzz_ool(s, a, fn);
6789 static bool trans_SADALP_zpzz(DisasContext *s, arg_rprr_esz *a)
6791 static gen_helper_gvec_4 * const fns[3] = {
6792 gen_helper_sve2_sadalp_zpzz_h,
6793 gen_helper_sve2_sadalp_zpzz_s,
6794 gen_helper_sve2_sadalp_zpzz_d,
6796 if (a->esz == 0) {
6797 return false;
6799 return do_sve2_zpzz_ool(s, a, fns[a->esz - 1]);
6802 static bool trans_UADALP_zpzz(DisasContext *s, arg_rprr_esz *a)
6804 static gen_helper_gvec_4 * const fns[3] = {
6805 gen_helper_sve2_uadalp_zpzz_h,
6806 gen_helper_sve2_uadalp_zpzz_s,
6807 gen_helper_sve2_uadalp_zpzz_d,
6809 if (a->esz == 0) {
6810 return false;
6812 return do_sve2_zpzz_ool(s, a, fns[a->esz - 1]);
6816 * SVE2 integer unary operations (predicated)
6819 static bool do_sve2_zpz_ool(DisasContext *s, arg_rpr_esz *a,
6820 gen_helper_gvec_3 *fn)
6822 if (!dc_isar_feature(aa64_sve2, s)) {
6823 return false;
6825 return do_zpz_ool(s, a, fn);
6828 static bool trans_URECPE(DisasContext *s, arg_rpr_esz *a)
6830 if (a->esz != 2) {
6831 return false;
6833 return do_sve2_zpz_ool(s, a, gen_helper_sve2_urecpe_s);
6836 static bool trans_URSQRTE(DisasContext *s, arg_rpr_esz *a)
6838 if (a->esz != 2) {
6839 return false;
6841 return do_sve2_zpz_ool(s, a, gen_helper_sve2_ursqrte_s);
6844 static bool trans_SQABS(DisasContext *s, arg_rpr_esz *a)
6846 static gen_helper_gvec_3 * const fns[4] = {
6847 gen_helper_sve2_sqabs_b, gen_helper_sve2_sqabs_h,
6848 gen_helper_sve2_sqabs_s, gen_helper_sve2_sqabs_d,
6850 return do_sve2_zpz_ool(s, a, fns[a->esz]);
6853 static bool trans_SQNEG(DisasContext *s, arg_rpr_esz *a)
6855 static gen_helper_gvec_3 * const fns[4] = {
6856 gen_helper_sve2_sqneg_b, gen_helper_sve2_sqneg_h,
6857 gen_helper_sve2_sqneg_s, gen_helper_sve2_sqneg_d,
6859 return do_sve2_zpz_ool(s, a, fns[a->esz]);
6862 #define DO_SVE2_ZPZZ(NAME, name) \
6863 static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
6865 static gen_helper_gvec_4 * const fns[4] = { \
6866 gen_helper_sve2_##name##_zpzz_b, gen_helper_sve2_##name##_zpzz_h, \
6867 gen_helper_sve2_##name##_zpzz_s, gen_helper_sve2_##name##_zpzz_d, \
6868 }; \
6869 return do_sve2_zpzz_ool(s, a, fns[a->esz]); \
6872 DO_SVE2_ZPZZ(SQSHL, sqshl)
6873 DO_SVE2_ZPZZ(SQRSHL, sqrshl)
6874 DO_SVE2_ZPZZ(SRSHL, srshl)
6876 DO_SVE2_ZPZZ(UQSHL, uqshl)
6877 DO_SVE2_ZPZZ(UQRSHL, uqrshl)
6878 DO_SVE2_ZPZZ(URSHL, urshl)
6880 DO_SVE2_ZPZZ(SHADD, shadd)
6881 DO_SVE2_ZPZZ(SRHADD, srhadd)
6882 DO_SVE2_ZPZZ(SHSUB, shsub)
6884 DO_SVE2_ZPZZ(UHADD, uhadd)
6885 DO_SVE2_ZPZZ(URHADD, urhadd)
6886 DO_SVE2_ZPZZ(UHSUB, uhsub)
6888 DO_SVE2_ZPZZ(ADDP, addp)
6889 DO_SVE2_ZPZZ(SMAXP, smaxp)
6890 DO_SVE2_ZPZZ(UMAXP, umaxp)
6891 DO_SVE2_ZPZZ(SMINP, sminp)
6892 DO_SVE2_ZPZZ(UMINP, uminp)
6894 DO_SVE2_ZPZZ(SQADD_zpzz, sqadd)
6895 DO_SVE2_ZPZZ(UQADD_zpzz, uqadd)
6896 DO_SVE2_ZPZZ(SQSUB_zpzz, sqsub)
6897 DO_SVE2_ZPZZ(UQSUB_zpzz, uqsub)
6898 DO_SVE2_ZPZZ(SUQADD, suqadd)
6899 DO_SVE2_ZPZZ(USQADD, usqadd)
6902 * SVE2 Widening Integer Arithmetic
6905 static bool do_sve2_zzw_ool(DisasContext *s, arg_rrr_esz *a,
6906 gen_helper_gvec_3 *fn, int data)
6908 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
6909 return false;
6911 if (sve_access_check(s)) {
6912 unsigned vsz = vec_full_reg_size(s);
6913 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, a->rd),
6914 vec_full_reg_offset(s, a->rn),
6915 vec_full_reg_offset(s, a->rm),
6916 vsz, vsz, data, fn);
6918 return true;
6921 #define DO_SVE2_ZZZ_TB(NAME, name, SEL1, SEL2) \
6922 static bool trans_##NAME(DisasContext *s, arg_rrr_esz *a) \
6924 static gen_helper_gvec_3 * const fns[4] = { \
6925 NULL, gen_helper_sve2_##name##_h, \
6926 gen_helper_sve2_##name##_s, gen_helper_sve2_##name##_d, \
6927 }; \
6928 return do_sve2_zzw_ool(s, a, fns[a->esz], (SEL2 << 1) | SEL1); \
6931 DO_SVE2_ZZZ_TB(SADDLB, saddl, false, false)
6932 DO_SVE2_ZZZ_TB(SSUBLB, ssubl, false, false)
6933 DO_SVE2_ZZZ_TB(SABDLB, sabdl, false, false)
6935 DO_SVE2_ZZZ_TB(UADDLB, uaddl, false, false)
6936 DO_SVE2_ZZZ_TB(USUBLB, usubl, false, false)
6937 DO_SVE2_ZZZ_TB(UABDLB, uabdl, false, false)
6939 DO_SVE2_ZZZ_TB(SADDLT, saddl, true, true)
6940 DO_SVE2_ZZZ_TB(SSUBLT, ssubl, true, true)
6941 DO_SVE2_ZZZ_TB(SABDLT, sabdl, true, true)
6943 DO_SVE2_ZZZ_TB(UADDLT, uaddl, true, true)
6944 DO_SVE2_ZZZ_TB(USUBLT, usubl, true, true)
6945 DO_SVE2_ZZZ_TB(UABDLT, uabdl, true, true)
6947 DO_SVE2_ZZZ_TB(SADDLBT, saddl, false, true)
6948 DO_SVE2_ZZZ_TB(SSUBLBT, ssubl, false, true)
6949 DO_SVE2_ZZZ_TB(SSUBLTB, ssubl, true, false)
6951 DO_SVE2_ZZZ_TB(SQDMULLB_zzz, sqdmull_zzz, false, false)
6952 DO_SVE2_ZZZ_TB(SQDMULLT_zzz, sqdmull_zzz, true, true)
6954 DO_SVE2_ZZZ_TB(SMULLB_zzz, smull_zzz, false, false)
6955 DO_SVE2_ZZZ_TB(SMULLT_zzz, smull_zzz, true, true)
6957 DO_SVE2_ZZZ_TB(UMULLB_zzz, umull_zzz, false, false)
6958 DO_SVE2_ZZZ_TB(UMULLT_zzz, umull_zzz, true, true)
6960 static bool do_eor_tb(DisasContext *s, arg_rrr_esz *a, bool sel1)
6962 static gen_helper_gvec_3 * const fns[4] = {
6963 gen_helper_sve2_eoril_b, gen_helper_sve2_eoril_h,
6964 gen_helper_sve2_eoril_s, gen_helper_sve2_eoril_d,
6966 return do_sve2_zzw_ool(s, a, fns[a->esz], (!sel1 << 1) | sel1);
6969 static bool trans_EORBT(DisasContext *s, arg_rrr_esz *a)
6971 return do_eor_tb(s, a, false);
6974 static bool trans_EORTB(DisasContext *s, arg_rrr_esz *a)
6976 return do_eor_tb(s, a, true);
6979 static bool do_trans_pmull(DisasContext *s, arg_rrr_esz *a, bool sel)
6981 static gen_helper_gvec_3 * const fns[4] = {
6982 gen_helper_gvec_pmull_q, gen_helper_sve2_pmull_h,
6983 NULL, gen_helper_sve2_pmull_d,
6985 if (a->esz == 0 && !dc_isar_feature(aa64_sve2_pmull128, s)) {
6986 return false;
6988 return do_sve2_zzw_ool(s, a, fns[a->esz], sel);
6991 static bool trans_PMULLB(DisasContext *s, arg_rrr_esz *a)
6993 return do_trans_pmull(s, a, false);
6996 static bool trans_PMULLT(DisasContext *s, arg_rrr_esz *a)
6998 return do_trans_pmull(s, a, true);
7001 #define DO_SVE2_ZZZ_WTB(NAME, name, SEL2) \
7002 static bool trans_##NAME(DisasContext *s, arg_rrr_esz *a) \
7004 static gen_helper_gvec_3 * const fns[4] = { \
7005 NULL, gen_helper_sve2_##name##_h, \
7006 gen_helper_sve2_##name##_s, gen_helper_sve2_##name##_d, \
7007 }; \
7008 return do_sve2_zzw_ool(s, a, fns[a->esz], SEL2); \
7011 DO_SVE2_ZZZ_WTB(SADDWB, saddw, false)
7012 DO_SVE2_ZZZ_WTB(SADDWT, saddw, true)
7013 DO_SVE2_ZZZ_WTB(SSUBWB, ssubw, false)
7014 DO_SVE2_ZZZ_WTB(SSUBWT, ssubw, true)
7016 DO_SVE2_ZZZ_WTB(UADDWB, uaddw, false)
7017 DO_SVE2_ZZZ_WTB(UADDWT, uaddw, true)
7018 DO_SVE2_ZZZ_WTB(USUBWB, usubw, false)
7019 DO_SVE2_ZZZ_WTB(USUBWT, usubw, true)
7021 static void gen_sshll_vec(unsigned vece, TCGv_vec d, TCGv_vec n, int64_t imm)
7023 int top = imm & 1;
7024 int shl = imm >> 1;
7025 int halfbits = 4 << vece;
7027 if (top) {
7028 if (shl == halfbits) {
7029 TCGv_vec t = tcg_temp_new_vec_matching(d);
7030 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(halfbits, halfbits));
7031 tcg_gen_and_vec(vece, d, n, t);
7032 tcg_temp_free_vec(t);
7033 } else {
7034 tcg_gen_sari_vec(vece, d, n, halfbits);
7035 tcg_gen_shli_vec(vece, d, d, shl);
7037 } else {
7038 tcg_gen_shli_vec(vece, d, n, halfbits);
7039 tcg_gen_sari_vec(vece, d, d, halfbits - shl);
7043 static void gen_ushll_i64(unsigned vece, TCGv_i64 d, TCGv_i64 n, int imm)
7045 int halfbits = 4 << vece;
7046 int top = imm & 1;
7047 int shl = (imm >> 1);
7048 int shift;
7049 uint64_t mask;
7051 mask = MAKE_64BIT_MASK(0, halfbits);
7052 mask <<= shl;
7053 mask = dup_const(vece, mask);
7055 shift = shl - top * halfbits;
7056 if (shift < 0) {
7057 tcg_gen_shri_i64(d, n, -shift);
7058 } else {
7059 tcg_gen_shli_i64(d, n, shift);
7061 tcg_gen_andi_i64(d, d, mask);
7064 static void gen_ushll16_i64(TCGv_i64 d, TCGv_i64 n, int64_t imm)
7066 gen_ushll_i64(MO_16, d, n, imm);
7069 static void gen_ushll32_i64(TCGv_i64 d, TCGv_i64 n, int64_t imm)
7071 gen_ushll_i64(MO_32, d, n, imm);
7074 static void gen_ushll64_i64(TCGv_i64 d, TCGv_i64 n, int64_t imm)
7076 gen_ushll_i64(MO_64, d, n, imm);
7079 static void gen_ushll_vec(unsigned vece, TCGv_vec d, TCGv_vec n, int64_t imm)
7081 int halfbits = 4 << vece;
7082 int top = imm & 1;
7083 int shl = imm >> 1;
7085 if (top) {
7086 if (shl == halfbits) {
7087 TCGv_vec t = tcg_temp_new_vec_matching(d);
7088 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(halfbits, halfbits));
7089 tcg_gen_and_vec(vece, d, n, t);
7090 tcg_temp_free_vec(t);
7091 } else {
7092 tcg_gen_shri_vec(vece, d, n, halfbits);
7093 tcg_gen_shli_vec(vece, d, d, shl);
7095 } else {
7096 if (shl == 0) {
7097 TCGv_vec t = tcg_temp_new_vec_matching(d);
7098 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
7099 tcg_gen_and_vec(vece, d, n, t);
7100 tcg_temp_free_vec(t);
7101 } else {
7102 tcg_gen_shli_vec(vece, d, n, halfbits);
7103 tcg_gen_shri_vec(vece, d, d, halfbits - shl);
7108 static bool do_sve2_shll_tb(DisasContext *s, arg_rri_esz *a,
7109 bool sel, bool uns)
7111 static const TCGOpcode sshll_list[] = {
7112 INDEX_op_shli_vec, INDEX_op_sari_vec, 0
7114 static const TCGOpcode ushll_list[] = {
7115 INDEX_op_shli_vec, INDEX_op_shri_vec, 0
7117 static const GVecGen2i ops[2][3] = {
7118 { { .fniv = gen_sshll_vec,
7119 .opt_opc = sshll_list,
7120 .fno = gen_helper_sve2_sshll_h,
7121 .vece = MO_16 },
7122 { .fniv = gen_sshll_vec,
7123 .opt_opc = sshll_list,
7124 .fno = gen_helper_sve2_sshll_s,
7125 .vece = MO_32 },
7126 { .fniv = gen_sshll_vec,
7127 .opt_opc = sshll_list,
7128 .fno = gen_helper_sve2_sshll_d,
7129 .vece = MO_64 } },
7130 { { .fni8 = gen_ushll16_i64,
7131 .fniv = gen_ushll_vec,
7132 .opt_opc = ushll_list,
7133 .fno = gen_helper_sve2_ushll_h,
7134 .vece = MO_16 },
7135 { .fni8 = gen_ushll32_i64,
7136 .fniv = gen_ushll_vec,
7137 .opt_opc = ushll_list,
7138 .fno = gen_helper_sve2_ushll_s,
7139 .vece = MO_32 },
7140 { .fni8 = gen_ushll64_i64,
7141 .fniv = gen_ushll_vec,
7142 .opt_opc = ushll_list,
7143 .fno = gen_helper_sve2_ushll_d,
7144 .vece = MO_64 } },
7147 if (a->esz < 0 || a->esz > 2 || !dc_isar_feature(aa64_sve2, s)) {
7148 return false;
7150 if (sve_access_check(s)) {
7151 unsigned vsz = vec_full_reg_size(s);
7152 tcg_gen_gvec_2i(vec_full_reg_offset(s, a->rd),
7153 vec_full_reg_offset(s, a->rn),
7154 vsz, vsz, (a->imm << 1) | sel,
7155 &ops[uns][a->esz]);
7157 return true;
7160 static bool trans_SSHLLB(DisasContext *s, arg_rri_esz *a)
7162 return do_sve2_shll_tb(s, a, false, false);
7165 static bool trans_SSHLLT(DisasContext *s, arg_rri_esz *a)
7167 return do_sve2_shll_tb(s, a, true, false);
7170 static bool trans_USHLLB(DisasContext *s, arg_rri_esz *a)
7172 return do_sve2_shll_tb(s, a, false, true);
7175 static bool trans_USHLLT(DisasContext *s, arg_rri_esz *a)
7177 return do_sve2_shll_tb(s, a, true, true);
7180 static bool trans_BEXT(DisasContext *s, arg_rrr_esz *a)
7182 static gen_helper_gvec_3 * const fns[4] = {
7183 gen_helper_sve2_bext_b, gen_helper_sve2_bext_h,
7184 gen_helper_sve2_bext_s, gen_helper_sve2_bext_d,
7186 if (!dc_isar_feature(aa64_sve2_bitperm, s)) {
7187 return false;
7189 return do_sve2_zzw_ool(s, a, fns[a->esz], 0);
7192 static bool trans_BDEP(DisasContext *s, arg_rrr_esz *a)
7194 static gen_helper_gvec_3 * const fns[4] = {
7195 gen_helper_sve2_bdep_b, gen_helper_sve2_bdep_h,
7196 gen_helper_sve2_bdep_s, gen_helper_sve2_bdep_d,
7198 if (!dc_isar_feature(aa64_sve2_bitperm, s)) {
7199 return false;
7201 return do_sve2_zzw_ool(s, a, fns[a->esz], 0);
7204 static bool trans_BGRP(DisasContext *s, arg_rrr_esz *a)
7206 static gen_helper_gvec_3 * const fns[4] = {
7207 gen_helper_sve2_bgrp_b, gen_helper_sve2_bgrp_h,
7208 gen_helper_sve2_bgrp_s, gen_helper_sve2_bgrp_d,
7210 if (!dc_isar_feature(aa64_sve2_bitperm, s)) {
7211 return false;
7213 return do_sve2_zzw_ool(s, a, fns[a->esz], 0);
7216 static bool do_cadd(DisasContext *s, arg_rrr_esz *a, bool sq, bool rot)
7218 static gen_helper_gvec_3 * const fns[2][4] = {
7219 { gen_helper_sve2_cadd_b, gen_helper_sve2_cadd_h,
7220 gen_helper_sve2_cadd_s, gen_helper_sve2_cadd_d },
7221 { gen_helper_sve2_sqcadd_b, gen_helper_sve2_sqcadd_h,
7222 gen_helper_sve2_sqcadd_s, gen_helper_sve2_sqcadd_d },
7224 return do_sve2_zzw_ool(s, a, fns[sq][a->esz], rot);
7227 static bool trans_CADD_rot90(DisasContext *s, arg_rrr_esz *a)
7229 return do_cadd(s, a, false, false);
7232 static bool trans_CADD_rot270(DisasContext *s, arg_rrr_esz *a)
7234 return do_cadd(s, a, false, true);
7237 static bool trans_SQCADD_rot90(DisasContext *s, arg_rrr_esz *a)
7239 return do_cadd(s, a, true, false);
7242 static bool trans_SQCADD_rot270(DisasContext *s, arg_rrr_esz *a)
7244 return do_cadd(s, a, true, true);
7247 static bool do_sve2_zzzz_ool(DisasContext *s, arg_rrrr_esz *a,
7248 gen_helper_gvec_4 *fn, int data)
7250 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
7251 return false;
7253 if (sve_access_check(s)) {
7254 gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, data);
7256 return true;
7259 static bool do_abal(DisasContext *s, arg_rrrr_esz *a, bool uns, bool sel)
7261 static gen_helper_gvec_4 * const fns[2][4] = {
7262 { NULL, gen_helper_sve2_sabal_h,
7263 gen_helper_sve2_sabal_s, gen_helper_sve2_sabal_d },
7264 { NULL, gen_helper_sve2_uabal_h,
7265 gen_helper_sve2_uabal_s, gen_helper_sve2_uabal_d },
7267 return do_sve2_zzzz_ool(s, a, fns[uns][a->esz], sel);
7270 static bool trans_SABALB(DisasContext *s, arg_rrrr_esz *a)
7272 return do_abal(s, a, false, false);
7275 static bool trans_SABALT(DisasContext *s, arg_rrrr_esz *a)
7277 return do_abal(s, a, false, true);
7280 static bool trans_UABALB(DisasContext *s, arg_rrrr_esz *a)
7282 return do_abal(s, a, true, false);
7285 static bool trans_UABALT(DisasContext *s, arg_rrrr_esz *a)
7287 return do_abal(s, a, true, true);
7290 static bool do_adcl(DisasContext *s, arg_rrrr_esz *a, bool sel)
7292 static gen_helper_gvec_4 * const fns[2] = {
7293 gen_helper_sve2_adcl_s,
7294 gen_helper_sve2_adcl_d,
7297 * Note that in this case the ESZ field encodes both size and sign.
7298 * Split out 'subtract' into bit 1 of the data field for the helper.
7300 return do_sve2_zzzz_ool(s, a, fns[a->esz & 1], (a->esz & 2) | sel);
7303 static bool trans_ADCLB(DisasContext *s, arg_rrrr_esz *a)
7305 return do_adcl(s, a, false);
7308 static bool trans_ADCLT(DisasContext *s, arg_rrrr_esz *a)
7310 return do_adcl(s, a, true);
7313 static bool do_sve2_fn2i(DisasContext *s, arg_rri_esz *a, GVecGen2iFn *fn)
7315 if (a->esz < 0 || !dc_isar_feature(aa64_sve2, s)) {
7316 return false;
7318 if (sve_access_check(s)) {
7319 unsigned vsz = vec_full_reg_size(s);
7320 unsigned rd_ofs = vec_full_reg_offset(s, a->rd);
7321 unsigned rn_ofs = vec_full_reg_offset(s, a->rn);
7322 fn(a->esz, rd_ofs, rn_ofs, a->imm, vsz, vsz);
7324 return true;
7327 static bool trans_SSRA(DisasContext *s, arg_rri_esz *a)
7329 return do_sve2_fn2i(s, a, gen_gvec_ssra);
7332 static bool trans_USRA(DisasContext *s, arg_rri_esz *a)
7334 return do_sve2_fn2i(s, a, gen_gvec_usra);
7337 static bool trans_SRSRA(DisasContext *s, arg_rri_esz *a)
7339 return do_sve2_fn2i(s, a, gen_gvec_srsra);
7342 static bool trans_URSRA(DisasContext *s, arg_rri_esz *a)
7344 return do_sve2_fn2i(s, a, gen_gvec_ursra);
7347 static bool trans_SRI(DisasContext *s, arg_rri_esz *a)
7349 return do_sve2_fn2i(s, a, gen_gvec_sri);
7352 static bool trans_SLI(DisasContext *s, arg_rri_esz *a)
7354 return do_sve2_fn2i(s, a, gen_gvec_sli);
7357 static bool do_sve2_fn_zzz(DisasContext *s, arg_rrr_esz *a, GVecGen3Fn *fn)
7359 if (!dc_isar_feature(aa64_sve2, s)) {
7360 return false;
7362 if (sve_access_check(s)) {
7363 gen_gvec_fn_zzz(s, fn, a->esz, a->rd, a->rn, a->rm);
7365 return true;
7368 static bool trans_SABA(DisasContext *s, arg_rrr_esz *a)
7370 return do_sve2_fn_zzz(s, a, gen_gvec_saba);
7373 static bool trans_UABA(DisasContext *s, arg_rrr_esz *a)
7375 return do_sve2_fn_zzz(s, a, gen_gvec_uaba);
7378 static bool do_sve2_narrow_extract(DisasContext *s, arg_rri_esz *a,
7379 const GVecGen2 ops[3])
7381 if (a->esz < 0 || a->esz > MO_32 || a->imm != 0 ||
7382 !dc_isar_feature(aa64_sve2, s)) {
7383 return false;
7385 if (sve_access_check(s)) {
7386 unsigned vsz = vec_full_reg_size(s);
7387 tcg_gen_gvec_2(vec_full_reg_offset(s, a->rd),
7388 vec_full_reg_offset(s, a->rn),
7389 vsz, vsz, &ops[a->esz]);
7391 return true;
7394 static const TCGOpcode sqxtn_list[] = {
7395 INDEX_op_shli_vec, INDEX_op_smin_vec, INDEX_op_smax_vec, 0
7398 static void gen_sqxtnb_vec(unsigned vece, TCGv_vec d, TCGv_vec n)
7400 TCGv_vec t = tcg_temp_new_vec_matching(d);
7401 int halfbits = 4 << vece;
7402 int64_t mask = (1ull << halfbits) - 1;
7403 int64_t min = -1ull << (halfbits - 1);
7404 int64_t max = -min - 1;
7406 tcg_gen_dupi_vec(vece, t, min);
7407 tcg_gen_smax_vec(vece, d, n, t);
7408 tcg_gen_dupi_vec(vece, t, max);
7409 tcg_gen_smin_vec(vece, d, d, t);
7410 tcg_gen_dupi_vec(vece, t, mask);
7411 tcg_gen_and_vec(vece, d, d, t);
7412 tcg_temp_free_vec(t);
7415 static bool trans_SQXTNB(DisasContext *s, arg_rri_esz *a)
7417 static const GVecGen2 ops[3] = {
7418 { .fniv = gen_sqxtnb_vec,
7419 .opt_opc = sqxtn_list,
7420 .fno = gen_helper_sve2_sqxtnb_h,
7421 .vece = MO_16 },
7422 { .fniv = gen_sqxtnb_vec,
7423 .opt_opc = sqxtn_list,
7424 .fno = gen_helper_sve2_sqxtnb_s,
7425 .vece = MO_32 },
7426 { .fniv = gen_sqxtnb_vec,
7427 .opt_opc = sqxtn_list,
7428 .fno = gen_helper_sve2_sqxtnb_d,
7429 .vece = MO_64 },
7431 return do_sve2_narrow_extract(s, a, ops);
7434 static void gen_sqxtnt_vec(unsigned vece, TCGv_vec d, TCGv_vec n)
7436 TCGv_vec t = tcg_temp_new_vec_matching(d);
7437 int halfbits = 4 << vece;
7438 int64_t mask = (1ull << halfbits) - 1;
7439 int64_t min = -1ull << (halfbits - 1);
7440 int64_t max = -min - 1;
7442 tcg_gen_dupi_vec(vece, t, min);
7443 tcg_gen_smax_vec(vece, n, n, t);
7444 tcg_gen_dupi_vec(vece, t, max);
7445 tcg_gen_smin_vec(vece, n, n, t);
7446 tcg_gen_shli_vec(vece, n, n, halfbits);
7447 tcg_gen_dupi_vec(vece, t, mask);
7448 tcg_gen_bitsel_vec(vece, d, t, d, n);
7449 tcg_temp_free_vec(t);
7452 static bool trans_SQXTNT(DisasContext *s, arg_rri_esz *a)
7454 static const GVecGen2 ops[3] = {
7455 { .fniv = gen_sqxtnt_vec,
7456 .opt_opc = sqxtn_list,
7457 .load_dest = true,
7458 .fno = gen_helper_sve2_sqxtnt_h,
7459 .vece = MO_16 },
7460 { .fniv = gen_sqxtnt_vec,
7461 .opt_opc = sqxtn_list,
7462 .load_dest = true,
7463 .fno = gen_helper_sve2_sqxtnt_s,
7464 .vece = MO_32 },
7465 { .fniv = gen_sqxtnt_vec,
7466 .opt_opc = sqxtn_list,
7467 .load_dest = true,
7468 .fno = gen_helper_sve2_sqxtnt_d,
7469 .vece = MO_64 },
7471 return do_sve2_narrow_extract(s, a, ops);
7474 static const TCGOpcode uqxtn_list[] = {
7475 INDEX_op_shli_vec, INDEX_op_umin_vec, 0
7478 static void gen_uqxtnb_vec(unsigned vece, TCGv_vec d, TCGv_vec n)
7480 TCGv_vec t = tcg_temp_new_vec_matching(d);
7481 int halfbits = 4 << vece;
7482 int64_t max = (1ull << halfbits) - 1;
7484 tcg_gen_dupi_vec(vece, t, max);
7485 tcg_gen_umin_vec(vece, d, n, t);
7486 tcg_temp_free_vec(t);
7489 static bool trans_UQXTNB(DisasContext *s, arg_rri_esz *a)
7491 static const GVecGen2 ops[3] = {
7492 { .fniv = gen_uqxtnb_vec,
7493 .opt_opc = uqxtn_list,
7494 .fno = gen_helper_sve2_uqxtnb_h,
7495 .vece = MO_16 },
7496 { .fniv = gen_uqxtnb_vec,
7497 .opt_opc = uqxtn_list,
7498 .fno = gen_helper_sve2_uqxtnb_s,
7499 .vece = MO_32 },
7500 { .fniv = gen_uqxtnb_vec,
7501 .opt_opc = uqxtn_list,
7502 .fno = gen_helper_sve2_uqxtnb_d,
7503 .vece = MO_64 },
7505 return do_sve2_narrow_extract(s, a, ops);
7508 static void gen_uqxtnt_vec(unsigned vece, TCGv_vec d, TCGv_vec n)
7510 TCGv_vec t = tcg_temp_new_vec_matching(d);
7511 int halfbits = 4 << vece;
7512 int64_t max = (1ull << halfbits) - 1;
7514 tcg_gen_dupi_vec(vece, t, max);
7515 tcg_gen_umin_vec(vece, n, n, t);
7516 tcg_gen_shli_vec(vece, n, n, halfbits);
7517 tcg_gen_bitsel_vec(vece, d, t, d, n);
7518 tcg_temp_free_vec(t);
7521 static bool trans_UQXTNT(DisasContext *s, arg_rri_esz *a)
7523 static const GVecGen2 ops[3] = {
7524 { .fniv = gen_uqxtnt_vec,
7525 .opt_opc = uqxtn_list,
7526 .load_dest = true,
7527 .fno = gen_helper_sve2_uqxtnt_h,
7528 .vece = MO_16 },
7529 { .fniv = gen_uqxtnt_vec,
7530 .opt_opc = uqxtn_list,
7531 .load_dest = true,
7532 .fno = gen_helper_sve2_uqxtnt_s,
7533 .vece = MO_32 },
7534 { .fniv = gen_uqxtnt_vec,
7535 .opt_opc = uqxtn_list,
7536 .load_dest = true,
7537 .fno = gen_helper_sve2_uqxtnt_d,
7538 .vece = MO_64 },
7540 return do_sve2_narrow_extract(s, a, ops);
7543 static const TCGOpcode sqxtun_list[] = {
7544 INDEX_op_shli_vec, INDEX_op_umin_vec, INDEX_op_smax_vec, 0
7547 static void gen_sqxtunb_vec(unsigned vece, TCGv_vec d, TCGv_vec n)
7549 TCGv_vec t = tcg_temp_new_vec_matching(d);
7550 int halfbits = 4 << vece;
7551 int64_t max = (1ull << halfbits) - 1;
7553 tcg_gen_dupi_vec(vece, t, 0);
7554 tcg_gen_smax_vec(vece, d, n, t);
7555 tcg_gen_dupi_vec(vece, t, max);
7556 tcg_gen_umin_vec(vece, d, d, t);
7557 tcg_temp_free_vec(t);
7560 static bool trans_SQXTUNB(DisasContext *s, arg_rri_esz *a)
7562 static const GVecGen2 ops[3] = {
7563 { .fniv = gen_sqxtunb_vec,
7564 .opt_opc = sqxtun_list,
7565 .fno = gen_helper_sve2_sqxtunb_h,
7566 .vece = MO_16 },
7567 { .fniv = gen_sqxtunb_vec,
7568 .opt_opc = sqxtun_list,
7569 .fno = gen_helper_sve2_sqxtunb_s,
7570 .vece = MO_32 },
7571 { .fniv = gen_sqxtunb_vec,
7572 .opt_opc = sqxtun_list,
7573 .fno = gen_helper_sve2_sqxtunb_d,
7574 .vece = MO_64 },
7576 return do_sve2_narrow_extract(s, a, ops);
7579 static void gen_sqxtunt_vec(unsigned vece, TCGv_vec d, TCGv_vec n)
7581 TCGv_vec t = tcg_temp_new_vec_matching(d);
7582 int halfbits = 4 << vece;
7583 int64_t max = (1ull << halfbits) - 1;
7585 tcg_gen_dupi_vec(vece, t, 0);
7586 tcg_gen_smax_vec(vece, n, n, t);
7587 tcg_gen_dupi_vec(vece, t, max);
7588 tcg_gen_umin_vec(vece, n, n, t);
7589 tcg_gen_shli_vec(vece, n, n, halfbits);
7590 tcg_gen_bitsel_vec(vece, d, t, d, n);
7591 tcg_temp_free_vec(t);
7594 static bool trans_SQXTUNT(DisasContext *s, arg_rri_esz *a)
7596 static const GVecGen2 ops[3] = {
7597 { .fniv = gen_sqxtunt_vec,
7598 .opt_opc = sqxtun_list,
7599 .load_dest = true,
7600 .fno = gen_helper_sve2_sqxtunt_h,
7601 .vece = MO_16 },
7602 { .fniv = gen_sqxtunt_vec,
7603 .opt_opc = sqxtun_list,
7604 .load_dest = true,
7605 .fno = gen_helper_sve2_sqxtunt_s,
7606 .vece = MO_32 },
7607 { .fniv = gen_sqxtunt_vec,
7608 .opt_opc = sqxtun_list,
7609 .load_dest = true,
7610 .fno = gen_helper_sve2_sqxtunt_d,
7611 .vece = MO_64 },
7613 return do_sve2_narrow_extract(s, a, ops);
7616 static bool do_sve2_shr_narrow(DisasContext *s, arg_rri_esz *a,
7617 const GVecGen2i ops[3])
7619 if (a->esz < 0 || a->esz > MO_32 || !dc_isar_feature(aa64_sve2, s)) {
7620 return false;
7622 assert(a->imm > 0 && a->imm <= (8 << a->esz));
7623 if (sve_access_check(s)) {
7624 unsigned vsz = vec_full_reg_size(s);
7625 tcg_gen_gvec_2i(vec_full_reg_offset(s, a->rd),
7626 vec_full_reg_offset(s, a->rn),
7627 vsz, vsz, a->imm, &ops[a->esz]);
7629 return true;
7632 static void gen_shrnb_i64(unsigned vece, TCGv_i64 d, TCGv_i64 n, int shr)
7634 int halfbits = 4 << vece;
7635 uint64_t mask = dup_const(vece, MAKE_64BIT_MASK(0, halfbits));
7637 tcg_gen_shri_i64(d, n, shr);
7638 tcg_gen_andi_i64(d, d, mask);
7641 static void gen_shrnb16_i64(TCGv_i64 d, TCGv_i64 n, int64_t shr)
7643 gen_shrnb_i64(MO_16, d, n, shr);
7646 static void gen_shrnb32_i64(TCGv_i64 d, TCGv_i64 n, int64_t shr)
7648 gen_shrnb_i64(MO_32, d, n, shr);
7651 static void gen_shrnb64_i64(TCGv_i64 d, TCGv_i64 n, int64_t shr)
7653 gen_shrnb_i64(MO_64, d, n, shr);
7656 static void gen_shrnb_vec(unsigned vece, TCGv_vec d, TCGv_vec n, int64_t shr)
7658 TCGv_vec t = tcg_temp_new_vec_matching(d);
7659 int halfbits = 4 << vece;
7660 uint64_t mask = MAKE_64BIT_MASK(0, halfbits);
7662 tcg_gen_shri_vec(vece, n, n, shr);
7663 tcg_gen_dupi_vec(vece, t, mask);
7664 tcg_gen_and_vec(vece, d, n, t);
7665 tcg_temp_free_vec(t);
7668 static bool trans_SHRNB(DisasContext *s, arg_rri_esz *a)
7670 static const TCGOpcode vec_list[] = { INDEX_op_shri_vec, 0 };
7671 static const GVecGen2i ops[3] = {
7672 { .fni8 = gen_shrnb16_i64,
7673 .fniv = gen_shrnb_vec,
7674 .opt_opc = vec_list,
7675 .fno = gen_helper_sve2_shrnb_h,
7676 .vece = MO_16 },
7677 { .fni8 = gen_shrnb32_i64,
7678 .fniv = gen_shrnb_vec,
7679 .opt_opc = vec_list,
7680 .fno = gen_helper_sve2_shrnb_s,
7681 .vece = MO_32 },
7682 { .fni8 = gen_shrnb64_i64,
7683 .fniv = gen_shrnb_vec,
7684 .opt_opc = vec_list,
7685 .fno = gen_helper_sve2_shrnb_d,
7686 .vece = MO_64 },
7688 return do_sve2_shr_narrow(s, a, ops);
7691 static void gen_shrnt_i64(unsigned vece, TCGv_i64 d, TCGv_i64 n, int shr)
7693 int halfbits = 4 << vece;
7694 uint64_t mask = dup_const(vece, MAKE_64BIT_MASK(0, halfbits));
7696 tcg_gen_shli_i64(n, n, halfbits - shr);
7697 tcg_gen_andi_i64(n, n, ~mask);
7698 tcg_gen_andi_i64(d, d, mask);
7699 tcg_gen_or_i64(d, d, n);
7702 static void gen_shrnt16_i64(TCGv_i64 d, TCGv_i64 n, int64_t shr)
7704 gen_shrnt_i64(MO_16, d, n, shr);
7707 static void gen_shrnt32_i64(TCGv_i64 d, TCGv_i64 n, int64_t shr)
7709 gen_shrnt_i64(MO_32, d, n, shr);
7712 static void gen_shrnt64_i64(TCGv_i64 d, TCGv_i64 n, int64_t shr)
7714 tcg_gen_shri_i64(n, n, shr);
7715 tcg_gen_deposit_i64(d, d, n, 32, 32);
7718 static void gen_shrnt_vec(unsigned vece, TCGv_vec d, TCGv_vec n, int64_t shr)
7720 TCGv_vec t = tcg_temp_new_vec_matching(d);
7721 int halfbits = 4 << vece;
7722 uint64_t mask = MAKE_64BIT_MASK(0, halfbits);
7724 tcg_gen_shli_vec(vece, n, n, halfbits - shr);
7725 tcg_gen_dupi_vec(vece, t, mask);
7726 tcg_gen_bitsel_vec(vece, d, t, d, n);
7727 tcg_temp_free_vec(t);
7730 static bool trans_SHRNT(DisasContext *s, arg_rri_esz *a)
7732 static const TCGOpcode vec_list[] = { INDEX_op_shli_vec, 0 };
7733 static const GVecGen2i ops[3] = {
7734 { .fni8 = gen_shrnt16_i64,
7735 .fniv = gen_shrnt_vec,
7736 .opt_opc = vec_list,
7737 .load_dest = true,
7738 .fno = gen_helper_sve2_shrnt_h,
7739 .vece = MO_16 },
7740 { .fni8 = gen_shrnt32_i64,
7741 .fniv = gen_shrnt_vec,
7742 .opt_opc = vec_list,
7743 .load_dest = true,
7744 .fno = gen_helper_sve2_shrnt_s,
7745 .vece = MO_32 },
7746 { .fni8 = gen_shrnt64_i64,
7747 .fniv = gen_shrnt_vec,
7748 .opt_opc = vec_list,
7749 .load_dest = true,
7750 .fno = gen_helper_sve2_shrnt_d,
7751 .vece = MO_64 },
7753 return do_sve2_shr_narrow(s, a, ops);
7756 static bool trans_RSHRNB(DisasContext *s, arg_rri_esz *a)
7758 static const GVecGen2i ops[3] = {
7759 { .fno = gen_helper_sve2_rshrnb_h },
7760 { .fno = gen_helper_sve2_rshrnb_s },
7761 { .fno = gen_helper_sve2_rshrnb_d },
7763 return do_sve2_shr_narrow(s, a, ops);
7766 static bool trans_RSHRNT(DisasContext *s, arg_rri_esz *a)
7768 static const GVecGen2i ops[3] = {
7769 { .fno = gen_helper_sve2_rshrnt_h },
7770 { .fno = gen_helper_sve2_rshrnt_s },
7771 { .fno = gen_helper_sve2_rshrnt_d },
7773 return do_sve2_shr_narrow(s, a, ops);
7776 static void gen_sqshrunb_vec(unsigned vece, TCGv_vec d,
7777 TCGv_vec n, int64_t shr)
7779 TCGv_vec t = tcg_temp_new_vec_matching(d);
7780 int halfbits = 4 << vece;
7782 tcg_gen_sari_vec(vece, n, n, shr);
7783 tcg_gen_dupi_vec(vece, t, 0);
7784 tcg_gen_smax_vec(vece, n, n, t);
7785 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
7786 tcg_gen_umin_vec(vece, d, n, t);
7787 tcg_temp_free_vec(t);
7790 static bool trans_SQSHRUNB(DisasContext *s, arg_rri_esz *a)
7792 static const TCGOpcode vec_list[] = {
7793 INDEX_op_sari_vec, INDEX_op_smax_vec, INDEX_op_umin_vec, 0
7795 static const GVecGen2i ops[3] = {
7796 { .fniv = gen_sqshrunb_vec,
7797 .opt_opc = vec_list,
7798 .fno = gen_helper_sve2_sqshrunb_h,
7799 .vece = MO_16 },
7800 { .fniv = gen_sqshrunb_vec,
7801 .opt_opc = vec_list,
7802 .fno = gen_helper_sve2_sqshrunb_s,
7803 .vece = MO_32 },
7804 { .fniv = gen_sqshrunb_vec,
7805 .opt_opc = vec_list,
7806 .fno = gen_helper_sve2_sqshrunb_d,
7807 .vece = MO_64 },
7809 return do_sve2_shr_narrow(s, a, ops);
7812 static void gen_sqshrunt_vec(unsigned vece, TCGv_vec d,
7813 TCGv_vec n, int64_t shr)
7815 TCGv_vec t = tcg_temp_new_vec_matching(d);
7816 int halfbits = 4 << vece;
7818 tcg_gen_sari_vec(vece, n, n, shr);
7819 tcg_gen_dupi_vec(vece, t, 0);
7820 tcg_gen_smax_vec(vece, n, n, t);
7821 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
7822 tcg_gen_umin_vec(vece, n, n, t);
7823 tcg_gen_shli_vec(vece, n, n, halfbits);
7824 tcg_gen_bitsel_vec(vece, d, t, d, n);
7825 tcg_temp_free_vec(t);
7828 static bool trans_SQSHRUNT(DisasContext *s, arg_rri_esz *a)
7830 static const TCGOpcode vec_list[] = {
7831 INDEX_op_shli_vec, INDEX_op_sari_vec,
7832 INDEX_op_smax_vec, INDEX_op_umin_vec, 0
7834 static const GVecGen2i ops[3] = {
7835 { .fniv = gen_sqshrunt_vec,
7836 .opt_opc = vec_list,
7837 .load_dest = true,
7838 .fno = gen_helper_sve2_sqshrunt_h,
7839 .vece = MO_16 },
7840 { .fniv = gen_sqshrunt_vec,
7841 .opt_opc = vec_list,
7842 .load_dest = true,
7843 .fno = gen_helper_sve2_sqshrunt_s,
7844 .vece = MO_32 },
7845 { .fniv = gen_sqshrunt_vec,
7846 .opt_opc = vec_list,
7847 .load_dest = true,
7848 .fno = gen_helper_sve2_sqshrunt_d,
7849 .vece = MO_64 },
7851 return do_sve2_shr_narrow(s, a, ops);
7854 static bool trans_SQRSHRUNB(DisasContext *s, arg_rri_esz *a)
7856 static const GVecGen2i ops[3] = {
7857 { .fno = gen_helper_sve2_sqrshrunb_h },
7858 { .fno = gen_helper_sve2_sqrshrunb_s },
7859 { .fno = gen_helper_sve2_sqrshrunb_d },
7861 return do_sve2_shr_narrow(s, a, ops);
7864 static bool trans_SQRSHRUNT(DisasContext *s, arg_rri_esz *a)
7866 static const GVecGen2i ops[3] = {
7867 { .fno = gen_helper_sve2_sqrshrunt_h },
7868 { .fno = gen_helper_sve2_sqrshrunt_s },
7869 { .fno = gen_helper_sve2_sqrshrunt_d },
7871 return do_sve2_shr_narrow(s, a, ops);
7874 static void gen_sqshrnb_vec(unsigned vece, TCGv_vec d,
7875 TCGv_vec n, int64_t shr)
7877 TCGv_vec t = tcg_temp_new_vec_matching(d);
7878 int halfbits = 4 << vece;
7879 int64_t max = MAKE_64BIT_MASK(0, halfbits - 1);
7880 int64_t min = -max - 1;
7882 tcg_gen_sari_vec(vece, n, n, shr);
7883 tcg_gen_dupi_vec(vece, t, min);
7884 tcg_gen_smax_vec(vece, n, n, t);
7885 tcg_gen_dupi_vec(vece, t, max);
7886 tcg_gen_smin_vec(vece, n, n, t);
7887 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
7888 tcg_gen_and_vec(vece, d, n, t);
7889 tcg_temp_free_vec(t);
7892 static bool trans_SQSHRNB(DisasContext *s, arg_rri_esz *a)
7894 static const TCGOpcode vec_list[] = {
7895 INDEX_op_sari_vec, INDEX_op_smax_vec, INDEX_op_smin_vec, 0
7897 static const GVecGen2i ops[3] = {
7898 { .fniv = gen_sqshrnb_vec,
7899 .opt_opc = vec_list,
7900 .fno = gen_helper_sve2_sqshrnb_h,
7901 .vece = MO_16 },
7902 { .fniv = gen_sqshrnb_vec,
7903 .opt_opc = vec_list,
7904 .fno = gen_helper_sve2_sqshrnb_s,
7905 .vece = MO_32 },
7906 { .fniv = gen_sqshrnb_vec,
7907 .opt_opc = vec_list,
7908 .fno = gen_helper_sve2_sqshrnb_d,
7909 .vece = MO_64 },
7911 return do_sve2_shr_narrow(s, a, ops);
7914 static void gen_sqshrnt_vec(unsigned vece, TCGv_vec d,
7915 TCGv_vec n, int64_t shr)
7917 TCGv_vec t = tcg_temp_new_vec_matching(d);
7918 int halfbits = 4 << vece;
7919 int64_t max = MAKE_64BIT_MASK(0, halfbits - 1);
7920 int64_t min = -max - 1;
7922 tcg_gen_sari_vec(vece, n, n, shr);
7923 tcg_gen_dupi_vec(vece, t, min);
7924 tcg_gen_smax_vec(vece, n, n, t);
7925 tcg_gen_dupi_vec(vece, t, max);
7926 tcg_gen_smin_vec(vece, n, n, t);
7927 tcg_gen_shli_vec(vece, n, n, halfbits);
7928 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
7929 tcg_gen_bitsel_vec(vece, d, t, d, n);
7930 tcg_temp_free_vec(t);
7933 static bool trans_SQSHRNT(DisasContext *s, arg_rri_esz *a)
7935 static const TCGOpcode vec_list[] = {
7936 INDEX_op_shli_vec, INDEX_op_sari_vec,
7937 INDEX_op_smax_vec, INDEX_op_smin_vec, 0
7939 static const GVecGen2i ops[3] = {
7940 { .fniv = gen_sqshrnt_vec,
7941 .opt_opc = vec_list,
7942 .load_dest = true,
7943 .fno = gen_helper_sve2_sqshrnt_h,
7944 .vece = MO_16 },
7945 { .fniv = gen_sqshrnt_vec,
7946 .opt_opc = vec_list,
7947 .load_dest = true,
7948 .fno = gen_helper_sve2_sqshrnt_s,
7949 .vece = MO_32 },
7950 { .fniv = gen_sqshrnt_vec,
7951 .opt_opc = vec_list,
7952 .load_dest = true,
7953 .fno = gen_helper_sve2_sqshrnt_d,
7954 .vece = MO_64 },
7956 return do_sve2_shr_narrow(s, a, ops);
7959 static bool trans_SQRSHRNB(DisasContext *s, arg_rri_esz *a)
7961 static const GVecGen2i ops[3] = {
7962 { .fno = gen_helper_sve2_sqrshrnb_h },
7963 { .fno = gen_helper_sve2_sqrshrnb_s },
7964 { .fno = gen_helper_sve2_sqrshrnb_d },
7966 return do_sve2_shr_narrow(s, a, ops);
7969 static bool trans_SQRSHRNT(DisasContext *s, arg_rri_esz *a)
7971 static const GVecGen2i ops[3] = {
7972 { .fno = gen_helper_sve2_sqrshrnt_h },
7973 { .fno = gen_helper_sve2_sqrshrnt_s },
7974 { .fno = gen_helper_sve2_sqrshrnt_d },
7976 return do_sve2_shr_narrow(s, a, ops);
7979 static void gen_uqshrnb_vec(unsigned vece, TCGv_vec d,
7980 TCGv_vec n, int64_t shr)
7982 TCGv_vec t = tcg_temp_new_vec_matching(d);
7983 int halfbits = 4 << vece;
7985 tcg_gen_shri_vec(vece, n, n, shr);
7986 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
7987 tcg_gen_umin_vec(vece, d, n, t);
7988 tcg_temp_free_vec(t);
7991 static bool trans_UQSHRNB(DisasContext *s, arg_rri_esz *a)
7993 static const TCGOpcode vec_list[] = {
7994 INDEX_op_shri_vec, INDEX_op_umin_vec, 0
7996 static const GVecGen2i ops[3] = {
7997 { .fniv = gen_uqshrnb_vec,
7998 .opt_opc = vec_list,
7999 .fno = gen_helper_sve2_uqshrnb_h,
8000 .vece = MO_16 },
8001 { .fniv = gen_uqshrnb_vec,
8002 .opt_opc = vec_list,
8003 .fno = gen_helper_sve2_uqshrnb_s,
8004 .vece = MO_32 },
8005 { .fniv = gen_uqshrnb_vec,
8006 .opt_opc = vec_list,
8007 .fno = gen_helper_sve2_uqshrnb_d,
8008 .vece = MO_64 },
8010 return do_sve2_shr_narrow(s, a, ops);
8013 static void gen_uqshrnt_vec(unsigned vece, TCGv_vec d,
8014 TCGv_vec n, int64_t shr)
8016 TCGv_vec t = tcg_temp_new_vec_matching(d);
8017 int halfbits = 4 << vece;
8019 tcg_gen_shri_vec(vece, n, n, shr);
8020 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
8021 tcg_gen_umin_vec(vece, n, n, t);
8022 tcg_gen_shli_vec(vece, n, n, halfbits);
8023 tcg_gen_bitsel_vec(vece, d, t, d, n);
8024 tcg_temp_free_vec(t);
8027 static bool trans_UQSHRNT(DisasContext *s, arg_rri_esz *a)
8029 static const TCGOpcode vec_list[] = {
8030 INDEX_op_shli_vec, INDEX_op_shri_vec, INDEX_op_umin_vec, 0
8032 static const GVecGen2i ops[3] = {
8033 { .fniv = gen_uqshrnt_vec,
8034 .opt_opc = vec_list,
8035 .load_dest = true,
8036 .fno = gen_helper_sve2_uqshrnt_h,
8037 .vece = MO_16 },
8038 { .fniv = gen_uqshrnt_vec,
8039 .opt_opc = vec_list,
8040 .load_dest = true,
8041 .fno = gen_helper_sve2_uqshrnt_s,
8042 .vece = MO_32 },
8043 { .fniv = gen_uqshrnt_vec,
8044 .opt_opc = vec_list,
8045 .load_dest = true,
8046 .fno = gen_helper_sve2_uqshrnt_d,
8047 .vece = MO_64 },
8049 return do_sve2_shr_narrow(s, a, ops);
8052 static bool trans_UQRSHRNB(DisasContext *s, arg_rri_esz *a)
8054 static const GVecGen2i ops[3] = {
8055 { .fno = gen_helper_sve2_uqrshrnb_h },
8056 { .fno = gen_helper_sve2_uqrshrnb_s },
8057 { .fno = gen_helper_sve2_uqrshrnb_d },
8059 return do_sve2_shr_narrow(s, a, ops);
8062 static bool trans_UQRSHRNT(DisasContext *s, arg_rri_esz *a)
8064 static const GVecGen2i ops[3] = {
8065 { .fno = gen_helper_sve2_uqrshrnt_h },
8066 { .fno = gen_helper_sve2_uqrshrnt_s },
8067 { .fno = gen_helper_sve2_uqrshrnt_d },
8069 return do_sve2_shr_narrow(s, a, ops);
8072 #define DO_SVE2_ZZZ_NARROW(NAME, name) \
8073 static bool trans_##NAME(DisasContext *s, arg_rrr_esz *a) \
8075 static gen_helper_gvec_3 * const fns[4] = { \
8076 NULL, gen_helper_sve2_##name##_h, \
8077 gen_helper_sve2_##name##_s, gen_helper_sve2_##name##_d, \
8078 }; \
8079 return do_sve2_zzz_ool(s, a, fns[a->esz]); \
8082 DO_SVE2_ZZZ_NARROW(ADDHNB, addhnb)
8083 DO_SVE2_ZZZ_NARROW(ADDHNT, addhnt)
8084 DO_SVE2_ZZZ_NARROW(RADDHNB, raddhnb)
8085 DO_SVE2_ZZZ_NARROW(RADDHNT, raddhnt)
8087 DO_SVE2_ZZZ_NARROW(SUBHNB, subhnb)
8088 DO_SVE2_ZZZ_NARROW(SUBHNT, subhnt)
8089 DO_SVE2_ZZZ_NARROW(RSUBHNB, rsubhnb)
8090 DO_SVE2_ZZZ_NARROW(RSUBHNT, rsubhnt)
8092 static bool do_sve2_ppzz_flags(DisasContext *s, arg_rprr_esz *a,
8093 gen_helper_gvec_flags_4 *fn)
8095 if (!dc_isar_feature(aa64_sve2, s)) {
8096 return false;
8098 return do_ppzz_flags(s, a, fn);
8101 #define DO_SVE2_PPZZ_MATCH(NAME, name) \
8102 static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
8104 static gen_helper_gvec_flags_4 * const fns[4] = { \
8105 gen_helper_sve2_##name##_ppzz_b, gen_helper_sve2_##name##_ppzz_h, \
8106 NULL, NULL \
8107 }; \
8108 return do_sve2_ppzz_flags(s, a, fns[a->esz]); \
8111 DO_SVE2_PPZZ_MATCH(MATCH, match)
8112 DO_SVE2_PPZZ_MATCH(NMATCH, nmatch)
8114 static bool trans_HISTCNT(DisasContext *s, arg_rprr_esz *a)
8116 static gen_helper_gvec_4 * const fns[2] = {
8117 gen_helper_sve2_histcnt_s, gen_helper_sve2_histcnt_d
8119 if (a->esz < 2) {
8120 return false;
8122 return do_sve2_zpzz_ool(s, a, fns[a->esz - 2]);
8125 static bool trans_HISTSEG(DisasContext *s, arg_rrr_esz *a)
8127 if (a->esz != 0) {
8128 return false;
8130 return do_sve2_zzz_ool(s, a, gen_helper_sve2_histseg);
8133 static bool do_sve2_zpzz_fp(DisasContext *s, arg_rprr_esz *a,
8134 gen_helper_gvec_4_ptr *fn)
8136 if (!dc_isar_feature(aa64_sve2, s)) {
8137 return false;
8139 return do_zpzz_fp(s, a, fn);
8142 #define DO_SVE2_ZPZZ_FP(NAME, name) \
8143 static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
8145 static gen_helper_gvec_4_ptr * const fns[4] = { \
8146 NULL, gen_helper_sve2_##name##_zpzz_h, \
8147 gen_helper_sve2_##name##_zpzz_s, gen_helper_sve2_##name##_zpzz_d \
8148 }; \
8149 return do_sve2_zpzz_fp(s, a, fns[a->esz]); \
8152 DO_SVE2_ZPZZ_FP(FADDP, faddp)
8153 DO_SVE2_ZPZZ_FP(FMAXNMP, fmaxnmp)
8154 DO_SVE2_ZPZZ_FP(FMINNMP, fminnmp)
8155 DO_SVE2_ZPZZ_FP(FMAXP, fmaxp)
8156 DO_SVE2_ZPZZ_FP(FMINP, fminp)
8159 * SVE Integer Multiply-Add (unpredicated)
8162 static bool trans_FMMLA(DisasContext *s, arg_rrrr_esz *a)
8164 gen_helper_gvec_4_ptr *fn;
8166 switch (a->esz) {
8167 case MO_32:
8168 if (!dc_isar_feature(aa64_sve_f32mm, s)) {
8169 return false;
8171 fn = gen_helper_fmmla_s;
8172 break;
8173 case MO_64:
8174 if (!dc_isar_feature(aa64_sve_f64mm, s)) {
8175 return false;
8177 fn = gen_helper_fmmla_d;
8178 break;
8179 default:
8180 return false;
8183 if (sve_access_check(s)) {
8184 unsigned vsz = vec_full_reg_size(s);
8185 TCGv_ptr status = fpstatus_ptr(FPST_FPCR);
8186 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
8187 vec_full_reg_offset(s, a->rn),
8188 vec_full_reg_offset(s, a->rm),
8189 vec_full_reg_offset(s, a->ra),
8190 status, vsz, vsz, 0, fn);
8191 tcg_temp_free_ptr(status);
8193 return true;
8196 static bool do_sqdmlal_zzzw(DisasContext *s, arg_rrrr_esz *a,
8197 bool sel1, bool sel2)
8199 static gen_helper_gvec_4 * const fns[] = {
8200 NULL, gen_helper_sve2_sqdmlal_zzzw_h,
8201 gen_helper_sve2_sqdmlal_zzzw_s, gen_helper_sve2_sqdmlal_zzzw_d,
8203 return do_sve2_zzzz_ool(s, a, fns[a->esz], (sel2 << 1) | sel1);
8206 static bool do_sqdmlsl_zzzw(DisasContext *s, arg_rrrr_esz *a,
8207 bool sel1, bool sel2)
8209 static gen_helper_gvec_4 * const fns[] = {
8210 NULL, gen_helper_sve2_sqdmlsl_zzzw_h,
8211 gen_helper_sve2_sqdmlsl_zzzw_s, gen_helper_sve2_sqdmlsl_zzzw_d,
8213 return do_sve2_zzzz_ool(s, a, fns[a->esz], (sel2 << 1) | sel1);
8216 static bool trans_SQDMLALB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8218 return do_sqdmlal_zzzw(s, a, false, false);
8221 static bool trans_SQDMLALT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8223 return do_sqdmlal_zzzw(s, a, true, true);
8226 static bool trans_SQDMLALBT(DisasContext *s, arg_rrrr_esz *a)
8228 return do_sqdmlal_zzzw(s, a, false, true);
8231 static bool trans_SQDMLSLB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8233 return do_sqdmlsl_zzzw(s, a, false, false);
8236 static bool trans_SQDMLSLT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8238 return do_sqdmlsl_zzzw(s, a, true, true);
8241 static bool trans_SQDMLSLBT(DisasContext *s, arg_rrrr_esz *a)
8243 return do_sqdmlsl_zzzw(s, a, false, true);
8246 static bool trans_SQRDMLAH_zzzz(DisasContext *s, arg_rrrr_esz *a)
8248 static gen_helper_gvec_4 * const fns[] = {
8249 gen_helper_sve2_sqrdmlah_b, gen_helper_sve2_sqrdmlah_h,
8250 gen_helper_sve2_sqrdmlah_s, gen_helper_sve2_sqrdmlah_d,
8252 return do_sve2_zzzz_ool(s, a, fns[a->esz], 0);
8255 static bool trans_SQRDMLSH_zzzz(DisasContext *s, arg_rrrr_esz *a)
8257 static gen_helper_gvec_4 * const fns[] = {
8258 gen_helper_sve2_sqrdmlsh_b, gen_helper_sve2_sqrdmlsh_h,
8259 gen_helper_sve2_sqrdmlsh_s, gen_helper_sve2_sqrdmlsh_d,
8261 return do_sve2_zzzz_ool(s, a, fns[a->esz], 0);
8264 static bool do_smlal_zzzw(DisasContext *s, arg_rrrr_esz *a, bool sel)
8266 static gen_helper_gvec_4 * const fns[] = {
8267 NULL, gen_helper_sve2_smlal_zzzw_h,
8268 gen_helper_sve2_smlal_zzzw_s, gen_helper_sve2_smlal_zzzw_d,
8270 return do_sve2_zzzz_ool(s, a, fns[a->esz], sel);
8273 static bool trans_SMLALB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8275 return do_smlal_zzzw(s, a, false);
8278 static bool trans_SMLALT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8280 return do_smlal_zzzw(s, a, true);
8283 static bool do_umlal_zzzw(DisasContext *s, arg_rrrr_esz *a, bool sel)
8285 static gen_helper_gvec_4 * const fns[] = {
8286 NULL, gen_helper_sve2_umlal_zzzw_h,
8287 gen_helper_sve2_umlal_zzzw_s, gen_helper_sve2_umlal_zzzw_d,
8289 return do_sve2_zzzz_ool(s, a, fns[a->esz], sel);
8292 static bool trans_UMLALB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8294 return do_umlal_zzzw(s, a, false);
8297 static bool trans_UMLALT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8299 return do_umlal_zzzw(s, a, true);
8302 static bool do_smlsl_zzzw(DisasContext *s, arg_rrrr_esz *a, bool sel)
8304 static gen_helper_gvec_4 * const fns[] = {
8305 NULL, gen_helper_sve2_smlsl_zzzw_h,
8306 gen_helper_sve2_smlsl_zzzw_s, gen_helper_sve2_smlsl_zzzw_d,
8308 return do_sve2_zzzz_ool(s, a, fns[a->esz], sel);
8311 static bool trans_SMLSLB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8313 return do_smlsl_zzzw(s, a, false);
8316 static bool trans_SMLSLT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8318 return do_smlsl_zzzw(s, a, true);
8321 static bool do_umlsl_zzzw(DisasContext *s, arg_rrrr_esz *a, bool sel)
8323 static gen_helper_gvec_4 * const fns[] = {
8324 NULL, gen_helper_sve2_umlsl_zzzw_h,
8325 gen_helper_sve2_umlsl_zzzw_s, gen_helper_sve2_umlsl_zzzw_d,
8327 return do_sve2_zzzz_ool(s, a, fns[a->esz], sel);
8330 static bool trans_UMLSLB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8332 return do_umlsl_zzzw(s, a, false);
8335 static bool trans_UMLSLT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8337 return do_umlsl_zzzw(s, a, true);
8340 static bool trans_CMLA_zzzz(DisasContext *s, arg_CMLA_zzzz *a)
8342 static gen_helper_gvec_4 * const fns[] = {
8343 gen_helper_sve2_cmla_zzzz_b, gen_helper_sve2_cmla_zzzz_h,
8344 gen_helper_sve2_cmla_zzzz_s, gen_helper_sve2_cmla_zzzz_d,
8347 if (!dc_isar_feature(aa64_sve2, s)) {
8348 return false;
8350 if (sve_access_check(s)) {
8351 gen_gvec_ool_zzzz(s, fns[a->esz], a->rd, a->rn, a->rm, a->ra, a->rot);
8353 return true;
8356 static bool trans_CDOT_zzzz(DisasContext *s, arg_CMLA_zzzz *a)
8358 if (!dc_isar_feature(aa64_sve2, s) || a->esz < MO_32) {
8359 return false;
8361 if (sve_access_check(s)) {
8362 gen_helper_gvec_4 *fn = (a->esz == MO_32
8363 ? gen_helper_sve2_cdot_zzzz_s
8364 : gen_helper_sve2_cdot_zzzz_d);
8365 gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, a->rot);
8367 return true;
8370 static bool trans_SQRDCMLAH_zzzz(DisasContext *s, arg_SQRDCMLAH_zzzz *a)
8372 static gen_helper_gvec_4 * const fns[] = {
8373 gen_helper_sve2_sqrdcmlah_zzzz_b, gen_helper_sve2_sqrdcmlah_zzzz_h,
8374 gen_helper_sve2_sqrdcmlah_zzzz_s, gen_helper_sve2_sqrdcmlah_zzzz_d,
8377 if (!dc_isar_feature(aa64_sve2, s)) {
8378 return false;
8380 if (sve_access_check(s)) {
8381 gen_gvec_ool_zzzz(s, fns[a->esz], a->rd, a->rn, a->rm, a->ra, a->rot);
8383 return true;
8386 static bool trans_USDOT_zzzz(DisasContext *s, arg_USDOT_zzzz *a)
8388 if (a->esz != 2 || !dc_isar_feature(aa64_sve_i8mm, s)) {
8389 return false;
8391 if (sve_access_check(s)) {
8392 unsigned vsz = vec_full_reg_size(s);
8393 tcg_gen_gvec_4_ool(vec_full_reg_offset(s, a->rd),
8394 vec_full_reg_offset(s, a->rn),
8395 vec_full_reg_offset(s, a->rm),
8396 vec_full_reg_offset(s, a->ra),
8397 vsz, vsz, 0, gen_helper_gvec_usdot_b);
8399 return true;
8402 static bool trans_AESMC(DisasContext *s, arg_AESMC *a)
8404 if (!dc_isar_feature(aa64_sve2_aes, s)) {
8405 return false;
8407 if (sve_access_check(s)) {
8408 gen_gvec_ool_zz(s, gen_helper_crypto_aesmc, a->rd, a->rd, a->decrypt);
8410 return true;
8413 static bool do_aese(DisasContext *s, arg_rrr_esz *a, bool decrypt)
8415 if (!dc_isar_feature(aa64_sve2_aes, s)) {
8416 return false;
8418 if (sve_access_check(s)) {
8419 gen_gvec_ool_zzz(s, gen_helper_crypto_aese,
8420 a->rd, a->rn, a->rm, decrypt);
8422 return true;
8425 static bool trans_AESE(DisasContext *s, arg_rrr_esz *a)
8427 return do_aese(s, a, false);
8430 static bool trans_AESD(DisasContext *s, arg_rrr_esz *a)
8432 return do_aese(s, a, true);
8435 static bool do_sm4(DisasContext *s, arg_rrr_esz *a, gen_helper_gvec_3 *fn)
8437 if (!dc_isar_feature(aa64_sve2_sm4, s)) {
8438 return false;
8440 if (sve_access_check(s)) {
8441 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, 0);
8443 return true;
8446 static bool trans_SM4E(DisasContext *s, arg_rrr_esz *a)
8448 return do_sm4(s, a, gen_helper_crypto_sm4e);
8451 static bool trans_SM4EKEY(DisasContext *s, arg_rrr_esz *a)
8453 return do_sm4(s, a, gen_helper_crypto_sm4ekey);
8456 static bool trans_RAX1(DisasContext *s, arg_rrr_esz *a)
8458 if (!dc_isar_feature(aa64_sve2_sha3, s)) {
8459 return false;
8461 if (sve_access_check(s)) {
8462 gen_gvec_fn_zzz(s, gen_gvec_rax1, MO_64, a->rd, a->rn, a->rm);
8464 return true;
8467 static bool trans_FCVTNT_sh(DisasContext *s, arg_rpr_esz *a)
8469 if (!dc_isar_feature(aa64_sve2, s)) {
8470 return false;
8472 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve2_fcvtnt_sh);
8475 static bool trans_FCVTNT_ds(DisasContext *s, arg_rpr_esz *a)
8477 if (!dc_isar_feature(aa64_sve2, s)) {
8478 return false;
8480 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve2_fcvtnt_ds);
8483 static bool trans_FCVTLT_hs(DisasContext *s, arg_rpr_esz *a)
8485 if (!dc_isar_feature(aa64_sve2, s)) {
8486 return false;
8488 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve2_fcvtlt_hs);
8491 static bool trans_FCVTLT_sd(DisasContext *s, arg_rpr_esz *a)
8493 if (!dc_isar_feature(aa64_sve2, s)) {
8494 return false;
8496 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve2_fcvtlt_sd);
8499 static bool trans_FCVTX_ds(DisasContext *s, arg_rpr_esz *a)
8501 if (!dc_isar_feature(aa64_sve2, s)) {
8502 return false;
8504 return do_frint_mode(s, a, float_round_to_odd, gen_helper_sve_fcvt_ds);
8507 static bool trans_FCVTXNT_ds(DisasContext *s, arg_rpr_esz *a)
8509 if (!dc_isar_feature(aa64_sve2, s)) {
8510 return false;
8512 return do_frint_mode(s, a, float_round_to_odd, gen_helper_sve2_fcvtnt_ds);
8515 static bool trans_FLOGB(DisasContext *s, arg_rpr_esz *a)
8517 static gen_helper_gvec_3_ptr * const fns[] = {
8518 NULL, gen_helper_flogb_h,
8519 gen_helper_flogb_s, gen_helper_flogb_d
8522 if (!dc_isar_feature(aa64_sve2, s) || fns[a->esz] == NULL) {
8523 return false;
8525 if (sve_access_check(s)) {
8526 TCGv_ptr status =
8527 fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
8528 unsigned vsz = vec_full_reg_size(s);
8530 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
8531 vec_full_reg_offset(s, a->rn),
8532 pred_full_reg_offset(s, a->pg),
8533 status, vsz, vsz, 0, fns[a->esz]);
8534 tcg_temp_free_ptr(status);
8536 return true;
8539 static bool do_FMLAL_zzzw(DisasContext *s, arg_rrrr_esz *a, bool sub, bool sel)
8541 if (!dc_isar_feature(aa64_sve2, s)) {
8542 return false;
8544 if (sve_access_check(s)) {
8545 unsigned vsz = vec_full_reg_size(s);
8546 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
8547 vec_full_reg_offset(s, a->rn),
8548 vec_full_reg_offset(s, a->rm),
8549 vec_full_reg_offset(s, a->ra),
8550 cpu_env, vsz, vsz, (sel << 1) | sub,
8551 gen_helper_sve2_fmlal_zzzw_s);
8553 return true;
8556 static bool trans_FMLALB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8558 return do_FMLAL_zzzw(s, a, false, false);
8561 static bool trans_FMLALT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8563 return do_FMLAL_zzzw(s, a, false, true);
8566 static bool trans_FMLSLB_zzzw(DisasContext *s, arg_rrrr_esz *a)
8568 return do_FMLAL_zzzw(s, a, true, false);
8571 static bool trans_FMLSLT_zzzw(DisasContext *s, arg_rrrr_esz *a)
8573 return do_FMLAL_zzzw(s, a, true, true);
8576 static bool do_FMLAL_zzxw(DisasContext *s, arg_rrxr_esz *a, bool sub, bool sel)
8578 if (!dc_isar_feature(aa64_sve2, s)) {
8579 return false;
8581 if (sve_access_check(s)) {
8582 unsigned vsz = vec_full_reg_size(s);
8583 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
8584 vec_full_reg_offset(s, a->rn),
8585 vec_full_reg_offset(s, a->rm),
8586 vec_full_reg_offset(s, a->ra),
8587 cpu_env, vsz, vsz,
8588 (a->index << 2) | (sel << 1) | sub,
8589 gen_helper_sve2_fmlal_zzxw_s);
8591 return true;
8594 static bool trans_FMLALB_zzxw(DisasContext *s, arg_rrxr_esz *a)
8596 return do_FMLAL_zzxw(s, a, false, false);
8599 static bool trans_FMLALT_zzxw(DisasContext *s, arg_rrxr_esz *a)
8601 return do_FMLAL_zzxw(s, a, false, true);
8604 static bool trans_FMLSLB_zzxw(DisasContext *s, arg_rrxr_esz *a)
8606 return do_FMLAL_zzxw(s, a, true, false);
8609 static bool trans_FMLSLT_zzxw(DisasContext *s, arg_rrxr_esz *a)
8611 return do_FMLAL_zzxw(s, a, true, true);
8614 static bool do_i8mm_zzzz_ool(DisasContext *s, arg_rrrr_esz *a,
8615 gen_helper_gvec_4 *fn, int data)
8617 if (!dc_isar_feature(aa64_sve_i8mm, s)) {
8618 return false;
8620 if (sve_access_check(s)) {
8621 gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, data);
8623 return true;
8626 static bool trans_SMMLA(DisasContext *s, arg_rrrr_esz *a)
8628 return do_i8mm_zzzz_ool(s, a, gen_helper_gvec_smmla_b, 0);
8631 static bool trans_USMMLA(DisasContext *s, arg_rrrr_esz *a)
8633 return do_i8mm_zzzz_ool(s, a, gen_helper_gvec_usmmla_b, 0);
8636 static bool trans_UMMLA(DisasContext *s, arg_rrrr_esz *a)
8638 return do_i8mm_zzzz_ool(s, a, gen_helper_gvec_ummla_b, 0);