]> git.proxmox.com Git - mirror_qemu.git/blame - target/arm/translate-sve.c
target/arm: Implement SVE2 integer add/subtract long with carry
[mirror_qemu.git] / target / arm / translate-sve.c
CommitLineData
38388f7e
RH
1/*
2 * AArch64 SVE translation
3 *
4 * Copyright (c) 2018 Linaro, Ltd
5 *
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
50f57e09 9 * version 2.1 of the License, or (at your option) any later version.
38388f7e
RH
10 *
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.
15 *
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/>.
18 */
19
20#include "qemu/osdep.h"
21#include "cpu.h"
22#include "exec/exec-all.h"
dcb32f1d
PMD
23#include "tcg/tcg-op.h"
24#include "tcg/tcg-op-gvec.h"
25#include "tcg/tcg-gvec-desc.h"
38388f7e
RH
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"
cc48affe 35#include "fpu/softfloat.h"
38388f7e 36
757f9cff 37
9ee3a611
RH
38typedef void GVecGen2sFn(unsigned, uint32_t, uint32_t,
39 TCGv_i64, uint32_t, uint32_t);
40
38cadeba
RH
41typedef void gen_helper_gvec_flags_3(TCGv_i32, TCGv_ptr, TCGv_ptr,
42 TCGv_ptr, TCGv_i32);
757f9cff
RH
43typedef void gen_helper_gvec_flags_4(TCGv_i32, TCGv_ptr, TCGv_ptr,
44 TCGv_ptr, TCGv_ptr, TCGv_i32);
45
c4e7c493 46typedef void gen_helper_gvec_mem(TCGv_env, TCGv_ptr, TCGv_i64, TCGv_i32);
f6dbf62a
RH
47typedef void gen_helper_gvec_mem_scatter(TCGv_env, TCGv_ptr, TCGv_ptr,
48 TCGv_ptr, TCGv_i64, TCGv_i32);
c4e7c493 49
ccd841c3
RH
50/*
51 * Helpers for extracting complex instruction fields.
52 */
53
54/* See e.g. ASR (immediate, predicated).
55 * Returns -1 for unallocated encoding; diagnose later.
56 */
451e4ffd 57static int tszimm_esz(DisasContext *s, int x)
ccd841c3
RH
58{
59 x >>= 3; /* discard imm3 */
60 return 31 - clz32(x);
61}
62
451e4ffd 63static int tszimm_shr(DisasContext *s, int x)
ccd841c3 64{
451e4ffd 65 return (16 << tszimm_esz(s, x)) - x;
ccd841c3
RH
66}
67
68/* See e.g. LSL (immediate, predicated). */
451e4ffd 69static int tszimm_shl(DisasContext *s, int x)
ccd841c3 70{
451e4ffd 71 return x - (8 << tszimm_esz(s, x));
ccd841c3
RH
72}
73
451e4ffd 74static inline int plus1(DisasContext *s, int x)
24e82e68
RH
75{
76 return x + 1;
77}
78
f25a2361 79/* The SH bit is in bit 8. Extract the low 8 and shift. */
451e4ffd 80static inline int expand_imm_sh8s(DisasContext *s, int x)
f25a2361
RH
81{
82 return (int8_t)x << (x & 0x100 ? 8 : 0);
83}
84
451e4ffd 85static inline int expand_imm_sh8u(DisasContext *s, int x)
6e6a157d
RH
86{
87 return (uint8_t)x << (x & 0x100 ? 8 : 0);
88}
89
c4e7c493
RH
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.
92 */
451e4ffd 93static inline int msz_dtype(DisasContext *s, int msz)
c4e7c493
RH
94{
95 static const uint8_t dtype[4] = { 0, 5, 10, 15 };
96 return dtype[msz];
97}
98
38388f7e
RH
99/*
100 * Include the generated decoder.
101 */
102
139c1837 103#include "decode-sve.c.inc"
38388f7e
RH
104
105/*
106 * Implement all of the translator functions referenced by the decoder.
107 */
108
d1822297
RH
109/* Return the offset info CPUARMState of the predicate vector register Pn.
110 * Note for this purpose, FFR is P16.
111 */
112static inline int pred_full_reg_offset(DisasContext *s, int regno)
113{
114 return offsetof(CPUARMState, vfp.pregs[regno]);
115}
116
117/* Return the byte size of the whole predicate register, VL / 64. */
118static inline int pred_full_reg_size(DisasContext *s)
119{
120 return s->sve_len >> 3;
121}
122
516e246a
RH
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.
127 *
128 * Note that this is not needed for the vector registers as they
129 * are always properly sized for tcg vectors.
130 */
131static int size_for_gvec(int size)
132{
133 if (size <= 8) {
134 return 8;
135 } else {
136 return QEMU_ALIGN_UP(size, 16);
137 }
138}
139
140static int pred_gvec_reg_size(DisasContext *s)
141{
142 return size_for_gvec(pred_full_reg_size(s));
143}
144
40e32e5a
RH
145/* Invoke an out-of-line helper on 2 Zregs. */
146static void gen_gvec_ool_zz(DisasContext *s, gen_helper_gvec_2 *fn,
147 int rd, int rn, int data)
148{
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);
153}
154
e645d1a1
RH
155/* Invoke an out-of-line helper on 3 Zregs. */
156static void gen_gvec_ool_zzz(DisasContext *s, gen_helper_gvec_3 *fn,
157 int rd, int rn, int rm, int data)
158{
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);
164}
165
38650638
RH
166/* Invoke an out-of-line helper on 4 Zregs. */
167static void gen_gvec_ool_zzzz(DisasContext *s, gen_helper_gvec_4 *fn,
168 int rd, int rn, int rm, int ra, int data)
169{
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);
176}
177
96a461f7
RH
178/* Invoke an out-of-line helper on 2 Zregs and a predicate. */
179static void gen_gvec_ool_zzp(DisasContext *s, gen_helper_gvec_3 *fn,
180 int rd, int rn, int pg, int data)
181{
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);
187}
188
36cbb7a8
RH
189/* Invoke an out-of-line helper on 3 Zregs and a predicate. */
190static void gen_gvec_ool_zzzp(DisasContext *s, gen_helper_gvec_4 *fn,
191 int rd, int rn, int rm, int pg, int data)
192{
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);
199}
f7d79c41 200
36cbb7a8 201/* Invoke a vector expander on two Zregs. */
f7d79c41
RH
202static void gen_gvec_fn_zz(DisasContext *s, GVecGen2Fn *gvec_fn,
203 int esz, int rd, int rn)
38388f7e 204{
f7d79c41
RH
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);
38388f7e
RH
208}
209
39eea561 210/* Invoke a vector expander on three Zregs. */
28c4da31
RH
211static void gen_gvec_fn_zzz(DisasContext *s, GVecGen3Fn *gvec_fn,
212 int esz, int rd, int rn, int rm)
38388f7e 213{
28c4da31
RH
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);
38388f7e
RH
218}
219
39eea561
RH
220/* Invoke a vector move on two Zregs. */
221static bool do_mov_z(DisasContext *s, int rd, int rn)
38388f7e 222{
f7d79c41
RH
223 if (sve_access_check(s)) {
224 gen_gvec_fn_zz(s, tcg_gen_gvec_mov, MO_8, rd, rn);
225 }
226 return true;
38388f7e
RH
227}
228
d9d78dcc
RH
229/* Initialize a Zreg with replications of a 64-bit immediate. */
230static void do_dupi_z(DisasContext *s, int rd, uint64_t word)
231{
232 unsigned vsz = vec_full_reg_size(s);
8711e71f 233 tcg_gen_gvec_dup_imm(MO_64, vec_full_reg_offset(s, rd), vsz, vsz, word);
d9d78dcc
RH
234}
235
516e246a 236/* Invoke a vector expander on three Pregs. */
dd81a8d7
RH
237static void gen_gvec_fn_ppp(DisasContext *s, GVecGen3Fn *gvec_fn,
238 int rd, int rn, int rm)
516e246a 239{
dd81a8d7
RH
240 unsigned psz = pred_gvec_reg_size(s);
241 gvec_fn(MO_64, pred_full_reg_offset(s, rd),
242 pred_full_reg_offset(s, rn),
243 pred_full_reg_offset(s, rm), psz, psz);
516e246a
RH
244}
245
246/* Invoke a vector move on two Pregs. */
247static bool do_mov_p(DisasContext *s, int rd, int rn)
248{
d0b2df5a
RH
249 if (sve_access_check(s)) {
250 unsigned psz = pred_gvec_reg_size(s);
251 tcg_gen_gvec_mov(MO_8, pred_full_reg_offset(s, rd),
252 pred_full_reg_offset(s, rn), psz, psz);
253 }
254 return true;
516e246a
RH
255}
256
9e18d7a6
RH
257/* Set the cpu flags as per a return from an SVE helper. */
258static void do_pred_flags(TCGv_i32 t)
259{
260 tcg_gen_mov_i32(cpu_NF, t);
261 tcg_gen_andi_i32(cpu_ZF, t, 2);
262 tcg_gen_andi_i32(cpu_CF, t, 1);
263 tcg_gen_movi_i32(cpu_VF, 0);
264}
265
266/* Subroutines computing the ARM PredTest psuedofunction. */
267static void do_predtest1(TCGv_i64 d, TCGv_i64 g)
268{
269 TCGv_i32 t = tcg_temp_new_i32();
270
271 gen_helper_sve_predtest1(t, d, g);
272 do_pred_flags(t);
273 tcg_temp_free_i32(t);
274}
275
276static void do_predtest(DisasContext *s, int dofs, int gofs, int words)
277{
278 TCGv_ptr dptr = tcg_temp_new_ptr();
279 TCGv_ptr gptr = tcg_temp_new_ptr();
280 TCGv_i32 t;
281
282 tcg_gen_addi_ptr(dptr, cpu_env, dofs);
283 tcg_gen_addi_ptr(gptr, cpu_env, gofs);
284 t = tcg_const_i32(words);
285
286 gen_helper_sve_predtest(t, dptr, gptr, t);
287 tcg_temp_free_ptr(dptr);
288 tcg_temp_free_ptr(gptr);
289
290 do_pred_flags(t);
291 tcg_temp_free_i32(t);
292}
293
028e2a7b
RH
294/* For each element size, the bits within a predicate word that are active. */
295const uint64_t pred_esz_masks[4] = {
296 0xffffffffffffffffull, 0x5555555555555555ull,
297 0x1111111111111111ull, 0x0101010101010101ull
298};
299
39eea561
RH
300/*
301 *** SVE Logical - Unpredicated Group
302 */
303
28c4da31
RH
304static bool do_zzz_fn(DisasContext *s, arg_rrr_esz *a, GVecGen3Fn *gvec_fn)
305{
306 if (sve_access_check(s)) {
307 gen_gvec_fn_zzz(s, gvec_fn, a->esz, a->rd, a->rn, a->rm);
308 }
309 return true;
310}
311
3a7be554 312static bool trans_AND_zzz(DisasContext *s, arg_rrr_esz *a)
39eea561 313{
28c4da31 314 return do_zzz_fn(s, a, tcg_gen_gvec_and);
39eea561
RH
315}
316
3a7be554 317static bool trans_ORR_zzz(DisasContext *s, arg_rrr_esz *a)
39eea561 318{
28c4da31 319 return do_zzz_fn(s, a, tcg_gen_gvec_or);
39eea561
RH
320}
321
3a7be554 322static bool trans_EOR_zzz(DisasContext *s, arg_rrr_esz *a)
39eea561 323{
28c4da31 324 return do_zzz_fn(s, a, tcg_gen_gvec_xor);
39eea561
RH
325}
326
3a7be554 327static bool trans_BIC_zzz(DisasContext *s, arg_rrr_esz *a)
38388f7e 328{
28c4da31 329 return do_zzz_fn(s, a, tcg_gen_gvec_andc);
38388f7e 330}
d1822297 331
fea98f9c
RH
332/*
333 *** SVE Integer Arithmetic - Unpredicated Group
334 */
335
3a7be554 336static bool trans_ADD_zzz(DisasContext *s, arg_rrr_esz *a)
fea98f9c 337{
28c4da31 338 return do_zzz_fn(s, a, tcg_gen_gvec_add);
fea98f9c
RH
339}
340
3a7be554 341static bool trans_SUB_zzz(DisasContext *s, arg_rrr_esz *a)
fea98f9c 342{
28c4da31 343 return do_zzz_fn(s, a, tcg_gen_gvec_sub);
fea98f9c
RH
344}
345
3a7be554 346static bool trans_SQADD_zzz(DisasContext *s, arg_rrr_esz *a)
fea98f9c 347{
28c4da31 348 return do_zzz_fn(s, a, tcg_gen_gvec_ssadd);
fea98f9c
RH
349}
350
3a7be554 351static bool trans_SQSUB_zzz(DisasContext *s, arg_rrr_esz *a)
fea98f9c 352{
28c4da31 353 return do_zzz_fn(s, a, tcg_gen_gvec_sssub);
fea98f9c
RH
354}
355
3a7be554 356static bool trans_UQADD_zzz(DisasContext *s, arg_rrr_esz *a)
fea98f9c 357{
28c4da31 358 return do_zzz_fn(s, a, tcg_gen_gvec_usadd);
fea98f9c
RH
359}
360
3a7be554 361static bool trans_UQSUB_zzz(DisasContext *s, arg_rrr_esz *a)
fea98f9c 362{
28c4da31 363 return do_zzz_fn(s, a, tcg_gen_gvec_ussub);
fea98f9c
RH
364}
365
f97cfd59
RH
366/*
367 *** SVE Integer Arithmetic - Binary Predicated Group
368 */
369
370static bool do_zpzz_ool(DisasContext *s, arg_rprr_esz *a, gen_helper_gvec_4 *fn)
371{
f97cfd59
RH
372 if (fn == NULL) {
373 return false;
374 }
375 if (sve_access_check(s)) {
36cbb7a8 376 gen_gvec_ool_zzzp(s, fn, a->rd, a->rn, a->rm, a->pg, 0);
f97cfd59
RH
377 }
378 return true;
379}
380
a2103582
RH
381/* Select active elememnts from Zn and inactive elements from Zm,
382 * storing the result in Zd.
383 */
384static void do_sel_z(DisasContext *s, int rd, int rn, int rm, int pg, int esz)
385{
386 static gen_helper_gvec_4 * const fns[4] = {
387 gen_helper_sve_sel_zpzz_b, gen_helper_sve_sel_zpzz_h,
388 gen_helper_sve_sel_zpzz_s, gen_helper_sve_sel_zpzz_d
389 };
36cbb7a8 390 gen_gvec_ool_zzzp(s, fns[esz], rd, rn, rm, pg, 0);
a2103582
RH
391}
392
f97cfd59 393#define DO_ZPZZ(NAME, name) \
3a7be554 394static bool trans_##NAME##_zpzz(DisasContext *s, arg_rprr_esz *a) \
f97cfd59
RH
395{ \
396 static gen_helper_gvec_4 * const fns[4] = { \
397 gen_helper_sve_##name##_zpzz_b, gen_helper_sve_##name##_zpzz_h, \
398 gen_helper_sve_##name##_zpzz_s, gen_helper_sve_##name##_zpzz_d, \
399 }; \
400 return do_zpzz_ool(s, a, fns[a->esz]); \
401}
402
403DO_ZPZZ(AND, and)
404DO_ZPZZ(EOR, eor)
405DO_ZPZZ(ORR, orr)
406DO_ZPZZ(BIC, bic)
407
408DO_ZPZZ(ADD, add)
409DO_ZPZZ(SUB, sub)
410
411DO_ZPZZ(SMAX, smax)
412DO_ZPZZ(UMAX, umax)
413DO_ZPZZ(SMIN, smin)
414DO_ZPZZ(UMIN, umin)
415DO_ZPZZ(SABD, sabd)
416DO_ZPZZ(UABD, uabd)
417
418DO_ZPZZ(MUL, mul)
419DO_ZPZZ(SMULH, smulh)
420DO_ZPZZ(UMULH, umulh)
421
27721dbb
RH
422DO_ZPZZ(ASR, asr)
423DO_ZPZZ(LSR, lsr)
424DO_ZPZZ(LSL, lsl)
425
3a7be554 426static bool trans_SDIV_zpzz(DisasContext *s, arg_rprr_esz *a)
f97cfd59
RH
427{
428 static gen_helper_gvec_4 * const fns[4] = {
429 NULL, NULL, gen_helper_sve_sdiv_zpzz_s, gen_helper_sve_sdiv_zpzz_d
430 };
431 return do_zpzz_ool(s, a, fns[a->esz]);
432}
433
3a7be554 434static bool trans_UDIV_zpzz(DisasContext *s, arg_rprr_esz *a)
f97cfd59
RH
435{
436 static gen_helper_gvec_4 * const fns[4] = {
437 NULL, NULL, gen_helper_sve_udiv_zpzz_s, gen_helper_sve_udiv_zpzz_d
438 };
439 return do_zpzz_ool(s, a, fns[a->esz]);
440}
441
3a7be554 442static bool trans_SEL_zpzz(DisasContext *s, arg_rprr_esz *a)
a2103582
RH
443{
444 if (sve_access_check(s)) {
445 do_sel_z(s, a->rd, a->rn, a->rm, a->pg, a->esz);
446 }
447 return true;
448}
d3fe4a29 449
f97cfd59
RH
450#undef DO_ZPZZ
451
afac6d04
RH
452/*
453 *** SVE Integer Arithmetic - Unary Predicated Group
454 */
455
456static bool do_zpz_ool(DisasContext *s, arg_rpr_esz *a, gen_helper_gvec_3 *fn)
457{
458 if (fn == NULL) {
459 return false;
460 }
461 if (sve_access_check(s)) {
96a461f7 462 gen_gvec_ool_zzp(s, fn, a->rd, a->rn, a->pg, 0);
afac6d04
RH
463 }
464 return true;
465}
466
467#define DO_ZPZ(NAME, name) \
3a7be554 468static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
afac6d04
RH
469{ \
470 static gen_helper_gvec_3 * const fns[4] = { \
471 gen_helper_sve_##name##_b, gen_helper_sve_##name##_h, \
472 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d, \
473 }; \
474 return do_zpz_ool(s, a, fns[a->esz]); \
475}
476
477DO_ZPZ(CLS, cls)
478DO_ZPZ(CLZ, clz)
479DO_ZPZ(CNT_zpz, cnt_zpz)
480DO_ZPZ(CNOT, cnot)
481DO_ZPZ(NOT_zpz, not_zpz)
482DO_ZPZ(ABS, abs)
483DO_ZPZ(NEG, neg)
484
3a7be554 485static bool trans_FABS(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
486{
487 static gen_helper_gvec_3 * const fns[4] = {
488 NULL,
489 gen_helper_sve_fabs_h,
490 gen_helper_sve_fabs_s,
491 gen_helper_sve_fabs_d
492 };
493 return do_zpz_ool(s, a, fns[a->esz]);
494}
495
3a7be554 496static bool trans_FNEG(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
497{
498 static gen_helper_gvec_3 * const fns[4] = {
499 NULL,
500 gen_helper_sve_fneg_h,
501 gen_helper_sve_fneg_s,
502 gen_helper_sve_fneg_d
503 };
504 return do_zpz_ool(s, a, fns[a->esz]);
505}
506
3a7be554 507static bool trans_SXTB(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
508{
509 static gen_helper_gvec_3 * const fns[4] = {
510 NULL,
511 gen_helper_sve_sxtb_h,
512 gen_helper_sve_sxtb_s,
513 gen_helper_sve_sxtb_d
514 };
515 return do_zpz_ool(s, a, fns[a->esz]);
516}
517
3a7be554 518static bool trans_UXTB(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
519{
520 static gen_helper_gvec_3 * const fns[4] = {
521 NULL,
522 gen_helper_sve_uxtb_h,
523 gen_helper_sve_uxtb_s,
524 gen_helper_sve_uxtb_d
525 };
526 return do_zpz_ool(s, a, fns[a->esz]);
527}
528
3a7be554 529static bool trans_SXTH(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
530{
531 static gen_helper_gvec_3 * const fns[4] = {
532 NULL, NULL,
533 gen_helper_sve_sxth_s,
534 gen_helper_sve_sxth_d
535 };
536 return do_zpz_ool(s, a, fns[a->esz]);
537}
538
3a7be554 539static bool trans_UXTH(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
540{
541 static gen_helper_gvec_3 * const fns[4] = {
542 NULL, NULL,
543 gen_helper_sve_uxth_s,
544 gen_helper_sve_uxth_d
545 };
546 return do_zpz_ool(s, a, fns[a->esz]);
547}
548
3a7be554 549static bool trans_SXTW(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
550{
551 return do_zpz_ool(s, a, a->esz == 3 ? gen_helper_sve_sxtw_d : NULL);
552}
553
3a7be554 554static bool trans_UXTW(DisasContext *s, arg_rpr_esz *a)
afac6d04
RH
555{
556 return do_zpz_ool(s, a, a->esz == 3 ? gen_helper_sve_uxtw_d : NULL);
557}
558
559#undef DO_ZPZ
560
047cec97
RH
561/*
562 *** SVE Integer Reduction Group
563 */
564
565typedef void gen_helper_gvec_reduc(TCGv_i64, TCGv_ptr, TCGv_ptr, TCGv_i32);
566static bool do_vpz_ool(DisasContext *s, arg_rpr_esz *a,
567 gen_helper_gvec_reduc *fn)
568{
569 unsigned vsz = vec_full_reg_size(s);
570 TCGv_ptr t_zn, t_pg;
571 TCGv_i32 desc;
572 TCGv_i64 temp;
573
574 if (fn == NULL) {
575 return false;
576 }
577 if (!sve_access_check(s)) {
578 return true;
579 }
580
581 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
582 temp = tcg_temp_new_i64();
583 t_zn = tcg_temp_new_ptr();
584 t_pg = tcg_temp_new_ptr();
585
586 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, a->rn));
587 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->pg));
588 fn(temp, t_zn, t_pg, desc);
589 tcg_temp_free_ptr(t_zn);
590 tcg_temp_free_ptr(t_pg);
591 tcg_temp_free_i32(desc);
592
593 write_fp_dreg(s, a->rd, temp);
594 tcg_temp_free_i64(temp);
595 return true;
596}
597
598#define DO_VPZ(NAME, name) \
3a7be554 599static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
047cec97
RH
600{ \
601 static gen_helper_gvec_reduc * const fns[4] = { \
602 gen_helper_sve_##name##_b, gen_helper_sve_##name##_h, \
603 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d, \
604 }; \
605 return do_vpz_ool(s, a, fns[a->esz]); \
606}
607
608DO_VPZ(ORV, orv)
609DO_VPZ(ANDV, andv)
610DO_VPZ(EORV, eorv)
611
612DO_VPZ(UADDV, uaddv)
613DO_VPZ(SMAXV, smaxv)
614DO_VPZ(UMAXV, umaxv)
615DO_VPZ(SMINV, sminv)
616DO_VPZ(UMINV, uminv)
617
3a7be554 618static bool trans_SADDV(DisasContext *s, arg_rpr_esz *a)
047cec97
RH
619{
620 static gen_helper_gvec_reduc * const fns[4] = {
621 gen_helper_sve_saddv_b, gen_helper_sve_saddv_h,
622 gen_helper_sve_saddv_s, NULL
623 };
624 return do_vpz_ool(s, a, fns[a->esz]);
625}
626
627#undef DO_VPZ
628
ccd841c3
RH
629/*
630 *** SVE Shift by Immediate - Predicated Group
631 */
632
60245996
RH
633/*
634 * Copy Zn into Zd, storing zeros into inactive elements.
635 * If invert, store zeros into the active elements.
ccd841c3 636 */
60245996
RH
637static bool do_movz_zpz(DisasContext *s, int rd, int rn, int pg,
638 int esz, bool invert)
ccd841c3 639{
60245996
RH
640 static gen_helper_gvec_3 * const fns[4] = {
641 gen_helper_sve_movz_b, gen_helper_sve_movz_h,
642 gen_helper_sve_movz_s, gen_helper_sve_movz_d,
ccd841c3 643 };
60245996 644
ccd841c3 645 if (sve_access_check(s)) {
96a461f7 646 gen_gvec_ool_zzp(s, fns[esz], rd, rn, pg, invert);
ccd841c3
RH
647 }
648 return true;
649}
650
651static bool do_zpzi_ool(DisasContext *s, arg_rpri_esz *a,
652 gen_helper_gvec_3 *fn)
653{
654 if (sve_access_check(s)) {
96a461f7 655 gen_gvec_ool_zzp(s, fn, a->rd, a->rn, a->pg, a->imm);
ccd841c3
RH
656 }
657 return true;
658}
659
3a7be554 660static bool trans_ASR_zpzi(DisasContext *s, arg_rpri_esz *a)
ccd841c3
RH
661{
662 static gen_helper_gvec_3 * const fns[4] = {
663 gen_helper_sve_asr_zpzi_b, gen_helper_sve_asr_zpzi_h,
664 gen_helper_sve_asr_zpzi_s, gen_helper_sve_asr_zpzi_d,
665 };
666 if (a->esz < 0) {
667 /* Invalid tsz encoding -- see tszimm_esz. */
668 return false;
669 }
670 /* Shift by element size is architecturally valid. For
671 arithmetic right-shift, it's the same as by one less. */
672 a->imm = MIN(a->imm, (8 << a->esz) - 1);
673 return do_zpzi_ool(s, a, fns[a->esz]);
674}
675
3a7be554 676static bool trans_LSR_zpzi(DisasContext *s, arg_rpri_esz *a)
ccd841c3
RH
677{
678 static gen_helper_gvec_3 * const fns[4] = {
679 gen_helper_sve_lsr_zpzi_b, gen_helper_sve_lsr_zpzi_h,
680 gen_helper_sve_lsr_zpzi_s, gen_helper_sve_lsr_zpzi_d,
681 };
682 if (a->esz < 0) {
683 return false;
684 }
685 /* Shift by element size is architecturally valid.
686 For logical shifts, it is a zeroing operation. */
687 if (a->imm >= (8 << a->esz)) {
60245996 688 return do_movz_zpz(s, a->rd, a->rd, a->pg, a->esz, true);
ccd841c3
RH
689 } else {
690 return do_zpzi_ool(s, a, fns[a->esz]);
691 }
692}
693
3a7be554 694static bool trans_LSL_zpzi(DisasContext *s, arg_rpri_esz *a)
ccd841c3
RH
695{
696 static gen_helper_gvec_3 * const fns[4] = {
697 gen_helper_sve_lsl_zpzi_b, gen_helper_sve_lsl_zpzi_h,
698 gen_helper_sve_lsl_zpzi_s, gen_helper_sve_lsl_zpzi_d,
699 };
700 if (a->esz < 0) {
701 return false;
702 }
703 /* Shift by element size is architecturally valid.
704 For logical shifts, it is a zeroing operation. */
705 if (a->imm >= (8 << a->esz)) {
60245996 706 return do_movz_zpz(s, a->rd, a->rd, a->pg, a->esz, true);
ccd841c3
RH
707 } else {
708 return do_zpzi_ool(s, a, fns[a->esz]);
709 }
710}
711
3a7be554 712static bool trans_ASRD(DisasContext *s, arg_rpri_esz *a)
ccd841c3
RH
713{
714 static gen_helper_gvec_3 * const fns[4] = {
715 gen_helper_sve_asrd_b, gen_helper_sve_asrd_h,
716 gen_helper_sve_asrd_s, gen_helper_sve_asrd_d,
717 };
718 if (a->esz < 0) {
719 return false;
720 }
721 /* Shift by element size is architecturally valid. For arithmetic
722 right shift for division, it is a zeroing operation. */
723 if (a->imm >= (8 << a->esz)) {
60245996 724 return do_movz_zpz(s, a->rd, a->rd, a->pg, a->esz, true);
ccd841c3
RH
725 } else {
726 return do_zpzi_ool(s, a, fns[a->esz]);
727 }
728}
729
fe7f8dfb
RH
730/*
731 *** SVE Bitwise Shift - Predicated Group
732 */
733
734#define DO_ZPZW(NAME, name) \
3a7be554 735static bool trans_##NAME##_zpzw(DisasContext *s, arg_rprr_esz *a) \
fe7f8dfb
RH
736{ \
737 static gen_helper_gvec_4 * const fns[3] = { \
738 gen_helper_sve_##name##_zpzw_b, gen_helper_sve_##name##_zpzw_h, \
739 gen_helper_sve_##name##_zpzw_s, \
740 }; \
741 if (a->esz < 0 || a->esz >= 3) { \
742 return false; \
743 } \
744 return do_zpzz_ool(s, a, fns[a->esz]); \
745}
746
747DO_ZPZW(ASR, asr)
748DO_ZPZW(LSR, lsr)
749DO_ZPZW(LSL, lsl)
750
751#undef DO_ZPZW
752
d9d78dcc
RH
753/*
754 *** SVE Bitwise Shift - Unpredicated Group
755 */
756
757static bool do_shift_imm(DisasContext *s, arg_rri_esz *a, bool asr,
758 void (*gvec_fn)(unsigned, uint32_t, uint32_t,
759 int64_t, uint32_t, uint32_t))
760{
761 if (a->esz < 0) {
762 /* Invalid tsz encoding -- see tszimm_esz. */
763 return false;
764 }
765 if (sve_access_check(s)) {
766 unsigned vsz = vec_full_reg_size(s);
767 /* Shift by element size is architecturally valid. For
768 arithmetic right-shift, it's the same as by one less.
769 Otherwise it is a zeroing operation. */
770 if (a->imm >= 8 << a->esz) {
771 if (asr) {
772 a->imm = (8 << a->esz) - 1;
773 } else {
774 do_dupi_z(s, a->rd, 0);
775 return true;
776 }
777 }
778 gvec_fn(a->esz, vec_full_reg_offset(s, a->rd),
779 vec_full_reg_offset(s, a->rn), a->imm, vsz, vsz);
780 }
781 return true;
782}
783
3a7be554 784static bool trans_ASR_zzi(DisasContext *s, arg_rri_esz *a)
d9d78dcc
RH
785{
786 return do_shift_imm(s, a, true, tcg_gen_gvec_sari);
787}
788
3a7be554 789static bool trans_LSR_zzi(DisasContext *s, arg_rri_esz *a)
d9d78dcc
RH
790{
791 return do_shift_imm(s, a, false, tcg_gen_gvec_shri);
792}
793
3a7be554 794static bool trans_LSL_zzi(DisasContext *s, arg_rri_esz *a)
d9d78dcc
RH
795{
796 return do_shift_imm(s, a, false, tcg_gen_gvec_shli);
797}
798
799static bool do_zzw_ool(DisasContext *s, arg_rrr_esz *a, gen_helper_gvec_3 *fn)
800{
801 if (fn == NULL) {
802 return false;
803 }
804 if (sve_access_check(s)) {
e645d1a1 805 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, 0);
d9d78dcc
RH
806 }
807 return true;
808}
809
810#define DO_ZZW(NAME, name) \
3a7be554 811static bool trans_##NAME##_zzw(DisasContext *s, arg_rrr_esz *a) \
d9d78dcc
RH
812{ \
813 static gen_helper_gvec_3 * const fns[4] = { \
814 gen_helper_sve_##name##_zzw_b, gen_helper_sve_##name##_zzw_h, \
815 gen_helper_sve_##name##_zzw_s, NULL \
816 }; \
817 return do_zzw_ool(s, a, fns[a->esz]); \
818}
819
820DO_ZZW(ASR, asr)
821DO_ZZW(LSR, lsr)
822DO_ZZW(LSL, lsl)
823
824#undef DO_ZZW
825
96a36e4a
RH
826/*
827 *** SVE Integer Multiply-Add Group
828 */
829
830static bool do_zpzzz_ool(DisasContext *s, arg_rprrr_esz *a,
831 gen_helper_gvec_5 *fn)
832{
833 if (sve_access_check(s)) {
834 unsigned vsz = vec_full_reg_size(s);
835 tcg_gen_gvec_5_ool(vec_full_reg_offset(s, a->rd),
836 vec_full_reg_offset(s, a->ra),
837 vec_full_reg_offset(s, a->rn),
838 vec_full_reg_offset(s, a->rm),
839 pred_full_reg_offset(s, a->pg),
840 vsz, vsz, 0, fn);
841 }
842 return true;
843}
844
845#define DO_ZPZZZ(NAME, name) \
3a7be554 846static bool trans_##NAME(DisasContext *s, arg_rprrr_esz *a) \
96a36e4a
RH
847{ \
848 static gen_helper_gvec_5 * const fns[4] = { \
849 gen_helper_sve_##name##_b, gen_helper_sve_##name##_h, \
850 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d, \
851 }; \
852 return do_zpzzz_ool(s, a, fns[a->esz]); \
853}
854
855DO_ZPZZZ(MLA, mla)
856DO_ZPZZZ(MLS, mls)
857
858#undef DO_ZPZZZ
859
9a56c9c3
RH
860/*
861 *** SVE Index Generation Group
862 */
863
864static void do_index(DisasContext *s, int esz, int rd,
865 TCGv_i64 start, TCGv_i64 incr)
866{
867 unsigned vsz = vec_full_reg_size(s);
868 TCGv_i32 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
869 TCGv_ptr t_zd = tcg_temp_new_ptr();
870
871 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, rd));
872 if (esz == 3) {
873 gen_helper_sve_index_d(t_zd, start, incr, desc);
874 } else {
875 typedef void index_fn(TCGv_ptr, TCGv_i32, TCGv_i32, TCGv_i32);
876 static index_fn * const fns[3] = {
877 gen_helper_sve_index_b,
878 gen_helper_sve_index_h,
879 gen_helper_sve_index_s,
880 };
881 TCGv_i32 s32 = tcg_temp_new_i32();
882 TCGv_i32 i32 = tcg_temp_new_i32();
883
884 tcg_gen_extrl_i64_i32(s32, start);
885 tcg_gen_extrl_i64_i32(i32, incr);
886 fns[esz](t_zd, s32, i32, desc);
887
888 tcg_temp_free_i32(s32);
889 tcg_temp_free_i32(i32);
890 }
891 tcg_temp_free_ptr(t_zd);
892 tcg_temp_free_i32(desc);
893}
894
3a7be554 895static bool trans_INDEX_ii(DisasContext *s, arg_INDEX_ii *a)
9a56c9c3
RH
896{
897 if (sve_access_check(s)) {
898 TCGv_i64 start = tcg_const_i64(a->imm1);
899 TCGv_i64 incr = tcg_const_i64(a->imm2);
900 do_index(s, a->esz, a->rd, start, incr);
901 tcg_temp_free_i64(start);
902 tcg_temp_free_i64(incr);
903 }
904 return true;
905}
906
3a7be554 907static bool trans_INDEX_ir(DisasContext *s, arg_INDEX_ir *a)
9a56c9c3
RH
908{
909 if (sve_access_check(s)) {
910 TCGv_i64 start = tcg_const_i64(a->imm);
911 TCGv_i64 incr = cpu_reg(s, a->rm);
912 do_index(s, a->esz, a->rd, start, incr);
913 tcg_temp_free_i64(start);
914 }
915 return true;
916}
917
3a7be554 918static bool trans_INDEX_ri(DisasContext *s, arg_INDEX_ri *a)
9a56c9c3
RH
919{
920 if (sve_access_check(s)) {
921 TCGv_i64 start = cpu_reg(s, a->rn);
922 TCGv_i64 incr = tcg_const_i64(a->imm);
923 do_index(s, a->esz, a->rd, start, incr);
924 tcg_temp_free_i64(incr);
925 }
926 return true;
927}
928
3a7be554 929static bool trans_INDEX_rr(DisasContext *s, arg_INDEX_rr *a)
9a56c9c3
RH
930{
931 if (sve_access_check(s)) {
932 TCGv_i64 start = cpu_reg(s, a->rn);
933 TCGv_i64 incr = cpu_reg(s, a->rm);
934 do_index(s, a->esz, a->rd, start, incr);
935 }
936 return true;
937}
938
96f922cc
RH
939/*
940 *** SVE Stack Allocation Group
941 */
942
3a7be554 943static bool trans_ADDVL(DisasContext *s, arg_ADDVL *a)
96f922cc 944{
5de56742
AC
945 if (sve_access_check(s)) {
946 TCGv_i64 rd = cpu_reg_sp(s, a->rd);
947 TCGv_i64 rn = cpu_reg_sp(s, a->rn);
948 tcg_gen_addi_i64(rd, rn, a->imm * vec_full_reg_size(s));
949 }
96f922cc
RH
950 return true;
951}
952
3a7be554 953static bool trans_ADDPL(DisasContext *s, arg_ADDPL *a)
96f922cc 954{
5de56742
AC
955 if (sve_access_check(s)) {
956 TCGv_i64 rd = cpu_reg_sp(s, a->rd);
957 TCGv_i64 rn = cpu_reg_sp(s, a->rn);
958 tcg_gen_addi_i64(rd, rn, a->imm * pred_full_reg_size(s));
959 }
96f922cc
RH
960 return true;
961}
962
3a7be554 963static bool trans_RDVL(DisasContext *s, arg_RDVL *a)
96f922cc 964{
5de56742
AC
965 if (sve_access_check(s)) {
966 TCGv_i64 reg = cpu_reg(s, a->rd);
967 tcg_gen_movi_i64(reg, a->imm * vec_full_reg_size(s));
968 }
96f922cc
RH
969 return true;
970}
971
4b242d9c
RH
972/*
973 *** SVE Compute Vector Address Group
974 */
975
976static bool do_adr(DisasContext *s, arg_rrri *a, gen_helper_gvec_3 *fn)
977{
978 if (sve_access_check(s)) {
e645d1a1 979 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, a->imm);
4b242d9c
RH
980 }
981 return true;
982}
983
3a7be554 984static bool trans_ADR_p32(DisasContext *s, arg_rrri *a)
4b242d9c
RH
985{
986 return do_adr(s, a, gen_helper_sve_adr_p32);
987}
988
3a7be554 989static bool trans_ADR_p64(DisasContext *s, arg_rrri *a)
4b242d9c
RH
990{
991 return do_adr(s, a, gen_helper_sve_adr_p64);
992}
993
3a7be554 994static bool trans_ADR_s32(DisasContext *s, arg_rrri *a)
4b242d9c
RH
995{
996 return do_adr(s, a, gen_helper_sve_adr_s32);
997}
998
3a7be554 999static bool trans_ADR_u32(DisasContext *s, arg_rrri *a)
4b242d9c
RH
1000{
1001 return do_adr(s, a, gen_helper_sve_adr_u32);
1002}
1003
0762cd42
RH
1004/*
1005 *** SVE Integer Misc - Unpredicated Group
1006 */
1007
3a7be554 1008static bool trans_FEXPA(DisasContext *s, arg_rr_esz *a)
0762cd42
RH
1009{
1010 static gen_helper_gvec_2 * const fns[4] = {
1011 NULL,
1012 gen_helper_sve_fexpa_h,
1013 gen_helper_sve_fexpa_s,
1014 gen_helper_sve_fexpa_d,
1015 };
1016 if (a->esz == 0) {
1017 return false;
1018 }
1019 if (sve_access_check(s)) {
40e32e5a 1020 gen_gvec_ool_zz(s, fns[a->esz], a->rd, a->rn, 0);
0762cd42
RH
1021 }
1022 return true;
1023}
1024
3a7be554 1025static bool trans_FTSSEL(DisasContext *s, arg_rrr_esz *a)
a1f233f2
RH
1026{
1027 static gen_helper_gvec_3 * const fns[4] = {
1028 NULL,
1029 gen_helper_sve_ftssel_h,
1030 gen_helper_sve_ftssel_s,
1031 gen_helper_sve_ftssel_d,
1032 };
1033 if (a->esz == 0) {
1034 return false;
1035 }
1036 if (sve_access_check(s)) {
e645d1a1 1037 gen_gvec_ool_zzz(s, fns[a->esz], a->rd, a->rn, a->rm, 0);
a1f233f2
RH
1038 }
1039 return true;
1040}
1041
516e246a
RH
1042/*
1043 *** SVE Predicate Logical Operations Group
1044 */
1045
1046static bool do_pppp_flags(DisasContext *s, arg_rprr_s *a,
1047 const GVecGen4 *gvec_op)
1048{
1049 if (!sve_access_check(s)) {
1050 return true;
1051 }
1052
1053 unsigned psz = pred_gvec_reg_size(s);
1054 int dofs = pred_full_reg_offset(s, a->rd);
1055 int nofs = pred_full_reg_offset(s, a->rn);
1056 int mofs = pred_full_reg_offset(s, a->rm);
1057 int gofs = pred_full_reg_offset(s, a->pg);
1058
dd81a8d7
RH
1059 if (!a->s) {
1060 tcg_gen_gvec_4(dofs, nofs, mofs, gofs, psz, psz, gvec_op);
1061 return true;
1062 }
1063
516e246a
RH
1064 if (psz == 8) {
1065 /* Do the operation and the flags generation in temps. */
1066 TCGv_i64 pd = tcg_temp_new_i64();
1067 TCGv_i64 pn = tcg_temp_new_i64();
1068 TCGv_i64 pm = tcg_temp_new_i64();
1069 TCGv_i64 pg = tcg_temp_new_i64();
1070
1071 tcg_gen_ld_i64(pn, cpu_env, nofs);
1072 tcg_gen_ld_i64(pm, cpu_env, mofs);
1073 tcg_gen_ld_i64(pg, cpu_env, gofs);
1074
1075 gvec_op->fni8(pd, pn, pm, pg);
1076 tcg_gen_st_i64(pd, cpu_env, dofs);
1077
1078 do_predtest1(pd, pg);
1079
1080 tcg_temp_free_i64(pd);
1081 tcg_temp_free_i64(pn);
1082 tcg_temp_free_i64(pm);
1083 tcg_temp_free_i64(pg);
1084 } else {
1085 /* The operation and flags generation is large. The computation
1086 * of the flags depends on the original contents of the guarding
1087 * predicate. If the destination overwrites the guarding predicate,
1088 * then the easiest way to get this right is to save a copy.
1089 */
1090 int tofs = gofs;
1091 if (a->rd == a->pg) {
1092 tofs = offsetof(CPUARMState, vfp.preg_tmp);
1093 tcg_gen_gvec_mov(0, tofs, gofs, psz, psz);
1094 }
1095
1096 tcg_gen_gvec_4(dofs, nofs, mofs, gofs, psz, psz, gvec_op);
1097 do_predtest(s, dofs, tofs, psz / 8);
1098 }
1099 return true;
1100}
1101
1102static void gen_and_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1103{
1104 tcg_gen_and_i64(pd, pn, pm);
1105 tcg_gen_and_i64(pd, pd, pg);
1106}
1107
1108static void gen_and_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1109 TCGv_vec pm, TCGv_vec pg)
1110{
1111 tcg_gen_and_vec(vece, pd, pn, pm);
1112 tcg_gen_and_vec(vece, pd, pd, pg);
1113}
1114
3a7be554 1115static bool trans_AND_pppp(DisasContext *s, arg_rprr_s *a)
516e246a
RH
1116{
1117 static const GVecGen4 op = {
1118 .fni8 = gen_and_pg_i64,
1119 .fniv = gen_and_pg_vec,
1120 .fno = gen_helper_sve_and_pppp,
1121 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1122 };
dd81a8d7
RH
1123
1124 if (!a->s) {
1125 if (!sve_access_check(s)) {
1126 return true;
1127 }
1128 if (a->rn == a->rm) {
1129 if (a->pg == a->rn) {
1130 do_mov_p(s, a->rd, a->rn);
1131 } else {
1132 gen_gvec_fn_ppp(s, tcg_gen_gvec_and, a->rd, a->rn, a->pg);
1133 }
1134 return true;
1135 } else if (a->pg == a->rn || a->pg == a->rm) {
1136 gen_gvec_fn_ppp(s, tcg_gen_gvec_and, a->rd, a->rn, a->rm);
1137 return true;
516e246a 1138 }
516e246a 1139 }
dd81a8d7 1140 return do_pppp_flags(s, a, &op);
516e246a
RH
1141}
1142
1143static void gen_bic_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1144{
1145 tcg_gen_andc_i64(pd, pn, pm);
1146 tcg_gen_and_i64(pd, pd, pg);
1147}
1148
1149static void gen_bic_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1150 TCGv_vec pm, TCGv_vec pg)
1151{
1152 tcg_gen_andc_vec(vece, pd, pn, pm);
1153 tcg_gen_and_vec(vece, pd, pd, pg);
1154}
1155
3a7be554 1156static bool trans_BIC_pppp(DisasContext *s, arg_rprr_s *a)
516e246a
RH
1157{
1158 static const GVecGen4 op = {
1159 .fni8 = gen_bic_pg_i64,
1160 .fniv = gen_bic_pg_vec,
1161 .fno = gen_helper_sve_bic_pppp,
1162 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1163 };
dd81a8d7
RH
1164
1165 if (!a->s && a->pg == a->rn) {
1166 if (sve_access_check(s)) {
1167 gen_gvec_fn_ppp(s, tcg_gen_gvec_andc, a->rd, a->rn, a->rm);
1168 }
1169 return true;
516e246a 1170 }
dd81a8d7 1171 return do_pppp_flags(s, a, &op);
516e246a
RH
1172}
1173
1174static void gen_eor_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1175{
1176 tcg_gen_xor_i64(pd, pn, pm);
1177 tcg_gen_and_i64(pd, pd, pg);
1178}
1179
1180static void gen_eor_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1181 TCGv_vec pm, TCGv_vec pg)
1182{
1183 tcg_gen_xor_vec(vece, pd, pn, pm);
1184 tcg_gen_and_vec(vece, pd, pd, pg);
1185}
1186
3a7be554 1187static bool trans_EOR_pppp(DisasContext *s, arg_rprr_s *a)
516e246a
RH
1188{
1189 static const GVecGen4 op = {
1190 .fni8 = gen_eor_pg_i64,
1191 .fniv = gen_eor_pg_vec,
1192 .fno = gen_helper_sve_eor_pppp,
1193 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1194 };
dd81a8d7 1195 return do_pppp_flags(s, a, &op);
516e246a
RH
1196}
1197
3a7be554 1198static bool trans_SEL_pppp(DisasContext *s, arg_rprr_s *a)
516e246a 1199{
516e246a
RH
1200 if (a->s) {
1201 return false;
516e246a 1202 }
d4bc6232
RH
1203 if (sve_access_check(s)) {
1204 unsigned psz = pred_gvec_reg_size(s);
1205 tcg_gen_gvec_bitsel(MO_8, pred_full_reg_offset(s, a->rd),
1206 pred_full_reg_offset(s, a->pg),
1207 pred_full_reg_offset(s, a->rn),
1208 pred_full_reg_offset(s, a->rm), psz, psz);
1209 }
1210 return true;
516e246a
RH
1211}
1212
1213static void gen_orr_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1214{
1215 tcg_gen_or_i64(pd, pn, pm);
1216 tcg_gen_and_i64(pd, pd, pg);
1217}
1218
1219static void gen_orr_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1220 TCGv_vec pm, TCGv_vec pg)
1221{
1222 tcg_gen_or_vec(vece, pd, pn, pm);
1223 tcg_gen_and_vec(vece, pd, pd, pg);
1224}
1225
3a7be554 1226static bool trans_ORR_pppp(DisasContext *s, arg_rprr_s *a)
516e246a
RH
1227{
1228 static const GVecGen4 op = {
1229 .fni8 = gen_orr_pg_i64,
1230 .fniv = gen_orr_pg_vec,
1231 .fno = gen_helper_sve_orr_pppp,
1232 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1233 };
dd81a8d7
RH
1234
1235 if (!a->s && a->pg == a->rn && a->rn == a->rm) {
516e246a 1236 return do_mov_p(s, a->rd, a->rn);
516e246a 1237 }
dd81a8d7 1238 return do_pppp_flags(s, a, &op);
516e246a
RH
1239}
1240
1241static void gen_orn_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1242{
1243 tcg_gen_orc_i64(pd, pn, pm);
1244 tcg_gen_and_i64(pd, pd, pg);
1245}
1246
1247static void gen_orn_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1248 TCGv_vec pm, TCGv_vec pg)
1249{
1250 tcg_gen_orc_vec(vece, pd, pn, pm);
1251 tcg_gen_and_vec(vece, pd, pd, pg);
1252}
1253
3a7be554 1254static bool trans_ORN_pppp(DisasContext *s, arg_rprr_s *a)
516e246a
RH
1255{
1256 static const GVecGen4 op = {
1257 .fni8 = gen_orn_pg_i64,
1258 .fniv = gen_orn_pg_vec,
1259 .fno = gen_helper_sve_orn_pppp,
1260 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1261 };
dd81a8d7 1262 return do_pppp_flags(s, a, &op);
516e246a
RH
1263}
1264
1265static void gen_nor_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1266{
1267 tcg_gen_or_i64(pd, pn, pm);
1268 tcg_gen_andc_i64(pd, pg, pd);
1269}
1270
1271static void gen_nor_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1272 TCGv_vec pm, TCGv_vec pg)
1273{
1274 tcg_gen_or_vec(vece, pd, pn, pm);
1275 tcg_gen_andc_vec(vece, pd, pg, pd);
1276}
1277
3a7be554 1278static bool trans_NOR_pppp(DisasContext *s, arg_rprr_s *a)
516e246a
RH
1279{
1280 static const GVecGen4 op = {
1281 .fni8 = gen_nor_pg_i64,
1282 .fniv = gen_nor_pg_vec,
1283 .fno = gen_helper_sve_nor_pppp,
1284 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1285 };
dd81a8d7 1286 return do_pppp_flags(s, a, &op);
516e246a
RH
1287}
1288
1289static void gen_nand_pg_i64(TCGv_i64 pd, TCGv_i64 pn, TCGv_i64 pm, TCGv_i64 pg)
1290{
1291 tcg_gen_and_i64(pd, pn, pm);
1292 tcg_gen_andc_i64(pd, pg, pd);
1293}
1294
1295static void gen_nand_pg_vec(unsigned vece, TCGv_vec pd, TCGv_vec pn,
1296 TCGv_vec pm, TCGv_vec pg)
1297{
1298 tcg_gen_and_vec(vece, pd, pn, pm);
1299 tcg_gen_andc_vec(vece, pd, pg, pd);
1300}
1301
3a7be554 1302static bool trans_NAND_pppp(DisasContext *s, arg_rprr_s *a)
516e246a
RH
1303{
1304 static const GVecGen4 op = {
1305 .fni8 = gen_nand_pg_i64,
1306 .fniv = gen_nand_pg_vec,
1307 .fno = gen_helper_sve_nand_pppp,
1308 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
1309 };
dd81a8d7 1310 return do_pppp_flags(s, a, &op);
516e246a
RH
1311}
1312
9e18d7a6
RH
1313/*
1314 *** SVE Predicate Misc Group
1315 */
1316
3a7be554 1317static bool trans_PTEST(DisasContext *s, arg_PTEST *a)
9e18d7a6
RH
1318{
1319 if (sve_access_check(s)) {
1320 int nofs = pred_full_reg_offset(s, a->rn);
1321 int gofs = pred_full_reg_offset(s, a->pg);
1322 int words = DIV_ROUND_UP(pred_full_reg_size(s), 8);
1323
1324 if (words == 1) {
1325 TCGv_i64 pn = tcg_temp_new_i64();
1326 TCGv_i64 pg = tcg_temp_new_i64();
1327
1328 tcg_gen_ld_i64(pn, cpu_env, nofs);
1329 tcg_gen_ld_i64(pg, cpu_env, gofs);
1330 do_predtest1(pn, pg);
1331
1332 tcg_temp_free_i64(pn);
1333 tcg_temp_free_i64(pg);
1334 } else {
1335 do_predtest(s, nofs, gofs, words);
1336 }
1337 }
1338 return true;
1339}
1340
028e2a7b
RH
1341/* See the ARM pseudocode DecodePredCount. */
1342static unsigned decode_pred_count(unsigned fullsz, int pattern, int esz)
1343{
1344 unsigned elements = fullsz >> esz;
1345 unsigned bound;
1346
1347 switch (pattern) {
1348 case 0x0: /* POW2 */
1349 return pow2floor(elements);
1350 case 0x1: /* VL1 */
1351 case 0x2: /* VL2 */
1352 case 0x3: /* VL3 */
1353 case 0x4: /* VL4 */
1354 case 0x5: /* VL5 */
1355 case 0x6: /* VL6 */
1356 case 0x7: /* VL7 */
1357 case 0x8: /* VL8 */
1358 bound = pattern;
1359 break;
1360 case 0x9: /* VL16 */
1361 case 0xa: /* VL32 */
1362 case 0xb: /* VL64 */
1363 case 0xc: /* VL128 */
1364 case 0xd: /* VL256 */
1365 bound = 16 << (pattern - 9);
1366 break;
1367 case 0x1d: /* MUL4 */
1368 return elements - elements % 4;
1369 case 0x1e: /* MUL3 */
1370 return elements - elements % 3;
1371 case 0x1f: /* ALL */
1372 return elements;
1373 default: /* #uimm5 */
1374 return 0;
1375 }
1376 return elements >= bound ? bound : 0;
1377}
1378
1379/* This handles all of the predicate initialization instructions,
1380 * PTRUE, PFALSE, SETFFR. For PFALSE, we will have set PAT == 32
1381 * so that decode_pred_count returns 0. For SETFFR, we will have
1382 * set RD == 16 == FFR.
1383 */
1384static bool do_predset(DisasContext *s, int esz, int rd, int pat, bool setflag)
1385{
1386 if (!sve_access_check(s)) {
1387 return true;
1388 }
1389
1390 unsigned fullsz = vec_full_reg_size(s);
1391 unsigned ofs = pred_full_reg_offset(s, rd);
1392 unsigned numelem, setsz, i;
1393 uint64_t word, lastword;
1394 TCGv_i64 t;
1395
1396 numelem = decode_pred_count(fullsz, pat, esz);
1397
1398 /* Determine what we must store into each bit, and how many. */
1399 if (numelem == 0) {
1400 lastword = word = 0;
1401 setsz = fullsz;
1402 } else {
1403 setsz = numelem << esz;
1404 lastword = word = pred_esz_masks[esz];
1405 if (setsz % 64) {
973558a3 1406 lastword &= MAKE_64BIT_MASK(0, setsz % 64);
028e2a7b
RH
1407 }
1408 }
1409
1410 t = tcg_temp_new_i64();
1411 if (fullsz <= 64) {
1412 tcg_gen_movi_i64(t, lastword);
1413 tcg_gen_st_i64(t, cpu_env, ofs);
1414 goto done;
1415 }
1416
1417 if (word == lastword) {
1418 unsigned maxsz = size_for_gvec(fullsz / 8);
1419 unsigned oprsz = size_for_gvec(setsz / 8);
1420
1421 if (oprsz * 8 == setsz) {
8711e71f 1422 tcg_gen_gvec_dup_imm(MO_64, ofs, oprsz, maxsz, word);
028e2a7b
RH
1423 goto done;
1424 }
028e2a7b
RH
1425 }
1426
1427 setsz /= 8;
1428 fullsz /= 8;
1429
1430 tcg_gen_movi_i64(t, word);
973558a3 1431 for (i = 0; i < QEMU_ALIGN_DOWN(setsz, 8); i += 8) {
028e2a7b
RH
1432 tcg_gen_st_i64(t, cpu_env, ofs + i);
1433 }
1434 if (lastword != word) {
1435 tcg_gen_movi_i64(t, lastword);
1436 tcg_gen_st_i64(t, cpu_env, ofs + i);
1437 i += 8;
1438 }
1439 if (i < fullsz) {
1440 tcg_gen_movi_i64(t, 0);
1441 for (; i < fullsz; i += 8) {
1442 tcg_gen_st_i64(t, cpu_env, ofs + i);
1443 }
1444 }
1445
1446 done:
1447 tcg_temp_free_i64(t);
1448
1449 /* PTRUES */
1450 if (setflag) {
1451 tcg_gen_movi_i32(cpu_NF, -(word != 0));
1452 tcg_gen_movi_i32(cpu_CF, word == 0);
1453 tcg_gen_movi_i32(cpu_VF, 0);
1454 tcg_gen_mov_i32(cpu_ZF, cpu_NF);
1455 }
1456 return true;
1457}
1458
3a7be554 1459static bool trans_PTRUE(DisasContext *s, arg_PTRUE *a)
028e2a7b
RH
1460{
1461 return do_predset(s, a->esz, a->rd, a->pat, a->s);
1462}
1463
3a7be554 1464static bool trans_SETFFR(DisasContext *s, arg_SETFFR *a)
028e2a7b
RH
1465{
1466 /* Note pat == 31 is #all, to set all elements. */
1467 return do_predset(s, 0, FFR_PRED_NUM, 31, false);
1468}
1469
3a7be554 1470static bool trans_PFALSE(DisasContext *s, arg_PFALSE *a)
028e2a7b
RH
1471{
1472 /* Note pat == 32 is #unimp, to set no elements. */
1473 return do_predset(s, 0, a->rd, 32, false);
1474}
1475
3a7be554 1476static bool trans_RDFFR_p(DisasContext *s, arg_RDFFR_p *a)
028e2a7b
RH
1477{
1478 /* The path through do_pppp_flags is complicated enough to want to avoid
1479 * duplication. Frob the arguments into the form of a predicated AND.
1480 */
1481 arg_rprr_s alt_a = {
1482 .rd = a->rd, .pg = a->pg, .s = a->s,
1483 .rn = FFR_PRED_NUM, .rm = FFR_PRED_NUM,
1484 };
3a7be554 1485 return trans_AND_pppp(s, &alt_a);
028e2a7b
RH
1486}
1487
3a7be554 1488static bool trans_RDFFR(DisasContext *s, arg_RDFFR *a)
028e2a7b
RH
1489{
1490 return do_mov_p(s, a->rd, FFR_PRED_NUM);
1491}
1492
3a7be554 1493static bool trans_WRFFR(DisasContext *s, arg_WRFFR *a)
028e2a7b
RH
1494{
1495 return do_mov_p(s, FFR_PRED_NUM, a->rn);
1496}
1497
1498static bool do_pfirst_pnext(DisasContext *s, arg_rr_esz *a,
1499 void (*gen_fn)(TCGv_i32, TCGv_ptr,
1500 TCGv_ptr, TCGv_i32))
1501{
1502 if (!sve_access_check(s)) {
1503 return true;
1504 }
1505
1506 TCGv_ptr t_pd = tcg_temp_new_ptr();
1507 TCGv_ptr t_pg = tcg_temp_new_ptr();
1508 TCGv_i32 t;
86300b5d 1509 unsigned desc = 0;
028e2a7b 1510
86300b5d
RH
1511 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, pred_full_reg_size(s));
1512 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
028e2a7b
RH
1513
1514 tcg_gen_addi_ptr(t_pd, cpu_env, pred_full_reg_offset(s, a->rd));
1515 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->rn));
1516 t = tcg_const_i32(desc);
1517
1518 gen_fn(t, t_pd, t_pg, t);
1519 tcg_temp_free_ptr(t_pd);
1520 tcg_temp_free_ptr(t_pg);
1521
1522 do_pred_flags(t);
1523 tcg_temp_free_i32(t);
1524 return true;
1525}
1526
3a7be554 1527static bool trans_PFIRST(DisasContext *s, arg_rr_esz *a)
028e2a7b
RH
1528{
1529 return do_pfirst_pnext(s, a, gen_helper_sve_pfirst);
1530}
1531
3a7be554 1532static bool trans_PNEXT(DisasContext *s, arg_rr_esz *a)
028e2a7b
RH
1533{
1534 return do_pfirst_pnext(s, a, gen_helper_sve_pnext);
1535}
1536
24e82e68
RH
1537/*
1538 *** SVE Element Count Group
1539 */
1540
1541/* Perform an inline saturating addition of a 32-bit value within
1542 * a 64-bit register. The second operand is known to be positive,
1543 * which halves the comparisions we must perform to bound the result.
1544 */
1545static void do_sat_addsub_32(TCGv_i64 reg, TCGv_i64 val, bool u, bool d)
1546{
1547 int64_t ibound;
1548 TCGv_i64 bound;
1549 TCGCond cond;
1550
1551 /* Use normal 64-bit arithmetic to detect 32-bit overflow. */
1552 if (u) {
1553 tcg_gen_ext32u_i64(reg, reg);
1554 } else {
1555 tcg_gen_ext32s_i64(reg, reg);
1556 }
1557 if (d) {
1558 tcg_gen_sub_i64(reg, reg, val);
1559 ibound = (u ? 0 : INT32_MIN);
1560 cond = TCG_COND_LT;
1561 } else {
1562 tcg_gen_add_i64(reg, reg, val);
1563 ibound = (u ? UINT32_MAX : INT32_MAX);
1564 cond = TCG_COND_GT;
1565 }
1566 bound = tcg_const_i64(ibound);
1567 tcg_gen_movcond_i64(cond, reg, reg, bound, bound, reg);
1568 tcg_temp_free_i64(bound);
1569}
1570
1571/* Similarly with 64-bit values. */
1572static void do_sat_addsub_64(TCGv_i64 reg, TCGv_i64 val, bool u, bool d)
1573{
1574 TCGv_i64 t0 = tcg_temp_new_i64();
1575 TCGv_i64 t1 = tcg_temp_new_i64();
1576 TCGv_i64 t2;
1577
1578 if (u) {
1579 if (d) {
1580 tcg_gen_sub_i64(t0, reg, val);
1581 tcg_gen_movi_i64(t1, 0);
1582 tcg_gen_movcond_i64(TCG_COND_LTU, reg, reg, val, t1, t0);
1583 } else {
1584 tcg_gen_add_i64(t0, reg, val);
1585 tcg_gen_movi_i64(t1, -1);
1586 tcg_gen_movcond_i64(TCG_COND_LTU, reg, t0, reg, t1, t0);
1587 }
1588 } else {
1589 if (d) {
1590 /* Detect signed overflow for subtraction. */
1591 tcg_gen_xor_i64(t0, reg, val);
1592 tcg_gen_sub_i64(t1, reg, val);
7a31e0c6 1593 tcg_gen_xor_i64(reg, reg, t1);
24e82e68
RH
1594 tcg_gen_and_i64(t0, t0, reg);
1595
1596 /* Bound the result. */
1597 tcg_gen_movi_i64(reg, INT64_MIN);
1598 t2 = tcg_const_i64(0);
1599 tcg_gen_movcond_i64(TCG_COND_LT, reg, t0, t2, reg, t1);
1600 } else {
1601 /* Detect signed overflow for addition. */
1602 tcg_gen_xor_i64(t0, reg, val);
1603 tcg_gen_add_i64(reg, reg, val);
1604 tcg_gen_xor_i64(t1, reg, val);
1605 tcg_gen_andc_i64(t0, t1, t0);
1606
1607 /* Bound the result. */
1608 tcg_gen_movi_i64(t1, INT64_MAX);
1609 t2 = tcg_const_i64(0);
1610 tcg_gen_movcond_i64(TCG_COND_LT, reg, t0, t2, t1, reg);
1611 }
1612 tcg_temp_free_i64(t2);
1613 }
1614 tcg_temp_free_i64(t0);
1615 tcg_temp_free_i64(t1);
1616}
1617
1618/* Similarly with a vector and a scalar operand. */
1619static void do_sat_addsub_vec(DisasContext *s, int esz, int rd, int rn,
1620 TCGv_i64 val, bool u, bool d)
1621{
1622 unsigned vsz = vec_full_reg_size(s);
1623 TCGv_ptr dptr, nptr;
1624 TCGv_i32 t32, desc;
1625 TCGv_i64 t64;
1626
1627 dptr = tcg_temp_new_ptr();
1628 nptr = tcg_temp_new_ptr();
1629 tcg_gen_addi_ptr(dptr, cpu_env, vec_full_reg_offset(s, rd));
1630 tcg_gen_addi_ptr(nptr, cpu_env, vec_full_reg_offset(s, rn));
1631 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
1632
1633 switch (esz) {
1634 case MO_8:
1635 t32 = tcg_temp_new_i32();
1636 tcg_gen_extrl_i64_i32(t32, val);
1637 if (d) {
1638 tcg_gen_neg_i32(t32, t32);
1639 }
1640 if (u) {
1641 gen_helper_sve_uqaddi_b(dptr, nptr, t32, desc);
1642 } else {
1643 gen_helper_sve_sqaddi_b(dptr, nptr, t32, desc);
1644 }
1645 tcg_temp_free_i32(t32);
1646 break;
1647
1648 case MO_16:
1649 t32 = tcg_temp_new_i32();
1650 tcg_gen_extrl_i64_i32(t32, val);
1651 if (d) {
1652 tcg_gen_neg_i32(t32, t32);
1653 }
1654 if (u) {
1655 gen_helper_sve_uqaddi_h(dptr, nptr, t32, desc);
1656 } else {
1657 gen_helper_sve_sqaddi_h(dptr, nptr, t32, desc);
1658 }
1659 tcg_temp_free_i32(t32);
1660 break;
1661
1662 case MO_32:
1663 t64 = tcg_temp_new_i64();
1664 if (d) {
1665 tcg_gen_neg_i64(t64, val);
1666 } else {
1667 tcg_gen_mov_i64(t64, val);
1668 }
1669 if (u) {
1670 gen_helper_sve_uqaddi_s(dptr, nptr, t64, desc);
1671 } else {
1672 gen_helper_sve_sqaddi_s(dptr, nptr, t64, desc);
1673 }
1674 tcg_temp_free_i64(t64);
1675 break;
1676
1677 case MO_64:
1678 if (u) {
1679 if (d) {
1680 gen_helper_sve_uqsubi_d(dptr, nptr, val, desc);
1681 } else {
1682 gen_helper_sve_uqaddi_d(dptr, nptr, val, desc);
1683 }
1684 } else if (d) {
1685 t64 = tcg_temp_new_i64();
1686 tcg_gen_neg_i64(t64, val);
1687 gen_helper_sve_sqaddi_d(dptr, nptr, t64, desc);
1688 tcg_temp_free_i64(t64);
1689 } else {
1690 gen_helper_sve_sqaddi_d(dptr, nptr, val, desc);
1691 }
1692 break;
1693
1694 default:
1695 g_assert_not_reached();
1696 }
1697
1698 tcg_temp_free_ptr(dptr);
1699 tcg_temp_free_ptr(nptr);
1700 tcg_temp_free_i32(desc);
1701}
1702
3a7be554 1703static bool trans_CNT_r(DisasContext *s, arg_CNT_r *a)
24e82e68
RH
1704{
1705 if (sve_access_check(s)) {
1706 unsigned fullsz = vec_full_reg_size(s);
1707 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
1708 tcg_gen_movi_i64(cpu_reg(s, a->rd), numelem * a->imm);
1709 }
1710 return true;
1711}
1712
3a7be554 1713static bool trans_INCDEC_r(DisasContext *s, arg_incdec_cnt *a)
24e82e68
RH
1714{
1715 if (sve_access_check(s)) {
1716 unsigned fullsz = vec_full_reg_size(s);
1717 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
1718 int inc = numelem * a->imm * (a->d ? -1 : 1);
1719 TCGv_i64 reg = cpu_reg(s, a->rd);
1720
1721 tcg_gen_addi_i64(reg, reg, inc);
1722 }
1723 return true;
1724}
1725
3a7be554 1726static bool trans_SINCDEC_r_32(DisasContext *s, arg_incdec_cnt *a)
24e82e68
RH
1727{
1728 if (!sve_access_check(s)) {
1729 return true;
1730 }
1731
1732 unsigned fullsz = vec_full_reg_size(s);
1733 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
1734 int inc = numelem * a->imm;
1735 TCGv_i64 reg = cpu_reg(s, a->rd);
1736
1737 /* Use normal 64-bit arithmetic to detect 32-bit overflow. */
1738 if (inc == 0) {
1739 if (a->u) {
1740 tcg_gen_ext32u_i64(reg, reg);
1741 } else {
1742 tcg_gen_ext32s_i64(reg, reg);
1743 }
1744 } else {
1745 TCGv_i64 t = tcg_const_i64(inc);
1746 do_sat_addsub_32(reg, t, a->u, a->d);
1747 tcg_temp_free_i64(t);
1748 }
1749 return true;
1750}
1751
3a7be554 1752static bool trans_SINCDEC_r_64(DisasContext *s, arg_incdec_cnt *a)
24e82e68
RH
1753{
1754 if (!sve_access_check(s)) {
1755 return true;
1756 }
1757
1758 unsigned fullsz = vec_full_reg_size(s);
1759 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
1760 int inc = numelem * a->imm;
1761 TCGv_i64 reg = cpu_reg(s, a->rd);
1762
1763 if (inc != 0) {
1764 TCGv_i64 t = tcg_const_i64(inc);
1765 do_sat_addsub_64(reg, t, a->u, a->d);
1766 tcg_temp_free_i64(t);
1767 }
1768 return true;
1769}
1770
3a7be554 1771static bool trans_INCDEC_v(DisasContext *s, arg_incdec2_cnt *a)
24e82e68
RH
1772{
1773 if (a->esz == 0) {
1774 return false;
1775 }
1776
1777 unsigned fullsz = vec_full_reg_size(s);
1778 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
1779 int inc = numelem * a->imm;
1780
1781 if (inc != 0) {
1782 if (sve_access_check(s)) {
1783 TCGv_i64 t = tcg_const_i64(a->d ? -inc : inc);
1784 tcg_gen_gvec_adds(a->esz, vec_full_reg_offset(s, a->rd),
1785 vec_full_reg_offset(s, a->rn),
1786 t, fullsz, fullsz);
1787 tcg_temp_free_i64(t);
1788 }
1789 } else {
1790 do_mov_z(s, a->rd, a->rn);
1791 }
1792 return true;
1793}
1794
3a7be554 1795static bool trans_SINCDEC_v(DisasContext *s, arg_incdec2_cnt *a)
24e82e68
RH
1796{
1797 if (a->esz == 0) {
1798 return false;
1799 }
1800
1801 unsigned fullsz = vec_full_reg_size(s);
1802 unsigned numelem = decode_pred_count(fullsz, a->pat, a->esz);
1803 int inc = numelem * a->imm;
1804
1805 if (inc != 0) {
1806 if (sve_access_check(s)) {
1807 TCGv_i64 t = tcg_const_i64(inc);
1808 do_sat_addsub_vec(s, a->esz, a->rd, a->rn, t, a->u, a->d);
1809 tcg_temp_free_i64(t);
1810 }
1811 } else {
1812 do_mov_z(s, a->rd, a->rn);
1813 }
1814 return true;
1815}
1816
e1fa1164
RH
1817/*
1818 *** SVE Bitwise Immediate Group
1819 */
1820
1821static bool do_zz_dbm(DisasContext *s, arg_rr_dbm *a, GVecGen2iFn *gvec_fn)
1822{
1823 uint64_t imm;
1824 if (!logic_imm_decode_wmask(&imm, extract32(a->dbm, 12, 1),
1825 extract32(a->dbm, 0, 6),
1826 extract32(a->dbm, 6, 6))) {
1827 return false;
1828 }
1829 if (sve_access_check(s)) {
1830 unsigned vsz = vec_full_reg_size(s);
1831 gvec_fn(MO_64, vec_full_reg_offset(s, a->rd),
1832 vec_full_reg_offset(s, a->rn), imm, vsz, vsz);
1833 }
1834 return true;
1835}
1836
3a7be554 1837static bool trans_AND_zzi(DisasContext *s, arg_rr_dbm *a)
e1fa1164
RH
1838{
1839 return do_zz_dbm(s, a, tcg_gen_gvec_andi);
1840}
1841
3a7be554 1842static bool trans_ORR_zzi(DisasContext *s, arg_rr_dbm *a)
e1fa1164
RH
1843{
1844 return do_zz_dbm(s, a, tcg_gen_gvec_ori);
1845}
1846
3a7be554 1847static bool trans_EOR_zzi(DisasContext *s, arg_rr_dbm *a)
e1fa1164
RH
1848{
1849 return do_zz_dbm(s, a, tcg_gen_gvec_xori);
1850}
1851
3a7be554 1852static bool trans_DUPM(DisasContext *s, arg_DUPM *a)
e1fa1164
RH
1853{
1854 uint64_t imm;
1855 if (!logic_imm_decode_wmask(&imm, extract32(a->dbm, 12, 1),
1856 extract32(a->dbm, 0, 6),
1857 extract32(a->dbm, 6, 6))) {
1858 return false;
1859 }
1860 if (sve_access_check(s)) {
1861 do_dupi_z(s, a->rd, imm);
1862 }
1863 return true;
1864}
1865
f25a2361
RH
1866/*
1867 *** SVE Integer Wide Immediate - Predicated Group
1868 */
1869
1870/* Implement all merging copies. This is used for CPY (immediate),
1871 * FCPY, CPY (scalar), CPY (SIMD&FP scalar).
1872 */
1873static void do_cpy_m(DisasContext *s, int esz, int rd, int rn, int pg,
1874 TCGv_i64 val)
1875{
1876 typedef void gen_cpy(TCGv_ptr, TCGv_ptr, TCGv_ptr, TCGv_i64, TCGv_i32);
1877 static gen_cpy * const fns[4] = {
1878 gen_helper_sve_cpy_m_b, gen_helper_sve_cpy_m_h,
1879 gen_helper_sve_cpy_m_s, gen_helper_sve_cpy_m_d,
1880 };
1881 unsigned vsz = vec_full_reg_size(s);
1882 TCGv_i32 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
1883 TCGv_ptr t_zd = tcg_temp_new_ptr();
1884 TCGv_ptr t_zn = tcg_temp_new_ptr();
1885 TCGv_ptr t_pg = tcg_temp_new_ptr();
1886
1887 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, rd));
1888 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, rn));
1889 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
1890
1891 fns[esz](t_zd, t_zn, t_pg, val, desc);
1892
1893 tcg_temp_free_ptr(t_zd);
1894 tcg_temp_free_ptr(t_zn);
1895 tcg_temp_free_ptr(t_pg);
1896 tcg_temp_free_i32(desc);
1897}
1898
3a7be554 1899static bool trans_FCPY(DisasContext *s, arg_FCPY *a)
f25a2361
RH
1900{
1901 if (a->esz == 0) {
1902 return false;
1903 }
1904 if (sve_access_check(s)) {
1905 /* Decode the VFP immediate. */
1906 uint64_t imm = vfp_expand_imm(a->esz, a->imm);
1907 TCGv_i64 t_imm = tcg_const_i64(imm);
1908 do_cpy_m(s, a->esz, a->rd, a->rn, a->pg, t_imm);
1909 tcg_temp_free_i64(t_imm);
1910 }
1911 return true;
1912}
1913
3a7be554 1914static bool trans_CPY_m_i(DisasContext *s, arg_rpri_esz *a)
f25a2361 1915{
3a7be554 1916 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
f25a2361
RH
1917 return false;
1918 }
1919 if (sve_access_check(s)) {
1920 TCGv_i64 t_imm = tcg_const_i64(a->imm);
1921 do_cpy_m(s, a->esz, a->rd, a->rn, a->pg, t_imm);
1922 tcg_temp_free_i64(t_imm);
1923 }
1924 return true;
1925}
1926
3a7be554 1927static bool trans_CPY_z_i(DisasContext *s, arg_CPY_z_i *a)
f25a2361
RH
1928{
1929 static gen_helper_gvec_2i * const fns[4] = {
1930 gen_helper_sve_cpy_z_b, gen_helper_sve_cpy_z_h,
1931 gen_helper_sve_cpy_z_s, gen_helper_sve_cpy_z_d,
1932 };
1933
3a7be554 1934 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
f25a2361
RH
1935 return false;
1936 }
1937 if (sve_access_check(s)) {
1938 unsigned vsz = vec_full_reg_size(s);
1939 TCGv_i64 t_imm = tcg_const_i64(a->imm);
1940 tcg_gen_gvec_2i_ool(vec_full_reg_offset(s, a->rd),
1941 pred_full_reg_offset(s, a->pg),
1942 t_imm, vsz, vsz, 0, fns[a->esz]);
1943 tcg_temp_free_i64(t_imm);
1944 }
1945 return true;
1946}
1947
b94f8f60
RH
1948/*
1949 *** SVE Permute Extract Group
1950 */
1951
3a7be554 1952static bool trans_EXT(DisasContext *s, arg_EXT *a)
b94f8f60
RH
1953{
1954 if (!sve_access_check(s)) {
1955 return true;
1956 }
1957
1958 unsigned vsz = vec_full_reg_size(s);
1959 unsigned n_ofs = a->imm >= vsz ? 0 : a->imm;
1960 unsigned n_siz = vsz - n_ofs;
1961 unsigned d = vec_full_reg_offset(s, a->rd);
1962 unsigned n = vec_full_reg_offset(s, a->rn);
1963 unsigned m = vec_full_reg_offset(s, a->rm);
1964
1965 /* Use host vector move insns if we have appropriate sizes
1966 * and no unfortunate overlap.
1967 */
1968 if (m != d
1969 && n_ofs == size_for_gvec(n_ofs)
1970 && n_siz == size_for_gvec(n_siz)
1971 && (d != n || n_siz <= n_ofs)) {
1972 tcg_gen_gvec_mov(0, d, n + n_ofs, n_siz, n_siz);
1973 if (n_ofs != 0) {
1974 tcg_gen_gvec_mov(0, d + n_siz, m, n_ofs, n_ofs);
1975 }
1976 } else {
1977 tcg_gen_gvec_3_ool(d, n, m, vsz, vsz, n_ofs, gen_helper_sve_ext);
1978 }
1979 return true;
1980}
1981
30562ab7
RH
1982/*
1983 *** SVE Permute - Unpredicated Group
1984 */
1985
3a7be554 1986static bool trans_DUP_s(DisasContext *s, arg_DUP_s *a)
30562ab7
RH
1987{
1988 if (sve_access_check(s)) {
1989 unsigned vsz = vec_full_reg_size(s);
1990 tcg_gen_gvec_dup_i64(a->esz, vec_full_reg_offset(s, a->rd),
1991 vsz, vsz, cpu_reg_sp(s, a->rn));
1992 }
1993 return true;
1994}
1995
3a7be554 1996static bool trans_DUP_x(DisasContext *s, arg_DUP_x *a)
30562ab7
RH
1997{
1998 if ((a->imm & 0x1f) == 0) {
1999 return false;
2000 }
2001 if (sve_access_check(s)) {
2002 unsigned vsz = vec_full_reg_size(s);
2003 unsigned dofs = vec_full_reg_offset(s, a->rd);
2004 unsigned esz, index;
2005
2006 esz = ctz32(a->imm);
2007 index = a->imm >> (esz + 1);
2008
2009 if ((index << esz) < vsz) {
2010 unsigned nofs = vec_reg_offset(s, a->rn, index, esz);
2011 tcg_gen_gvec_dup_mem(esz, dofs, nofs, vsz, vsz);
2012 } else {
7e17d50e
RH
2013 /*
2014 * While dup_mem handles 128-bit elements, dup_imm does not.
2015 * Thankfully element size doesn't matter for splatting zero.
2016 */
2017 tcg_gen_gvec_dup_imm(MO_64, dofs, vsz, vsz, 0);
30562ab7
RH
2018 }
2019 }
2020 return true;
2021}
2022
2023static void do_insr_i64(DisasContext *s, arg_rrr_esz *a, TCGv_i64 val)
2024{
2025 typedef void gen_insr(TCGv_ptr, TCGv_ptr, TCGv_i64, TCGv_i32);
2026 static gen_insr * const fns[4] = {
2027 gen_helper_sve_insr_b, gen_helper_sve_insr_h,
2028 gen_helper_sve_insr_s, gen_helper_sve_insr_d,
2029 };
2030 unsigned vsz = vec_full_reg_size(s);
2031 TCGv_i32 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
2032 TCGv_ptr t_zd = tcg_temp_new_ptr();
2033 TCGv_ptr t_zn = tcg_temp_new_ptr();
2034
2035 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, a->rd));
2036 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, a->rn));
2037
2038 fns[a->esz](t_zd, t_zn, val, desc);
2039
2040 tcg_temp_free_ptr(t_zd);
2041 tcg_temp_free_ptr(t_zn);
2042 tcg_temp_free_i32(desc);
2043}
2044
3a7be554 2045static bool trans_INSR_f(DisasContext *s, arg_rrr_esz *a)
30562ab7
RH
2046{
2047 if (sve_access_check(s)) {
2048 TCGv_i64 t = tcg_temp_new_i64();
2049 tcg_gen_ld_i64(t, cpu_env, vec_reg_offset(s, a->rm, 0, MO_64));
2050 do_insr_i64(s, a, t);
2051 tcg_temp_free_i64(t);
2052 }
2053 return true;
2054}
2055
3a7be554 2056static bool trans_INSR_r(DisasContext *s, arg_rrr_esz *a)
30562ab7
RH
2057{
2058 if (sve_access_check(s)) {
2059 do_insr_i64(s, a, cpu_reg(s, a->rm));
2060 }
2061 return true;
2062}
2063
3a7be554 2064static bool trans_REV_v(DisasContext *s, arg_rr_esz *a)
30562ab7
RH
2065{
2066 static gen_helper_gvec_2 * const fns[4] = {
2067 gen_helper_sve_rev_b, gen_helper_sve_rev_h,
2068 gen_helper_sve_rev_s, gen_helper_sve_rev_d
2069 };
2070
2071 if (sve_access_check(s)) {
40e32e5a 2072 gen_gvec_ool_zz(s, fns[a->esz], a->rd, a->rn, 0);
30562ab7
RH
2073 }
2074 return true;
2075}
2076
3a7be554 2077static bool trans_TBL(DisasContext *s, arg_rrr_esz *a)
30562ab7
RH
2078{
2079 static gen_helper_gvec_3 * const fns[4] = {
2080 gen_helper_sve_tbl_b, gen_helper_sve_tbl_h,
2081 gen_helper_sve_tbl_s, gen_helper_sve_tbl_d
2082 };
2083
2084 if (sve_access_check(s)) {
e645d1a1 2085 gen_gvec_ool_zzz(s, fns[a->esz], a->rd, a->rn, a->rm, 0);
30562ab7
RH
2086 }
2087 return true;
2088}
2089
3a7be554 2090static bool trans_UNPK(DisasContext *s, arg_UNPK *a)
30562ab7
RH
2091{
2092 static gen_helper_gvec_2 * const fns[4][2] = {
2093 { NULL, NULL },
2094 { gen_helper_sve_sunpk_h, gen_helper_sve_uunpk_h },
2095 { gen_helper_sve_sunpk_s, gen_helper_sve_uunpk_s },
2096 { gen_helper_sve_sunpk_d, gen_helper_sve_uunpk_d },
2097 };
2098
2099 if (a->esz == 0) {
2100 return false;
2101 }
2102 if (sve_access_check(s)) {
2103 unsigned vsz = vec_full_reg_size(s);
2104 tcg_gen_gvec_2_ool(vec_full_reg_offset(s, a->rd),
2105 vec_full_reg_offset(s, a->rn)
2106 + (a->h ? vsz / 2 : 0),
2107 vsz, vsz, 0, fns[a->esz][a->u]);
2108 }
2109 return true;
2110}
2111
d731d8cb
RH
2112/*
2113 *** SVE Permute - Predicates Group
2114 */
2115
2116static bool do_perm_pred3(DisasContext *s, arg_rrr_esz *a, bool high_odd,
2117 gen_helper_gvec_3 *fn)
2118{
2119 if (!sve_access_check(s)) {
2120 return true;
2121 }
2122
2123 unsigned vsz = pred_full_reg_size(s);
2124
d731d8cb
RH
2125 TCGv_ptr t_d = tcg_temp_new_ptr();
2126 TCGv_ptr t_n = tcg_temp_new_ptr();
2127 TCGv_ptr t_m = tcg_temp_new_ptr();
2128 TCGv_i32 t_desc;
f9b0fcce 2129 uint32_t desc = 0;
d731d8cb 2130
f9b0fcce
RH
2131 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, vsz);
2132 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
2133 desc = FIELD_DP32(desc, PREDDESC, DATA, high_odd);
d731d8cb
RH
2134
2135 tcg_gen_addi_ptr(t_d, cpu_env, pred_full_reg_offset(s, a->rd));
2136 tcg_gen_addi_ptr(t_n, cpu_env, pred_full_reg_offset(s, a->rn));
2137 tcg_gen_addi_ptr(t_m, cpu_env, pred_full_reg_offset(s, a->rm));
2138 t_desc = tcg_const_i32(desc);
2139
2140 fn(t_d, t_n, t_m, t_desc);
2141
2142 tcg_temp_free_ptr(t_d);
2143 tcg_temp_free_ptr(t_n);
2144 tcg_temp_free_ptr(t_m);
2145 tcg_temp_free_i32(t_desc);
2146 return true;
2147}
2148
2149static bool do_perm_pred2(DisasContext *s, arg_rr_esz *a, bool high_odd,
2150 gen_helper_gvec_2 *fn)
2151{
2152 if (!sve_access_check(s)) {
2153 return true;
2154 }
2155
2156 unsigned vsz = pred_full_reg_size(s);
2157 TCGv_ptr t_d = tcg_temp_new_ptr();
2158 TCGv_ptr t_n = tcg_temp_new_ptr();
2159 TCGv_i32 t_desc;
70acaafe 2160 uint32_t desc = 0;
d731d8cb
RH
2161
2162 tcg_gen_addi_ptr(t_d, cpu_env, pred_full_reg_offset(s, a->rd));
2163 tcg_gen_addi_ptr(t_n, cpu_env, pred_full_reg_offset(s, a->rn));
2164
70acaafe
RH
2165 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, vsz);
2166 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
2167 desc = FIELD_DP32(desc, PREDDESC, DATA, high_odd);
d731d8cb
RH
2168 t_desc = tcg_const_i32(desc);
2169
2170 fn(t_d, t_n, t_desc);
2171
2172 tcg_temp_free_i32(t_desc);
2173 tcg_temp_free_ptr(t_d);
2174 tcg_temp_free_ptr(t_n);
2175 return true;
2176}
2177
3a7be554 2178static bool trans_ZIP1_p(DisasContext *s, arg_rrr_esz *a)
d731d8cb
RH
2179{
2180 return do_perm_pred3(s, a, 0, gen_helper_sve_zip_p);
2181}
2182
3a7be554 2183static bool trans_ZIP2_p(DisasContext *s, arg_rrr_esz *a)
d731d8cb
RH
2184{
2185 return do_perm_pred3(s, a, 1, gen_helper_sve_zip_p);
2186}
2187
3a7be554 2188static bool trans_UZP1_p(DisasContext *s, arg_rrr_esz *a)
d731d8cb
RH
2189{
2190 return do_perm_pred3(s, a, 0, gen_helper_sve_uzp_p);
2191}
2192
3a7be554 2193static bool trans_UZP2_p(DisasContext *s, arg_rrr_esz *a)
d731d8cb
RH
2194{
2195 return do_perm_pred3(s, a, 1, gen_helper_sve_uzp_p);
2196}
2197
3a7be554 2198static bool trans_TRN1_p(DisasContext *s, arg_rrr_esz *a)
d731d8cb
RH
2199{
2200 return do_perm_pred3(s, a, 0, gen_helper_sve_trn_p);
2201}
2202
3a7be554 2203static bool trans_TRN2_p(DisasContext *s, arg_rrr_esz *a)
d731d8cb
RH
2204{
2205 return do_perm_pred3(s, a, 1, gen_helper_sve_trn_p);
2206}
2207
3a7be554 2208static bool trans_REV_p(DisasContext *s, arg_rr_esz *a)
d731d8cb
RH
2209{
2210 return do_perm_pred2(s, a, 0, gen_helper_sve_rev_p);
2211}
2212
3a7be554 2213static bool trans_PUNPKLO(DisasContext *s, arg_PUNPKLO *a)
d731d8cb
RH
2214{
2215 return do_perm_pred2(s, a, 0, gen_helper_sve_punpk_p);
2216}
2217
3a7be554 2218static bool trans_PUNPKHI(DisasContext *s, arg_PUNPKHI *a)
d731d8cb
RH
2219{
2220 return do_perm_pred2(s, a, 1, gen_helper_sve_punpk_p);
2221}
2222
234b48e9
RH
2223/*
2224 *** SVE Permute - Interleaving Group
2225 */
2226
2227static bool do_zip(DisasContext *s, arg_rrr_esz *a, bool high)
2228{
2229 static gen_helper_gvec_3 * const fns[4] = {
2230 gen_helper_sve_zip_b, gen_helper_sve_zip_h,
2231 gen_helper_sve_zip_s, gen_helper_sve_zip_d,
2232 };
2233
2234 if (sve_access_check(s)) {
2235 unsigned vsz = vec_full_reg_size(s);
2236 unsigned high_ofs = high ? vsz / 2 : 0;
2237 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, a->rd),
2238 vec_full_reg_offset(s, a->rn) + high_ofs,
2239 vec_full_reg_offset(s, a->rm) + high_ofs,
2240 vsz, vsz, 0, fns[a->esz]);
2241 }
2242 return true;
2243}
2244
2245static bool do_zzz_data_ool(DisasContext *s, arg_rrr_esz *a, int data,
2246 gen_helper_gvec_3 *fn)
2247{
2248 if (sve_access_check(s)) {
e645d1a1 2249 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, data);
234b48e9
RH
2250 }
2251 return true;
2252}
2253
3a7be554 2254static bool trans_ZIP1_z(DisasContext *s, arg_rrr_esz *a)
234b48e9
RH
2255{
2256 return do_zip(s, a, false);
2257}
2258
3a7be554 2259static bool trans_ZIP2_z(DisasContext *s, arg_rrr_esz *a)
234b48e9
RH
2260{
2261 return do_zip(s, a, true);
2262}
2263
2264static gen_helper_gvec_3 * const uzp_fns[4] = {
2265 gen_helper_sve_uzp_b, gen_helper_sve_uzp_h,
2266 gen_helper_sve_uzp_s, gen_helper_sve_uzp_d,
2267};
2268
3a7be554 2269static bool trans_UZP1_z(DisasContext *s, arg_rrr_esz *a)
234b48e9
RH
2270{
2271 return do_zzz_data_ool(s, a, 0, uzp_fns[a->esz]);
2272}
2273
3a7be554 2274static bool trans_UZP2_z(DisasContext *s, arg_rrr_esz *a)
234b48e9
RH
2275{
2276 return do_zzz_data_ool(s, a, 1 << a->esz, uzp_fns[a->esz]);
2277}
2278
2279static gen_helper_gvec_3 * const trn_fns[4] = {
2280 gen_helper_sve_trn_b, gen_helper_sve_trn_h,
2281 gen_helper_sve_trn_s, gen_helper_sve_trn_d,
2282};
2283
3a7be554 2284static bool trans_TRN1_z(DisasContext *s, arg_rrr_esz *a)
234b48e9
RH
2285{
2286 return do_zzz_data_ool(s, a, 0, trn_fns[a->esz]);
2287}
2288
3a7be554 2289static bool trans_TRN2_z(DisasContext *s, arg_rrr_esz *a)
234b48e9
RH
2290{
2291 return do_zzz_data_ool(s, a, 1 << a->esz, trn_fns[a->esz]);
2292}
2293
3ca879ae
RH
2294/*
2295 *** SVE Permute Vector - Predicated Group
2296 */
2297
3a7be554 2298static bool trans_COMPACT(DisasContext *s, arg_rpr_esz *a)
3ca879ae
RH
2299{
2300 static gen_helper_gvec_3 * const fns[4] = {
2301 NULL, NULL, gen_helper_sve_compact_s, gen_helper_sve_compact_d
2302 };
2303 return do_zpz_ool(s, a, fns[a->esz]);
2304}
2305
ef23cb72
RH
2306/* Call the helper that computes the ARM LastActiveElement pseudocode
2307 * function, scaled by the element size. This includes the not found
2308 * indication; e.g. not found for esz=3 is -8.
2309 */
2310static void find_last_active(DisasContext *s, TCGv_i32 ret, int esz, int pg)
2311{
2312 /* Predicate sizes may be smaller and cannot use simd_desc. We cannot
2313 * round up, as we do elsewhere, because we need the exact size.
2314 */
2315 TCGv_ptr t_p = tcg_temp_new_ptr();
2316 TCGv_i32 t_desc;
2acbfbe4 2317 unsigned desc = 0;
ef23cb72 2318
2acbfbe4
RH
2319 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, pred_full_reg_size(s));
2320 desc = FIELD_DP32(desc, PREDDESC, ESZ, esz);
ef23cb72
RH
2321
2322 tcg_gen_addi_ptr(t_p, cpu_env, pred_full_reg_offset(s, pg));
2323 t_desc = tcg_const_i32(desc);
2324
2325 gen_helper_sve_last_active_element(ret, t_p, t_desc);
2326
2327 tcg_temp_free_i32(t_desc);
2328 tcg_temp_free_ptr(t_p);
2329}
2330
2331/* Increment LAST to the offset of the next element in the vector,
2332 * wrapping around to 0.
2333 */
2334static void incr_last_active(DisasContext *s, TCGv_i32 last, int esz)
2335{
2336 unsigned vsz = vec_full_reg_size(s);
2337
2338 tcg_gen_addi_i32(last, last, 1 << esz);
2339 if (is_power_of_2(vsz)) {
2340 tcg_gen_andi_i32(last, last, vsz - 1);
2341 } else {
2342 TCGv_i32 max = tcg_const_i32(vsz);
2343 TCGv_i32 zero = tcg_const_i32(0);
2344 tcg_gen_movcond_i32(TCG_COND_GEU, last, last, max, zero, last);
2345 tcg_temp_free_i32(max);
2346 tcg_temp_free_i32(zero);
2347 }
2348}
2349
2350/* If LAST < 0, set LAST to the offset of the last element in the vector. */
2351static void wrap_last_active(DisasContext *s, TCGv_i32 last, int esz)
2352{
2353 unsigned vsz = vec_full_reg_size(s);
2354
2355 if (is_power_of_2(vsz)) {
2356 tcg_gen_andi_i32(last, last, vsz - 1);
2357 } else {
2358 TCGv_i32 max = tcg_const_i32(vsz - (1 << esz));
2359 TCGv_i32 zero = tcg_const_i32(0);
2360 tcg_gen_movcond_i32(TCG_COND_LT, last, last, zero, max, last);
2361 tcg_temp_free_i32(max);
2362 tcg_temp_free_i32(zero);
2363 }
2364}
2365
2366/* Load an unsigned element of ESZ from BASE+OFS. */
2367static TCGv_i64 load_esz(TCGv_ptr base, int ofs, int esz)
2368{
2369 TCGv_i64 r = tcg_temp_new_i64();
2370
2371 switch (esz) {
2372 case 0:
2373 tcg_gen_ld8u_i64(r, base, ofs);
2374 break;
2375 case 1:
2376 tcg_gen_ld16u_i64(r, base, ofs);
2377 break;
2378 case 2:
2379 tcg_gen_ld32u_i64(r, base, ofs);
2380 break;
2381 case 3:
2382 tcg_gen_ld_i64(r, base, ofs);
2383 break;
2384 default:
2385 g_assert_not_reached();
2386 }
2387 return r;
2388}
2389
2390/* Load an unsigned element of ESZ from RM[LAST]. */
2391static TCGv_i64 load_last_active(DisasContext *s, TCGv_i32 last,
2392 int rm, int esz)
2393{
2394 TCGv_ptr p = tcg_temp_new_ptr();
2395 TCGv_i64 r;
2396
2397 /* Convert offset into vector into offset into ENV.
2398 * The final adjustment for the vector register base
2399 * is added via constant offset to the load.
2400 */
2401#ifdef HOST_WORDS_BIGENDIAN
2402 /* Adjust for element ordering. See vec_reg_offset. */
2403 if (esz < 3) {
2404 tcg_gen_xori_i32(last, last, 8 - (1 << esz));
2405 }
2406#endif
2407 tcg_gen_ext_i32_ptr(p, last);
2408 tcg_gen_add_ptr(p, p, cpu_env);
2409
2410 r = load_esz(p, vec_full_reg_offset(s, rm), esz);
2411 tcg_temp_free_ptr(p);
2412
2413 return r;
2414}
2415
2416/* Compute CLAST for a Zreg. */
2417static bool do_clast_vector(DisasContext *s, arg_rprr_esz *a, bool before)
2418{
2419 TCGv_i32 last;
2420 TCGLabel *over;
2421 TCGv_i64 ele;
2422 unsigned vsz, esz = a->esz;
2423
2424 if (!sve_access_check(s)) {
2425 return true;
2426 }
2427
2428 last = tcg_temp_local_new_i32();
2429 over = gen_new_label();
2430
2431 find_last_active(s, last, esz, a->pg);
2432
2433 /* There is of course no movcond for a 2048-bit vector,
2434 * so we must branch over the actual store.
2435 */
2436 tcg_gen_brcondi_i32(TCG_COND_LT, last, 0, over);
2437
2438 if (!before) {
2439 incr_last_active(s, last, esz);
2440 }
2441
2442 ele = load_last_active(s, last, a->rm, esz);
2443 tcg_temp_free_i32(last);
2444
2445 vsz = vec_full_reg_size(s);
2446 tcg_gen_gvec_dup_i64(esz, vec_full_reg_offset(s, a->rd), vsz, vsz, ele);
2447 tcg_temp_free_i64(ele);
2448
2449 /* If this insn used MOVPRFX, we may need a second move. */
2450 if (a->rd != a->rn) {
2451 TCGLabel *done = gen_new_label();
2452 tcg_gen_br(done);
2453
2454 gen_set_label(over);
2455 do_mov_z(s, a->rd, a->rn);
2456
2457 gen_set_label(done);
2458 } else {
2459 gen_set_label(over);
2460 }
2461 return true;
2462}
2463
3a7be554 2464static bool trans_CLASTA_z(DisasContext *s, arg_rprr_esz *a)
ef23cb72
RH
2465{
2466 return do_clast_vector(s, a, false);
2467}
2468
3a7be554 2469static bool trans_CLASTB_z(DisasContext *s, arg_rprr_esz *a)
ef23cb72
RH
2470{
2471 return do_clast_vector(s, a, true);
2472}
2473
2474/* Compute CLAST for a scalar. */
2475static void do_clast_scalar(DisasContext *s, int esz, int pg, int rm,
2476 bool before, TCGv_i64 reg_val)
2477{
2478 TCGv_i32 last = tcg_temp_new_i32();
2479 TCGv_i64 ele, cmp, zero;
2480
2481 find_last_active(s, last, esz, pg);
2482
2483 /* Extend the original value of last prior to incrementing. */
2484 cmp = tcg_temp_new_i64();
2485 tcg_gen_ext_i32_i64(cmp, last);
2486
2487 if (!before) {
2488 incr_last_active(s, last, esz);
2489 }
2490
2491 /* The conceit here is that while last < 0 indicates not found, after
2492 * adjusting for cpu_env->vfp.zregs[rm], it is still a valid address
2493 * from which we can load garbage. We then discard the garbage with
2494 * a conditional move.
2495 */
2496 ele = load_last_active(s, last, rm, esz);
2497 tcg_temp_free_i32(last);
2498
2499 zero = tcg_const_i64(0);
2500 tcg_gen_movcond_i64(TCG_COND_GE, reg_val, cmp, zero, ele, reg_val);
2501
2502 tcg_temp_free_i64(zero);
2503 tcg_temp_free_i64(cmp);
2504 tcg_temp_free_i64(ele);
2505}
2506
2507/* Compute CLAST for a Vreg. */
2508static bool do_clast_fp(DisasContext *s, arg_rpr_esz *a, bool before)
2509{
2510 if (sve_access_check(s)) {
2511 int esz = a->esz;
2512 int ofs = vec_reg_offset(s, a->rd, 0, esz);
2513 TCGv_i64 reg = load_esz(cpu_env, ofs, esz);
2514
2515 do_clast_scalar(s, esz, a->pg, a->rn, before, reg);
2516 write_fp_dreg(s, a->rd, reg);
2517 tcg_temp_free_i64(reg);
2518 }
2519 return true;
2520}
2521
3a7be554 2522static bool trans_CLASTA_v(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2523{
2524 return do_clast_fp(s, a, false);
2525}
2526
3a7be554 2527static bool trans_CLASTB_v(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2528{
2529 return do_clast_fp(s, a, true);
2530}
2531
2532/* Compute CLAST for a Xreg. */
2533static bool do_clast_general(DisasContext *s, arg_rpr_esz *a, bool before)
2534{
2535 TCGv_i64 reg;
2536
2537 if (!sve_access_check(s)) {
2538 return true;
2539 }
2540
2541 reg = cpu_reg(s, a->rd);
2542 switch (a->esz) {
2543 case 0:
2544 tcg_gen_ext8u_i64(reg, reg);
2545 break;
2546 case 1:
2547 tcg_gen_ext16u_i64(reg, reg);
2548 break;
2549 case 2:
2550 tcg_gen_ext32u_i64(reg, reg);
2551 break;
2552 case 3:
2553 break;
2554 default:
2555 g_assert_not_reached();
2556 }
2557
2558 do_clast_scalar(s, a->esz, a->pg, a->rn, before, reg);
2559 return true;
2560}
2561
3a7be554 2562static bool trans_CLASTA_r(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2563{
2564 return do_clast_general(s, a, false);
2565}
2566
3a7be554 2567static bool trans_CLASTB_r(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2568{
2569 return do_clast_general(s, a, true);
2570}
2571
2572/* Compute LAST for a scalar. */
2573static TCGv_i64 do_last_scalar(DisasContext *s, int esz,
2574 int pg, int rm, bool before)
2575{
2576 TCGv_i32 last = tcg_temp_new_i32();
2577 TCGv_i64 ret;
2578
2579 find_last_active(s, last, esz, pg);
2580 if (before) {
2581 wrap_last_active(s, last, esz);
2582 } else {
2583 incr_last_active(s, last, esz);
2584 }
2585
2586 ret = load_last_active(s, last, rm, esz);
2587 tcg_temp_free_i32(last);
2588 return ret;
2589}
2590
2591/* Compute LAST for a Vreg. */
2592static bool do_last_fp(DisasContext *s, arg_rpr_esz *a, bool before)
2593{
2594 if (sve_access_check(s)) {
2595 TCGv_i64 val = do_last_scalar(s, a->esz, a->pg, a->rn, before);
2596 write_fp_dreg(s, a->rd, val);
2597 tcg_temp_free_i64(val);
2598 }
2599 return true;
2600}
2601
3a7be554 2602static bool trans_LASTA_v(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2603{
2604 return do_last_fp(s, a, false);
2605}
2606
3a7be554 2607static bool trans_LASTB_v(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2608{
2609 return do_last_fp(s, a, true);
2610}
2611
2612/* Compute LAST for a Xreg. */
2613static bool do_last_general(DisasContext *s, arg_rpr_esz *a, bool before)
2614{
2615 if (sve_access_check(s)) {
2616 TCGv_i64 val = do_last_scalar(s, a->esz, a->pg, a->rn, before);
2617 tcg_gen_mov_i64(cpu_reg(s, a->rd), val);
2618 tcg_temp_free_i64(val);
2619 }
2620 return true;
2621}
2622
3a7be554 2623static bool trans_LASTA_r(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2624{
2625 return do_last_general(s, a, false);
2626}
2627
3a7be554 2628static bool trans_LASTB_r(DisasContext *s, arg_rpr_esz *a)
ef23cb72
RH
2629{
2630 return do_last_general(s, a, true);
2631}
2632
3a7be554 2633static bool trans_CPY_m_r(DisasContext *s, arg_rpr_esz *a)
792a5578
RH
2634{
2635 if (sve_access_check(s)) {
2636 do_cpy_m(s, a->esz, a->rd, a->rd, a->pg, cpu_reg_sp(s, a->rn));
2637 }
2638 return true;
2639}
2640
3a7be554 2641static bool trans_CPY_m_v(DisasContext *s, arg_rpr_esz *a)
792a5578
RH
2642{
2643 if (sve_access_check(s)) {
2644 int ofs = vec_reg_offset(s, a->rn, 0, a->esz);
2645 TCGv_i64 t = load_esz(cpu_env, ofs, a->esz);
2646 do_cpy_m(s, a->esz, a->rd, a->rd, a->pg, t);
2647 tcg_temp_free_i64(t);
2648 }
2649 return true;
2650}
2651
3a7be554 2652static bool trans_REVB(DisasContext *s, arg_rpr_esz *a)
dae8fb90
RH
2653{
2654 static gen_helper_gvec_3 * const fns[4] = {
2655 NULL,
2656 gen_helper_sve_revb_h,
2657 gen_helper_sve_revb_s,
2658 gen_helper_sve_revb_d,
2659 };
2660 return do_zpz_ool(s, a, fns[a->esz]);
2661}
2662
3a7be554 2663static bool trans_REVH(DisasContext *s, arg_rpr_esz *a)
dae8fb90
RH
2664{
2665 static gen_helper_gvec_3 * const fns[4] = {
2666 NULL,
2667 NULL,
2668 gen_helper_sve_revh_s,
2669 gen_helper_sve_revh_d,
2670 };
2671 return do_zpz_ool(s, a, fns[a->esz]);
2672}
2673
3a7be554 2674static bool trans_REVW(DisasContext *s, arg_rpr_esz *a)
dae8fb90
RH
2675{
2676 return do_zpz_ool(s, a, a->esz == 3 ? gen_helper_sve_revw_d : NULL);
2677}
2678
3a7be554 2679static bool trans_RBIT(DisasContext *s, arg_rpr_esz *a)
dae8fb90
RH
2680{
2681 static gen_helper_gvec_3 * const fns[4] = {
2682 gen_helper_sve_rbit_b,
2683 gen_helper_sve_rbit_h,
2684 gen_helper_sve_rbit_s,
2685 gen_helper_sve_rbit_d,
2686 };
2687 return do_zpz_ool(s, a, fns[a->esz]);
2688}
2689
3a7be554 2690static bool trans_SPLICE(DisasContext *s, arg_rprr_esz *a)
b48ff240
RH
2691{
2692 if (sve_access_check(s)) {
36cbb7a8 2693 gen_gvec_ool_zzzp(s, gen_helper_sve_splice,
dd701faf 2694 a->rd, a->rn, a->rm, a->pg, a->esz);
b48ff240
RH
2695 }
2696 return true;
2697}
2698
757f9cff
RH
2699/*
2700 *** SVE Integer Compare - Vectors Group
2701 */
2702
2703static bool do_ppzz_flags(DisasContext *s, arg_rprr_esz *a,
2704 gen_helper_gvec_flags_4 *gen_fn)
2705{
2706 TCGv_ptr pd, zn, zm, pg;
2707 unsigned vsz;
2708 TCGv_i32 t;
2709
2710 if (gen_fn == NULL) {
2711 return false;
2712 }
2713 if (!sve_access_check(s)) {
2714 return true;
2715 }
2716
2717 vsz = vec_full_reg_size(s);
2718 t = tcg_const_i32(simd_desc(vsz, vsz, 0));
2719 pd = tcg_temp_new_ptr();
2720 zn = tcg_temp_new_ptr();
2721 zm = tcg_temp_new_ptr();
2722 pg = tcg_temp_new_ptr();
2723
2724 tcg_gen_addi_ptr(pd, cpu_env, pred_full_reg_offset(s, a->rd));
2725 tcg_gen_addi_ptr(zn, cpu_env, vec_full_reg_offset(s, a->rn));
2726 tcg_gen_addi_ptr(zm, cpu_env, vec_full_reg_offset(s, a->rm));
2727 tcg_gen_addi_ptr(pg, cpu_env, pred_full_reg_offset(s, a->pg));
2728
2729 gen_fn(t, pd, zn, zm, pg, t);
2730
2731 tcg_temp_free_ptr(pd);
2732 tcg_temp_free_ptr(zn);
2733 tcg_temp_free_ptr(zm);
2734 tcg_temp_free_ptr(pg);
2735
2736 do_pred_flags(t);
2737
2738 tcg_temp_free_i32(t);
2739 return true;
2740}
2741
2742#define DO_PPZZ(NAME, name) \
3a7be554 2743static bool trans_##NAME##_ppzz(DisasContext *s, arg_rprr_esz *a) \
757f9cff
RH
2744{ \
2745 static gen_helper_gvec_flags_4 * const fns[4] = { \
2746 gen_helper_sve_##name##_ppzz_b, gen_helper_sve_##name##_ppzz_h, \
2747 gen_helper_sve_##name##_ppzz_s, gen_helper_sve_##name##_ppzz_d, \
2748 }; \
2749 return do_ppzz_flags(s, a, fns[a->esz]); \
2750}
2751
2752DO_PPZZ(CMPEQ, cmpeq)
2753DO_PPZZ(CMPNE, cmpne)
2754DO_PPZZ(CMPGT, cmpgt)
2755DO_PPZZ(CMPGE, cmpge)
2756DO_PPZZ(CMPHI, cmphi)
2757DO_PPZZ(CMPHS, cmphs)
2758
2759#undef DO_PPZZ
2760
2761#define DO_PPZW(NAME, name) \
3a7be554 2762static bool trans_##NAME##_ppzw(DisasContext *s, arg_rprr_esz *a) \
757f9cff
RH
2763{ \
2764 static gen_helper_gvec_flags_4 * const fns[4] = { \
2765 gen_helper_sve_##name##_ppzw_b, gen_helper_sve_##name##_ppzw_h, \
2766 gen_helper_sve_##name##_ppzw_s, NULL \
2767 }; \
2768 return do_ppzz_flags(s, a, fns[a->esz]); \
2769}
2770
2771DO_PPZW(CMPEQ, cmpeq)
2772DO_PPZW(CMPNE, cmpne)
2773DO_PPZW(CMPGT, cmpgt)
2774DO_PPZW(CMPGE, cmpge)
2775DO_PPZW(CMPHI, cmphi)
2776DO_PPZW(CMPHS, cmphs)
2777DO_PPZW(CMPLT, cmplt)
2778DO_PPZW(CMPLE, cmple)
2779DO_PPZW(CMPLO, cmplo)
2780DO_PPZW(CMPLS, cmpls)
2781
2782#undef DO_PPZW
2783
38cadeba
RH
2784/*
2785 *** SVE Integer Compare - Immediate Groups
2786 */
2787
2788static bool do_ppzi_flags(DisasContext *s, arg_rpri_esz *a,
2789 gen_helper_gvec_flags_3 *gen_fn)
2790{
2791 TCGv_ptr pd, zn, pg;
2792 unsigned vsz;
2793 TCGv_i32 t;
2794
2795 if (gen_fn == NULL) {
2796 return false;
2797 }
2798 if (!sve_access_check(s)) {
2799 return true;
2800 }
2801
2802 vsz = vec_full_reg_size(s);
2803 t = tcg_const_i32(simd_desc(vsz, vsz, a->imm));
2804 pd = tcg_temp_new_ptr();
2805 zn = tcg_temp_new_ptr();
2806 pg = tcg_temp_new_ptr();
2807
2808 tcg_gen_addi_ptr(pd, cpu_env, pred_full_reg_offset(s, a->rd));
2809 tcg_gen_addi_ptr(zn, cpu_env, vec_full_reg_offset(s, a->rn));
2810 tcg_gen_addi_ptr(pg, cpu_env, pred_full_reg_offset(s, a->pg));
2811
2812 gen_fn(t, pd, zn, pg, t);
2813
2814 tcg_temp_free_ptr(pd);
2815 tcg_temp_free_ptr(zn);
2816 tcg_temp_free_ptr(pg);
2817
2818 do_pred_flags(t);
2819
2820 tcg_temp_free_i32(t);
2821 return true;
2822}
2823
2824#define DO_PPZI(NAME, name) \
3a7be554 2825static bool trans_##NAME##_ppzi(DisasContext *s, arg_rpri_esz *a) \
38cadeba
RH
2826{ \
2827 static gen_helper_gvec_flags_3 * const fns[4] = { \
2828 gen_helper_sve_##name##_ppzi_b, gen_helper_sve_##name##_ppzi_h, \
2829 gen_helper_sve_##name##_ppzi_s, gen_helper_sve_##name##_ppzi_d, \
2830 }; \
2831 return do_ppzi_flags(s, a, fns[a->esz]); \
2832}
2833
2834DO_PPZI(CMPEQ, cmpeq)
2835DO_PPZI(CMPNE, cmpne)
2836DO_PPZI(CMPGT, cmpgt)
2837DO_PPZI(CMPGE, cmpge)
2838DO_PPZI(CMPHI, cmphi)
2839DO_PPZI(CMPHS, cmphs)
2840DO_PPZI(CMPLT, cmplt)
2841DO_PPZI(CMPLE, cmple)
2842DO_PPZI(CMPLO, cmplo)
2843DO_PPZI(CMPLS, cmpls)
2844
2845#undef DO_PPZI
2846
35da316f
RH
2847/*
2848 *** SVE Partition Break Group
2849 */
2850
2851static bool do_brk3(DisasContext *s, arg_rprr_s *a,
2852 gen_helper_gvec_4 *fn, gen_helper_gvec_flags_4 *fn_s)
2853{
2854 if (!sve_access_check(s)) {
2855 return true;
2856 }
2857
2858 unsigned vsz = pred_full_reg_size(s);
2859
2860 /* Predicate sizes may be smaller and cannot use simd_desc. */
2861 TCGv_ptr d = tcg_temp_new_ptr();
2862 TCGv_ptr n = tcg_temp_new_ptr();
2863 TCGv_ptr m = tcg_temp_new_ptr();
2864 TCGv_ptr g = tcg_temp_new_ptr();
04c774a2 2865 TCGv_i32 t = tcg_const_i32(FIELD_DP32(0, PREDDESC, OPRSZ, vsz));
35da316f
RH
2866
2867 tcg_gen_addi_ptr(d, cpu_env, pred_full_reg_offset(s, a->rd));
2868 tcg_gen_addi_ptr(n, cpu_env, pred_full_reg_offset(s, a->rn));
2869 tcg_gen_addi_ptr(m, cpu_env, pred_full_reg_offset(s, a->rm));
2870 tcg_gen_addi_ptr(g, cpu_env, pred_full_reg_offset(s, a->pg));
2871
2872 if (a->s) {
2873 fn_s(t, d, n, m, g, t);
2874 do_pred_flags(t);
2875 } else {
2876 fn(d, n, m, g, t);
2877 }
2878 tcg_temp_free_ptr(d);
2879 tcg_temp_free_ptr(n);
2880 tcg_temp_free_ptr(m);
2881 tcg_temp_free_ptr(g);
2882 tcg_temp_free_i32(t);
2883 return true;
2884}
2885
2886static bool do_brk2(DisasContext *s, arg_rpr_s *a,
2887 gen_helper_gvec_3 *fn, gen_helper_gvec_flags_3 *fn_s)
2888{
2889 if (!sve_access_check(s)) {
2890 return true;
2891 }
2892
2893 unsigned vsz = pred_full_reg_size(s);
2894
2895 /* Predicate sizes may be smaller and cannot use simd_desc. */
2896 TCGv_ptr d = tcg_temp_new_ptr();
2897 TCGv_ptr n = tcg_temp_new_ptr();
2898 TCGv_ptr g = tcg_temp_new_ptr();
04c774a2 2899 TCGv_i32 t = tcg_const_i32(FIELD_DP32(0, PREDDESC, OPRSZ, vsz));
35da316f
RH
2900
2901 tcg_gen_addi_ptr(d, cpu_env, pred_full_reg_offset(s, a->rd));
2902 tcg_gen_addi_ptr(n, cpu_env, pred_full_reg_offset(s, a->rn));
2903 tcg_gen_addi_ptr(g, cpu_env, pred_full_reg_offset(s, a->pg));
2904
2905 if (a->s) {
2906 fn_s(t, d, n, g, t);
2907 do_pred_flags(t);
2908 } else {
2909 fn(d, n, g, t);
2910 }
2911 tcg_temp_free_ptr(d);
2912 tcg_temp_free_ptr(n);
2913 tcg_temp_free_ptr(g);
2914 tcg_temp_free_i32(t);
2915 return true;
2916}
2917
3a7be554 2918static bool trans_BRKPA(DisasContext *s, arg_rprr_s *a)
35da316f
RH
2919{
2920 return do_brk3(s, a, gen_helper_sve_brkpa, gen_helper_sve_brkpas);
2921}
2922
3a7be554 2923static bool trans_BRKPB(DisasContext *s, arg_rprr_s *a)
35da316f
RH
2924{
2925 return do_brk3(s, a, gen_helper_sve_brkpb, gen_helper_sve_brkpbs);
2926}
2927
3a7be554 2928static bool trans_BRKA_m(DisasContext *s, arg_rpr_s *a)
35da316f
RH
2929{
2930 return do_brk2(s, a, gen_helper_sve_brka_m, gen_helper_sve_brkas_m);
2931}
2932
3a7be554 2933static bool trans_BRKB_m(DisasContext *s, arg_rpr_s *a)
35da316f
RH
2934{
2935 return do_brk2(s, a, gen_helper_sve_brkb_m, gen_helper_sve_brkbs_m);
2936}
2937
3a7be554 2938static bool trans_BRKA_z(DisasContext *s, arg_rpr_s *a)
35da316f
RH
2939{
2940 return do_brk2(s, a, gen_helper_sve_brka_z, gen_helper_sve_brkas_z);
2941}
2942
3a7be554 2943static bool trans_BRKB_z(DisasContext *s, arg_rpr_s *a)
35da316f
RH
2944{
2945 return do_brk2(s, a, gen_helper_sve_brkb_z, gen_helper_sve_brkbs_z);
2946}
2947
3a7be554 2948static bool trans_BRKN(DisasContext *s, arg_rpr_s *a)
35da316f
RH
2949{
2950 return do_brk2(s, a, gen_helper_sve_brkn, gen_helper_sve_brkns);
2951}
2952
9ee3a611
RH
2953/*
2954 *** SVE Predicate Count Group
2955 */
2956
2957static void do_cntp(DisasContext *s, TCGv_i64 val, int esz, int pn, int pg)
2958{
2959 unsigned psz = pred_full_reg_size(s);
2960
2961 if (psz <= 8) {
2962 uint64_t psz_mask;
2963
2964 tcg_gen_ld_i64(val, cpu_env, pred_full_reg_offset(s, pn));
2965 if (pn != pg) {
2966 TCGv_i64 g = tcg_temp_new_i64();
2967 tcg_gen_ld_i64(g, cpu_env, pred_full_reg_offset(s, pg));
2968 tcg_gen_and_i64(val, val, g);
2969 tcg_temp_free_i64(g);
2970 }
2971
2972 /* Reduce the pred_esz_masks value simply to reduce the
2973 * size of the code generated here.
2974 */
2975 psz_mask = MAKE_64BIT_MASK(0, psz * 8);
2976 tcg_gen_andi_i64(val, val, pred_esz_masks[esz] & psz_mask);
2977
2978 tcg_gen_ctpop_i64(val, val);
2979 } else {
2980 TCGv_ptr t_pn = tcg_temp_new_ptr();
2981 TCGv_ptr t_pg = tcg_temp_new_ptr();
f556a201 2982 unsigned desc = 0;
9ee3a611
RH
2983 TCGv_i32 t_desc;
2984
f556a201
RH
2985 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, psz);
2986 desc = FIELD_DP32(desc, PREDDESC, ESZ, esz);
9ee3a611
RH
2987
2988 tcg_gen_addi_ptr(t_pn, cpu_env, pred_full_reg_offset(s, pn));
2989 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
2990 t_desc = tcg_const_i32(desc);
2991
2992 gen_helper_sve_cntp(val, t_pn, t_pg, t_desc);
2993 tcg_temp_free_ptr(t_pn);
2994 tcg_temp_free_ptr(t_pg);
2995 tcg_temp_free_i32(t_desc);
2996 }
2997}
2998
3a7be554 2999static bool trans_CNTP(DisasContext *s, arg_CNTP *a)
9ee3a611
RH
3000{
3001 if (sve_access_check(s)) {
3002 do_cntp(s, cpu_reg(s, a->rd), a->esz, a->rn, a->pg);
3003 }
3004 return true;
3005}
3006
3a7be554 3007static bool trans_INCDECP_r(DisasContext *s, arg_incdec_pred *a)
9ee3a611
RH
3008{
3009 if (sve_access_check(s)) {
3010 TCGv_i64 reg = cpu_reg(s, a->rd);
3011 TCGv_i64 val = tcg_temp_new_i64();
3012
3013 do_cntp(s, val, a->esz, a->pg, a->pg);
3014 if (a->d) {
3015 tcg_gen_sub_i64(reg, reg, val);
3016 } else {
3017 tcg_gen_add_i64(reg, reg, val);
3018 }
3019 tcg_temp_free_i64(val);
3020 }
3021 return true;
3022}
3023
3a7be554 3024static bool trans_INCDECP_z(DisasContext *s, arg_incdec2_pred *a)
9ee3a611
RH
3025{
3026 if (a->esz == 0) {
3027 return false;
3028 }
3029 if (sve_access_check(s)) {
3030 unsigned vsz = vec_full_reg_size(s);
3031 TCGv_i64 val = tcg_temp_new_i64();
3032 GVecGen2sFn *gvec_fn = a->d ? tcg_gen_gvec_subs : tcg_gen_gvec_adds;
3033
3034 do_cntp(s, val, a->esz, a->pg, a->pg);
3035 gvec_fn(a->esz, vec_full_reg_offset(s, a->rd),
3036 vec_full_reg_offset(s, a->rn), val, vsz, vsz);
3037 }
3038 return true;
3039}
3040
3a7be554 3041static bool trans_SINCDECP_r_32(DisasContext *s, arg_incdec_pred *a)
9ee3a611
RH
3042{
3043 if (sve_access_check(s)) {
3044 TCGv_i64 reg = cpu_reg(s, a->rd);
3045 TCGv_i64 val = tcg_temp_new_i64();
3046
3047 do_cntp(s, val, a->esz, a->pg, a->pg);
3048 do_sat_addsub_32(reg, val, a->u, a->d);
3049 }
3050 return true;
3051}
3052
3a7be554 3053static bool trans_SINCDECP_r_64(DisasContext *s, arg_incdec_pred *a)
9ee3a611
RH
3054{
3055 if (sve_access_check(s)) {
3056 TCGv_i64 reg = cpu_reg(s, a->rd);
3057 TCGv_i64 val = tcg_temp_new_i64();
3058
3059 do_cntp(s, val, a->esz, a->pg, a->pg);
3060 do_sat_addsub_64(reg, val, a->u, a->d);
3061 }
3062 return true;
3063}
3064
3a7be554 3065static bool trans_SINCDECP_z(DisasContext *s, arg_incdec2_pred *a)
9ee3a611
RH
3066{
3067 if (a->esz == 0) {
3068 return false;
3069 }
3070 if (sve_access_check(s)) {
3071 TCGv_i64 val = tcg_temp_new_i64();
3072 do_cntp(s, val, a->esz, a->pg, a->pg);
3073 do_sat_addsub_vec(s, a->esz, a->rd, a->rn, val, a->u, a->d);
3074 }
3075 return true;
3076}
3077
caf1cefc
RH
3078/*
3079 *** SVE Integer Compare Scalars Group
3080 */
3081
3a7be554 3082static bool trans_CTERM(DisasContext *s, arg_CTERM *a)
caf1cefc
RH
3083{
3084 if (!sve_access_check(s)) {
3085 return true;
3086 }
3087
3088 TCGCond cond = (a->ne ? TCG_COND_NE : TCG_COND_EQ);
3089 TCGv_i64 rn = read_cpu_reg(s, a->rn, a->sf);
3090 TCGv_i64 rm = read_cpu_reg(s, a->rm, a->sf);
3091 TCGv_i64 cmp = tcg_temp_new_i64();
3092
3093 tcg_gen_setcond_i64(cond, cmp, rn, rm);
3094 tcg_gen_extrl_i64_i32(cpu_NF, cmp);
3095 tcg_temp_free_i64(cmp);
3096
3097 /* VF = !NF & !CF. */
3098 tcg_gen_xori_i32(cpu_VF, cpu_NF, 1);
3099 tcg_gen_andc_i32(cpu_VF, cpu_VF, cpu_CF);
3100
3101 /* Both NF and VF actually look at bit 31. */
3102 tcg_gen_neg_i32(cpu_NF, cpu_NF);
3103 tcg_gen_neg_i32(cpu_VF, cpu_VF);
3104 return true;
3105}
3106
3a7be554 3107static bool trans_WHILE(DisasContext *s, arg_WHILE *a)
caf1cefc 3108{
bbd0968c 3109 TCGv_i64 op0, op1, t0, t1, tmax;
caf1cefc
RH
3110 TCGv_i32 t2, t3;
3111 TCGv_ptr ptr;
e610906c
RH
3112 unsigned vsz = vec_full_reg_size(s);
3113 unsigned desc = 0;
caf1cefc
RH
3114 TCGCond cond;
3115
bbd0968c
RH
3116 if (!sve_access_check(s)) {
3117 return true;
3118 }
3119
3120 op0 = read_cpu_reg(s, a->rn, 1);
3121 op1 = read_cpu_reg(s, a->rm, 1);
3122
caf1cefc
RH
3123 if (!a->sf) {
3124 if (a->u) {
3125 tcg_gen_ext32u_i64(op0, op0);
3126 tcg_gen_ext32u_i64(op1, op1);
3127 } else {
3128 tcg_gen_ext32s_i64(op0, op0);
3129 tcg_gen_ext32s_i64(op1, op1);
3130 }
3131 }
3132
3133 /* For the helper, compress the different conditions into a computation
3134 * of how many iterations for which the condition is true.
caf1cefc 3135 */
bbd0968c
RH
3136 t0 = tcg_temp_new_i64();
3137 t1 = tcg_temp_new_i64();
caf1cefc
RH
3138 tcg_gen_sub_i64(t0, op1, op0);
3139
bbd0968c 3140 tmax = tcg_const_i64(vsz >> a->esz);
caf1cefc
RH
3141 if (a->eq) {
3142 /* Equality means one more iteration. */
3143 tcg_gen_addi_i64(t0, t0, 1);
bbd0968c
RH
3144
3145 /* If op1 is max (un)signed integer (and the only time the addition
3146 * above could overflow), then we produce an all-true predicate by
3147 * setting the count to the vector length. This is because the
3148 * pseudocode is described as an increment + compare loop, and the
3149 * max integer would always compare true.
3150 */
3151 tcg_gen_movi_i64(t1, (a->sf
3152 ? (a->u ? UINT64_MAX : INT64_MAX)
3153 : (a->u ? UINT32_MAX : INT32_MAX)));
3154 tcg_gen_movcond_i64(TCG_COND_EQ, t0, op1, t1, tmax, t0);
caf1cefc
RH
3155 }
3156
bbd0968c
RH
3157 /* Bound to the maximum. */
3158 tcg_gen_umin_i64(t0, t0, tmax);
3159 tcg_temp_free_i64(tmax);
3160
3161 /* Set the count to zero if the condition is false. */
caf1cefc
RH
3162 cond = (a->u
3163 ? (a->eq ? TCG_COND_LEU : TCG_COND_LTU)
3164 : (a->eq ? TCG_COND_LE : TCG_COND_LT));
3165 tcg_gen_movi_i64(t1, 0);
3166 tcg_gen_movcond_i64(cond, t0, op0, op1, t0, t1);
bbd0968c 3167 tcg_temp_free_i64(t1);
caf1cefc 3168
bbd0968c 3169 /* Since we're bounded, pass as a 32-bit type. */
caf1cefc
RH
3170 t2 = tcg_temp_new_i32();
3171 tcg_gen_extrl_i64_i32(t2, t0);
3172 tcg_temp_free_i64(t0);
bbd0968c
RH
3173
3174 /* Scale elements to bits. */
3175 tcg_gen_shli_i32(t2, t2, a->esz);
caf1cefc 3176
e610906c
RH
3177 desc = FIELD_DP32(desc, PREDDESC, OPRSZ, vsz / 8);
3178 desc = FIELD_DP32(desc, PREDDESC, ESZ, a->esz);
caf1cefc
RH
3179 t3 = tcg_const_i32(desc);
3180
3181 ptr = tcg_temp_new_ptr();
3182 tcg_gen_addi_ptr(ptr, cpu_env, pred_full_reg_offset(s, a->rd));
3183
3184 gen_helper_sve_while(t2, ptr, t2, t3);
3185 do_pred_flags(t2);
3186
3187 tcg_temp_free_ptr(ptr);
3188 tcg_temp_free_i32(t2);
3189 tcg_temp_free_i32(t3);
3190 return true;
3191}
3192
ed491961
RH
3193/*
3194 *** SVE Integer Wide Immediate - Unpredicated Group
3195 */
3196
3a7be554 3197static bool trans_FDUP(DisasContext *s, arg_FDUP *a)
ed491961
RH
3198{
3199 if (a->esz == 0) {
3200 return false;
3201 }
3202 if (sve_access_check(s)) {
3203 unsigned vsz = vec_full_reg_size(s);
3204 int dofs = vec_full_reg_offset(s, a->rd);
3205 uint64_t imm;
3206
3207 /* Decode the VFP immediate. */
3208 imm = vfp_expand_imm(a->esz, a->imm);
8711e71f 3209 tcg_gen_gvec_dup_imm(a->esz, dofs, vsz, vsz, imm);
ed491961
RH
3210 }
3211 return true;
3212}
3213
3a7be554 3214static bool trans_DUP_i(DisasContext *s, arg_DUP_i *a)
ed491961 3215{
3a7be554 3216 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
ed491961
RH
3217 return false;
3218 }
3219 if (sve_access_check(s)) {
3220 unsigned vsz = vec_full_reg_size(s);
3221 int dofs = vec_full_reg_offset(s, a->rd);
3222
8711e71f 3223 tcg_gen_gvec_dup_imm(a->esz, dofs, vsz, vsz, a->imm);
ed491961
RH
3224 }
3225 return true;
3226}
3227
3a7be554 3228static bool trans_ADD_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d 3229{
3a7be554 3230 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
6e6a157d
RH
3231 return false;
3232 }
3233 if (sve_access_check(s)) {
3234 unsigned vsz = vec_full_reg_size(s);
3235 tcg_gen_gvec_addi(a->esz, vec_full_reg_offset(s, a->rd),
3236 vec_full_reg_offset(s, a->rn), a->imm, vsz, vsz);
3237 }
3238 return true;
3239}
3240
3a7be554 3241static bool trans_SUB_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d
RH
3242{
3243 a->imm = -a->imm;
3a7be554 3244 return trans_ADD_zzi(s, a);
6e6a157d
RH
3245}
3246
3a7be554 3247static bool trans_SUBR_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d 3248{
53229a77 3249 static const TCGOpcode vecop_list[] = { INDEX_op_sub_vec, 0 };
6e6a157d
RH
3250 static const GVecGen2s op[4] = {
3251 { .fni8 = tcg_gen_vec_sub8_i64,
3252 .fniv = tcg_gen_sub_vec,
3253 .fno = gen_helper_sve_subri_b,
53229a77 3254 .opt_opc = vecop_list,
6e6a157d
RH
3255 .vece = MO_8,
3256 .scalar_first = true },
3257 { .fni8 = tcg_gen_vec_sub16_i64,
3258 .fniv = tcg_gen_sub_vec,
3259 .fno = gen_helper_sve_subri_h,
53229a77 3260 .opt_opc = vecop_list,
6e6a157d
RH
3261 .vece = MO_16,
3262 .scalar_first = true },
3263 { .fni4 = tcg_gen_sub_i32,
3264 .fniv = tcg_gen_sub_vec,
3265 .fno = gen_helper_sve_subri_s,
53229a77 3266 .opt_opc = vecop_list,
6e6a157d
RH
3267 .vece = MO_32,
3268 .scalar_first = true },
3269 { .fni8 = tcg_gen_sub_i64,
3270 .fniv = tcg_gen_sub_vec,
3271 .fno = gen_helper_sve_subri_d,
53229a77 3272 .opt_opc = vecop_list,
6e6a157d
RH
3273 .prefer_i64 = TCG_TARGET_REG_BITS == 64,
3274 .vece = MO_64,
3275 .scalar_first = true }
3276 };
3277
3a7be554 3278 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
6e6a157d
RH
3279 return false;
3280 }
3281 if (sve_access_check(s)) {
3282 unsigned vsz = vec_full_reg_size(s);
3283 TCGv_i64 c = tcg_const_i64(a->imm);
3284 tcg_gen_gvec_2s(vec_full_reg_offset(s, a->rd),
3285 vec_full_reg_offset(s, a->rn),
3286 vsz, vsz, c, &op[a->esz]);
3287 tcg_temp_free_i64(c);
3288 }
3289 return true;
3290}
3291
3a7be554 3292static bool trans_MUL_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d
RH
3293{
3294 if (sve_access_check(s)) {
3295 unsigned vsz = vec_full_reg_size(s);
3296 tcg_gen_gvec_muli(a->esz, vec_full_reg_offset(s, a->rd),
3297 vec_full_reg_offset(s, a->rn), a->imm, vsz, vsz);
3298 }
3299 return true;
3300}
3301
3a7be554 3302static bool do_zzi_sat(DisasContext *s, arg_rri_esz *a, bool u, bool d)
6e6a157d 3303{
3a7be554 3304 if (a->esz == 0 && extract32(s->insn, 13, 1)) {
6e6a157d
RH
3305 return false;
3306 }
3307 if (sve_access_check(s)) {
3308 TCGv_i64 val = tcg_const_i64(a->imm);
3309 do_sat_addsub_vec(s, a->esz, a->rd, a->rn, val, u, d);
3310 tcg_temp_free_i64(val);
3311 }
3312 return true;
3313}
3314
3a7be554 3315static bool trans_SQADD_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d 3316{
3a7be554 3317 return do_zzi_sat(s, a, false, false);
6e6a157d
RH
3318}
3319
3a7be554 3320static bool trans_UQADD_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d 3321{
3a7be554 3322 return do_zzi_sat(s, a, true, false);
6e6a157d
RH
3323}
3324
3a7be554 3325static bool trans_SQSUB_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d 3326{
3a7be554 3327 return do_zzi_sat(s, a, false, true);
6e6a157d
RH
3328}
3329
3a7be554 3330static bool trans_UQSUB_zzi(DisasContext *s, arg_rri_esz *a)
6e6a157d 3331{
3a7be554 3332 return do_zzi_sat(s, a, true, true);
6e6a157d
RH
3333}
3334
3335static bool do_zzi_ool(DisasContext *s, arg_rri_esz *a, gen_helper_gvec_2i *fn)
3336{
3337 if (sve_access_check(s)) {
3338 unsigned vsz = vec_full_reg_size(s);
3339 TCGv_i64 c = tcg_const_i64(a->imm);
3340
3341 tcg_gen_gvec_2i_ool(vec_full_reg_offset(s, a->rd),
3342 vec_full_reg_offset(s, a->rn),
3343 c, vsz, vsz, 0, fn);
3344 tcg_temp_free_i64(c);
3345 }
3346 return true;
3347}
3348
3349#define DO_ZZI(NAME, name) \
3a7be554 3350static bool trans_##NAME##_zzi(DisasContext *s, arg_rri_esz *a) \
6e6a157d
RH
3351{ \
3352 static gen_helper_gvec_2i * const fns[4] = { \
3353 gen_helper_sve_##name##i_b, gen_helper_sve_##name##i_h, \
3354 gen_helper_sve_##name##i_s, gen_helper_sve_##name##i_d, \
3355 }; \
3356 return do_zzi_ool(s, a, fns[a->esz]); \
3357}
3358
3359DO_ZZI(SMAX, smax)
3360DO_ZZI(UMAX, umax)
3361DO_ZZI(SMIN, smin)
3362DO_ZZI(UMIN, umin)
3363
3364#undef DO_ZZI
3365
3a7be554 3366static bool trans_DOT_zzz(DisasContext *s, arg_DOT_zzz *a)
d730ecaa
RH
3367{
3368 static gen_helper_gvec_3 * const fns[2][2] = {
3369 { gen_helper_gvec_sdot_b, gen_helper_gvec_sdot_h },
3370 { gen_helper_gvec_udot_b, gen_helper_gvec_udot_h }
3371 };
3372
3373 if (sve_access_check(s)) {
e645d1a1 3374 gen_gvec_ool_zzz(s, fns[a->u][a->sz], a->rd, a->rn, a->rm, 0);
d730ecaa
RH
3375 }
3376 return true;
3377}
3378
3a7be554 3379static bool trans_DOT_zzx(DisasContext *s, arg_DOT_zzx *a)
16fcfdc7
RH
3380{
3381 static gen_helper_gvec_3 * const fns[2][2] = {
3382 { gen_helper_gvec_sdot_idx_b, gen_helper_gvec_sdot_idx_h },
3383 { gen_helper_gvec_udot_idx_b, gen_helper_gvec_udot_idx_h }
3384 };
3385
3386 if (sve_access_check(s)) {
e645d1a1 3387 gen_gvec_ool_zzz(s, fns[a->u][a->sz], a->rd, a->rn, a->rm, a->index);
16fcfdc7
RH
3388 }
3389 return true;
3390}
3391
3392
ca40a6e6
RH
3393/*
3394 *** SVE Floating Point Multiply-Add Indexed Group
3395 */
3396
3a7be554 3397static bool trans_FMLA_zzxz(DisasContext *s, arg_FMLA_zzxz *a)
ca40a6e6
RH
3398{
3399 static gen_helper_gvec_4_ptr * const fns[3] = {
3400 gen_helper_gvec_fmla_idx_h,
3401 gen_helper_gvec_fmla_idx_s,
3402 gen_helper_gvec_fmla_idx_d,
3403 };
3404
3405 if (sve_access_check(s)) {
3406 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3407 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
ca40a6e6
RH
3408 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
3409 vec_full_reg_offset(s, a->rn),
3410 vec_full_reg_offset(s, a->rm),
3411 vec_full_reg_offset(s, a->ra),
3412 status, vsz, vsz, (a->index << 1) | a->sub,
3413 fns[a->esz - 1]);
3414 tcg_temp_free_ptr(status);
3415 }
3416 return true;
3417}
3418
3419/*
3420 *** SVE Floating Point Multiply Indexed Group
3421 */
3422
3a7be554 3423static bool trans_FMUL_zzx(DisasContext *s, arg_FMUL_zzx *a)
ca40a6e6
RH
3424{
3425 static gen_helper_gvec_3_ptr * const fns[3] = {
3426 gen_helper_gvec_fmul_idx_h,
3427 gen_helper_gvec_fmul_idx_s,
3428 gen_helper_gvec_fmul_idx_d,
3429 };
3430
3431 if (sve_access_check(s)) {
3432 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3433 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
ca40a6e6
RH
3434 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
3435 vec_full_reg_offset(s, a->rn),
3436 vec_full_reg_offset(s, a->rm),
3437 status, vsz, vsz, a->index, fns[a->esz - 1]);
3438 tcg_temp_free_ptr(status);
3439 }
3440 return true;
3441}
3442
23fbe79f
RH
3443/*
3444 *** SVE Floating Point Fast Reduction Group
3445 */
3446
3447typedef void gen_helper_fp_reduce(TCGv_i64, TCGv_ptr, TCGv_ptr,
3448 TCGv_ptr, TCGv_i32);
3449
3450static void do_reduce(DisasContext *s, arg_rpr_esz *a,
3451 gen_helper_fp_reduce *fn)
3452{
3453 unsigned vsz = vec_full_reg_size(s);
3454 unsigned p2vsz = pow2ceil(vsz);
c648c9b7 3455 TCGv_i32 t_desc = tcg_const_i32(simd_desc(vsz, vsz, p2vsz));
23fbe79f
RH
3456 TCGv_ptr t_zn, t_pg, status;
3457 TCGv_i64 temp;
3458
3459 temp = tcg_temp_new_i64();
3460 t_zn = tcg_temp_new_ptr();
3461 t_pg = tcg_temp_new_ptr();
3462
3463 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, a->rn));
3464 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->pg));
cdfb22bb 3465 status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
23fbe79f
RH
3466
3467 fn(temp, t_zn, t_pg, status, t_desc);
3468 tcg_temp_free_ptr(t_zn);
3469 tcg_temp_free_ptr(t_pg);
3470 tcg_temp_free_ptr(status);
3471 tcg_temp_free_i32(t_desc);
3472
3473 write_fp_dreg(s, a->rd, temp);
3474 tcg_temp_free_i64(temp);
3475}
3476
3477#define DO_VPZ(NAME, name) \
3a7be554 3478static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
23fbe79f
RH
3479{ \
3480 static gen_helper_fp_reduce * const fns[3] = { \
3481 gen_helper_sve_##name##_h, \
3482 gen_helper_sve_##name##_s, \
3483 gen_helper_sve_##name##_d, \
3484 }; \
3485 if (a->esz == 0) { \
3486 return false; \
3487 } \
3488 if (sve_access_check(s)) { \
3489 do_reduce(s, a, fns[a->esz - 1]); \
3490 } \
3491 return true; \
3492}
3493
3494DO_VPZ(FADDV, faddv)
3495DO_VPZ(FMINNMV, fminnmv)
3496DO_VPZ(FMAXNMV, fmaxnmv)
3497DO_VPZ(FMINV, fminv)
3498DO_VPZ(FMAXV, fmaxv)
3499
3887c038
RH
3500/*
3501 *** SVE Floating Point Unary Operations - Unpredicated Group
3502 */
3503
3504static void do_zz_fp(DisasContext *s, arg_rr_esz *a, gen_helper_gvec_2_ptr *fn)
3505{
3506 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3507 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
3887c038
RH
3508
3509 tcg_gen_gvec_2_ptr(vec_full_reg_offset(s, a->rd),
3510 vec_full_reg_offset(s, a->rn),
3511 status, vsz, vsz, 0, fn);
3512 tcg_temp_free_ptr(status);
3513}
3514
3a7be554 3515static bool trans_FRECPE(DisasContext *s, arg_rr_esz *a)
3887c038
RH
3516{
3517 static gen_helper_gvec_2_ptr * const fns[3] = {
3518 gen_helper_gvec_frecpe_h,
3519 gen_helper_gvec_frecpe_s,
3520 gen_helper_gvec_frecpe_d,
3521 };
3522 if (a->esz == 0) {
3523 return false;
3524 }
3525 if (sve_access_check(s)) {
3526 do_zz_fp(s, a, fns[a->esz - 1]);
3527 }
3528 return true;
3529}
3530
3a7be554 3531static bool trans_FRSQRTE(DisasContext *s, arg_rr_esz *a)
3887c038
RH
3532{
3533 static gen_helper_gvec_2_ptr * const fns[3] = {
3534 gen_helper_gvec_frsqrte_h,
3535 gen_helper_gvec_frsqrte_s,
3536 gen_helper_gvec_frsqrte_d,
3537 };
3538 if (a->esz == 0) {
3539 return false;
3540 }
3541 if (sve_access_check(s)) {
3542 do_zz_fp(s, a, fns[a->esz - 1]);
3543 }
3544 return true;
3545}
3546
4d2e2a03
RH
3547/*
3548 *** SVE Floating Point Compare with Zero Group
3549 */
3550
3551static void do_ppz_fp(DisasContext *s, arg_rpr_esz *a,
3552 gen_helper_gvec_3_ptr *fn)
3553{
3554 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3555 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
4d2e2a03
RH
3556
3557 tcg_gen_gvec_3_ptr(pred_full_reg_offset(s, a->rd),
3558 vec_full_reg_offset(s, a->rn),
3559 pred_full_reg_offset(s, a->pg),
3560 status, vsz, vsz, 0, fn);
3561 tcg_temp_free_ptr(status);
3562}
3563
3564#define DO_PPZ(NAME, name) \
3a7be554 3565static bool trans_##NAME(DisasContext *s, arg_rpr_esz *a) \
4d2e2a03
RH
3566{ \
3567 static gen_helper_gvec_3_ptr * const fns[3] = { \
3568 gen_helper_sve_##name##_h, \
3569 gen_helper_sve_##name##_s, \
3570 gen_helper_sve_##name##_d, \
3571 }; \
3572 if (a->esz == 0) { \
3573 return false; \
3574 } \
3575 if (sve_access_check(s)) { \
3576 do_ppz_fp(s, a, fns[a->esz - 1]); \
3577 } \
3578 return true; \
3579}
3580
3581DO_PPZ(FCMGE_ppz0, fcmge0)
3582DO_PPZ(FCMGT_ppz0, fcmgt0)
3583DO_PPZ(FCMLE_ppz0, fcmle0)
3584DO_PPZ(FCMLT_ppz0, fcmlt0)
3585DO_PPZ(FCMEQ_ppz0, fcmeq0)
3586DO_PPZ(FCMNE_ppz0, fcmne0)
3587
3588#undef DO_PPZ
3589
67fcd9ad
RH
3590/*
3591 *** SVE floating-point trig multiply-add coefficient
3592 */
3593
3a7be554 3594static bool trans_FTMAD(DisasContext *s, arg_FTMAD *a)
67fcd9ad
RH
3595{
3596 static gen_helper_gvec_3_ptr * const fns[3] = {
3597 gen_helper_sve_ftmad_h,
3598 gen_helper_sve_ftmad_s,
3599 gen_helper_sve_ftmad_d,
3600 };
3601
3602 if (a->esz == 0) {
3603 return false;
3604 }
3605 if (sve_access_check(s)) {
3606 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3607 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
67fcd9ad
RH
3608 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
3609 vec_full_reg_offset(s, a->rn),
3610 vec_full_reg_offset(s, a->rm),
3611 status, vsz, vsz, a->imm, fns[a->esz - 1]);
3612 tcg_temp_free_ptr(status);
3613 }
3614 return true;
3615}
3616
7f9ddf64
RH
3617/*
3618 *** SVE Floating Point Accumulating Reduction Group
3619 */
3620
3a7be554 3621static bool trans_FADDA(DisasContext *s, arg_rprr_esz *a)
7f9ddf64
RH
3622{
3623 typedef void fadda_fn(TCGv_i64, TCGv_i64, TCGv_ptr,
3624 TCGv_ptr, TCGv_ptr, TCGv_i32);
3625 static fadda_fn * const fns[3] = {
3626 gen_helper_sve_fadda_h,
3627 gen_helper_sve_fadda_s,
3628 gen_helper_sve_fadda_d,
3629 };
3630 unsigned vsz = vec_full_reg_size(s);
3631 TCGv_ptr t_rm, t_pg, t_fpst;
3632 TCGv_i64 t_val;
3633 TCGv_i32 t_desc;
3634
3635 if (a->esz == 0) {
3636 return false;
3637 }
3638 if (!sve_access_check(s)) {
3639 return true;
3640 }
3641
3642 t_val = load_esz(cpu_env, vec_reg_offset(s, a->rn, 0, a->esz), a->esz);
3643 t_rm = tcg_temp_new_ptr();
3644 t_pg = tcg_temp_new_ptr();
3645 tcg_gen_addi_ptr(t_rm, cpu_env, vec_full_reg_offset(s, a->rm));
3646 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, a->pg));
cdfb22bb 3647 t_fpst = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
7f9ddf64
RH
3648 t_desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
3649
3650 fns[a->esz - 1](t_val, t_val, t_rm, t_pg, t_fpst, t_desc);
3651
3652 tcg_temp_free_i32(t_desc);
3653 tcg_temp_free_ptr(t_fpst);
3654 tcg_temp_free_ptr(t_pg);
3655 tcg_temp_free_ptr(t_rm);
3656
3657 write_fp_dreg(s, a->rd, t_val);
3658 tcg_temp_free_i64(t_val);
3659 return true;
3660}
3661
29b80469
RH
3662/*
3663 *** SVE Floating Point Arithmetic - Unpredicated Group
3664 */
3665
3666static bool do_zzz_fp(DisasContext *s, arg_rrr_esz *a,
3667 gen_helper_gvec_3_ptr *fn)
3668{
3669 if (fn == NULL) {
3670 return false;
3671 }
3672 if (sve_access_check(s)) {
3673 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3674 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
29b80469
RH
3675 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
3676 vec_full_reg_offset(s, a->rn),
3677 vec_full_reg_offset(s, a->rm),
3678 status, vsz, vsz, 0, fn);
3679 tcg_temp_free_ptr(status);
3680 }
3681 return true;
3682}
3683
3684
3685#define DO_FP3(NAME, name) \
3a7be554 3686static bool trans_##NAME(DisasContext *s, arg_rrr_esz *a) \
29b80469
RH
3687{ \
3688 static gen_helper_gvec_3_ptr * const fns[4] = { \
3689 NULL, gen_helper_gvec_##name##_h, \
3690 gen_helper_gvec_##name##_s, gen_helper_gvec_##name##_d \
3691 }; \
3692 return do_zzz_fp(s, a, fns[a->esz]); \
3693}
3694
3695DO_FP3(FADD_zzz, fadd)
3696DO_FP3(FSUB_zzz, fsub)
3697DO_FP3(FMUL_zzz, fmul)
3698DO_FP3(FTSMUL, ftsmul)
3699DO_FP3(FRECPS, recps)
3700DO_FP3(FRSQRTS, rsqrts)
3701
3702#undef DO_FP3
3703
ec3b87c2
RH
3704/*
3705 *** SVE Floating Point Arithmetic - Predicated Group
3706 */
3707
3708static bool do_zpzz_fp(DisasContext *s, arg_rprr_esz *a,
3709 gen_helper_gvec_4_ptr *fn)
3710{
3711 if (fn == NULL) {
3712 return false;
3713 }
3714 if (sve_access_check(s)) {
3715 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3716 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
ec3b87c2
RH
3717 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
3718 vec_full_reg_offset(s, a->rn),
3719 vec_full_reg_offset(s, a->rm),
3720 pred_full_reg_offset(s, a->pg),
3721 status, vsz, vsz, 0, fn);
3722 tcg_temp_free_ptr(status);
3723 }
3724 return true;
3725}
3726
3727#define DO_FP3(NAME, name) \
3a7be554 3728static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
ec3b87c2
RH
3729{ \
3730 static gen_helper_gvec_4_ptr * const fns[4] = { \
3731 NULL, gen_helper_sve_##name##_h, \
3732 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d \
3733 }; \
3734 return do_zpzz_fp(s, a, fns[a->esz]); \
3735}
3736
3737DO_FP3(FADD_zpzz, fadd)
3738DO_FP3(FSUB_zpzz, fsub)
3739DO_FP3(FMUL_zpzz, fmul)
3740DO_FP3(FMIN_zpzz, fmin)
3741DO_FP3(FMAX_zpzz, fmax)
3742DO_FP3(FMINNM_zpzz, fminnum)
3743DO_FP3(FMAXNM_zpzz, fmaxnum)
3744DO_FP3(FABD, fabd)
3745DO_FP3(FSCALE, fscalbn)
3746DO_FP3(FDIV, fdiv)
3747DO_FP3(FMULX, fmulx)
3748
3749#undef DO_FP3
8092c6a3 3750
cc48affe
RH
3751typedef void gen_helper_sve_fp2scalar(TCGv_ptr, TCGv_ptr, TCGv_ptr,
3752 TCGv_i64, TCGv_ptr, TCGv_i32);
3753
3754static void do_fp_scalar(DisasContext *s, int zd, int zn, int pg, bool is_fp16,
3755 TCGv_i64 scalar, gen_helper_sve_fp2scalar *fn)
3756{
3757 unsigned vsz = vec_full_reg_size(s);
3758 TCGv_ptr t_zd, t_zn, t_pg, status;
3759 TCGv_i32 desc;
3760
3761 t_zd = tcg_temp_new_ptr();
3762 t_zn = tcg_temp_new_ptr();
3763 t_pg = tcg_temp_new_ptr();
3764 tcg_gen_addi_ptr(t_zd, cpu_env, vec_full_reg_offset(s, zd));
3765 tcg_gen_addi_ptr(t_zn, cpu_env, vec_full_reg_offset(s, zn));
3766 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
3767
cdfb22bb 3768 status = fpstatus_ptr(is_fp16 ? FPST_FPCR_F16 : FPST_FPCR);
cc48affe
RH
3769 desc = tcg_const_i32(simd_desc(vsz, vsz, 0));
3770 fn(t_zd, t_zn, t_pg, scalar, status, desc);
3771
3772 tcg_temp_free_i32(desc);
3773 tcg_temp_free_ptr(status);
3774 tcg_temp_free_ptr(t_pg);
3775 tcg_temp_free_ptr(t_zn);
3776 tcg_temp_free_ptr(t_zd);
3777}
3778
3779static void do_fp_imm(DisasContext *s, arg_rpri_esz *a, uint64_t imm,
3780 gen_helper_sve_fp2scalar *fn)
3781{
3782 TCGv_i64 temp = tcg_const_i64(imm);
3783 do_fp_scalar(s, a->rd, a->rn, a->pg, a->esz == MO_16, temp, fn);
3784 tcg_temp_free_i64(temp);
3785}
3786
3787#define DO_FP_IMM(NAME, name, const0, const1) \
3a7be554 3788static bool trans_##NAME##_zpzi(DisasContext *s, arg_rpri_esz *a) \
cc48affe
RH
3789{ \
3790 static gen_helper_sve_fp2scalar * const fns[3] = { \
3791 gen_helper_sve_##name##_h, \
3792 gen_helper_sve_##name##_s, \
3793 gen_helper_sve_##name##_d \
3794 }; \
3795 static uint64_t const val[3][2] = { \
3796 { float16_##const0, float16_##const1 }, \
3797 { float32_##const0, float32_##const1 }, \
3798 { float64_##const0, float64_##const1 }, \
3799 }; \
3800 if (a->esz == 0) { \
3801 return false; \
3802 } \
3803 if (sve_access_check(s)) { \
3804 do_fp_imm(s, a, val[a->esz - 1][a->imm], fns[a->esz - 1]); \
3805 } \
3806 return true; \
3807}
3808
cc48affe
RH
3809DO_FP_IMM(FADD, fadds, half, one)
3810DO_FP_IMM(FSUB, fsubs, half, one)
3811DO_FP_IMM(FMUL, fmuls, half, two)
3812DO_FP_IMM(FSUBR, fsubrs, half, one)
3813DO_FP_IMM(FMAXNM, fmaxnms, zero, one)
3814DO_FP_IMM(FMINNM, fminnms, zero, one)
3815DO_FP_IMM(FMAX, fmaxs, zero, one)
3816DO_FP_IMM(FMIN, fmins, zero, one)
3817
3818#undef DO_FP_IMM
3819
abfdefd5
RH
3820static bool do_fp_cmp(DisasContext *s, arg_rprr_esz *a,
3821 gen_helper_gvec_4_ptr *fn)
3822{
3823 if (fn == NULL) {
3824 return false;
3825 }
3826 if (sve_access_check(s)) {
3827 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3828 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
abfdefd5
RH
3829 tcg_gen_gvec_4_ptr(pred_full_reg_offset(s, a->rd),
3830 vec_full_reg_offset(s, a->rn),
3831 vec_full_reg_offset(s, a->rm),
3832 pred_full_reg_offset(s, a->pg),
3833 status, vsz, vsz, 0, fn);
3834 tcg_temp_free_ptr(status);
3835 }
3836 return true;
3837}
3838
3839#define DO_FPCMP(NAME, name) \
3a7be554 3840static bool trans_##NAME##_ppzz(DisasContext *s, arg_rprr_esz *a) \
abfdefd5
RH
3841{ \
3842 static gen_helper_gvec_4_ptr * const fns[4] = { \
3843 NULL, gen_helper_sve_##name##_h, \
3844 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d \
3845 }; \
3846 return do_fp_cmp(s, a, fns[a->esz]); \
3847}
3848
3849DO_FPCMP(FCMGE, fcmge)
3850DO_FPCMP(FCMGT, fcmgt)
3851DO_FPCMP(FCMEQ, fcmeq)
3852DO_FPCMP(FCMNE, fcmne)
3853DO_FPCMP(FCMUO, fcmuo)
3854DO_FPCMP(FACGE, facge)
3855DO_FPCMP(FACGT, facgt)
3856
3857#undef DO_FPCMP
3858
3a7be554 3859static bool trans_FCADD(DisasContext *s, arg_FCADD *a)
76a9d9cd
RH
3860{
3861 static gen_helper_gvec_4_ptr * const fns[3] = {
3862 gen_helper_sve_fcadd_h,
3863 gen_helper_sve_fcadd_s,
3864 gen_helper_sve_fcadd_d
3865 };
3866
3867 if (a->esz == 0) {
3868 return false;
3869 }
3870 if (sve_access_check(s)) {
3871 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3872 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
76a9d9cd
RH
3873 tcg_gen_gvec_4_ptr(vec_full_reg_offset(s, a->rd),
3874 vec_full_reg_offset(s, a->rn),
3875 vec_full_reg_offset(s, a->rm),
3876 pred_full_reg_offset(s, a->pg),
3877 status, vsz, vsz, a->rot, fns[a->esz - 1]);
3878 tcg_temp_free_ptr(status);
3879 }
3880 return true;
3881}
3882
08975da9
RH
3883static bool do_fmla(DisasContext *s, arg_rprrr_esz *a,
3884 gen_helper_gvec_5_ptr *fn)
6ceabaad 3885{
08975da9 3886 if (a->esz == 0) {
6ceabaad
RH
3887 return false;
3888 }
08975da9
RH
3889 if (sve_access_check(s)) {
3890 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3891 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
08975da9
RH
3892 tcg_gen_gvec_5_ptr(vec_full_reg_offset(s, a->rd),
3893 vec_full_reg_offset(s, a->rn),
3894 vec_full_reg_offset(s, a->rm),
3895 vec_full_reg_offset(s, a->ra),
3896 pred_full_reg_offset(s, a->pg),
3897 status, vsz, vsz, 0, fn);
3898 tcg_temp_free_ptr(status);
6ceabaad 3899 }
6ceabaad
RH
3900 return true;
3901}
3902
3903#define DO_FMLA(NAME, name) \
3a7be554 3904static bool trans_##NAME(DisasContext *s, arg_rprrr_esz *a) \
6ceabaad 3905{ \
08975da9 3906 static gen_helper_gvec_5_ptr * const fns[4] = { \
6ceabaad
RH
3907 NULL, gen_helper_sve_##name##_h, \
3908 gen_helper_sve_##name##_s, gen_helper_sve_##name##_d \
3909 }; \
3910 return do_fmla(s, a, fns[a->esz]); \
3911}
3912
3913DO_FMLA(FMLA_zpzzz, fmla_zpzzz)
3914DO_FMLA(FMLS_zpzzz, fmls_zpzzz)
3915DO_FMLA(FNMLA_zpzzz, fnmla_zpzzz)
3916DO_FMLA(FNMLS_zpzzz, fnmls_zpzzz)
3917
3918#undef DO_FMLA
3919
3a7be554 3920static bool trans_FCMLA_zpzzz(DisasContext *s, arg_FCMLA_zpzzz *a)
05f48bab 3921{
08975da9
RH
3922 static gen_helper_gvec_5_ptr * const fns[4] = {
3923 NULL,
05f48bab
RH
3924 gen_helper_sve_fcmla_zpzzz_h,
3925 gen_helper_sve_fcmla_zpzzz_s,
3926 gen_helper_sve_fcmla_zpzzz_d,
3927 };
3928
3929 if (a->esz == 0) {
3930 return false;
3931 }
3932 if (sve_access_check(s)) {
3933 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3934 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
08975da9
RH
3935 tcg_gen_gvec_5_ptr(vec_full_reg_offset(s, a->rd),
3936 vec_full_reg_offset(s, a->rn),
3937 vec_full_reg_offset(s, a->rm),
3938 vec_full_reg_offset(s, a->ra),
3939 pred_full_reg_offset(s, a->pg),
3940 status, vsz, vsz, a->rot, fns[a->esz]);
3941 tcg_temp_free_ptr(status);
05f48bab
RH
3942 }
3943 return true;
3944}
3945
3a7be554 3946static bool trans_FCMLA_zzxz(DisasContext *s, arg_FCMLA_zzxz *a)
18fc2405
RH
3947{
3948 static gen_helper_gvec_3_ptr * const fns[2] = {
3949 gen_helper_gvec_fcmlah_idx,
3950 gen_helper_gvec_fcmlas_idx,
3951 };
3952
3953 tcg_debug_assert(a->esz == 1 || a->esz == 2);
3954 tcg_debug_assert(a->rd == a->ra);
3955 if (sve_access_check(s)) {
3956 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3957 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
18fc2405
RH
3958 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
3959 vec_full_reg_offset(s, a->rn),
3960 vec_full_reg_offset(s, a->rm),
3961 status, vsz, vsz,
3962 a->index * 4 + a->rot,
3963 fns[a->esz - 1]);
3964 tcg_temp_free_ptr(status);
3965 }
3966 return true;
3967}
3968
8092c6a3
RH
3969/*
3970 *** SVE Floating Point Unary Operations Predicated Group
3971 */
3972
3973static bool do_zpz_ptr(DisasContext *s, int rd, int rn, int pg,
3974 bool is_fp16, gen_helper_gvec_3_ptr *fn)
3975{
3976 if (sve_access_check(s)) {
3977 unsigned vsz = vec_full_reg_size(s);
cdfb22bb 3978 TCGv_ptr status = fpstatus_ptr(is_fp16 ? FPST_FPCR_F16 : FPST_FPCR);
8092c6a3
RH
3979 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, rd),
3980 vec_full_reg_offset(s, rn),
3981 pred_full_reg_offset(s, pg),
3982 status, vsz, vsz, 0, fn);
3983 tcg_temp_free_ptr(status);
3984 }
3985 return true;
3986}
3987
3a7be554 3988static bool trans_FCVT_sh(DisasContext *s, arg_rpr_esz *a)
46d33d1e 3989{
e4ab5124 3990 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_sh);
46d33d1e
RH
3991}
3992
3a7be554 3993static bool trans_FCVT_hs(DisasContext *s, arg_rpr_esz *a)
46d33d1e
RH
3994{
3995 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_hs);
3996}
3997
3a7be554 3998static bool trans_FCVT_dh(DisasContext *s, arg_rpr_esz *a)
46d33d1e 3999{
e4ab5124 4000 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_dh);
46d33d1e
RH
4001}
4002
3a7be554 4003static bool trans_FCVT_hd(DisasContext *s, arg_rpr_esz *a)
46d33d1e
RH
4004{
4005 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_hd);
4006}
4007
3a7be554 4008static bool trans_FCVT_ds(DisasContext *s, arg_rpr_esz *a)
46d33d1e
RH
4009{
4010 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_ds);
4011}
4012
3a7be554 4013static bool trans_FCVT_sd(DisasContext *s, arg_rpr_esz *a)
46d33d1e
RH
4014{
4015 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvt_sd);
4016}
4017
3a7be554 4018static bool trans_FCVTZS_hh(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4019{
4020 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzs_hh);
4021}
4022
3a7be554 4023static bool trans_FCVTZU_hh(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4024{
4025 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzu_hh);
4026}
4027
3a7be554 4028static bool trans_FCVTZS_hs(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4029{
4030 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzs_hs);
4031}
4032
3a7be554 4033static bool trans_FCVTZU_hs(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4034{
4035 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzu_hs);
4036}
4037
3a7be554 4038static bool trans_FCVTZS_hd(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4039{
4040 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzs_hd);
4041}
4042
3a7be554 4043static bool trans_FCVTZU_hd(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4044{
4045 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_fcvtzu_hd);
4046}
4047
3a7be554 4048static bool trans_FCVTZS_ss(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4049{
4050 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_ss);
4051}
4052
3a7be554 4053static bool trans_FCVTZU_ss(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4054{
4055 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_ss);
4056}
4057
3a7be554 4058static bool trans_FCVTZS_sd(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4059{
4060 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_sd);
4061}
4062
3a7be554 4063static bool trans_FCVTZU_sd(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4064{
4065 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_sd);
4066}
4067
3a7be554 4068static bool trans_FCVTZS_ds(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4069{
4070 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_ds);
4071}
4072
3a7be554 4073static bool trans_FCVTZU_ds(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4074{
4075 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_ds);
4076}
4077
3a7be554 4078static bool trans_FCVTZS_dd(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4079{
4080 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzs_dd);
4081}
4082
3a7be554 4083static bool trans_FCVTZU_dd(DisasContext *s, arg_rpr_esz *a)
df4de1af
RH
4084{
4085 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_fcvtzu_dd);
4086}
4087
cda3c753
RH
4088static gen_helper_gvec_3_ptr * const frint_fns[3] = {
4089 gen_helper_sve_frint_h,
4090 gen_helper_sve_frint_s,
4091 gen_helper_sve_frint_d
4092};
4093
3a7be554 4094static bool trans_FRINTI(DisasContext *s, arg_rpr_esz *a)
cda3c753
RH
4095{
4096 if (a->esz == 0) {
4097 return false;
4098 }
4099 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16,
4100 frint_fns[a->esz - 1]);
4101}
4102
3a7be554 4103static bool trans_FRINTX(DisasContext *s, arg_rpr_esz *a)
cda3c753
RH
4104{
4105 static gen_helper_gvec_3_ptr * const fns[3] = {
4106 gen_helper_sve_frintx_h,
4107 gen_helper_sve_frintx_s,
4108 gen_helper_sve_frintx_d
4109 };
4110 if (a->esz == 0) {
4111 return false;
4112 }
4113 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16, fns[a->esz - 1]);
4114}
4115
4116static bool do_frint_mode(DisasContext *s, arg_rpr_esz *a, int mode)
4117{
4118 if (a->esz == 0) {
4119 return false;
4120 }
4121 if (sve_access_check(s)) {
4122 unsigned vsz = vec_full_reg_size(s);
4123 TCGv_i32 tmode = tcg_const_i32(mode);
cdfb22bb 4124 TCGv_ptr status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR);
cda3c753
RH
4125
4126 gen_helper_set_rmode(tmode, tmode, status);
4127
4128 tcg_gen_gvec_3_ptr(vec_full_reg_offset(s, a->rd),
4129 vec_full_reg_offset(s, a->rn),
4130 pred_full_reg_offset(s, a->pg),
4131 status, vsz, vsz, 0, frint_fns[a->esz - 1]);
4132
4133 gen_helper_set_rmode(tmode, tmode, status);
4134 tcg_temp_free_i32(tmode);
4135 tcg_temp_free_ptr(status);
4136 }
4137 return true;
4138}
4139
3a7be554 4140static bool trans_FRINTN(DisasContext *s, arg_rpr_esz *a)
cda3c753
RH
4141{
4142 return do_frint_mode(s, a, float_round_nearest_even);
4143}
4144
3a7be554 4145static bool trans_FRINTP(DisasContext *s, arg_rpr_esz *a)
cda3c753
RH
4146{
4147 return do_frint_mode(s, a, float_round_up);
4148}
4149
3a7be554 4150static bool trans_FRINTM(DisasContext *s, arg_rpr_esz *a)
cda3c753
RH
4151{
4152 return do_frint_mode(s, a, float_round_down);
4153}
4154
3a7be554 4155static bool trans_FRINTZ(DisasContext *s, arg_rpr_esz *a)
cda3c753
RH
4156{
4157 return do_frint_mode(s, a, float_round_to_zero);
4158}
4159
3a7be554 4160static bool trans_FRINTA(DisasContext *s, arg_rpr_esz *a)
cda3c753
RH
4161{
4162 return do_frint_mode(s, a, float_round_ties_away);
4163}
4164
3a7be554 4165static bool trans_FRECPX(DisasContext *s, arg_rpr_esz *a)
ec5b375b
RH
4166{
4167 static gen_helper_gvec_3_ptr * const fns[3] = {
4168 gen_helper_sve_frecpx_h,
4169 gen_helper_sve_frecpx_s,
4170 gen_helper_sve_frecpx_d
4171 };
4172 if (a->esz == 0) {
4173 return false;
4174 }
4175 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16, fns[a->esz - 1]);
4176}
4177
3a7be554 4178static bool trans_FSQRT(DisasContext *s, arg_rpr_esz *a)
ec5b375b
RH
4179{
4180 static gen_helper_gvec_3_ptr * const fns[3] = {
4181 gen_helper_sve_fsqrt_h,
4182 gen_helper_sve_fsqrt_s,
4183 gen_helper_sve_fsqrt_d
4184 };
4185 if (a->esz == 0) {
4186 return false;
4187 }
4188 return do_zpz_ptr(s, a->rd, a->rn, a->pg, a->esz == MO_16, fns[a->esz - 1]);
4189}
4190
3a7be554 4191static bool trans_SCVTF_hh(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4192{
4193 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_scvt_hh);
4194}
4195
3a7be554 4196static bool trans_SCVTF_sh(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4197{
4198 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_scvt_sh);
4199}
4200
3a7be554 4201static bool trans_SCVTF_dh(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4202{
4203 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_scvt_dh);
4204}
4205
3a7be554 4206static bool trans_SCVTF_ss(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4207{
4208 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_ss);
4209}
4210
3a7be554 4211static bool trans_SCVTF_ds(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4212{
4213 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_ds);
4214}
4215
3a7be554 4216static bool trans_SCVTF_sd(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4217{
4218 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_sd);
4219}
4220
3a7be554 4221static bool trans_SCVTF_dd(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4222{
4223 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_scvt_dd);
4224}
4225
3a7be554 4226static bool trans_UCVTF_hh(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4227{
4228 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_ucvt_hh);
4229}
4230
3a7be554 4231static bool trans_UCVTF_sh(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4232{
4233 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_ucvt_sh);
4234}
4235
3a7be554 4236static bool trans_UCVTF_dh(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4237{
4238 return do_zpz_ptr(s, a->rd, a->rn, a->pg, true, gen_helper_sve_ucvt_dh);
4239}
4240
3a7be554 4241static bool trans_UCVTF_ss(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4242{
4243 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_ss);
4244}
4245
3a7be554 4246static bool trans_UCVTF_ds(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4247{
4248 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_ds);
4249}
4250
3a7be554 4251static bool trans_UCVTF_sd(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4252{
4253 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_sd);
4254}
4255
3a7be554 4256static bool trans_UCVTF_dd(DisasContext *s, arg_rpr_esz *a)
8092c6a3
RH
4257{
4258 return do_zpz_ptr(s, a->rd, a->rn, a->pg, false, gen_helper_sve_ucvt_dd);
4259}
4260
d1822297
RH
4261/*
4262 *** SVE Memory - 32-bit Gather and Unsized Contiguous Group
4263 */
4264
4265/* Subroutine loading a vector register at VOFS of LEN bytes.
4266 * The load should begin at the address Rn + IMM.
4267 */
4268
19f2acc9 4269static void do_ldr(DisasContext *s, uint32_t vofs, int len, int rn, int imm)
d1822297 4270{
19f2acc9
RH
4271 int len_align = QEMU_ALIGN_DOWN(len, 8);
4272 int len_remain = len % 8;
4273 int nparts = len / 8 + ctpop8(len_remain);
d1822297 4274 int midx = get_mem_index(s);
b2aa8879 4275 TCGv_i64 dirty_addr, clean_addr, t0, t1;
d1822297 4276
b2aa8879
RH
4277 dirty_addr = tcg_temp_new_i64();
4278 tcg_gen_addi_i64(dirty_addr, cpu_reg_sp(s, rn), imm);
33e74c31 4279 clean_addr = gen_mte_checkN(s, dirty_addr, false, rn != 31, len);
b2aa8879 4280 tcg_temp_free_i64(dirty_addr);
d1822297 4281
b2aa8879
RH
4282 /*
4283 * Note that unpredicated load/store of vector/predicate registers
d1822297 4284 * are defined as a stream of bytes, which equates to little-endian
b2aa8879 4285 * operations on larger quantities.
d1822297
RH
4286 * Attempt to keep code expansion to a minimum by limiting the
4287 * amount of unrolling done.
4288 */
4289 if (nparts <= 4) {
4290 int i;
4291
b2aa8879 4292 t0 = tcg_temp_new_i64();
d1822297 4293 for (i = 0; i < len_align; i += 8) {
b2aa8879 4294 tcg_gen_qemu_ld_i64(t0, clean_addr, midx, MO_LEQ);
d1822297 4295 tcg_gen_st_i64(t0, cpu_env, vofs + i);
d8227b09 4296 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
d1822297 4297 }
b2aa8879 4298 tcg_temp_free_i64(t0);
d1822297
RH
4299 } else {
4300 TCGLabel *loop = gen_new_label();
4301 TCGv_ptr tp, i = tcg_const_local_ptr(0);
4302
b2aa8879
RH
4303 /* Copy the clean address into a local temp, live across the loop. */
4304 t0 = clean_addr;
4b4dc975 4305 clean_addr = new_tmp_a64_local(s);
b2aa8879 4306 tcg_gen_mov_i64(clean_addr, t0);
d1822297 4307
b2aa8879 4308 gen_set_label(loop);
d1822297 4309
b2aa8879
RH
4310 t0 = tcg_temp_new_i64();
4311 tcg_gen_qemu_ld_i64(t0, clean_addr, midx, MO_LEQ);
4312 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
d1822297 4313
b2aa8879 4314 tp = tcg_temp_new_ptr();
d1822297
RH
4315 tcg_gen_add_ptr(tp, cpu_env, i);
4316 tcg_gen_addi_ptr(i, i, 8);
4317 tcg_gen_st_i64(t0, tp, vofs);
4318 tcg_temp_free_ptr(tp);
b2aa8879 4319 tcg_temp_free_i64(t0);
d1822297
RH
4320
4321 tcg_gen_brcondi_ptr(TCG_COND_LTU, i, len_align, loop);
4322 tcg_temp_free_ptr(i);
4323 }
4324
b2aa8879
RH
4325 /*
4326 * Predicate register loads can be any multiple of 2.
d1822297
RH
4327 * Note that we still store the entire 64-bit unit into cpu_env.
4328 */
4329 if (len_remain) {
b2aa8879 4330 t0 = tcg_temp_new_i64();
d1822297
RH
4331 switch (len_remain) {
4332 case 2:
4333 case 4:
4334 case 8:
b2aa8879
RH
4335 tcg_gen_qemu_ld_i64(t0, clean_addr, midx,
4336 MO_LE | ctz32(len_remain));
d1822297
RH
4337 break;
4338
4339 case 6:
4340 t1 = tcg_temp_new_i64();
b2aa8879
RH
4341 tcg_gen_qemu_ld_i64(t0, clean_addr, midx, MO_LEUL);
4342 tcg_gen_addi_i64(clean_addr, clean_addr, 4);
4343 tcg_gen_qemu_ld_i64(t1, clean_addr, midx, MO_LEUW);
d1822297
RH
4344 tcg_gen_deposit_i64(t0, t0, t1, 32, 32);
4345 tcg_temp_free_i64(t1);
4346 break;
4347
4348 default:
4349 g_assert_not_reached();
4350 }
4351 tcg_gen_st_i64(t0, cpu_env, vofs + len_align);
b2aa8879 4352 tcg_temp_free_i64(t0);
d1822297 4353 }
d1822297
RH
4354}
4355
5047c204 4356/* Similarly for stores. */
19f2acc9 4357static void do_str(DisasContext *s, uint32_t vofs, int len, int rn, int imm)
5047c204 4358{
19f2acc9
RH
4359 int len_align = QEMU_ALIGN_DOWN(len, 8);
4360 int len_remain = len % 8;
4361 int nparts = len / 8 + ctpop8(len_remain);
5047c204 4362 int midx = get_mem_index(s);
bba87d0a 4363 TCGv_i64 dirty_addr, clean_addr, t0;
5047c204 4364
bba87d0a
RH
4365 dirty_addr = tcg_temp_new_i64();
4366 tcg_gen_addi_i64(dirty_addr, cpu_reg_sp(s, rn), imm);
33e74c31 4367 clean_addr = gen_mte_checkN(s, dirty_addr, false, rn != 31, len);
bba87d0a 4368 tcg_temp_free_i64(dirty_addr);
5047c204
RH
4369
4370 /* Note that unpredicated load/store of vector/predicate registers
4371 * are defined as a stream of bytes, which equates to little-endian
4372 * operations on larger quantities. There is no nice way to force
4373 * a little-endian store for aarch64_be-linux-user out of line.
4374 *
4375 * Attempt to keep code expansion to a minimum by limiting the
4376 * amount of unrolling done.
4377 */
4378 if (nparts <= 4) {
4379 int i;
4380
bba87d0a 4381 t0 = tcg_temp_new_i64();
5047c204
RH
4382 for (i = 0; i < len_align; i += 8) {
4383 tcg_gen_ld_i64(t0, cpu_env, vofs + i);
bba87d0a 4384 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEQ);
d8227b09 4385 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
5047c204 4386 }
bba87d0a 4387 tcg_temp_free_i64(t0);
5047c204
RH
4388 } else {
4389 TCGLabel *loop = gen_new_label();
bba87d0a 4390 TCGv_ptr tp, i = tcg_const_local_ptr(0);
5047c204 4391
bba87d0a
RH
4392 /* Copy the clean address into a local temp, live across the loop. */
4393 t0 = clean_addr;
4b4dc975 4394 clean_addr = new_tmp_a64_local(s);
bba87d0a 4395 tcg_gen_mov_i64(clean_addr, t0);
5047c204 4396
bba87d0a 4397 gen_set_label(loop);
5047c204 4398
bba87d0a
RH
4399 t0 = tcg_temp_new_i64();
4400 tp = tcg_temp_new_ptr();
4401 tcg_gen_add_ptr(tp, cpu_env, i);
4402 tcg_gen_ld_i64(t0, tp, vofs);
5047c204 4403 tcg_gen_addi_ptr(i, i, 8);
bba87d0a
RH
4404 tcg_temp_free_ptr(tp);
4405
4406 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEQ);
4407 tcg_gen_addi_i64(clean_addr, clean_addr, 8);
4408 tcg_temp_free_i64(t0);
5047c204
RH
4409
4410 tcg_gen_brcondi_ptr(TCG_COND_LTU, i, len_align, loop);
4411 tcg_temp_free_ptr(i);
4412 }
4413
4414 /* Predicate register stores can be any multiple of 2. */
4415 if (len_remain) {
bba87d0a 4416 t0 = tcg_temp_new_i64();
5047c204 4417 tcg_gen_ld_i64(t0, cpu_env, vofs + len_align);
5047c204
RH
4418
4419 switch (len_remain) {
4420 case 2:
4421 case 4:
4422 case 8:
bba87d0a
RH
4423 tcg_gen_qemu_st_i64(t0, clean_addr, midx,
4424 MO_LE | ctz32(len_remain));
5047c204
RH
4425 break;
4426
4427 case 6:
bba87d0a
RH
4428 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEUL);
4429 tcg_gen_addi_i64(clean_addr, clean_addr, 4);
5047c204 4430 tcg_gen_shri_i64(t0, t0, 32);
bba87d0a 4431 tcg_gen_qemu_st_i64(t0, clean_addr, midx, MO_LEUW);
5047c204
RH
4432 break;
4433
4434 default:
4435 g_assert_not_reached();
4436 }
bba87d0a 4437 tcg_temp_free_i64(t0);
5047c204 4438 }
5047c204
RH
4439}
4440
3a7be554 4441static bool trans_LDR_zri(DisasContext *s, arg_rri *a)
d1822297
RH
4442{
4443 if (sve_access_check(s)) {
4444 int size = vec_full_reg_size(s);
4445 int off = vec_full_reg_offset(s, a->rd);
4446 do_ldr(s, off, size, a->rn, a->imm * size);
4447 }
4448 return true;
4449}
4450
3a7be554 4451static bool trans_LDR_pri(DisasContext *s, arg_rri *a)
d1822297
RH
4452{
4453 if (sve_access_check(s)) {
4454 int size = pred_full_reg_size(s);
4455 int off = pred_full_reg_offset(s, a->rd);
4456 do_ldr(s, off, size, a->rn, a->imm * size);
4457 }
4458 return true;
4459}
c4e7c493 4460
3a7be554 4461static bool trans_STR_zri(DisasContext *s, arg_rri *a)
5047c204
RH
4462{
4463 if (sve_access_check(s)) {
4464 int size = vec_full_reg_size(s);
4465 int off = vec_full_reg_offset(s, a->rd);
4466 do_str(s, off, size, a->rn, a->imm * size);
4467 }
4468 return true;
4469}
4470
3a7be554 4471static bool trans_STR_pri(DisasContext *s, arg_rri *a)
5047c204
RH
4472{
4473 if (sve_access_check(s)) {
4474 int size = pred_full_reg_size(s);
4475 int off = pred_full_reg_offset(s, a->rd);
4476 do_str(s, off, size, a->rn, a->imm * size);
4477 }
4478 return true;
4479}
4480
c4e7c493
RH
4481/*
4482 *** SVE Memory - Contiguous Load Group
4483 */
4484
4485/* The memory mode of the dtype. */
14776ab5 4486static const MemOp dtype_mop[16] = {
c4e7c493
RH
4487 MO_UB, MO_UB, MO_UB, MO_UB,
4488 MO_SL, MO_UW, MO_UW, MO_UW,
4489 MO_SW, MO_SW, MO_UL, MO_UL,
4490 MO_SB, MO_SB, MO_SB, MO_Q
4491};
4492
4493#define dtype_msz(x) (dtype_mop[x] & MO_SIZE)
4494
4495/* The vector element size of dtype. */
4496static const uint8_t dtype_esz[16] = {
4497 0, 1, 2, 3,
4498 3, 1, 2, 3,
4499 3, 2, 2, 3,
4500 3, 2, 1, 3
4501};
4502
4503static void do_mem_zpa(DisasContext *s, int zt, int pg, TCGv_i64 addr,
206adacf
RH
4504 int dtype, uint32_t mte_n, bool is_write,
4505 gen_helper_gvec_mem *fn)
c4e7c493
RH
4506{
4507 unsigned vsz = vec_full_reg_size(s);
4508 TCGv_ptr t_pg;
500d0484 4509 TCGv_i32 t_desc;
206adacf 4510 int desc = 0;
c4e7c493 4511
206adacf
RH
4512 /*
4513 * For e.g. LD4, there are not enough arguments to pass all 4
c4e7c493
RH
4514 * registers as pointers, so encode the regno into the data field.
4515 * For consistency, do this even for LD1.
4516 */
9473d0ec 4517 if (s->mte_active[0]) {
206adacf
RH
4518 int msz = dtype_msz(dtype);
4519
4520 desc = FIELD_DP32(desc, MTEDESC, MIDX, get_mem_index(s));
4521 desc = FIELD_DP32(desc, MTEDESC, TBI, s->tbid);
4522 desc = FIELD_DP32(desc, MTEDESC, TCMA, s->tcma);
4523 desc = FIELD_DP32(desc, MTEDESC, WRITE, is_write);
28f32503 4524 desc = FIELD_DP32(desc, MTEDESC, SIZEM1, (mte_n << msz) - 1);
206adacf 4525 desc <<= SVE_MTEDESC_SHIFT;
9473d0ec
RH
4526 } else {
4527 addr = clean_data_tbi(s, addr);
206adacf 4528 }
9473d0ec 4529
206adacf 4530 desc = simd_desc(vsz, vsz, zt | desc);
500d0484 4531 t_desc = tcg_const_i32(desc);
c4e7c493
RH
4532 t_pg = tcg_temp_new_ptr();
4533
4534 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
500d0484 4535 fn(cpu_env, t_pg, addr, t_desc);
c4e7c493
RH
4536
4537 tcg_temp_free_ptr(t_pg);
500d0484 4538 tcg_temp_free_i32(t_desc);
c4e7c493
RH
4539}
4540
4541static void do_ld_zpa(DisasContext *s, int zt, int pg,
4542 TCGv_i64 addr, int dtype, int nreg)
4543{
206adacf
RH
4544 static gen_helper_gvec_mem * const fns[2][2][16][4] = {
4545 { /* mte inactive, little-endian */
4546 { { gen_helper_sve_ld1bb_r, gen_helper_sve_ld2bb_r,
7d0a57a2 4547 gen_helper_sve_ld3bb_r, gen_helper_sve_ld4bb_r },
206adacf
RH
4548 { gen_helper_sve_ld1bhu_r, NULL, NULL, NULL },
4549 { gen_helper_sve_ld1bsu_r, NULL, NULL, NULL },
4550 { gen_helper_sve_ld1bdu_r, NULL, NULL, NULL },
4551
4552 { gen_helper_sve_ld1sds_le_r, NULL, NULL, NULL },
4553 { gen_helper_sve_ld1hh_le_r, gen_helper_sve_ld2hh_le_r,
4554 gen_helper_sve_ld3hh_le_r, gen_helper_sve_ld4hh_le_r },
4555 { gen_helper_sve_ld1hsu_le_r, NULL, NULL, NULL },
4556 { gen_helper_sve_ld1hdu_le_r, NULL, NULL, NULL },
4557
4558 { gen_helper_sve_ld1hds_le_r, NULL, NULL, NULL },
4559 { gen_helper_sve_ld1hss_le_r, NULL, NULL, NULL },
4560 { gen_helper_sve_ld1ss_le_r, gen_helper_sve_ld2ss_le_r,
4561 gen_helper_sve_ld3ss_le_r, gen_helper_sve_ld4ss_le_r },
4562 { gen_helper_sve_ld1sdu_le_r, NULL, NULL, NULL },
4563
4564 { gen_helper_sve_ld1bds_r, NULL, NULL, NULL },
4565 { gen_helper_sve_ld1bss_r, NULL, NULL, NULL },
4566 { gen_helper_sve_ld1bhs_r, NULL, NULL, NULL },
4567 { gen_helper_sve_ld1dd_le_r, gen_helper_sve_ld2dd_le_r,
4568 gen_helper_sve_ld3dd_le_r, gen_helper_sve_ld4dd_le_r } },
4569
4570 /* mte inactive, big-endian */
4571 { { gen_helper_sve_ld1bb_r, gen_helper_sve_ld2bb_r,
4572 gen_helper_sve_ld3bb_r, gen_helper_sve_ld4bb_r },
4573 { gen_helper_sve_ld1bhu_r, NULL, NULL, NULL },
4574 { gen_helper_sve_ld1bsu_r, NULL, NULL, NULL },
4575 { gen_helper_sve_ld1bdu_r, NULL, NULL, NULL },
4576
4577 { gen_helper_sve_ld1sds_be_r, NULL, NULL, NULL },
4578 { gen_helper_sve_ld1hh_be_r, gen_helper_sve_ld2hh_be_r,
4579 gen_helper_sve_ld3hh_be_r, gen_helper_sve_ld4hh_be_r },
4580 { gen_helper_sve_ld1hsu_be_r, NULL, NULL, NULL },
4581 { gen_helper_sve_ld1hdu_be_r, NULL, NULL, NULL },
4582
4583 { gen_helper_sve_ld1hds_be_r, NULL, NULL, NULL },
4584 { gen_helper_sve_ld1hss_be_r, NULL, NULL, NULL },
4585 { gen_helper_sve_ld1ss_be_r, gen_helper_sve_ld2ss_be_r,
4586 gen_helper_sve_ld3ss_be_r, gen_helper_sve_ld4ss_be_r },
4587 { gen_helper_sve_ld1sdu_be_r, NULL, NULL, NULL },
4588
4589 { gen_helper_sve_ld1bds_r, NULL, NULL, NULL },
4590 { gen_helper_sve_ld1bss_r, NULL, NULL, NULL },
4591 { gen_helper_sve_ld1bhs_r, NULL, NULL, NULL },
4592 { gen_helper_sve_ld1dd_be_r, gen_helper_sve_ld2dd_be_r,
4593 gen_helper_sve_ld3dd_be_r, gen_helper_sve_ld4dd_be_r } } },
4594
4595 { /* mte active, little-endian */
4596 { { gen_helper_sve_ld1bb_r_mte,
4597 gen_helper_sve_ld2bb_r_mte,
4598 gen_helper_sve_ld3bb_r_mte,
4599 gen_helper_sve_ld4bb_r_mte },
4600 { gen_helper_sve_ld1bhu_r_mte, NULL, NULL, NULL },
4601 { gen_helper_sve_ld1bsu_r_mte, NULL, NULL, NULL },
4602 { gen_helper_sve_ld1bdu_r_mte, NULL, NULL, NULL },
4603
4604 { gen_helper_sve_ld1sds_le_r_mte, NULL, NULL, NULL },
4605 { gen_helper_sve_ld1hh_le_r_mte,
4606 gen_helper_sve_ld2hh_le_r_mte,
4607 gen_helper_sve_ld3hh_le_r_mte,
4608 gen_helper_sve_ld4hh_le_r_mte },
4609 { gen_helper_sve_ld1hsu_le_r_mte, NULL, NULL, NULL },
4610 { gen_helper_sve_ld1hdu_le_r_mte, NULL, NULL, NULL },
4611
4612 { gen_helper_sve_ld1hds_le_r_mte, NULL, NULL, NULL },
4613 { gen_helper_sve_ld1hss_le_r_mte, NULL, NULL, NULL },
4614 { gen_helper_sve_ld1ss_le_r_mte,
4615 gen_helper_sve_ld2ss_le_r_mte,
4616 gen_helper_sve_ld3ss_le_r_mte,
4617 gen_helper_sve_ld4ss_le_r_mte },
4618 { gen_helper_sve_ld1sdu_le_r_mte, NULL, NULL, NULL },
4619
4620 { gen_helper_sve_ld1bds_r_mte, NULL, NULL, NULL },
4621 { gen_helper_sve_ld1bss_r_mte, NULL, NULL, NULL },
4622 { gen_helper_sve_ld1bhs_r_mte, NULL, NULL, NULL },
4623 { gen_helper_sve_ld1dd_le_r_mte,
4624 gen_helper_sve_ld2dd_le_r_mte,
4625 gen_helper_sve_ld3dd_le_r_mte,
4626 gen_helper_sve_ld4dd_le_r_mte } },
4627
4628 /* mte active, big-endian */
4629 { { gen_helper_sve_ld1bb_r_mte,
4630 gen_helper_sve_ld2bb_r_mte,
4631 gen_helper_sve_ld3bb_r_mte,
4632 gen_helper_sve_ld4bb_r_mte },
4633 { gen_helper_sve_ld1bhu_r_mte, NULL, NULL, NULL },
4634 { gen_helper_sve_ld1bsu_r_mte, NULL, NULL, NULL },
4635 { gen_helper_sve_ld1bdu_r_mte, NULL, NULL, NULL },
4636
4637 { gen_helper_sve_ld1sds_be_r_mte, NULL, NULL, NULL },
4638 { gen_helper_sve_ld1hh_be_r_mte,
4639 gen_helper_sve_ld2hh_be_r_mte,
4640 gen_helper_sve_ld3hh_be_r_mte,
4641 gen_helper_sve_ld4hh_be_r_mte },
4642 { gen_helper_sve_ld1hsu_be_r_mte, NULL, NULL, NULL },
4643 { gen_helper_sve_ld1hdu_be_r_mte, NULL, NULL, NULL },
4644
4645 { gen_helper_sve_ld1hds_be_r_mte, NULL, NULL, NULL },
4646 { gen_helper_sve_ld1hss_be_r_mte, NULL, NULL, NULL },
4647 { gen_helper_sve_ld1ss_be_r_mte,
4648 gen_helper_sve_ld2ss_be_r_mte,
4649 gen_helper_sve_ld3ss_be_r_mte,
4650 gen_helper_sve_ld4ss_be_r_mte },
4651 { gen_helper_sve_ld1sdu_be_r_mte, NULL, NULL, NULL },
4652
4653 { gen_helper_sve_ld1bds_r_mte, NULL, NULL, NULL },
4654 { gen_helper_sve_ld1bss_r_mte, NULL, NULL, NULL },
4655 { gen_helper_sve_ld1bhs_r_mte, NULL, NULL, NULL },
4656 { gen_helper_sve_ld1dd_be_r_mte,
4657 gen_helper_sve_ld2dd_be_r_mte,
4658 gen_helper_sve_ld3dd_be_r_mte,
4659 gen_helper_sve_ld4dd_be_r_mte } } },
c4e7c493 4660 };
206adacf
RH
4661 gen_helper_gvec_mem *fn
4662 = fns[s->mte_active[0]][s->be_data == MO_BE][dtype][nreg];
c4e7c493 4663
206adacf
RH
4664 /*
4665 * While there are holes in the table, they are not
c4e7c493
RH
4666 * accessible via the instruction encoding.
4667 */
4668 assert(fn != NULL);
206adacf 4669 do_mem_zpa(s, zt, pg, addr, dtype, nreg, false, fn);
c4e7c493
RH
4670}
4671
3a7be554 4672static bool trans_LD_zprr(DisasContext *s, arg_rprr_load *a)
c4e7c493
RH
4673{
4674 if (a->rm == 31) {
4675 return false;
4676 }
4677 if (sve_access_check(s)) {
4678 TCGv_i64 addr = new_tmp_a64(s);
50ef1cbf 4679 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), dtype_msz(a->dtype));
c4e7c493
RH
4680 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
4681 do_ld_zpa(s, a->rd, a->pg, addr, a->dtype, a->nreg);
4682 }
4683 return true;
4684}
4685
3a7be554 4686static bool trans_LD_zpri(DisasContext *s, arg_rpri_load *a)
c4e7c493
RH
4687{
4688 if (sve_access_check(s)) {
4689 int vsz = vec_full_reg_size(s);
4690 int elements = vsz >> dtype_esz[a->dtype];
4691 TCGv_i64 addr = new_tmp_a64(s);
4692
4693 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn),
4694 (a->imm * elements * (a->nreg + 1))
4695 << dtype_msz(a->dtype));
4696 do_ld_zpa(s, a->rd, a->pg, addr, a->dtype, a->nreg);
4697 }
4698 return true;
4699}
e2654d75 4700
3a7be554 4701static bool trans_LDFF1_zprr(DisasContext *s, arg_rprr_load *a)
e2654d75 4702{
aa13f7c3
RH
4703 static gen_helper_gvec_mem * const fns[2][2][16] = {
4704 { /* mte inactive, little-endian */
4705 { gen_helper_sve_ldff1bb_r,
4706 gen_helper_sve_ldff1bhu_r,
4707 gen_helper_sve_ldff1bsu_r,
4708 gen_helper_sve_ldff1bdu_r,
4709
4710 gen_helper_sve_ldff1sds_le_r,
4711 gen_helper_sve_ldff1hh_le_r,
4712 gen_helper_sve_ldff1hsu_le_r,
4713 gen_helper_sve_ldff1hdu_le_r,
4714
4715 gen_helper_sve_ldff1hds_le_r,
4716 gen_helper_sve_ldff1hss_le_r,
4717 gen_helper_sve_ldff1ss_le_r,
4718 gen_helper_sve_ldff1sdu_le_r,
4719
4720 gen_helper_sve_ldff1bds_r,
4721 gen_helper_sve_ldff1bss_r,
4722 gen_helper_sve_ldff1bhs_r,
4723 gen_helper_sve_ldff1dd_le_r },
4724
4725 /* mte inactive, big-endian */
4726 { gen_helper_sve_ldff1bb_r,
4727 gen_helper_sve_ldff1bhu_r,
4728 gen_helper_sve_ldff1bsu_r,
4729 gen_helper_sve_ldff1bdu_r,
4730
4731 gen_helper_sve_ldff1sds_be_r,
4732 gen_helper_sve_ldff1hh_be_r,
4733 gen_helper_sve_ldff1hsu_be_r,
4734 gen_helper_sve_ldff1hdu_be_r,
4735
4736 gen_helper_sve_ldff1hds_be_r,
4737 gen_helper_sve_ldff1hss_be_r,
4738 gen_helper_sve_ldff1ss_be_r,
4739 gen_helper_sve_ldff1sdu_be_r,
4740
4741 gen_helper_sve_ldff1bds_r,
4742 gen_helper_sve_ldff1bss_r,
4743 gen_helper_sve_ldff1bhs_r,
4744 gen_helper_sve_ldff1dd_be_r } },
4745
4746 { /* mte active, little-endian */
4747 { gen_helper_sve_ldff1bb_r_mte,
4748 gen_helper_sve_ldff1bhu_r_mte,
4749 gen_helper_sve_ldff1bsu_r_mte,
4750 gen_helper_sve_ldff1bdu_r_mte,
4751
4752 gen_helper_sve_ldff1sds_le_r_mte,
4753 gen_helper_sve_ldff1hh_le_r_mte,
4754 gen_helper_sve_ldff1hsu_le_r_mte,
4755 gen_helper_sve_ldff1hdu_le_r_mte,
4756
4757 gen_helper_sve_ldff1hds_le_r_mte,
4758 gen_helper_sve_ldff1hss_le_r_mte,
4759 gen_helper_sve_ldff1ss_le_r_mte,
4760 gen_helper_sve_ldff1sdu_le_r_mte,
4761
4762 gen_helper_sve_ldff1bds_r_mte,
4763 gen_helper_sve_ldff1bss_r_mte,
4764 gen_helper_sve_ldff1bhs_r_mte,
4765 gen_helper_sve_ldff1dd_le_r_mte },
4766
4767 /* mte active, big-endian */
4768 { gen_helper_sve_ldff1bb_r_mte,
4769 gen_helper_sve_ldff1bhu_r_mte,
4770 gen_helper_sve_ldff1bsu_r_mte,
4771 gen_helper_sve_ldff1bdu_r_mte,
4772
4773 gen_helper_sve_ldff1sds_be_r_mte,
4774 gen_helper_sve_ldff1hh_be_r_mte,
4775 gen_helper_sve_ldff1hsu_be_r_mte,
4776 gen_helper_sve_ldff1hdu_be_r_mte,
4777
4778 gen_helper_sve_ldff1hds_be_r_mte,
4779 gen_helper_sve_ldff1hss_be_r_mte,
4780 gen_helper_sve_ldff1ss_be_r_mte,
4781 gen_helper_sve_ldff1sdu_be_r_mte,
4782
4783 gen_helper_sve_ldff1bds_r_mte,
4784 gen_helper_sve_ldff1bss_r_mte,
4785 gen_helper_sve_ldff1bhs_r_mte,
4786 gen_helper_sve_ldff1dd_be_r_mte } },
e2654d75
RH
4787 };
4788
4789 if (sve_access_check(s)) {
4790 TCGv_i64 addr = new_tmp_a64(s);
4791 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), dtype_msz(a->dtype));
4792 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
aa13f7c3
RH
4793 do_mem_zpa(s, a->rd, a->pg, addr, a->dtype, 1, false,
4794 fns[s->mte_active[0]][s->be_data == MO_BE][a->dtype]);
e2654d75
RH
4795 }
4796 return true;
4797}
4798
3a7be554 4799static bool trans_LDNF1_zpri(DisasContext *s, arg_rpri_load *a)
e2654d75 4800{
aa13f7c3
RH
4801 static gen_helper_gvec_mem * const fns[2][2][16] = {
4802 { /* mte inactive, little-endian */
4803 { gen_helper_sve_ldnf1bb_r,
4804 gen_helper_sve_ldnf1bhu_r,
4805 gen_helper_sve_ldnf1bsu_r,
4806 gen_helper_sve_ldnf1bdu_r,
4807
4808 gen_helper_sve_ldnf1sds_le_r,
4809 gen_helper_sve_ldnf1hh_le_r,
4810 gen_helper_sve_ldnf1hsu_le_r,
4811 gen_helper_sve_ldnf1hdu_le_r,
4812
4813 gen_helper_sve_ldnf1hds_le_r,
4814 gen_helper_sve_ldnf1hss_le_r,
4815 gen_helper_sve_ldnf1ss_le_r,
4816 gen_helper_sve_ldnf1sdu_le_r,
4817
4818 gen_helper_sve_ldnf1bds_r,
4819 gen_helper_sve_ldnf1bss_r,
4820 gen_helper_sve_ldnf1bhs_r,
4821 gen_helper_sve_ldnf1dd_le_r },
4822
4823 /* mte inactive, big-endian */
4824 { gen_helper_sve_ldnf1bb_r,
4825 gen_helper_sve_ldnf1bhu_r,
4826 gen_helper_sve_ldnf1bsu_r,
4827 gen_helper_sve_ldnf1bdu_r,
4828
4829 gen_helper_sve_ldnf1sds_be_r,
4830 gen_helper_sve_ldnf1hh_be_r,
4831 gen_helper_sve_ldnf1hsu_be_r,
4832 gen_helper_sve_ldnf1hdu_be_r,
4833
4834 gen_helper_sve_ldnf1hds_be_r,
4835 gen_helper_sve_ldnf1hss_be_r,
4836 gen_helper_sve_ldnf1ss_be_r,
4837 gen_helper_sve_ldnf1sdu_be_r,
4838
4839 gen_helper_sve_ldnf1bds_r,
4840 gen_helper_sve_ldnf1bss_r,
4841 gen_helper_sve_ldnf1bhs_r,
4842 gen_helper_sve_ldnf1dd_be_r } },
4843
4844 { /* mte inactive, little-endian */
4845 { gen_helper_sve_ldnf1bb_r_mte,
4846 gen_helper_sve_ldnf1bhu_r_mte,
4847 gen_helper_sve_ldnf1bsu_r_mte,
4848 gen_helper_sve_ldnf1bdu_r_mte,
4849
4850 gen_helper_sve_ldnf1sds_le_r_mte,
4851 gen_helper_sve_ldnf1hh_le_r_mte,
4852 gen_helper_sve_ldnf1hsu_le_r_mte,
4853 gen_helper_sve_ldnf1hdu_le_r_mte,
4854
4855 gen_helper_sve_ldnf1hds_le_r_mte,
4856 gen_helper_sve_ldnf1hss_le_r_mte,
4857 gen_helper_sve_ldnf1ss_le_r_mte,
4858 gen_helper_sve_ldnf1sdu_le_r_mte,
4859
4860 gen_helper_sve_ldnf1bds_r_mte,
4861 gen_helper_sve_ldnf1bss_r_mte,
4862 gen_helper_sve_ldnf1bhs_r_mte,
4863 gen_helper_sve_ldnf1dd_le_r_mte },
4864
4865 /* mte inactive, big-endian */
4866 { gen_helper_sve_ldnf1bb_r_mte,
4867 gen_helper_sve_ldnf1bhu_r_mte,
4868 gen_helper_sve_ldnf1bsu_r_mte,
4869 gen_helper_sve_ldnf1bdu_r_mte,
4870
4871 gen_helper_sve_ldnf1sds_be_r_mte,
4872 gen_helper_sve_ldnf1hh_be_r_mte,
4873 gen_helper_sve_ldnf1hsu_be_r_mte,
4874 gen_helper_sve_ldnf1hdu_be_r_mte,
4875
4876 gen_helper_sve_ldnf1hds_be_r_mte,
4877 gen_helper_sve_ldnf1hss_be_r_mte,
4878 gen_helper_sve_ldnf1ss_be_r_mte,
4879 gen_helper_sve_ldnf1sdu_be_r_mte,
4880
4881 gen_helper_sve_ldnf1bds_r_mte,
4882 gen_helper_sve_ldnf1bss_r_mte,
4883 gen_helper_sve_ldnf1bhs_r_mte,
4884 gen_helper_sve_ldnf1dd_be_r_mte } },
e2654d75
RH
4885 };
4886
4887 if (sve_access_check(s)) {
4888 int vsz = vec_full_reg_size(s);
4889 int elements = vsz >> dtype_esz[a->dtype];
4890 int off = (a->imm * elements) << dtype_msz(a->dtype);
4891 TCGv_i64 addr = new_tmp_a64(s);
4892
4893 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn), off);
aa13f7c3
RH
4894 do_mem_zpa(s, a->rd, a->pg, addr, a->dtype, 1, false,
4895 fns[s->mte_active[0]][s->be_data == MO_BE][a->dtype]);
e2654d75
RH
4896 }
4897 return true;
4898}
1a039c7e 4899
05abe304
RH
4900static void do_ldrq(DisasContext *s, int zt, int pg, TCGv_i64 addr, int msz)
4901{
7d0a57a2
RH
4902 static gen_helper_gvec_mem * const fns[2][4] = {
4903 { gen_helper_sve_ld1bb_r, gen_helper_sve_ld1hh_le_r,
4904 gen_helper_sve_ld1ss_le_r, gen_helper_sve_ld1dd_le_r },
4905 { gen_helper_sve_ld1bb_r, gen_helper_sve_ld1hh_be_r,
4906 gen_helper_sve_ld1ss_be_r, gen_helper_sve_ld1dd_be_r },
05abe304
RH
4907 };
4908 unsigned vsz = vec_full_reg_size(s);
4909 TCGv_ptr t_pg;
500d0484
RH
4910 TCGv_i32 t_desc;
4911 int desc, poff;
05abe304
RH
4912
4913 /* Load the first quadword using the normal predicated load helpers. */
ba080b86 4914 desc = simd_desc(16, 16, zt);
500d0484 4915 t_desc = tcg_const_i32(desc);
2a99ab2b
RH
4916
4917 poff = pred_full_reg_offset(s, pg);
4918 if (vsz > 16) {
4919 /*
4920 * Zero-extend the first 16 bits of the predicate into a temporary.
4921 * This avoids triggering an assert making sure we don't have bits
4922 * set within a predicate beyond VQ, but we have lowered VQ to 1
4923 * for this load operation.
4924 */
4925 TCGv_i64 tmp = tcg_temp_new_i64();
4926#ifdef HOST_WORDS_BIGENDIAN
4927 poff += 6;
4928#endif
4929 tcg_gen_ld16u_i64(tmp, cpu_env, poff);
4930
4931 poff = offsetof(CPUARMState, vfp.preg_tmp);
4932 tcg_gen_st_i64(tmp, cpu_env, poff);
4933 tcg_temp_free_i64(tmp);
4934 }
4935
05abe304 4936 t_pg = tcg_temp_new_ptr();
2a99ab2b 4937 tcg_gen_addi_ptr(t_pg, cpu_env, poff);
05abe304 4938
500d0484 4939 fns[s->be_data == MO_BE][msz](cpu_env, t_pg, addr, t_desc);
05abe304
RH
4940
4941 tcg_temp_free_ptr(t_pg);
500d0484 4942 tcg_temp_free_i32(t_desc);
05abe304
RH
4943
4944 /* Replicate that first quadword. */
4945 if (vsz > 16) {
4946 unsigned dofs = vec_full_reg_offset(s, zt);
4947 tcg_gen_gvec_dup_mem(4, dofs + 16, dofs, vsz - 16, vsz - 16);
4948 }
4949}
4950
3a7be554 4951static bool trans_LD1RQ_zprr(DisasContext *s, arg_rprr_load *a)
05abe304
RH
4952{
4953 if (a->rm == 31) {
4954 return false;
4955 }
4956 if (sve_access_check(s)) {
4957 int msz = dtype_msz(a->dtype);
4958 TCGv_i64 addr = new_tmp_a64(s);
4959 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), msz);
4960 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
4961 do_ldrq(s, a->rd, a->pg, addr, msz);
4962 }
4963 return true;
4964}
4965
3a7be554 4966static bool trans_LD1RQ_zpri(DisasContext *s, arg_rpri_load *a)
05abe304
RH
4967{
4968 if (sve_access_check(s)) {
4969 TCGv_i64 addr = new_tmp_a64(s);
4970 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn), a->imm * 16);
4971 do_ldrq(s, a->rd, a->pg, addr, dtype_msz(a->dtype));
4972 }
4973 return true;
4974}
4975
68459864 4976/* Load and broadcast element. */
3a7be554 4977static bool trans_LD1R_zpri(DisasContext *s, arg_rpri_load *a)
68459864 4978{
68459864
RH
4979 unsigned vsz = vec_full_reg_size(s);
4980 unsigned psz = pred_full_reg_size(s);
4981 unsigned esz = dtype_esz[a->dtype];
d0e372b0 4982 unsigned msz = dtype_msz(a->dtype);
c0ed9166 4983 TCGLabel *over;
4ac430e1 4984 TCGv_i64 temp, clean_addr;
68459864 4985
c0ed9166
RH
4986 if (!sve_access_check(s)) {
4987 return true;
4988 }
4989
4990 over = gen_new_label();
4991
68459864
RH
4992 /* If the guarding predicate has no bits set, no load occurs. */
4993 if (psz <= 8) {
4994 /* Reduce the pred_esz_masks value simply to reduce the
4995 * size of the code generated here.
4996 */
4997 uint64_t psz_mask = MAKE_64BIT_MASK(0, psz * 8);
4998 temp = tcg_temp_new_i64();
4999 tcg_gen_ld_i64(temp, cpu_env, pred_full_reg_offset(s, a->pg));
5000 tcg_gen_andi_i64(temp, temp, pred_esz_masks[esz] & psz_mask);
5001 tcg_gen_brcondi_i64(TCG_COND_EQ, temp, 0, over);
5002 tcg_temp_free_i64(temp);
5003 } else {
5004 TCGv_i32 t32 = tcg_temp_new_i32();
5005 find_last_active(s, t32, esz, a->pg);
5006 tcg_gen_brcondi_i32(TCG_COND_LT, t32, 0, over);
5007 tcg_temp_free_i32(t32);
5008 }
5009
5010 /* Load the data. */
5011 temp = tcg_temp_new_i64();
d0e372b0 5012 tcg_gen_addi_i64(temp, cpu_reg_sp(s, a->rn), a->imm << msz);
4ac430e1
RH
5013 clean_addr = gen_mte_check1(s, temp, false, true, msz);
5014
5015 tcg_gen_qemu_ld_i64(temp, clean_addr, get_mem_index(s),
0ca0f872 5016 finalize_memop(s, dtype_mop[a->dtype]));
68459864
RH
5017
5018 /* Broadcast to *all* elements. */
5019 tcg_gen_gvec_dup_i64(esz, vec_full_reg_offset(s, a->rd),
5020 vsz, vsz, temp);
5021 tcg_temp_free_i64(temp);
5022
5023 /* Zero the inactive elements. */
5024 gen_set_label(over);
60245996 5025 return do_movz_zpz(s, a->rd, a->rd, a->pg, esz, false);
68459864
RH
5026}
5027
1a039c7e
RH
5028static void do_st_zpa(DisasContext *s, int zt, int pg, TCGv_i64 addr,
5029 int msz, int esz, int nreg)
5030{
71b9f394
RH
5031 static gen_helper_gvec_mem * const fn_single[2][2][4][4] = {
5032 { { { gen_helper_sve_st1bb_r,
5033 gen_helper_sve_st1bh_r,
5034 gen_helper_sve_st1bs_r,
5035 gen_helper_sve_st1bd_r },
5036 { NULL,
5037 gen_helper_sve_st1hh_le_r,
5038 gen_helper_sve_st1hs_le_r,
5039 gen_helper_sve_st1hd_le_r },
5040 { NULL, NULL,
5041 gen_helper_sve_st1ss_le_r,
5042 gen_helper_sve_st1sd_le_r },
5043 { NULL, NULL, NULL,
5044 gen_helper_sve_st1dd_le_r } },
5045 { { gen_helper_sve_st1bb_r,
5046 gen_helper_sve_st1bh_r,
5047 gen_helper_sve_st1bs_r,
5048 gen_helper_sve_st1bd_r },
5049 { NULL,
5050 gen_helper_sve_st1hh_be_r,
5051 gen_helper_sve_st1hs_be_r,
5052 gen_helper_sve_st1hd_be_r },
5053 { NULL, NULL,
5054 gen_helper_sve_st1ss_be_r,
5055 gen_helper_sve_st1sd_be_r },
5056 { NULL, NULL, NULL,
5057 gen_helper_sve_st1dd_be_r } } },
5058
5059 { { { gen_helper_sve_st1bb_r_mte,
5060 gen_helper_sve_st1bh_r_mte,
5061 gen_helper_sve_st1bs_r_mte,
5062 gen_helper_sve_st1bd_r_mte },
5063 { NULL,
5064 gen_helper_sve_st1hh_le_r_mte,
5065 gen_helper_sve_st1hs_le_r_mte,
5066 gen_helper_sve_st1hd_le_r_mte },
5067 { NULL, NULL,
5068 gen_helper_sve_st1ss_le_r_mte,
5069 gen_helper_sve_st1sd_le_r_mte },
5070 { NULL, NULL, NULL,
5071 gen_helper_sve_st1dd_le_r_mte } },
5072 { { gen_helper_sve_st1bb_r_mte,
5073 gen_helper_sve_st1bh_r_mte,
5074 gen_helper_sve_st1bs_r_mte,
5075 gen_helper_sve_st1bd_r_mte },
5076 { NULL,
5077 gen_helper_sve_st1hh_be_r_mte,
5078 gen_helper_sve_st1hs_be_r_mte,
5079 gen_helper_sve_st1hd_be_r_mte },
5080 { NULL, NULL,
5081 gen_helper_sve_st1ss_be_r_mte,
5082 gen_helper_sve_st1sd_be_r_mte },
5083 { NULL, NULL, NULL,
5084 gen_helper_sve_st1dd_be_r_mte } } },
1a039c7e 5085 };
71b9f394
RH
5086 static gen_helper_gvec_mem * const fn_multiple[2][2][3][4] = {
5087 { { { gen_helper_sve_st2bb_r,
5088 gen_helper_sve_st2hh_le_r,
5089 gen_helper_sve_st2ss_le_r,
5090 gen_helper_sve_st2dd_le_r },
5091 { gen_helper_sve_st3bb_r,
5092 gen_helper_sve_st3hh_le_r,
5093 gen_helper_sve_st3ss_le_r,
5094 gen_helper_sve_st3dd_le_r },
5095 { gen_helper_sve_st4bb_r,
5096 gen_helper_sve_st4hh_le_r,
5097 gen_helper_sve_st4ss_le_r,
5098 gen_helper_sve_st4dd_le_r } },
5099 { { gen_helper_sve_st2bb_r,
5100 gen_helper_sve_st2hh_be_r,
5101 gen_helper_sve_st2ss_be_r,
5102 gen_helper_sve_st2dd_be_r },
5103 { gen_helper_sve_st3bb_r,
5104 gen_helper_sve_st3hh_be_r,
5105 gen_helper_sve_st3ss_be_r,
5106 gen_helper_sve_st3dd_be_r },
5107 { gen_helper_sve_st4bb_r,
5108 gen_helper_sve_st4hh_be_r,
5109 gen_helper_sve_st4ss_be_r,
5110 gen_helper_sve_st4dd_be_r } } },
5111 { { { gen_helper_sve_st2bb_r_mte,
5112 gen_helper_sve_st2hh_le_r_mte,
5113 gen_helper_sve_st2ss_le_r_mte,
5114 gen_helper_sve_st2dd_le_r_mte },
5115 { gen_helper_sve_st3bb_r_mte,
5116 gen_helper_sve_st3hh_le_r_mte,
5117 gen_helper_sve_st3ss_le_r_mte,
5118 gen_helper_sve_st3dd_le_r_mte },
5119 { gen_helper_sve_st4bb_r_mte,
5120 gen_helper_sve_st4hh_le_r_mte,
5121 gen_helper_sve_st4ss_le_r_mte,
5122 gen_helper_sve_st4dd_le_r_mte } },
5123 { { gen_helper_sve_st2bb_r_mte,
5124 gen_helper_sve_st2hh_be_r_mte,
5125 gen_helper_sve_st2ss_be_r_mte,
5126 gen_helper_sve_st2dd_be_r_mte },
5127 { gen_helper_sve_st3bb_r_mte,
5128 gen_helper_sve_st3hh_be_r_mte,
5129 gen_helper_sve_st3ss_be_r_mte,
5130 gen_helper_sve_st3dd_be_r_mte },
5131 { gen_helper_sve_st4bb_r_mte,
5132 gen_helper_sve_st4hh_be_r_mte,
5133 gen_helper_sve_st4ss_be_r_mte,
5134 gen_helper_sve_st4dd_be_r_mte } } },
1a039c7e
RH
5135 };
5136 gen_helper_gvec_mem *fn;
28d57f2d 5137 int be = s->be_data == MO_BE;
1a039c7e
RH
5138
5139 if (nreg == 0) {
5140 /* ST1 */
71b9f394
RH
5141 fn = fn_single[s->mte_active[0]][be][msz][esz];
5142 nreg = 1;
1a039c7e
RH
5143 } else {
5144 /* ST2, ST3, ST4 -- msz == esz, enforced by encoding */
5145 assert(msz == esz);
71b9f394 5146 fn = fn_multiple[s->mte_active[0]][be][nreg - 1][msz];
1a039c7e
RH
5147 }
5148 assert(fn != NULL);
71b9f394 5149 do_mem_zpa(s, zt, pg, addr, msz_dtype(s, msz), nreg, true, fn);
1a039c7e
RH
5150}
5151
3a7be554 5152static bool trans_ST_zprr(DisasContext *s, arg_rprr_store *a)
1a039c7e
RH
5153{
5154 if (a->rm == 31 || a->msz > a->esz) {
5155 return false;
5156 }
5157 if (sve_access_check(s)) {
5158 TCGv_i64 addr = new_tmp_a64(s);
50ef1cbf 5159 tcg_gen_shli_i64(addr, cpu_reg(s, a->rm), a->msz);
1a039c7e
RH
5160 tcg_gen_add_i64(addr, addr, cpu_reg_sp(s, a->rn));
5161 do_st_zpa(s, a->rd, a->pg, addr, a->msz, a->esz, a->nreg);
5162 }
5163 return true;
5164}
5165
3a7be554 5166static bool trans_ST_zpri(DisasContext *s, arg_rpri_store *a)
1a039c7e
RH
5167{
5168 if (a->msz > a->esz) {
5169 return false;
5170 }
5171 if (sve_access_check(s)) {
5172 int vsz = vec_full_reg_size(s);
5173 int elements = vsz >> a->esz;
5174 TCGv_i64 addr = new_tmp_a64(s);
5175
5176 tcg_gen_addi_i64(addr, cpu_reg_sp(s, a->rn),
5177 (a->imm * elements * (a->nreg + 1)) << a->msz);
5178 do_st_zpa(s, a->rd, a->pg, addr, a->msz, a->esz, a->nreg);
5179 }
5180 return true;
5181}
f6dbf62a
RH
5182
5183/*
5184 *** SVE gather loads / scatter stores
5185 */
5186
500d0484 5187static void do_mem_zpz(DisasContext *s, int zt, int pg, int zm,
d28d12f0 5188 int scale, TCGv_i64 scalar, int msz, bool is_write,
500d0484 5189 gen_helper_gvec_mem_scatter *fn)
f6dbf62a
RH
5190{
5191 unsigned vsz = vec_full_reg_size(s);
f6dbf62a
RH
5192 TCGv_ptr t_zm = tcg_temp_new_ptr();
5193 TCGv_ptr t_pg = tcg_temp_new_ptr();
5194 TCGv_ptr t_zt = tcg_temp_new_ptr();
500d0484 5195 TCGv_i32 t_desc;
d28d12f0 5196 int desc = 0;
500d0484 5197
d28d12f0
RH
5198 if (s->mte_active[0]) {
5199 desc = FIELD_DP32(desc, MTEDESC, MIDX, get_mem_index(s));
5200 desc = FIELD_DP32(desc, MTEDESC, TBI, s->tbid);
5201 desc = FIELD_DP32(desc, MTEDESC, TCMA, s->tcma);
5202 desc = FIELD_DP32(desc, MTEDESC, WRITE, is_write);
28f32503 5203 desc = FIELD_DP32(desc, MTEDESC, SIZEM1, (1 << msz) - 1);
d28d12f0
RH
5204 desc <<= SVE_MTEDESC_SHIFT;
5205 }
cdecb3fc 5206 desc = simd_desc(vsz, vsz, desc | scale);
500d0484 5207 t_desc = tcg_const_i32(desc);
f6dbf62a
RH
5208
5209 tcg_gen_addi_ptr(t_pg, cpu_env, pred_full_reg_offset(s, pg));
5210 tcg_gen_addi_ptr(t_zm, cpu_env, vec_full_reg_offset(s, zm));
5211 tcg_gen_addi_ptr(t_zt, cpu_env, vec_full_reg_offset(s, zt));
500d0484 5212 fn(cpu_env, t_zt, t_pg, t_zm, scalar, t_desc);
f6dbf62a
RH
5213
5214 tcg_temp_free_ptr(t_zt);
5215 tcg_temp_free_ptr(t_zm);
5216 tcg_temp_free_ptr(t_pg);
500d0484 5217 tcg_temp_free_i32(t_desc);
f6dbf62a
RH
5218}
5219
d28d12f0
RH
5220/* Indexed by [mte][be][ff][xs][u][msz]. */
5221static gen_helper_gvec_mem_scatter * const
5222gather_load_fn32[2][2][2][2][2][3] = {
5223 { /* MTE Inactive */
5224 { /* Little-endian */
5225 { { { gen_helper_sve_ldbss_zsu,
5226 gen_helper_sve_ldhss_le_zsu,
5227 NULL, },
5228 { gen_helper_sve_ldbsu_zsu,
5229 gen_helper_sve_ldhsu_le_zsu,
5230 gen_helper_sve_ldss_le_zsu, } },
5231 { { gen_helper_sve_ldbss_zss,
5232 gen_helper_sve_ldhss_le_zss,
5233 NULL, },
5234 { gen_helper_sve_ldbsu_zss,
5235 gen_helper_sve_ldhsu_le_zss,
5236 gen_helper_sve_ldss_le_zss, } } },
5237
5238 /* First-fault */
5239 { { { gen_helper_sve_ldffbss_zsu,
5240 gen_helper_sve_ldffhss_le_zsu,
5241 NULL, },
5242 { gen_helper_sve_ldffbsu_zsu,
5243 gen_helper_sve_ldffhsu_le_zsu,
5244 gen_helper_sve_ldffss_le_zsu, } },
5245 { { gen_helper_sve_ldffbss_zss,
5246 gen_helper_sve_ldffhss_le_zss,
5247 NULL, },
5248 { gen_helper_sve_ldffbsu_zss,
5249 gen_helper_sve_ldffhsu_le_zss,
5250 gen_helper_sve_ldffss_le_zss, } } } },
5251
5252 { /* Big-endian */
5253 { { { gen_helper_sve_ldbss_zsu,
5254 gen_helper_sve_ldhss_be_zsu,
5255 NULL, },
5256 { gen_helper_sve_ldbsu_zsu,
5257 gen_helper_sve_ldhsu_be_zsu,
5258 gen_helper_sve_ldss_be_zsu, } },
5259 { { gen_helper_sve_ldbss_zss,
5260 gen_helper_sve_ldhss_be_zss,
5261 NULL, },
5262 { gen_helper_sve_ldbsu_zss,
5263 gen_helper_sve_ldhsu_be_zss,
5264 gen_helper_sve_ldss_be_zss, } } },
5265
5266 /* First-fault */
5267 { { { gen_helper_sve_ldffbss_zsu,
5268 gen_helper_sve_ldffhss_be_zsu,
5269 NULL, },
5270 { gen_helper_sve_ldffbsu_zsu,
5271 gen_helper_sve_ldffhsu_be_zsu,
5272 gen_helper_sve_ldffss_be_zsu, } },
5273 { { gen_helper_sve_ldffbss_zss,
5274 gen_helper_sve_ldffhss_be_zss,
5275 NULL, },
5276 { gen_helper_sve_ldffbsu_zss,
5277 gen_helper_sve_ldffhsu_be_zss,
5278 gen_helper_sve_ldffss_be_zss, } } } } },
5279 { /* MTE Active */
5280 { /* Little-endian */
5281 { { { gen_helper_sve_ldbss_zsu_mte,
5282 gen_helper_sve_ldhss_le_zsu_mte,
5283 NULL, },
5284 { gen_helper_sve_ldbsu_zsu_mte,
5285 gen_helper_sve_ldhsu_le_zsu_mte,
5286 gen_helper_sve_ldss_le_zsu_mte, } },
5287 { { gen_helper_sve_ldbss_zss_mte,
5288 gen_helper_sve_ldhss_le_zss_mte,
5289 NULL, },
5290 { gen_helper_sve_ldbsu_zss_mte,
5291 gen_helper_sve_ldhsu_le_zss_mte,
5292 gen_helper_sve_ldss_le_zss_mte, } } },
5293
5294 /* First-fault */
5295 { { { gen_helper_sve_ldffbss_zsu_mte,
5296 gen_helper_sve_ldffhss_le_zsu_mte,
5297 NULL, },
5298 { gen_helper_sve_ldffbsu_zsu_mte,
5299 gen_helper_sve_ldffhsu_le_zsu_mte,
5300 gen_helper_sve_ldffss_le_zsu_mte, } },
5301 { { gen_helper_sve_ldffbss_zss_mte,
5302 gen_helper_sve_ldffhss_le_zss_mte,
5303 NULL, },
5304 { gen_helper_sve_ldffbsu_zss_mte,
5305 gen_helper_sve_ldffhsu_le_zss_mte,
5306 gen_helper_sve_ldffss_le_zss_mte, } } } },
5307
5308 { /* Big-endian */
5309 { { { gen_helper_sve_ldbss_zsu_mte,
5310 gen_helper_sve_ldhss_be_zsu_mte,
5311 NULL, },
5312 { gen_helper_sve_ldbsu_zsu_mte,
5313 gen_helper_sve_ldhsu_be_zsu_mte,
5314 gen_helper_sve_ldss_be_zsu_mte, } },
5315 { { gen_helper_sve_ldbss_zss_mte,
5316 gen_helper_sve_ldhss_be_zss_mte,
5317 NULL, },
5318 { gen_helper_sve_ldbsu_zss_mte,
5319 gen_helper_sve_ldhsu_be_zss_mte,
5320 gen_helper_sve_ldss_be_zss_mte, } } },
5321
5322 /* First-fault */
5323 { { { gen_helper_sve_ldffbss_zsu_mte,
5324 gen_helper_sve_ldffhss_be_zsu_mte,
5325 NULL, },
5326 { gen_helper_sve_ldffbsu_zsu_mte,
5327 gen_helper_sve_ldffhsu_be_zsu_mte,
5328 gen_helper_sve_ldffss_be_zsu_mte, } },
5329 { { gen_helper_sve_ldffbss_zss_mte,
5330 gen_helper_sve_ldffhss_be_zss_mte,
5331 NULL, },
5332 { gen_helper_sve_ldffbsu_zss_mte,
5333 gen_helper_sve_ldffhsu_be_zss_mte,
5334 gen_helper_sve_ldffss_be_zss_mte, } } } } },
673e9fa6
RH
5335};
5336
5337/* Note that we overload xs=2 to indicate 64-bit offset. */
d28d12f0
RH
5338static gen_helper_gvec_mem_scatter * const
5339gather_load_fn64[2][2][2][3][2][4] = {
5340 { /* MTE Inactive */
5341 { /* Little-endian */
5342 { { { gen_helper_sve_ldbds_zsu,
5343 gen_helper_sve_ldhds_le_zsu,
5344 gen_helper_sve_ldsds_le_zsu,
5345 NULL, },
5346 { gen_helper_sve_ldbdu_zsu,
5347 gen_helper_sve_ldhdu_le_zsu,
5348 gen_helper_sve_ldsdu_le_zsu,
5349 gen_helper_sve_lddd_le_zsu, } },
5350 { { gen_helper_sve_ldbds_zss,
5351 gen_helper_sve_ldhds_le_zss,
5352 gen_helper_sve_ldsds_le_zss,
5353 NULL, },
5354 { gen_helper_sve_ldbdu_zss,
5355 gen_helper_sve_ldhdu_le_zss,
5356 gen_helper_sve_ldsdu_le_zss,
5357 gen_helper_sve_lddd_le_zss, } },
5358 { { gen_helper_sve_ldbds_zd,
5359 gen_helper_sve_ldhds_le_zd,
5360 gen_helper_sve_ldsds_le_zd,
5361 NULL, },
5362 { gen_helper_sve_ldbdu_zd,
5363 gen_helper_sve_ldhdu_le_zd,
5364 gen_helper_sve_ldsdu_le_zd,
5365 gen_helper_sve_lddd_le_zd, } } },
5366
5367 /* First-fault */
5368 { { { gen_helper_sve_ldffbds_zsu,
5369 gen_helper_sve_ldffhds_le_zsu,
5370 gen_helper_sve_ldffsds_le_zsu,
5371 NULL, },
5372 { gen_helper_sve_ldffbdu_zsu,
5373 gen_helper_sve_ldffhdu_le_zsu,
5374 gen_helper_sve_ldffsdu_le_zsu,
5375 gen_helper_sve_ldffdd_le_zsu, } },
5376 { { gen_helper_sve_ldffbds_zss,
5377 gen_helper_sve_ldffhds_le_zss,
5378 gen_helper_sve_ldffsds_le_zss,
5379 NULL, },
5380 { gen_helper_sve_ldffbdu_zss,
5381 gen_helper_sve_ldffhdu_le_zss,
5382 gen_helper_sve_ldffsdu_le_zss,
5383 gen_helper_sve_ldffdd_le_zss, } },
5384 { { gen_helper_sve_ldffbds_zd,
5385 gen_helper_sve_ldffhds_le_zd,
5386 gen_helper_sve_ldffsds_le_zd,
5387 NULL, },
5388 { gen_helper_sve_ldffbdu_zd,
5389 gen_helper_sve_ldffhdu_le_zd,
5390 gen_helper_sve_ldffsdu_le_zd,
5391 gen_helper_sve_ldffdd_le_zd, } } } },
5392 { /* Big-endian */
5393 { { { gen_helper_sve_ldbds_zsu,
5394 gen_helper_sve_ldhds_be_zsu,
5395 gen_helper_sve_ldsds_be_zsu,
5396 NULL, },
5397 { gen_helper_sve_ldbdu_zsu,
5398 gen_helper_sve_ldhdu_be_zsu,
5399 gen_helper_sve_ldsdu_be_zsu,
5400 gen_helper_sve_lddd_be_zsu, } },
5401 { { gen_helper_sve_ldbds_zss,
5402 gen_helper_sve_ldhds_be_zss,
5403 gen_helper_sve_ldsds_be_zss,
5404 NULL, },
5405 { gen_helper_sve_ldbdu_zss,
5406 gen_helper_sve_ldhdu_be_zss,
5407 gen_helper_sve_ldsdu_be_zss,
5408 gen_helper_sve_lddd_be_zss, } },
5409 { { gen_helper_sve_ldbds_zd,
5410 gen_helper_sve_ldhds_be_zd,
5411 gen_helper_sve_ldsds_be_zd,
5412 NULL, },
5413 { gen_helper_sve_ldbdu_zd,
5414 gen_helper_sve_ldhdu_be_zd,
5415 gen_helper_sve_ldsdu_be_zd,
5416 gen_helper_sve_lddd_be_zd, } } },
5417
5418 /* First-fault */
5419 { { { gen_helper_sve_ldffbds_zsu,
5420 gen_helper_sve_ldffhds_be_zsu,
5421 gen_helper_sve_ldffsds_be_zsu,
5422 NULL, },
5423 { gen_helper_sve_ldffbdu_zsu,
5424 gen_helper_sve_ldffhdu_be_zsu,
5425 gen_helper_sve_ldffsdu_be_zsu,
5426 gen_helper_sve_ldffdd_be_zsu, } },
5427 { { gen_helper_sve_ldffbds_zss,
5428 gen_helper_sve_ldffhds_be_zss,
5429 gen_helper_sve_ldffsds_be_zss,
5430 NULL, },
5431 { gen_helper_sve_ldffbdu_zss,
5432 gen_helper_sve_ldffhdu_be_zss,
5433 gen_helper_sve_ldffsdu_be_zss,
5434 gen_helper_sve_ldffdd_be_zss, } },
5435 { { gen_helper_sve_ldffbds_zd,
5436 gen_helper_sve_ldffhds_be_zd,
5437 gen_helper_sve_ldffsds_be_zd,
5438 NULL, },
5439 { gen_helper_sve_ldffbdu_zd,
5440 gen_helper_sve_ldffhdu_be_zd,
5441 gen_helper_sve_ldffsdu_be_zd,
5442 gen_helper_sve_ldffdd_be_zd, } } } } },
5443 { /* MTE Active */
5444 { /* Little-endian */
5445 { { { gen_helper_sve_ldbds_zsu_mte,
5446 gen_helper_sve_ldhds_le_zsu_mte,
5447 gen_helper_sve_ldsds_le_zsu_mte,
5448 NULL, },
5449 { gen_helper_sve_ldbdu_zsu_mte,
5450 gen_helper_sve_ldhdu_le_zsu_mte,
5451 gen_helper_sve_ldsdu_le_zsu_mte,
5452 gen_helper_sve_lddd_le_zsu_mte, } },
5453 { { gen_helper_sve_ldbds_zss_mte,
5454 gen_helper_sve_ldhds_le_zss_mte,
5455 gen_helper_sve_ldsds_le_zss_mte,
5456 NULL, },
5457 { gen_helper_sve_ldbdu_zss_mte,
5458 gen_helper_sve_ldhdu_le_zss_mte,
5459 gen_helper_sve_ldsdu_le_zss_mte,
5460 gen_helper_sve_lddd_le_zss_mte, } },
5461 { { gen_helper_sve_ldbds_zd_mte,
5462 gen_helper_sve_ldhds_le_zd_mte,
5463 gen_helper_sve_ldsds_le_zd_mte,
5464 NULL, },
5465 { gen_helper_sve_ldbdu_zd_mte,
5466 gen_helper_sve_ldhdu_le_zd_mte,
5467 gen_helper_sve_ldsdu_le_zd_mte,
5468 gen_helper_sve_lddd_le_zd_mte, } } },
5469
5470 /* First-fault */
5471 { { { gen_helper_sve_ldffbds_zsu_mte,
5472 gen_helper_sve_ldffhds_le_zsu_mte,
5473 gen_helper_sve_ldffsds_le_zsu_mte,
5474 NULL, },
5475 { gen_helper_sve_ldffbdu_zsu_mte,
5476 gen_helper_sve_ldffhdu_le_zsu_mte,
5477 gen_helper_sve_ldffsdu_le_zsu_mte,
5478 gen_helper_sve_ldffdd_le_zsu_mte, } },
5479 { { gen_helper_sve_ldffbds_zss_mte,
5480 gen_helper_sve_ldffhds_le_zss_mte,
5481 gen_helper_sve_ldffsds_le_zss_mte,
5482 NULL, },
5483 { gen_helper_sve_ldffbdu_zss_mte,
5484 gen_helper_sve_ldffhdu_le_zss_mte,
5485 gen_helper_sve_ldffsdu_le_zss_mte,
5486 gen_helper_sve_ldffdd_le_zss_mte, } },
5487 { { gen_helper_sve_ldffbds_zd_mte,
5488 gen_helper_sve_ldffhds_le_zd_mte,
5489 gen_helper_sve_ldffsds_le_zd_mte,
5490 NULL, },
5491 { gen_helper_sve_ldffbdu_zd_mte,
5492 gen_helper_sve_ldffhdu_le_zd_mte,
5493 gen_helper_sve_ldffsdu_le_zd_mte,
5494 gen_helper_sve_ldffdd_le_zd_mte, } } } },
5495 { /* Big-endian */
5496 { { { gen_helper_sve_ldbds_zsu_mte,
5497 gen_helper_sve_ldhds_be_zsu_mte,
5498 gen_helper_sve_ldsds_be_zsu_mte,
5499 NULL, },
5500 { gen_helper_sve_ldbdu_zsu_mte,
5501 gen_helper_sve_ldhdu_be_zsu_mte,
5502 gen_helper_sve_ldsdu_be_zsu_mte,
5503 gen_helper_sve_lddd_be_zsu_mte, } },
5504 { { gen_helper_sve_ldbds_zss_mte,
5505 gen_helper_sve_ldhds_be_zss_mte,
5506 gen_helper_sve_ldsds_be_zss_mte,
5507 NULL, },
5508 { gen_helper_sve_ldbdu_zss_mte,
5509 gen_helper_sve_ldhdu_be_zss_mte,
5510 gen_helper_sve_ldsdu_be_zss_mte,
5511 gen_helper_sve_lddd_be_zss_mte, } },
5512 { { gen_helper_sve_ldbds_zd_mte,
5513 gen_helper_sve_ldhds_be_zd_mte,
5514 gen_helper_sve_ldsds_be_zd_mte,
5515 NULL, },
5516 { gen_helper_sve_ldbdu_zd_mte,
5517 gen_helper_sve_ldhdu_be_zd_mte,
5518 gen_helper_sve_ldsdu_be_zd_mte,
5519 gen_helper_sve_lddd_be_zd_mte, } } },
5520
5521 /* First-fault */
5522 { { { gen_helper_sve_ldffbds_zsu_mte,
5523 gen_helper_sve_ldffhds_be_zsu_mte,
5524 gen_helper_sve_ldffsds_be_zsu_mte,
5525 NULL, },
5526 { gen_helper_sve_ldffbdu_zsu_mte,
5527 gen_helper_sve_ldffhdu_be_zsu_mte,
5528 gen_helper_sve_ldffsdu_be_zsu_mte,
5529 gen_helper_sve_ldffdd_be_zsu_mte, } },
5530 { { gen_helper_sve_ldffbds_zss_mte,
5531 gen_helper_sve_ldffhds_be_zss_mte,
5532 gen_helper_sve_ldffsds_be_zss_mte,
5533 NULL, },
5534 { gen_helper_sve_ldffbdu_zss_mte,
5535 gen_helper_sve_ldffhdu_be_zss_mte,
5536 gen_helper_sve_ldffsdu_be_zss_mte,
5537 gen_helper_sve_ldffdd_be_zss_mte, } },
5538 { { gen_helper_sve_ldffbds_zd_mte,
5539 gen_helper_sve_ldffhds_be_zd_mte,
5540 gen_helper_sve_ldffsds_be_zd_mte,
5541 NULL, },
5542 { gen_helper_sve_ldffbdu_zd_mte,
5543 gen_helper_sve_ldffhdu_be_zd_mte,
5544 gen_helper_sve_ldffsdu_be_zd_mte,
5545 gen_helper_sve_ldffdd_be_zd_mte, } } } } },
673e9fa6
RH
5546};
5547
3a7be554 5548static bool trans_LD1_zprz(DisasContext *s, arg_LD1_zprz *a)
673e9fa6
RH
5549{
5550 gen_helper_gvec_mem_scatter *fn = NULL;
d28d12f0
RH
5551 bool be = s->be_data == MO_BE;
5552 bool mte = s->mte_active[0];
673e9fa6
RH
5553
5554 if (!sve_access_check(s)) {
5555 return true;
5556 }
5557
5558 switch (a->esz) {
5559 case MO_32:
d28d12f0 5560 fn = gather_load_fn32[mte][be][a->ff][a->xs][a->u][a->msz];
673e9fa6
RH
5561 break;
5562 case MO_64:
d28d12f0 5563 fn = gather_load_fn64[mte][be][a->ff][a->xs][a->u][a->msz];
673e9fa6
RH
5564 break;
5565 }
5566 assert(fn != NULL);
5567
5568 do_mem_zpz(s, a->rd, a->pg, a->rm, a->scale * a->msz,
d28d12f0 5569 cpu_reg_sp(s, a->rn), a->msz, false, fn);
673e9fa6
RH
5570 return true;
5571}
5572
3a7be554 5573static bool trans_LD1_zpiz(DisasContext *s, arg_LD1_zpiz *a)
673e9fa6
RH
5574{
5575 gen_helper_gvec_mem_scatter *fn = NULL;
d28d12f0
RH
5576 bool be = s->be_data == MO_BE;
5577 bool mte = s->mte_active[0];
673e9fa6
RH
5578 TCGv_i64 imm;
5579
5580 if (a->esz < a->msz || (a->esz == a->msz && !a->u)) {
5581 return false;
5582 }
5583 if (!sve_access_check(s)) {
5584 return true;
5585 }
5586
5587 switch (a->esz) {
5588 case MO_32:
d28d12f0 5589 fn = gather_load_fn32[mte][be][a->ff][0][a->u][a->msz];
673e9fa6
RH
5590 break;
5591 case MO_64:
d28d12f0 5592 fn = gather_load_fn64[mte][be][a->ff][2][a->u][a->msz];
673e9fa6
RH
5593 break;
5594 }
5595 assert(fn != NULL);
5596
5597 /* Treat LD1_zpiz (zn[x] + imm) the same way as LD1_zprz (rn + zm[x])
5598 * by loading the immediate into the scalar parameter.
5599 */
5600 imm = tcg_const_i64(a->imm << a->msz);
d28d12f0 5601 do_mem_zpz(s, a->rd, a->pg, a->rn, 0, imm, a->msz, false, fn);
673e9fa6
RH
5602 tcg_temp_free_i64(imm);
5603 return true;
5604}
5605
d28d12f0
RH
5606/* Indexed by [mte][be][xs][msz]. */
5607static gen_helper_gvec_mem_scatter * const scatter_store_fn32[2][2][2][3] = {
5608 { /* MTE Inactive */
5609 { /* Little-endian */
5610 { gen_helper_sve_stbs_zsu,
5611 gen_helper_sve_sths_le_zsu,
5612 gen_helper_sve_stss_le_zsu, },
5613 { gen_helper_sve_stbs_zss,
5614 gen_helper_sve_sths_le_zss,
5615 gen_helper_sve_stss_le_zss, } },
5616 { /* Big-endian */
5617 { gen_helper_sve_stbs_zsu,
5618 gen_helper_sve_sths_be_zsu,
5619 gen_helper_sve_stss_be_zsu, },
5620 { gen_helper_sve_stbs_zss,
5621 gen_helper_sve_sths_be_zss,
5622 gen_helper_sve_stss_be_zss, } } },
5623 { /* MTE Active */
5624 { /* Little-endian */
5625 { gen_helper_sve_stbs_zsu_mte,
5626 gen_helper_sve_sths_le_zsu_mte,
5627 gen_helper_sve_stss_le_zsu_mte, },
5628 { gen_helper_sve_stbs_zss_mte,
5629 gen_helper_sve_sths_le_zss_mte,
5630 gen_helper_sve_stss_le_zss_mte, } },
5631 { /* Big-endian */
5632 { gen_helper_sve_stbs_zsu_mte,
5633 gen_helper_sve_sths_be_zsu_mte,
5634 gen_helper_sve_stss_be_zsu_mte, },
5635 { gen_helper_sve_stbs_zss_mte,
5636 gen_helper_sve_sths_be_zss_mte,
5637 gen_helper_sve_stss_be_zss_mte, } } },
408ecde9
RH
5638};
5639
5640/* Note that we overload xs=2 to indicate 64-bit offset. */
d28d12f0
RH
5641static gen_helper_gvec_mem_scatter * const scatter_store_fn64[2][2][3][4] = {
5642 { /* MTE Inactive */
5643 { /* Little-endian */
5644 { gen_helper_sve_stbd_zsu,
5645 gen_helper_sve_sthd_le_zsu,
5646 gen_helper_sve_stsd_le_zsu,
5647 gen_helper_sve_stdd_le_zsu, },
5648 { gen_helper_sve_stbd_zss,
5649 gen_helper_sve_sthd_le_zss,
5650 gen_helper_sve_stsd_le_zss,
5651 gen_helper_sve_stdd_le_zss, },
5652 { gen_helper_sve_stbd_zd,
5653 gen_helper_sve_sthd_le_zd,
5654 gen_helper_sve_stsd_le_zd,
5655 gen_helper_sve_stdd_le_zd, } },
5656 { /* Big-endian */
5657 { gen_helper_sve_stbd_zsu,
5658 gen_helper_sve_sthd_be_zsu,
5659 gen_helper_sve_stsd_be_zsu,
5660 gen_helper_sve_stdd_be_zsu, },
5661 { gen_helper_sve_stbd_zss,
5662 gen_helper_sve_sthd_be_zss,
5663 gen_helper_sve_stsd_be_zss,
5664 gen_helper_sve_stdd_be_zss, },
5665 { gen_helper_sve_stbd_zd,
5666 gen_helper_sve_sthd_be_zd,
5667 gen_helper_sve_stsd_be_zd,
5668 gen_helper_sve_stdd_be_zd, } } },
5669 { /* MTE Inactive */
5670 { /* Little-endian */
5671 { gen_helper_sve_stbd_zsu_mte,
5672 gen_helper_sve_sthd_le_zsu_mte,
5673 gen_helper_sve_stsd_le_zsu_mte,
5674 gen_helper_sve_stdd_le_zsu_mte, },
5675 { gen_helper_sve_stbd_zss_mte,
5676 gen_helper_sve_sthd_le_zss_mte,
5677 gen_helper_sve_stsd_le_zss_mte,
5678 gen_helper_sve_stdd_le_zss_mte, },
5679 { gen_helper_sve_stbd_zd_mte,
5680 gen_helper_sve_sthd_le_zd_mte,
5681 gen_helper_sve_stsd_le_zd_mte,
5682 gen_helper_sve_stdd_le_zd_mte, } },
5683 { /* Big-endian */
5684 { gen_helper_sve_stbd_zsu_mte,
5685 gen_helper_sve_sthd_be_zsu_mte,
5686 gen_helper_sve_stsd_be_zsu_mte,
5687 gen_helper_sve_stdd_be_zsu_mte, },
5688 { gen_helper_sve_stbd_zss_mte,
5689 gen_helper_sve_sthd_be_zss_mte,
5690 gen_helper_sve_stsd_be_zss_mte,
5691 gen_helper_sve_stdd_be_zss_mte, },
5692 { gen_helper_sve_stbd_zd_mte,
5693 gen_helper_sve_sthd_be_zd_mte,
5694 gen_helper_sve_stsd_be_zd_mte,
5695 gen_helper_sve_stdd_be_zd_mte, } } },
408ecde9
RH
5696};
5697
3a7be554 5698static bool trans_ST1_zprz(DisasContext *s, arg_ST1_zprz *a)
f6dbf62a 5699{
f6dbf62a 5700 gen_helper_gvec_mem_scatter *fn;
d28d12f0
RH
5701 bool be = s->be_data == MO_BE;
5702 bool mte = s->mte_active[0];
f6dbf62a
RH
5703
5704 if (a->esz < a->msz || (a->msz == 0 && a->scale)) {
5705 return false;
5706 }
5707 if (!sve_access_check(s)) {
5708 return true;
5709 }
5710 switch (a->esz) {
5711 case MO_32:
d28d12f0 5712 fn = scatter_store_fn32[mte][be][a->xs][a->msz];
f6dbf62a
RH
5713 break;
5714 case MO_64:
d28d12f0 5715 fn = scatter_store_fn64[mte][be][a->xs][a->msz];
f6dbf62a
RH
5716 break;
5717 default:
5718 g_assert_not_reached();
5719 }
5720 do_mem_zpz(s, a->rd, a->pg, a->rm, a->scale * a->msz,
d28d12f0 5721 cpu_reg_sp(s, a->rn), a->msz, true, fn);
f6dbf62a
RH
5722 return true;
5723}
dec6cf6b 5724
3a7be554 5725static bool trans_ST1_zpiz(DisasContext *s, arg_ST1_zpiz *a)
408ecde9
RH
5726{
5727 gen_helper_gvec_mem_scatter *fn = NULL;
d28d12f0
RH
5728 bool be = s->be_data == MO_BE;
5729 bool mte = s->mte_active[0];
408ecde9
RH
5730 TCGv_i64 imm;
5731
5732 if (a->esz < a->msz) {
5733 return false;
5734 }
5735 if (!sve_access_check(s)) {
5736 return true;
5737 }
5738
5739 switch (a->esz) {
5740 case MO_32:
d28d12f0 5741 fn = scatter_store_fn32[mte][be][0][a->msz];
408ecde9
RH
5742 break;
5743 case MO_64:
d28d12f0 5744 fn = scatter_store_fn64[mte][be][2][a->msz];
408ecde9
RH
5745 break;
5746 }
5747 assert(fn != NULL);
5748
5749 /* Treat ST1_zpiz (zn[x] + imm) the same way as ST1_zprz (rn + zm[x])
5750 * by loading the immediate into the scalar parameter.
5751 */
5752 imm = tcg_const_i64(a->imm << a->msz);
d28d12f0 5753 do_mem_zpz(s, a->rd, a->pg, a->rn, 0, imm, a->msz, true, fn);
408ecde9
RH
5754 tcg_temp_free_i64(imm);
5755 return true;
5756}
5757
dec6cf6b
RH
5758/*
5759 * Prefetches
5760 */
5761
3a7be554 5762static bool trans_PRF(DisasContext *s, arg_PRF *a)
dec6cf6b
RH
5763{
5764 /* Prefetch is a nop within QEMU. */
2f95a3b0 5765 (void)sve_access_check(s);
dec6cf6b
RH
5766 return true;
5767}
5768
3a7be554 5769static bool trans_PRF_rr(DisasContext *s, arg_PRF_rr *a)
dec6cf6b
RH
5770{
5771 if (a->rm == 31) {
5772 return false;
5773 }
5774 /* Prefetch is a nop within QEMU. */
2f95a3b0 5775 (void)sve_access_check(s);
dec6cf6b
RH
5776 return true;
5777}
a2103582
RH
5778
5779/*
5780 * Move Prefix
5781 *
5782 * TODO: The implementation so far could handle predicated merging movprfx.
5783 * The helper functions as written take an extra source register to
5784 * use in the operation, but the result is only written when predication
5785 * succeeds. For unpredicated movprfx, we need to rearrange the helpers
5786 * to allow the final write back to the destination to be unconditional.
5787 * For predicated zeroing movprfx, we need to rearrange the helpers to
5788 * allow the final write back to zero inactives.
5789 *
5790 * In the meantime, just emit the moves.
5791 */
5792
3a7be554 5793static bool trans_MOVPRFX(DisasContext *s, arg_MOVPRFX *a)
a2103582
RH
5794{
5795 return do_mov_z(s, a->rd, a->rn);
5796}
5797
3a7be554 5798static bool trans_MOVPRFX_m(DisasContext *s, arg_rpr_esz *a)
a2103582
RH
5799{
5800 if (sve_access_check(s)) {
5801 do_sel_z(s, a->rd, a->rn, a->rd, a->pg, a->esz);
5802 }
5803 return true;
5804}
5805
3a7be554 5806static bool trans_MOVPRFX_z(DisasContext *s, arg_rpr_esz *a)
a2103582 5807{
60245996 5808 return do_movz_zpz(s, a->rd, a->rn, a->pg, a->esz, false);
a2103582 5809}
5dad1ba5
RH
5810
5811/*
5812 * SVE2 Integer Multiply - Unpredicated
5813 */
5814
5815static bool trans_MUL_zzz(DisasContext *s, arg_rrr_esz *a)
5816{
5817 if (!dc_isar_feature(aa64_sve2, s)) {
5818 return false;
5819 }
5820 if (sve_access_check(s)) {
5821 gen_gvec_fn_zzz(s, tcg_gen_gvec_mul, a->esz, a->rd, a->rn, a->rm);
5822 }
5823 return true;
5824}
5825
5826static bool do_sve2_zzz_ool(DisasContext *s, arg_rrr_esz *a,
5827 gen_helper_gvec_3 *fn)
5828{
5829 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
5830 return false;
5831 }
5832 if (sve_access_check(s)) {
5833 gen_gvec_ool_zzz(s, fn, a->rd, a->rn, a->rm, 0);
5834 }
5835 return true;
5836}
5837
5838static bool trans_SMULH_zzz(DisasContext *s, arg_rrr_esz *a)
5839{
5840 static gen_helper_gvec_3 * const fns[4] = {
5841 gen_helper_gvec_smulh_b, gen_helper_gvec_smulh_h,
5842 gen_helper_gvec_smulh_s, gen_helper_gvec_smulh_d,
5843 };
5844 return do_sve2_zzz_ool(s, a, fns[a->esz]);
5845}
5846
5847static bool trans_UMULH_zzz(DisasContext *s, arg_rrr_esz *a)
5848{
5849 static gen_helper_gvec_3 * const fns[4] = {
5850 gen_helper_gvec_umulh_b, gen_helper_gvec_umulh_h,
5851 gen_helper_gvec_umulh_s, gen_helper_gvec_umulh_d,
5852 };
5853 return do_sve2_zzz_ool(s, a, fns[a->esz]);
5854}
5855
5856static bool trans_PMUL_zzz(DisasContext *s, arg_rrr_esz *a)
5857{
5858 return do_sve2_zzz_ool(s, a, gen_helper_gvec_pmul_b);
5859}
d4b1e59d
RH
5860
5861/*
5862 * SVE2 Integer - Predicated
5863 */
5864
5865static bool do_sve2_zpzz_ool(DisasContext *s, arg_rprr_esz *a,
5866 gen_helper_gvec_4 *fn)
5867{
5868 if (!dc_isar_feature(aa64_sve2, s)) {
5869 return false;
5870 }
5871 return do_zpzz_ool(s, a, fn);
5872}
5873
5874static bool trans_SADALP_zpzz(DisasContext *s, arg_rprr_esz *a)
5875{
5876 static gen_helper_gvec_4 * const fns[3] = {
5877 gen_helper_sve2_sadalp_zpzz_h,
5878 gen_helper_sve2_sadalp_zpzz_s,
5879 gen_helper_sve2_sadalp_zpzz_d,
5880 };
5881 if (a->esz == 0) {
5882 return false;
5883 }
5884 return do_sve2_zpzz_ool(s, a, fns[a->esz - 1]);
5885}
5886
5887static bool trans_UADALP_zpzz(DisasContext *s, arg_rprr_esz *a)
5888{
5889 static gen_helper_gvec_4 * const fns[3] = {
5890 gen_helper_sve2_uadalp_zpzz_h,
5891 gen_helper_sve2_uadalp_zpzz_s,
5892 gen_helper_sve2_uadalp_zpzz_d,
5893 };
5894 if (a->esz == 0) {
5895 return false;
5896 }
5897 return do_sve2_zpzz_ool(s, a, fns[a->esz - 1]);
5898}
db366da8
RH
5899
5900/*
5901 * SVE2 integer unary operations (predicated)
5902 */
5903
5904static bool do_sve2_zpz_ool(DisasContext *s, arg_rpr_esz *a,
5905 gen_helper_gvec_3 *fn)
5906{
5907 if (!dc_isar_feature(aa64_sve2, s)) {
5908 return false;
5909 }
5910 return do_zpz_ool(s, a, fn);
5911}
5912
5913static bool trans_URECPE(DisasContext *s, arg_rpr_esz *a)
5914{
5915 if (a->esz != 2) {
5916 return false;
5917 }
5918 return do_sve2_zpz_ool(s, a, gen_helper_sve2_urecpe_s);
5919}
5920
5921static bool trans_URSQRTE(DisasContext *s, arg_rpr_esz *a)
5922{
5923 if (a->esz != 2) {
5924 return false;
5925 }
5926 return do_sve2_zpz_ool(s, a, gen_helper_sve2_ursqrte_s);
5927}
5928
5929static bool trans_SQABS(DisasContext *s, arg_rpr_esz *a)
5930{
5931 static gen_helper_gvec_3 * const fns[4] = {
5932 gen_helper_sve2_sqabs_b, gen_helper_sve2_sqabs_h,
5933 gen_helper_sve2_sqabs_s, gen_helper_sve2_sqabs_d,
5934 };
5935 return do_sve2_zpz_ool(s, a, fns[a->esz]);
5936}
5937
5938static bool trans_SQNEG(DisasContext *s, arg_rpr_esz *a)
5939{
5940 static gen_helper_gvec_3 * const fns[4] = {
5941 gen_helper_sve2_sqneg_b, gen_helper_sve2_sqneg_h,
5942 gen_helper_sve2_sqneg_s, gen_helper_sve2_sqneg_d,
5943 };
5944 return do_sve2_zpz_ool(s, a, fns[a->esz]);
5945}
45d9503d
RH
5946
5947#define DO_SVE2_ZPZZ(NAME, name) \
5948static bool trans_##NAME(DisasContext *s, arg_rprr_esz *a) \
5949{ \
5950 static gen_helper_gvec_4 * const fns[4] = { \
5951 gen_helper_sve2_##name##_zpzz_b, gen_helper_sve2_##name##_zpzz_h, \
5952 gen_helper_sve2_##name##_zpzz_s, gen_helper_sve2_##name##_zpzz_d, \
5953 }; \
5954 return do_sve2_zpzz_ool(s, a, fns[a->esz]); \
5955}
5956
5957DO_SVE2_ZPZZ(SQSHL, sqshl)
5958DO_SVE2_ZPZZ(SQRSHL, sqrshl)
5959DO_SVE2_ZPZZ(SRSHL, srshl)
5960
5961DO_SVE2_ZPZZ(UQSHL, uqshl)
5962DO_SVE2_ZPZZ(UQRSHL, uqrshl)
5963DO_SVE2_ZPZZ(URSHL, urshl)
a47dc220
RH
5964
5965DO_SVE2_ZPZZ(SHADD, shadd)
5966DO_SVE2_ZPZZ(SRHADD, srhadd)
5967DO_SVE2_ZPZZ(SHSUB, shsub)
5968
5969DO_SVE2_ZPZZ(UHADD, uhadd)
5970DO_SVE2_ZPZZ(URHADD, urhadd)
5971DO_SVE2_ZPZZ(UHSUB, uhsub)
8597dc8b
RH
5972
5973DO_SVE2_ZPZZ(ADDP, addp)
5974DO_SVE2_ZPZZ(SMAXP, smaxp)
5975DO_SVE2_ZPZZ(UMAXP, umaxp)
5976DO_SVE2_ZPZZ(SMINP, sminp)
5977DO_SVE2_ZPZZ(UMINP, uminp)
4f07fbeb
RH
5978
5979DO_SVE2_ZPZZ(SQADD_zpzz, sqadd)
5980DO_SVE2_ZPZZ(UQADD_zpzz, uqadd)
5981DO_SVE2_ZPZZ(SQSUB_zpzz, sqsub)
5982DO_SVE2_ZPZZ(UQSUB_zpzz, uqsub)
5983DO_SVE2_ZPZZ(SUQADD, suqadd)
5984DO_SVE2_ZPZZ(USQADD, usqadd)
0ce1dda8
RH
5985
5986/*
5987 * SVE2 Widening Integer Arithmetic
5988 */
5989
5990static bool do_sve2_zzw_ool(DisasContext *s, arg_rrr_esz *a,
5991 gen_helper_gvec_3 *fn, int data)
5992{
5993 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
5994 return false;
5995 }
5996 if (sve_access_check(s)) {
5997 unsigned vsz = vec_full_reg_size(s);
5998 tcg_gen_gvec_3_ool(vec_full_reg_offset(s, a->rd),
5999 vec_full_reg_offset(s, a->rn),
6000 vec_full_reg_offset(s, a->rm),
6001 vsz, vsz, data, fn);
6002 }
6003 return true;
6004}
6005
6006#define DO_SVE2_ZZZ_TB(NAME, name, SEL1, SEL2) \
6007static bool trans_##NAME(DisasContext *s, arg_rrr_esz *a) \
6008{ \
6009 static gen_helper_gvec_3 * const fns[4] = { \
6010 NULL, gen_helper_sve2_##name##_h, \
6011 gen_helper_sve2_##name##_s, gen_helper_sve2_##name##_d, \
6012 }; \
6013 return do_sve2_zzw_ool(s, a, fns[a->esz], (SEL2 << 1) | SEL1); \
6014}
6015
6016DO_SVE2_ZZZ_TB(SADDLB, saddl, false, false)
6017DO_SVE2_ZZZ_TB(SSUBLB, ssubl, false, false)
6018DO_SVE2_ZZZ_TB(SABDLB, sabdl, false, false)
6019
6020DO_SVE2_ZZZ_TB(UADDLB, uaddl, false, false)
6021DO_SVE2_ZZZ_TB(USUBLB, usubl, false, false)
6022DO_SVE2_ZZZ_TB(UABDLB, uabdl, false, false)
6023
6024DO_SVE2_ZZZ_TB(SADDLT, saddl, true, true)
6025DO_SVE2_ZZZ_TB(SSUBLT, ssubl, true, true)
6026DO_SVE2_ZZZ_TB(SABDLT, sabdl, true, true)
6027
6028DO_SVE2_ZZZ_TB(UADDLT, uaddl, true, true)
6029DO_SVE2_ZZZ_TB(USUBLT, usubl, true, true)
6030DO_SVE2_ZZZ_TB(UABDLT, uabdl, true, true)
daec426b
RH
6031
6032DO_SVE2_ZZZ_TB(SADDLBT, saddl, false, true)
6033DO_SVE2_ZZZ_TB(SSUBLBT, ssubl, false, true)
6034DO_SVE2_ZZZ_TB(SSUBLTB, ssubl, true, false)
81fccf09 6035
69ccc099
RH
6036DO_SVE2_ZZZ_TB(SQDMULLB_zzz, sqdmull_zzz, false, false)
6037DO_SVE2_ZZZ_TB(SQDMULLT_zzz, sqdmull_zzz, true, true)
6038
6039DO_SVE2_ZZZ_TB(SMULLB_zzz, smull_zzz, false, false)
6040DO_SVE2_ZZZ_TB(SMULLT_zzz, smull_zzz, true, true)
6041
6042DO_SVE2_ZZZ_TB(UMULLB_zzz, umull_zzz, false, false)
6043DO_SVE2_ZZZ_TB(UMULLT_zzz, umull_zzz, true, true)
6044
2df3ca55
RH
6045static bool do_eor_tb(DisasContext *s, arg_rrr_esz *a, bool sel1)
6046{
6047 static gen_helper_gvec_3 * const fns[4] = {
6048 gen_helper_sve2_eoril_b, gen_helper_sve2_eoril_h,
6049 gen_helper_sve2_eoril_s, gen_helper_sve2_eoril_d,
6050 };
6051 return do_sve2_zzw_ool(s, a, fns[a->esz], (!sel1 << 1) | sel1);
6052}
6053
6054static bool trans_EORBT(DisasContext *s, arg_rrr_esz *a)
6055{
6056 return do_eor_tb(s, a, false);
6057}
6058
6059static bool trans_EORTB(DisasContext *s, arg_rrr_esz *a)
6060{
6061 return do_eor_tb(s, a, true);
6062}
6063
e3a56131
RH
6064static bool do_trans_pmull(DisasContext *s, arg_rrr_esz *a, bool sel)
6065{
6066 static gen_helper_gvec_3 * const fns[4] = {
6067 gen_helper_gvec_pmull_q, gen_helper_sve2_pmull_h,
6068 NULL, gen_helper_sve2_pmull_d,
6069 };
6070 if (a->esz == 0 && !dc_isar_feature(aa64_sve2_pmull128, s)) {
6071 return false;
6072 }
6073 return do_sve2_zzw_ool(s, a, fns[a->esz], sel);
6074}
6075
6076static bool trans_PMULLB(DisasContext *s, arg_rrr_esz *a)
6077{
6078 return do_trans_pmull(s, a, false);
6079}
6080
6081static bool trans_PMULLT(DisasContext *s, arg_rrr_esz *a)
6082{
6083 return do_trans_pmull(s, a, true);
6084}
6085
81fccf09
RH
6086#define DO_SVE2_ZZZ_WTB(NAME, name, SEL2) \
6087static bool trans_##NAME(DisasContext *s, arg_rrr_esz *a) \
6088{ \
6089 static gen_helper_gvec_3 * const fns[4] = { \
6090 NULL, gen_helper_sve2_##name##_h, \
6091 gen_helper_sve2_##name##_s, gen_helper_sve2_##name##_d, \
6092 }; \
6093 return do_sve2_zzw_ool(s, a, fns[a->esz], SEL2); \
6094}
6095
6096DO_SVE2_ZZZ_WTB(SADDWB, saddw, false)
6097DO_SVE2_ZZZ_WTB(SADDWT, saddw, true)
6098DO_SVE2_ZZZ_WTB(SSUBWB, ssubw, false)
6099DO_SVE2_ZZZ_WTB(SSUBWT, ssubw, true)
6100
6101DO_SVE2_ZZZ_WTB(UADDWB, uaddw, false)
6102DO_SVE2_ZZZ_WTB(UADDWT, uaddw, true)
6103DO_SVE2_ZZZ_WTB(USUBWB, usubw, false)
6104DO_SVE2_ZZZ_WTB(USUBWT, usubw, true)
4269fef1
RH
6105
6106static void gen_sshll_vec(unsigned vece, TCGv_vec d, TCGv_vec n, int64_t imm)
6107{
6108 int top = imm & 1;
6109 int shl = imm >> 1;
6110 int halfbits = 4 << vece;
6111
6112 if (top) {
6113 if (shl == halfbits) {
6114 TCGv_vec t = tcg_temp_new_vec_matching(d);
6115 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(halfbits, halfbits));
6116 tcg_gen_and_vec(vece, d, n, t);
6117 tcg_temp_free_vec(t);
6118 } else {
6119 tcg_gen_sari_vec(vece, d, n, halfbits);
6120 tcg_gen_shli_vec(vece, d, d, shl);
6121 }
6122 } else {
6123 tcg_gen_shli_vec(vece, d, n, halfbits);
6124 tcg_gen_sari_vec(vece, d, d, halfbits - shl);
6125 }
6126}
6127
6128static void gen_ushll_i64(unsigned vece, TCGv_i64 d, TCGv_i64 n, int imm)
6129{
6130 int halfbits = 4 << vece;
6131 int top = imm & 1;
6132 int shl = (imm >> 1);
6133 int shift;
6134 uint64_t mask;
6135
6136 mask = MAKE_64BIT_MASK(0, halfbits);
6137 mask <<= shl;
6138 mask = dup_const(vece, mask);
6139
6140 shift = shl - top * halfbits;
6141 if (shift < 0) {
6142 tcg_gen_shri_i64(d, n, -shift);
6143 } else {
6144 tcg_gen_shli_i64(d, n, shift);
6145 }
6146 tcg_gen_andi_i64(d, d, mask);
6147}
6148
6149static void gen_ushll16_i64(TCGv_i64 d, TCGv_i64 n, int64_t imm)
6150{
6151 gen_ushll_i64(MO_16, d, n, imm);
6152}
6153
6154static void gen_ushll32_i64(TCGv_i64 d, TCGv_i64 n, int64_t imm)
6155{
6156 gen_ushll_i64(MO_32, d, n, imm);
6157}
6158
6159static void gen_ushll64_i64(TCGv_i64 d, TCGv_i64 n, int64_t imm)
6160{
6161 gen_ushll_i64(MO_64, d, n, imm);
6162}
6163
6164static void gen_ushll_vec(unsigned vece, TCGv_vec d, TCGv_vec n, int64_t imm)
6165{
6166 int halfbits = 4 << vece;
6167 int top = imm & 1;
6168 int shl = imm >> 1;
6169
6170 if (top) {
6171 if (shl == halfbits) {
6172 TCGv_vec t = tcg_temp_new_vec_matching(d);
6173 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(halfbits, halfbits));
6174 tcg_gen_and_vec(vece, d, n, t);
6175 tcg_temp_free_vec(t);
6176 } else {
6177 tcg_gen_shri_vec(vece, d, n, halfbits);
6178 tcg_gen_shli_vec(vece, d, d, shl);
6179 }
6180 } else {
6181 if (shl == 0) {
6182 TCGv_vec t = tcg_temp_new_vec_matching(d);
6183 tcg_gen_dupi_vec(vece, t, MAKE_64BIT_MASK(0, halfbits));
6184 tcg_gen_and_vec(vece, d, n, t);
6185 tcg_temp_free_vec(t);
6186 } else {
6187 tcg_gen_shli_vec(vece, d, n, halfbits);
6188 tcg_gen_shri_vec(vece, d, d, halfbits - shl);
6189 }
6190 }
6191}
6192
6193static bool do_sve2_shll_tb(DisasContext *s, arg_rri_esz *a,
6194 bool sel, bool uns)
6195{
6196 static const TCGOpcode sshll_list[] = {
6197 INDEX_op_shli_vec, INDEX_op_sari_vec, 0
6198 };
6199 static const TCGOpcode ushll_list[] = {
6200 INDEX_op_shli_vec, INDEX_op_shri_vec, 0
6201 };
6202 static const GVecGen2i ops[2][3] = {
6203 { { .fniv = gen_sshll_vec,
6204 .opt_opc = sshll_list,
6205 .fno = gen_helper_sve2_sshll_h,
6206 .vece = MO_16 },
6207 { .fniv = gen_sshll_vec,
6208 .opt_opc = sshll_list,
6209 .fno = gen_helper_sve2_sshll_s,
6210 .vece = MO_32 },
6211 { .fniv = gen_sshll_vec,
6212 .opt_opc = sshll_list,
6213 .fno = gen_helper_sve2_sshll_d,
6214 .vece = MO_64 } },
6215 { { .fni8 = gen_ushll16_i64,
6216 .fniv = gen_ushll_vec,
6217 .opt_opc = ushll_list,
6218 .fno = gen_helper_sve2_ushll_h,
6219 .vece = MO_16 },
6220 { .fni8 = gen_ushll32_i64,
6221 .fniv = gen_ushll_vec,
6222 .opt_opc = ushll_list,
6223 .fno = gen_helper_sve2_ushll_s,
6224 .vece = MO_32 },
6225 { .fni8 = gen_ushll64_i64,
6226 .fniv = gen_ushll_vec,
6227 .opt_opc = ushll_list,
6228 .fno = gen_helper_sve2_ushll_d,
6229 .vece = MO_64 } },
6230 };
6231
6232 if (a->esz < 0 || a->esz > 2 || !dc_isar_feature(aa64_sve2, s)) {
6233 return false;
6234 }
6235 if (sve_access_check(s)) {
6236 unsigned vsz = vec_full_reg_size(s);
6237 tcg_gen_gvec_2i(vec_full_reg_offset(s, a->rd),
6238 vec_full_reg_offset(s, a->rn),
6239 vsz, vsz, (a->imm << 1) | sel,
6240 &ops[uns][a->esz]);
6241 }
6242 return true;
6243}
6244
6245static bool trans_SSHLLB(DisasContext *s, arg_rri_esz *a)
6246{
6247 return do_sve2_shll_tb(s, a, false, false);
6248}
6249
6250static bool trans_SSHLLT(DisasContext *s, arg_rri_esz *a)
6251{
6252 return do_sve2_shll_tb(s, a, true, false);
6253}
6254
6255static bool trans_USHLLB(DisasContext *s, arg_rri_esz *a)
6256{
6257 return do_sve2_shll_tb(s, a, false, true);
6258}
6259
6260static bool trans_USHLLT(DisasContext *s, arg_rri_esz *a)
6261{
6262 return do_sve2_shll_tb(s, a, true, true);
6263}
cb9c33b8
RH
6264
6265static bool trans_BEXT(DisasContext *s, arg_rrr_esz *a)
6266{
6267 static gen_helper_gvec_3 * const fns[4] = {
6268 gen_helper_sve2_bext_b, gen_helper_sve2_bext_h,
6269 gen_helper_sve2_bext_s, gen_helper_sve2_bext_d,
6270 };
6271 if (!dc_isar_feature(aa64_sve2_bitperm, s)) {
6272 return false;
6273 }
6274 return do_sve2_zzw_ool(s, a, fns[a->esz], 0);
6275}
6276
6277static bool trans_BDEP(DisasContext *s, arg_rrr_esz *a)
6278{
6279 static gen_helper_gvec_3 * const fns[4] = {
6280 gen_helper_sve2_bdep_b, gen_helper_sve2_bdep_h,
6281 gen_helper_sve2_bdep_s, gen_helper_sve2_bdep_d,
6282 };
6283 if (!dc_isar_feature(aa64_sve2_bitperm, s)) {
6284 return false;
6285 }
6286 return do_sve2_zzw_ool(s, a, fns[a->esz], 0);
6287}
6288
6289static bool trans_BGRP(DisasContext *s, arg_rrr_esz *a)
6290{
6291 static gen_helper_gvec_3 * const fns[4] = {
6292 gen_helper_sve2_bgrp_b, gen_helper_sve2_bgrp_h,
6293 gen_helper_sve2_bgrp_s, gen_helper_sve2_bgrp_d,
6294 };
6295 if (!dc_isar_feature(aa64_sve2_bitperm, s)) {
6296 return false;
6297 }
6298 return do_sve2_zzw_ool(s, a, fns[a->esz], 0);
6299}
ed4a6387
RH
6300
6301static bool do_cadd(DisasContext *s, arg_rrr_esz *a, bool sq, bool rot)
6302{
6303 static gen_helper_gvec_3 * const fns[2][4] = {
6304 { gen_helper_sve2_cadd_b, gen_helper_sve2_cadd_h,
6305 gen_helper_sve2_cadd_s, gen_helper_sve2_cadd_d },
6306 { gen_helper_sve2_sqcadd_b, gen_helper_sve2_sqcadd_h,
6307 gen_helper_sve2_sqcadd_s, gen_helper_sve2_sqcadd_d },
6308 };
6309 return do_sve2_zzw_ool(s, a, fns[sq][a->esz], rot);
6310}
6311
6312static bool trans_CADD_rot90(DisasContext *s, arg_rrr_esz *a)
6313{
6314 return do_cadd(s, a, false, false);
6315}
6316
6317static bool trans_CADD_rot270(DisasContext *s, arg_rrr_esz *a)
6318{
6319 return do_cadd(s, a, false, true);
6320}
6321
6322static bool trans_SQCADD_rot90(DisasContext *s, arg_rrr_esz *a)
6323{
6324 return do_cadd(s, a, true, false);
6325}
6326
6327static bool trans_SQCADD_rot270(DisasContext *s, arg_rrr_esz *a)
6328{
6329 return do_cadd(s, a, true, true);
6330}
38650638
RH
6331
6332static bool do_sve2_zzzz_ool(DisasContext *s, arg_rrrr_esz *a,
6333 gen_helper_gvec_4 *fn, int data)
6334{
6335 if (fn == NULL || !dc_isar_feature(aa64_sve2, s)) {
6336 return false;
6337 }
6338 if (sve_access_check(s)) {
6339 gen_gvec_ool_zzzz(s, fn, a->rd, a->rn, a->rm, a->ra, data);
6340 }
6341 return true;
6342}
6343
6344static bool do_abal(DisasContext *s, arg_rrrr_esz *a, bool uns, bool sel)
6345{
6346 static gen_helper_gvec_4 * const fns[2][4] = {
6347 { NULL, gen_helper_sve2_sabal_h,
6348 gen_helper_sve2_sabal_s, gen_helper_sve2_sabal_d },
6349 { NULL, gen_helper_sve2_uabal_h,
6350 gen_helper_sve2_uabal_s, gen_helper_sve2_uabal_d },
6351 };
6352 return do_sve2_zzzz_ool(s, a, fns[uns][a->esz], sel);
6353}
6354
6355static bool trans_SABALB(DisasContext *s, arg_rrrr_esz *a)
6356{
6357 return do_abal(s, a, false, false);
6358}
6359
6360static bool trans_SABALT(DisasContext *s, arg_rrrr_esz *a)
6361{
6362 return do_abal(s, a, false, true);
6363}
6364
6365static bool trans_UABALB(DisasContext *s, arg_rrrr_esz *a)
6366{
6367 return do_abal(s, a, true, false);
6368}
6369
6370static bool trans_UABALT(DisasContext *s, arg_rrrr_esz *a)
6371{
6372 return do_abal(s, a, true, true);
6373}
b8295dfb
RH
6374
6375static bool do_adcl(DisasContext *s, arg_rrrr_esz *a, bool sel)
6376{
6377 static gen_helper_gvec_4 * const fns[2] = {
6378 gen_helper_sve2_adcl_s,
6379 gen_helper_sve2_adcl_d,
6380 };
6381 /*
6382 * Note that in this case the ESZ field encodes both size and sign.
6383 * Split out 'subtract' into bit 1 of the data field for the helper.
6384 */
6385 return do_sve2_zzzz_ool(s, a, fns[a->esz & 1], (a->esz & 2) | sel);
6386}
6387
6388static bool trans_ADCLB(DisasContext *s, arg_rrrr_esz *a)
6389{
6390 return do_adcl(s, a, false);
6391}
6392
6393static bool trans_ADCLT(DisasContext *s, arg_rrrr_esz *a)
6394{
6395 return do_adcl(s, a, true);
6396}