]> Git Repo - qemu.git/blame - target/arm/helper-a64.c
target/arm: Decode PAuth within disas_data_proc_2src
[qemu.git] / target / arm / helper-a64.c
CommitLineData
d3e35a1f
AG
1/*
2 * AArch64 specific helpers
3 *
4 * Copyright (c) 2013 Alexander Graf <[email protected]>
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
9 * version 2 of the License, or (at your option) any later version.
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
74c21bd0 20#include "qemu/osdep.h"
d3e35a1f
AG
21#include "cpu.h"
22#include "exec/gdbstub.h"
2ef6175a 23#include "exec/helper-proto.h"
d3e35a1f 24#include "qemu/host-utils.h"
63c91552 25#include "qemu/log.h"
d3e35a1f
AG
26#include "sysemu/sysemu.h"
27#include "qemu/bitops.h"
52e60cdd 28#include "internals.h"
130f2e7d 29#include "qemu/crc32c.h"
1dd089d0
EC
30#include "exec/exec-all.h"
31#include "exec/cpu_ldst.h"
32#include "qemu/int128.h"
1ec182c3 33#include "qemu/atomic128.h"
1dd089d0 34#include "tcg.h"
24f91e81 35#include "fpu/softfloat.h"
130f2e7d 36#include <zlib.h> /* For crc32 */
8220e911
AG
37
38/* C2.4.7 Multiply and divide */
39/* special cases for 0 and LLONG_MIN are mandated by the standard */
40uint64_t HELPER(udiv64)(uint64_t num, uint64_t den)
41{
42 if (den == 0) {
43 return 0;
44 }
45 return num / den;
46}
47
48int64_t HELPER(sdiv64)(int64_t num, int64_t den)
49{
50 if (den == 0) {
51 return 0;
52 }
53 if (num == LLONG_MIN && den == -1) {
54 return LLONG_MIN;
55 }
56 return num / den;
57}
680ead21 58
82e14b02
AG
59uint64_t HELPER(rbit64)(uint64_t x)
60{
42fedbca 61 return revbit64(x);
82e14b02 62}
da7dafe7
CF
63
64/* Convert a softfloat float_relation_ (as returned by
65 * the float*_compare functions) to the correct ARM
66 * NZCV flag state.
67 */
68static inline uint32_t float_rel_to_flags(int res)
69{
70 uint64_t flags;
71 switch (res) {
72 case float_relation_equal:
73 flags = PSTATE_Z | PSTATE_C;
74 break;
75 case float_relation_less:
76 flags = PSTATE_N;
77 break;
78 case float_relation_greater:
79 flags = PSTATE_C;
80 break;
81 case float_relation_unordered:
82 default:
83 flags = PSTATE_C | PSTATE_V;
84 break;
85 }
86 return flags;
87}
88
6c2be133 89uint64_t HELPER(vfp_cmph_a64)(uint32_t x, uint32_t y, void *fp_status)
7a192925
AB
90{
91 return float_rel_to_flags(float16_compare_quiet(x, y, fp_status));
92}
93
6c2be133 94uint64_t HELPER(vfp_cmpeh_a64)(uint32_t x, uint32_t y, void *fp_status)
7a192925
AB
95{
96 return float_rel_to_flags(float16_compare(x, y, fp_status));
97}
98
da7dafe7
CF
99uint64_t HELPER(vfp_cmps_a64)(float32 x, float32 y, void *fp_status)
100{
101 return float_rel_to_flags(float32_compare_quiet(x, y, fp_status));
102}
103
104uint64_t HELPER(vfp_cmpes_a64)(float32 x, float32 y, void *fp_status)
105{
106 return float_rel_to_flags(float32_compare(x, y, fp_status));
107}
108
109uint64_t HELPER(vfp_cmpd_a64)(float64 x, float64 y, void *fp_status)
110{
111 return float_rel_to_flags(float64_compare_quiet(x, y, fp_status));
112}
113
114uint64_t HELPER(vfp_cmped_a64)(float64 x, float64 y, void *fp_status)
115{
116 return float_rel_to_flags(float64_compare(x, y, fp_status));
117}
7c51048f 118
f5e51e7f
PM
119float32 HELPER(vfp_mulxs)(float32 a, float32 b, void *fpstp)
120{
121 float_status *fpst = fpstp;
122
dabf0058
XH
123 a = float32_squash_input_denormal(a, fpst);
124 b = float32_squash_input_denormal(b, fpst);
125
f5e51e7f
PM
126 if ((float32_is_zero(a) && float32_is_infinity(b)) ||
127 (float32_is_infinity(a) && float32_is_zero(b))) {
128 /* 2.0 with the sign bit set to sign(A) XOR sign(B) */
129 return make_float32((1U << 30) |
130 ((float32_val(a) ^ float32_val(b)) & (1U << 31)));
131 }
132 return float32_mul(a, b, fpst);
133}
134
135float64 HELPER(vfp_mulxd)(float64 a, float64 b, void *fpstp)
136{
137 float_status *fpst = fpstp;
138
dabf0058
XH
139 a = float64_squash_input_denormal(a, fpst);
140 b = float64_squash_input_denormal(b, fpst);
141
f5e51e7f
PM
142 if ((float64_is_zero(a) && float64_is_infinity(b)) ||
143 (float64_is_infinity(a) && float64_is_zero(b))) {
144 /* 2.0 with the sign bit set to sign(A) XOR sign(B) */
145 return make_float64((1ULL << 62) |
146 ((float64_val(a) ^ float64_val(b)) & (1ULL << 63)));
147 }
148 return float64_mul(a, b, fpst);
149}
150
7c51048f
MM
151uint64_t HELPER(simd_tbl)(CPUARMState *env, uint64_t result, uint64_t indices,
152 uint32_t rn, uint32_t numregs)
153{
154 /* Helper function for SIMD TBL and TBX. We have to do the table
155 * lookup part for the 64 bits worth of indices we're passed in.
156 * result is the initial results vector (either zeroes for TBL
157 * or some guest values for TBX), rn the register number where
158 * the table starts, and numregs the number of registers in the table.
159 * We return the results of the lookups.
160 */
161 int shift;
162
163 for (shift = 0; shift < 64; shift += 8) {
164 int index = extract64(indices, shift, 8);
165 if (index < 16 * numregs) {
166 /* Convert index (a byte offset into the virtual table
167 * which is a series of 128-bit vectors concatenated)
9a2b5256 168 * into the correct register element plus a bit offset
7c51048f
MM
169 * into that element, bearing in mind that the table
170 * can wrap around from V31 to V0.
171 */
172 int elt = (rn * 2 + (index >> 3)) % 64;
173 int bitidx = (index & 7) * 8;
9a2b5256
RH
174 uint64_t *q = aa64_vfp_qreg(env, elt >> 1);
175 uint64_t val = extract64(q[elt & 1], bitidx, 8);
7c51048f
MM
176
177 result = deposit64(result, shift, 8, val);
178 }
179 }
180 return result;
181}
8908f4d1
AB
182
183/* 64bit/double versions of the neon float compare functions */
184uint64_t HELPER(neon_ceq_f64)(float64 a, float64 b, void *fpstp)
185{
186 float_status *fpst = fpstp;
187 return -float64_eq_quiet(a, b, fpst);
188}
189
190uint64_t HELPER(neon_cge_f64)(float64 a, float64 b, void *fpstp)
191{
192 float_status *fpst = fpstp;
193 return -float64_le(b, a, fpst);
194}
195
196uint64_t HELPER(neon_cgt_f64)(float64 a, float64 b, void *fpstp)
197{
198 float_status *fpst = fpstp;
199 return -float64_lt(b, a, fpst);
200}
057d5f62
PM
201
202/* Reciprocal step and sqrt step. Note that unlike the A32/T32
203 * versions, these do a fully fused multiply-add or
204 * multiply-add-and-halve.
205 */
026e2d6e
AB
206#define float16_two make_float16(0x4000)
207#define float16_three make_float16(0x4200)
208#define float16_one_point_five make_float16(0x3e00)
209
057d5f62
PM
210#define float32_two make_float32(0x40000000)
211#define float32_three make_float32(0x40400000)
212#define float32_one_point_five make_float32(0x3fc00000)
213
214#define float64_two make_float64(0x4000000000000000ULL)
215#define float64_three make_float64(0x4008000000000000ULL)
216#define float64_one_point_five make_float64(0x3FF8000000000000ULL)
217
6c2be133 218uint32_t HELPER(recpsf_f16)(uint32_t a, uint32_t b, void *fpstp)
026e2d6e
AB
219{
220 float_status *fpst = fpstp;
221
222 a = float16_squash_input_denormal(a, fpst);
223 b = float16_squash_input_denormal(b, fpst);
224
225 a = float16_chs(a);
226 if ((float16_is_infinity(a) && float16_is_zero(b)) ||
227 (float16_is_infinity(b) && float16_is_zero(a))) {
228 return float16_two;
229 }
230 return float16_muladd(a, b, float16_two, 0, fpst);
231}
232
057d5f62
PM
233float32 HELPER(recpsf_f32)(float32 a, float32 b, void *fpstp)
234{
235 float_status *fpst = fpstp;
236
a8eb6e19
PM
237 a = float32_squash_input_denormal(a, fpst);
238 b = float32_squash_input_denormal(b, fpst);
239
057d5f62
PM
240 a = float32_chs(a);
241 if ((float32_is_infinity(a) && float32_is_zero(b)) ||
242 (float32_is_infinity(b) && float32_is_zero(a))) {
243 return float32_two;
244 }
245 return float32_muladd(a, b, float32_two, 0, fpst);
246}
247
248float64 HELPER(recpsf_f64)(float64 a, float64 b, void *fpstp)
249{
250 float_status *fpst = fpstp;
251
a8eb6e19
PM
252 a = float64_squash_input_denormal(a, fpst);
253 b = float64_squash_input_denormal(b, fpst);
254
057d5f62
PM
255 a = float64_chs(a);
256 if ((float64_is_infinity(a) && float64_is_zero(b)) ||
257 (float64_is_infinity(b) && float64_is_zero(a))) {
258 return float64_two;
259 }
260 return float64_muladd(a, b, float64_two, 0, fpst);
261}
262
6c2be133 263uint32_t HELPER(rsqrtsf_f16)(uint32_t a, uint32_t b, void *fpstp)
026e2d6e
AB
264{
265 float_status *fpst = fpstp;
266
267 a = float16_squash_input_denormal(a, fpst);
268 b = float16_squash_input_denormal(b, fpst);
269
270 a = float16_chs(a);
271 if ((float16_is_infinity(a) && float16_is_zero(b)) ||
272 (float16_is_infinity(b) && float16_is_zero(a))) {
273 return float16_one_point_five;
274 }
275 return float16_muladd(a, b, float16_three, float_muladd_halve_result, fpst);
276}
277
057d5f62
PM
278float32 HELPER(rsqrtsf_f32)(float32 a, float32 b, void *fpstp)
279{
280 float_status *fpst = fpstp;
281
a8eb6e19
PM
282 a = float32_squash_input_denormal(a, fpst);
283 b = float32_squash_input_denormal(b, fpst);
284
057d5f62
PM
285 a = float32_chs(a);
286 if ((float32_is_infinity(a) && float32_is_zero(b)) ||
287 (float32_is_infinity(b) && float32_is_zero(a))) {
288 return float32_one_point_five;
289 }
290 return float32_muladd(a, b, float32_three, float_muladd_halve_result, fpst);
291}
292
293float64 HELPER(rsqrtsf_f64)(float64 a, float64 b, void *fpstp)
294{
295 float_status *fpst = fpstp;
296
a8eb6e19
PM
297 a = float64_squash_input_denormal(a, fpst);
298 b = float64_squash_input_denormal(b, fpst);
299
057d5f62
PM
300 a = float64_chs(a);
301 if ((float64_is_infinity(a) && float64_is_zero(b)) ||
302 (float64_is_infinity(b) && float64_is_zero(a))) {
303 return float64_one_point_five;
304 }
305 return float64_muladd(a, b, float64_three, float_muladd_halve_result, fpst);
306}
6781fa11
PM
307
308/* Pairwise long add: add pairs of adjacent elements into
309 * double-width elements in the result (eg _s8 is an 8x8->16 op)
310 */
311uint64_t HELPER(neon_addlp_s8)(uint64_t a)
312{
313 uint64_t nsignmask = 0x0080008000800080ULL;
314 uint64_t wsignmask = 0x8000800080008000ULL;
315 uint64_t elementmask = 0x00ff00ff00ff00ffULL;
316 uint64_t tmp1, tmp2;
317 uint64_t res, signres;
318
319 /* Extract odd elements, sign extend each to a 16 bit field */
320 tmp1 = a & elementmask;
321 tmp1 ^= nsignmask;
322 tmp1 |= wsignmask;
323 tmp1 = (tmp1 - nsignmask) ^ wsignmask;
324 /* Ditto for the even elements */
325 tmp2 = (a >> 8) & elementmask;
326 tmp2 ^= nsignmask;
327 tmp2 |= wsignmask;
328 tmp2 = (tmp2 - nsignmask) ^ wsignmask;
329
330 /* calculate the result by summing bits 0..14, 16..22, etc,
331 * and then adjusting the sign bits 15, 23, etc manually.
332 * This ensures the addition can't overflow the 16 bit field.
333 */
334 signres = (tmp1 ^ tmp2) & wsignmask;
335 res = (tmp1 & ~wsignmask) + (tmp2 & ~wsignmask);
336 res ^= signres;
337
338 return res;
339}
340
341uint64_t HELPER(neon_addlp_u8)(uint64_t a)
342{
343 uint64_t tmp;
344
345 tmp = a & 0x00ff00ff00ff00ffULL;
346 tmp += (a >> 8) & 0x00ff00ff00ff00ffULL;
347 return tmp;
348}
349
350uint64_t HELPER(neon_addlp_s16)(uint64_t a)
351{
352 int32_t reslo, reshi;
353
354 reslo = (int32_t)(int16_t)a + (int32_t)(int16_t)(a >> 16);
355 reshi = (int32_t)(int16_t)(a >> 32) + (int32_t)(int16_t)(a >> 48);
356
357 return (uint32_t)reslo | (((uint64_t)reshi) << 32);
358}
359
360uint64_t HELPER(neon_addlp_u16)(uint64_t a)
361{
362 uint64_t tmp;
363
364 tmp = a & 0x0000ffff0000ffffULL;
365 tmp += (a >> 16) & 0x0000ffff0000ffffULL;
366 return tmp;
367}
8f0c6758
AB
368
369/* Floating-point reciprocal exponent - see FPRecpX in ARM ARM */
6c2be133 370uint32_t HELPER(frecpx_f16)(uint32_t a, void *fpstp)
98695028
AB
371{
372 float_status *fpst = fpstp;
373 uint16_t val16, sbit;
374 int16_t exp;
375
376 if (float16_is_any_nan(a)) {
377 float16 nan = a;
378 if (float16_is_signaling_nan(a, fpst)) {
379 float_raise(float_flag_invalid, fpst);
d7ecc062 380 nan = float16_silence_nan(a, fpst);
98695028
AB
381 }
382 if (fpst->default_nan_mode) {
383 nan = float16_default_nan(fpst);
384 }
385 return nan;
386 }
387
2cfbf36e
PM
388 a = float16_squash_input_denormal(a, fpst);
389
98695028
AB
390 val16 = float16_val(a);
391 sbit = 0x8000 & val16;
392 exp = extract32(val16, 10, 5);
393
394 if (exp == 0) {
395 return make_float16(deposit32(sbit, 10, 5, 0x1e));
396 } else {
397 return make_float16(deposit32(sbit, 10, 5, ~exp));
398 }
399}
400
8f0c6758
AB
401float32 HELPER(frecpx_f32)(float32 a, void *fpstp)
402{
403 float_status *fpst = fpstp;
404 uint32_t val32, sbit;
405 int32_t exp;
406
407 if (float32_is_any_nan(a)) {
408 float32 nan = a;
af39bc8c 409 if (float32_is_signaling_nan(a, fpst)) {
8f0c6758 410 float_raise(float_flag_invalid, fpst);
d7ecc062 411 nan = float32_silence_nan(a, fpst);
8f0c6758
AB
412 }
413 if (fpst->default_nan_mode) {
af39bc8c 414 nan = float32_default_nan(fpst);
8f0c6758
AB
415 }
416 return nan;
417 }
418
2cfbf36e
PM
419 a = float32_squash_input_denormal(a, fpst);
420
8f0c6758
AB
421 val32 = float32_val(a);
422 sbit = 0x80000000ULL & val32;
423 exp = extract32(val32, 23, 8);
424
425 if (exp == 0) {
426 return make_float32(sbit | (0xfe << 23));
427 } else {
428 return make_float32(sbit | (~exp & 0xff) << 23);
429 }
430}
431
432float64 HELPER(frecpx_f64)(float64 a, void *fpstp)
433{
434 float_status *fpst = fpstp;
435 uint64_t val64, sbit;
436 int64_t exp;
437
438 if (float64_is_any_nan(a)) {
439 float64 nan = a;
af39bc8c 440 if (float64_is_signaling_nan(a, fpst)) {
8f0c6758 441 float_raise(float_flag_invalid, fpst);
d7ecc062 442 nan = float64_silence_nan(a, fpst);
8f0c6758
AB
443 }
444 if (fpst->default_nan_mode) {
af39bc8c 445 nan = float64_default_nan(fpst);
8f0c6758
AB
446 }
447 return nan;
448 }
449
2cfbf36e
PM
450 a = float64_squash_input_denormal(a, fpst);
451
8f0c6758
AB
452 val64 = float64_val(a);
453 sbit = 0x8000000000000000ULL & val64;
454 exp = extract64(float64_val(a), 52, 11);
455
456 if (exp == 0) {
457 return make_float64(sbit | (0x7feULL << 52));
458 } else {
459 return make_float64(sbit | (~exp & 0x7ffULL) << 52);
460 }
461}
5553955e
PM
462
463float32 HELPER(fcvtx_f64_to_f32)(float64 a, CPUARMState *env)
464{
465 /* Von Neumann rounding is implemented by using round-to-zero
466 * and then setting the LSB of the result if Inexact was raised.
467 */
468 float32 r;
469 float_status *fpst = &env->vfp.fp_status;
470 float_status tstat = *fpst;
471 int exflags;
472
473 set_float_rounding_mode(float_round_to_zero, &tstat);
474 set_float_exception_flags(0, &tstat);
475 r = float64_to_float32(a, &tstat);
5553955e
PM
476 exflags = get_float_exception_flags(&tstat);
477 if (exflags & float_flag_inexact) {
478 r = make_float32(float32_val(r) | 1);
479 }
480 exflags |= get_float_exception_flags(fpst);
481 set_float_exception_flags(exflags, fpst);
482 return r;
483}
52e60cdd 484
130f2e7d
PM
485/* 64-bit versions of the CRC helpers. Note that although the operation
486 * (and the prototypes of crc32c() and crc32() mean that only the bottom
487 * 32 bits of the accumulator and result are used, we pass and return
488 * uint64_t for convenience of the generated code. Unlike the 32-bit
489 * instruction set versions, val may genuinely have 64 bits of data in it.
490 * The upper bytes of val (above the number specified by 'bytes') must have
491 * been zeroed out by the caller.
492 */
493uint64_t HELPER(crc32_64)(uint64_t acc, uint64_t val, uint32_t bytes)
494{
495 uint8_t buf[8];
496
497 stq_le_p(buf, val);
498
499 /* zlib crc32 converts the accumulator and output to one's complement. */
500 return crc32(acc ^ 0xffffffff, buf, bytes) ^ 0xffffffff;
501}
502
503uint64_t HELPER(crc32c_64)(uint64_t acc, uint64_t val, uint32_t bytes)
504{
505 uint8_t buf[8];
506
507 stq_le_p(buf, val);
508
509 /* Linux crc32c converts the output to one's complement. */
510 return crc32c(acc, buf, bytes) ^ 0xffffffff;
511}
1dd089d0 512
1ec182c3
RH
513uint64_t HELPER(paired_cmpxchg64_le)(CPUARMState *env, uint64_t addr,
514 uint64_t new_lo, uint64_t new_hi)
1dd089d0 515{
1ec182c3
RH
516 Int128 cmpv = int128_make128(env->exclusive_val, env->exclusive_high);
517 Int128 newv = int128_make128(new_lo, new_hi);
518 Int128 oldv;
519 uintptr_t ra = GETPC();
520 uint64_t o0, o1;
1dd089d0
EC
521 bool success;
522
1dd089d0 523#ifdef CONFIG_USER_ONLY
1ec182c3
RH
524 /* ??? Enforce alignment. */
525 uint64_t *haddr = g2h(addr);
526
527 helper_retaddr = ra;
528 o0 = ldq_le_p(haddr + 0);
529 o1 = ldq_le_p(haddr + 1);
530 oldv = int128_make128(o0, o1);
531
532 success = int128_eq(oldv, cmpv);
533 if (success) {
534 stq_le_p(haddr + 0, int128_getlo(newv));
535 stq_le_p(haddr + 1, int128_gethi(newv));
536 }
537 helper_retaddr = 0;
1dd089d0 538#else
1ec182c3
RH
539 int mem_idx = cpu_mmu_index(env, false);
540 TCGMemOpIdx oi0 = make_memop_idx(MO_LEQ | MO_ALIGN_16, mem_idx);
541 TCGMemOpIdx oi1 = make_memop_idx(MO_LEQ, mem_idx);
542
543 o0 = helper_le_ldq_mmu(env, addr + 0, oi0, ra);
544 o1 = helper_le_ldq_mmu(env, addr + 8, oi1, ra);
545 oldv = int128_make128(o0, o1);
546
547 success = int128_eq(oldv, cmpv);
548 if (success) {
549 helper_le_stq_mmu(env, addr + 0, int128_getlo(newv), oi1, ra);
550 helper_le_stq_mmu(env, addr + 8, int128_gethi(newv), oi1, ra);
1dd089d0 551 }
1ec182c3 552#endif
1dd089d0
EC
553
554 return !success;
555}
556
2399d4e7
EC
557uint64_t HELPER(paired_cmpxchg64_le_parallel)(CPUARMState *env, uint64_t addr,
558 uint64_t new_lo, uint64_t new_hi)
1dd089d0 559{
1dd089d0 560 Int128 oldv, cmpv, newv;
1ec182c3 561 uintptr_t ra = GETPC();
1dd089d0 562 bool success;
1ec182c3
RH
563 int mem_idx;
564 TCGMemOpIdx oi;
1dd089d0 565
62823083 566 assert(HAVE_CMPXCHG128);
1dd089d0 567
1ec182c3
RH
568 mem_idx = cpu_mmu_index(env, false);
569 oi = make_memop_idx(MO_LEQ | MO_ALIGN_16, mem_idx);
570
571 cmpv = int128_make128(env->exclusive_val, env->exclusive_high);
572 newv = int128_make128(new_lo, new_hi);
573 oldv = helper_atomic_cmpxchgo_le_mmu(env, addr, cmpv, newv, oi, ra);
574
575 success = int128_eq(oldv, cmpv);
1dd089d0
EC
576 return !success;
577}
2399d4e7
EC
578
579uint64_t HELPER(paired_cmpxchg64_be)(CPUARMState *env, uint64_t addr,
580 uint64_t new_lo, uint64_t new_hi)
581{
1ec182c3
RH
582 /*
583 * High and low need to be switched here because this is not actually a
584 * 128bit store but two doublewords stored consecutively
585 */
586 Int128 cmpv = int128_make128(env->exclusive_val, env->exclusive_high);
587 Int128 newv = int128_make128(new_lo, new_hi);
588 Int128 oldv;
589 uintptr_t ra = GETPC();
590 uint64_t o0, o1;
591 bool success;
592
593#ifdef CONFIG_USER_ONLY
594 /* ??? Enforce alignment. */
595 uint64_t *haddr = g2h(addr);
596
597 helper_retaddr = ra;
598 o1 = ldq_be_p(haddr + 0);
599 o0 = ldq_be_p(haddr + 1);
600 oldv = int128_make128(o0, o1);
601
602 success = int128_eq(oldv, cmpv);
603 if (success) {
604 stq_be_p(haddr + 0, int128_gethi(newv));
605 stq_be_p(haddr + 1, int128_getlo(newv));
606 }
607 helper_retaddr = 0;
608#else
609 int mem_idx = cpu_mmu_index(env, false);
610 TCGMemOpIdx oi0 = make_memop_idx(MO_BEQ | MO_ALIGN_16, mem_idx);
611 TCGMemOpIdx oi1 = make_memop_idx(MO_BEQ, mem_idx);
612
613 o1 = helper_be_ldq_mmu(env, addr + 0, oi0, ra);
614 o0 = helper_be_ldq_mmu(env, addr + 8, oi1, ra);
615 oldv = int128_make128(o0, o1);
616
617 success = int128_eq(oldv, cmpv);
618 if (success) {
619 helper_be_stq_mmu(env, addr + 0, int128_gethi(newv), oi1, ra);
620 helper_be_stq_mmu(env, addr + 8, int128_getlo(newv), oi1, ra);
621 }
622#endif
623
624 return !success;
2399d4e7
EC
625}
626
627uint64_t HELPER(paired_cmpxchg64_be_parallel)(CPUARMState *env, uint64_t addr,
1ec182c3 628 uint64_t new_lo, uint64_t new_hi)
2399d4e7 629{
1ec182c3
RH
630 Int128 oldv, cmpv, newv;
631 uintptr_t ra = GETPC();
632 bool success;
633 int mem_idx;
634 TCGMemOpIdx oi;
635
62823083 636 assert(HAVE_CMPXCHG128);
1ec182c3
RH
637
638 mem_idx = cpu_mmu_index(env, false);
639 oi = make_memop_idx(MO_BEQ | MO_ALIGN_16, mem_idx);
640
641 /*
642 * High and low need to be switched here because this is not actually a
643 * 128bit store but two doublewords stored consecutively
644 */
645 cmpv = int128_make128(env->exclusive_high, env->exclusive_val);
646 newv = int128_make128(new_hi, new_lo);
647 oldv = helper_atomic_cmpxchgo_be_mmu(env, addr, cmpv, newv, oi, ra);
648
649 success = int128_eq(oldv, cmpv);
650 return !success;
2399d4e7 651}
807cdd50 652
44ac14b0
RH
653/* Writes back the old data into Rs. */
654void HELPER(casp_le_parallel)(CPUARMState *env, uint32_t rs, uint64_t addr,
655 uint64_t new_lo, uint64_t new_hi)
656{
44ac14b0 657 Int128 oldv, cmpv, newv;
1ec182c3
RH
658 uintptr_t ra = GETPC();
659 int mem_idx;
660 TCGMemOpIdx oi;
661
62823083 662 assert(HAVE_CMPXCHG128);
1ec182c3
RH
663
664 mem_idx = cpu_mmu_index(env, false);
665 oi = make_memop_idx(MO_LEQ | MO_ALIGN_16, mem_idx);
44ac14b0
RH
666
667 cmpv = int128_make128(env->xregs[rs], env->xregs[rs + 1]);
668 newv = int128_make128(new_lo, new_hi);
44ac14b0
RH
669 oldv = helper_atomic_cmpxchgo_le_mmu(env, addr, cmpv, newv, oi, ra);
670
671 env->xregs[rs] = int128_getlo(oldv);
672 env->xregs[rs + 1] = int128_gethi(oldv);
44ac14b0
RH
673}
674
675void HELPER(casp_be_parallel)(CPUARMState *env, uint32_t rs, uint64_t addr,
676 uint64_t new_hi, uint64_t new_lo)
677{
44ac14b0 678 Int128 oldv, cmpv, newv;
1ec182c3
RH
679 uintptr_t ra = GETPC();
680 int mem_idx;
681 TCGMemOpIdx oi;
682
62823083 683 assert(HAVE_CMPXCHG128);
1ec182c3
RH
684
685 mem_idx = cpu_mmu_index(env, false);
686 oi = make_memop_idx(MO_LEQ | MO_ALIGN_16, mem_idx);
44ac14b0
RH
687
688 cmpv = int128_make128(env->xregs[rs + 1], env->xregs[rs]);
689 newv = int128_make128(new_lo, new_hi);
44ac14b0
RH
690 oldv = helper_atomic_cmpxchgo_be_mmu(env, addr, cmpv, newv, oi, ra);
691
692 env->xregs[rs + 1] = int128_getlo(oldv);
693 env->xregs[rs] = int128_gethi(oldv);
44ac14b0
RH
694}
695
807cdd50
AB
696/*
697 * AdvSIMD half-precision
698 */
699
700#define ADVSIMD_HELPER(name, suffix) HELPER(glue(glue(advsimd_, name), suffix))
701
702#define ADVSIMD_HALFOP(name) \
6c2be133 703uint32_t ADVSIMD_HELPER(name, h)(uint32_t a, uint32_t b, void *fpstp) \
807cdd50
AB
704{ \
705 float_status *fpst = fpstp; \
706 return float16_ ## name(a, b, fpst); \
707}
708
37208734
AB
709ADVSIMD_HALFOP(add)
710ADVSIMD_HALFOP(sub)
711ADVSIMD_HALFOP(mul)
712ADVSIMD_HALFOP(div)
807cdd50
AB
713ADVSIMD_HALFOP(min)
714ADVSIMD_HALFOP(max)
715ADVSIMD_HALFOP(minnum)
716ADVSIMD_HALFOP(maxnum)
d32adeae 717
6089030c
AB
718#define ADVSIMD_TWOHALFOP(name) \
719uint32_t ADVSIMD_HELPER(name, 2h)(uint32_t two_a, uint32_t two_b, void *fpstp) \
720{ \
721 float16 a1, a2, b1, b2; \
722 uint32_t r1, r2; \
723 float_status *fpst = fpstp; \
724 a1 = extract32(two_a, 0, 16); \
725 a2 = extract32(two_a, 16, 16); \
726 b1 = extract32(two_b, 0, 16); \
727 b2 = extract32(two_b, 16, 16); \
728 r1 = float16_ ## name(a1, b1, fpst); \
729 r2 = float16_ ## name(a2, b2, fpst); \
730 return deposit32(r1, 16, 16, r2); \
731}
732
733ADVSIMD_TWOHALFOP(add)
734ADVSIMD_TWOHALFOP(sub)
735ADVSIMD_TWOHALFOP(mul)
736ADVSIMD_TWOHALFOP(div)
737ADVSIMD_TWOHALFOP(min)
738ADVSIMD_TWOHALFOP(max)
739ADVSIMD_TWOHALFOP(minnum)
740ADVSIMD_TWOHALFOP(maxnum)
741
2deb992b 742/* Data processing - scalar floating-point and advanced SIMD */
6089030c 743static float16 float16_mulx(float16 a, float16 b, void *fpstp)
2deb992b
AB
744{
745 float_status *fpst = fpstp;
746
747 a = float16_squash_input_denormal(a, fpst);
748 b = float16_squash_input_denormal(b, fpst);
749
750 if ((float16_is_zero(a) && float16_is_infinity(b)) ||
751 (float16_is_infinity(a) && float16_is_zero(b))) {
752 /* 2.0 with the sign bit set to sign(A) XOR sign(B) */
753 return make_float16((1U << 14) |
754 ((float16_val(a) ^ float16_val(b)) & (1U << 15)));
755 }
756 return float16_mul(a, b, fpst);
757}
758
6089030c
AB
759ADVSIMD_HALFOP(mulx)
760ADVSIMD_TWOHALFOP(mulx)
761
2deb992b 762/* fused multiply-accumulate */
6c2be133
RH
763uint32_t HELPER(advsimd_muladdh)(uint32_t a, uint32_t b, uint32_t c,
764 void *fpstp)
2deb992b
AB
765{
766 float_status *fpst = fpstp;
767 return float16_muladd(a, b, c, 0, fpst);
768}
769
6089030c
AB
770uint32_t HELPER(advsimd_muladd2h)(uint32_t two_a, uint32_t two_b,
771 uint32_t two_c, void *fpstp)
772{
773 float_status *fpst = fpstp;
774 float16 a1, a2, b1, b2, c1, c2;
775 uint32_t r1, r2;
776 a1 = extract32(two_a, 0, 16);
777 a2 = extract32(two_a, 16, 16);
778 b1 = extract32(two_b, 0, 16);
779 b2 = extract32(two_b, 16, 16);
780 c1 = extract32(two_c, 0, 16);
781 c2 = extract32(two_c, 16, 16);
782 r1 = float16_muladd(a1, b1, c1, 0, fpst);
783 r2 = float16_muladd(a2, b2, c2, 0, fpst);
784 return deposit32(r1, 16, 16, r2);
785}
786
d32adeae
AB
787/*
788 * Floating point comparisons produce an integer result. Softfloat
789 * routines return float_relation types which we convert to the 0/-1
790 * Neon requires.
791 */
792
793#define ADVSIMD_CMPRES(test) (test) ? 0xffff : 0
794
6c2be133 795uint32_t HELPER(advsimd_ceq_f16)(uint32_t a, uint32_t b, void *fpstp)
d32adeae
AB
796{
797 float_status *fpst = fpstp;
798 int compare = float16_compare_quiet(a, b, fpst);
799 return ADVSIMD_CMPRES(compare == float_relation_equal);
800}
801
6c2be133 802uint32_t HELPER(advsimd_cge_f16)(uint32_t a, uint32_t b, void *fpstp)
d32adeae
AB
803{
804 float_status *fpst = fpstp;
805 int compare = float16_compare(a, b, fpst);
806 return ADVSIMD_CMPRES(compare == float_relation_greater ||
807 compare == float_relation_equal);
808}
809
6c2be133 810uint32_t HELPER(advsimd_cgt_f16)(uint32_t a, uint32_t b, void *fpstp)
d32adeae
AB
811{
812 float_status *fpst = fpstp;
813 int compare = float16_compare(a, b, fpst);
814 return ADVSIMD_CMPRES(compare == float_relation_greater);
815}
816
6c2be133 817uint32_t HELPER(advsimd_acge_f16)(uint32_t a, uint32_t b, void *fpstp)
d32adeae
AB
818{
819 float_status *fpst = fpstp;
820 float16 f0 = float16_abs(a);
821 float16 f1 = float16_abs(b);
822 int compare = float16_compare(f0, f1, fpst);
823 return ADVSIMD_CMPRES(compare == float_relation_greater ||
824 compare == float_relation_equal);
825}
826
6c2be133 827uint32_t HELPER(advsimd_acgt_f16)(uint32_t a, uint32_t b, void *fpstp)
d32adeae
AB
828{
829 float_status *fpst = fpstp;
830 float16 f0 = float16_abs(a);
831 float16 f1 = float16_abs(b);
832 int compare = float16_compare(f0, f1, fpst);
833 return ADVSIMD_CMPRES(compare == float_relation_greater);
834}
6109aea2
AB
835
836/* round to integral */
6c2be133 837uint32_t HELPER(advsimd_rinth_exact)(uint32_t x, void *fp_status)
6109aea2
AB
838{
839 return float16_round_to_int(x, fp_status);
840}
841
6c2be133 842uint32_t HELPER(advsimd_rinth)(uint32_t x, void *fp_status)
6109aea2
AB
843{
844 int old_flags = get_float_exception_flags(fp_status), new_flags;
845 float16 ret;
846
847 ret = float16_round_to_int(x, fp_status);
848
849 /* Suppress any inexact exceptions the conversion produced */
850 if (!(old_flags & float_flag_inexact)) {
851 new_flags = get_float_exception_flags(fp_status);
852 set_float_exception_flags(new_flags & ~float_flag_inexact, fp_status);
853 }
854
855 return ret;
856}
2df58130
AB
857
858/*
859 * Half-precision floating point conversion functions
860 *
861 * There are a multitude of conversion functions with various
862 * different rounding modes. This is dealt with by the calling code
863 * setting the mode appropriately before calling the helper.
864 */
865
6c2be133 866uint32_t HELPER(advsimd_f16tosinth)(uint32_t a, void *fpstp)
2df58130
AB
867{
868 float_status *fpst = fpstp;
869
870 /* Invalid if we are passed a NaN */
871 if (float16_is_any_nan(a)) {
872 float_raise(float_flag_invalid, fpst);
873 return 0;
874 }
875 return float16_to_int16(a, fpst);
876}
877
6c2be133 878uint32_t HELPER(advsimd_f16touinth)(uint32_t a, void *fpstp)
2df58130
AB
879{
880 float_status *fpst = fpstp;
881
882 /* Invalid if we are passed a NaN */
883 if (float16_is_any_nan(a)) {
884 float_raise(float_flag_invalid, fpst);
885 return 0;
886 }
887 return float16_to_uint16(a, fpst);
888}
b96a54c7
AB
889
890/*
891 * Square Root and Reciprocal square root
892 */
893
6c2be133 894uint32_t HELPER(sqrt_f16)(uint32_t a, void *fpstp)
b96a54c7
AB
895{
896 float_status *s = fpstp;
897
898 return float16_sqrt(a, s);
899}
900
901
This page took 0.395833 seconds and 4 git commands to generate.