diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-07-04 08:19:53 -0600 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2025-07-04 15:52:21 +0100 |
| commit | bc65d2bd1cbffff6e0616a1417acf35ad2e10f29 (patch) | |
| tree | e3a0992e73442d1529ce91d4fd48ab52db9d8622 /target/arm/tcg/helper-a64.c | |
| parent | baf450ef83b27394358e294d2bd7f64899e0ef45 (diff) | |
| download | focaccia-qemu-bc65d2bd1cbffff6e0616a1417acf35ad2e10f29.tar.gz focaccia-qemu-bc65d2bd1cbffff6e0616a1417acf35ad2e10f29.zip | |
target/arm: Implement SME2 Multiple and Single SVE Destructive
Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20250704142112.1018902-31-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/tcg/helper-a64.c')
| -rw-r--r-- | target/arm/tcg/helper-a64.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/arm/tcg/helper-a64.c b/target/arm/tcg/helper-a64.c index 4f618ae390..c66d521278 100644 --- a/target/arm/tcg/helper-a64.c +++ b/target/arm/tcg/helper-a64.c @@ -402,6 +402,8 @@ AH_MINMAX_HELPER(vfp_ah_mind, float64, float64, min) AH_MINMAX_HELPER(vfp_ah_maxh, dh_ctype_f16, float16, max) AH_MINMAX_HELPER(vfp_ah_maxs, float32, float32, max) AH_MINMAX_HELPER(vfp_ah_maxd, float64, float64, max) +AH_MINMAX_HELPER(sme2_ah_fmax_b16, bfloat16, bfloat16, max) +AH_MINMAX_HELPER(sme2_ah_fmin_b16, bfloat16, bfloat16, min) /* 64-bit versions of the CRC helpers. Note that although the operation * (and the prototypes of crc32c() and crc32() mean that only the bottom |