aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-02-23 15:46:13 +0000
committerPeter Maydell <peter.maydell@linaro.org>2018-02-23 18:18:49 +0000
commit1e67984e38937615159b1a0b2128ccda036fc462 (patch)
tree3167852d43bddd626649bcc8c7c1fd1f6281c4e6
parent3c43ccecb3fa76391dc9f96181c165e0ae72ae7e (diff)
aarch64.risu: update Floating-point data-processing (1 source)
This adds the half-precision encoding and shuffles around the RES space to indicate this. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-id: 20180223154613.2096-9-alex.bennee@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--aarch64.risu55
1 files changed, 27 insertions, 28 deletions
diff --git a/aarch64.risu b/aarch64.risu
index 838bded..02e9183 100644
--- a/aarch64.risu
+++ b/aarch64.risu
@@ -2678,49 +2678,48 @@ FCSEL_RES2 A64_V 000 11110 1 type:1 1 rm:5 cond:4 11 rn:5 rd:5
# Floating-point data-processing (1 source)
# 31 30 29 28 27 26 25 24 |23 22| 21 20 15 14 13 12 11 10 9 5 4 0
# M 0 S 1 1 1 1 0 |type | 1 opcode 1 0 0 0 0 Rn Rd
-
+#
+# v8.2 introduced half-precision variants
+@FPDataProc1Src
# FMOV (register) opc = 0
-FMOV A64_V 00011110 type:2 1 0000 00 10000 rn:5 rd:5 \
-!constraints { $type < 2; }
-# UnallocatedEncoding: type >= 2
-FMOV_RES A64_V 00011110 1 type:1 1 0000 00 10000 rn:5 rd:5
-
+FMOV A64_V 00011110 0 type:1 1 0000 00 10000 rn:5 rd:5
+FMOV_RES A64_V80 00011110 1 type:1 1 0000 00 10000 rn:5 rd:5
+FMOV A64_V82 00011110 type:2 1 0000 00 10000 rn:5 rd:5
# FABS (scalar) opc = 1
-FABS A64_V 00011110 type:2 1 0000 01 10000 rn:5 rd:5 \
-!constraints { $type < 2; }
-# UnallocatedEncoding: type >= 2
-FABS_RES A64_V 00011110 1 type:1 1 0000 01 10000 rn:5 rd:5
-
+FABS A64_V 00011110 0 type:1 1 0000 01 10000 rn:5 rd:5
+FABS_RES A64_V80 00011110 1 type:1 1 0000 01 10000 rn:5 rd:5
+FABS A64_V82 00011110 type:2 1 0000 01 10000 rn:5 rd:5
# FNEG (scalar) opc = 2
-FNEG A64_V 00011110 type:2 1 0000 10 10000 rn:5 rd:5 \
-!constraints { $type < 2; }
-# UnallocatedEncoding: type >= 2
-FNEG_RES A64_V 00011110 1 type:1 1 0000 10 10000 rn:5 rd:5
-
+FNEG A64_V 00011110 0 type:1 1 0000 10 10000 rn:5 rd:5
+FNEG_RES A64_V80 00011110 1 type:1 1 0000 10 10000 rn:5 rd:5
+FNEG A64_V82 00011110 type:2 1 0000 10 10000 rn:5 rd:5
# FSQRT (scalar) opc = 3
-FSQRT A64_V 00011110 type:2 1 0000 11 10000 rn:5 rd:5 \
-!constraints { $type < 2; }
-# UnallocatedEncoding: type >= 2
-FSQRT_RES A64_V 00011110 1 type:1 1 0000 11 10000 rn:5 rd:5
-
+FSQRT A64_V 00011110 0 type:1 1 0000 11 10000 rn:5 rd:5
+FSQRT_RES A64_V80 00011110 1 type:1 1 0000 11 10000 rn:5 rd:5
+FSQRT A64_V82 00011110 type:2 1 0000 11 10000 rn:5 rd:5
# FCVT (all forms) - NB: conversion with src = dst is not allowed
-FCVT A64_V 00011110 type:2 1 0001 opc:2 10000 rn:5 rd:5 \
+FCVT A64_V 00011110 type:2 1 0001 opc:2 10000 rn:5 rd:5 \
!constraints { $type != 2 && $opc != 2 && $type != $opc; }
+FCVT A64_V82 00011110 type:2 1 0001 opc:2 10000 rn:5 rd:5 \
+!constraints { $type != $opc; }
# UnallocatedEncoding: type == 2
-FCVT_RES1 A64_V 00011110 10 1 0001 opc:2 10000 rn:5 rd:5
+FCVT_RES1 A64_V80 00011110 10 1 0001 opc:2 10000 rn:5 rd:5
# UnallocatedEncoding: opc == 2
-FCVT_RES2 A64_V 00011110 type:2 1 0001 10 10000 rn:5 rd:5
+FCVT_RES2 A64_V80 00011110 type:2 1 0001 10 10000 rn:5 rd:5
# UnallocatedEncoding: type == opc
-FCVT_RES3 A64_V 00011110 type:2 1 0001 opc:2 10000 rn:5 rd:5 \
+FCVT_RES3 A64_V 00011110 type:2 1 0001 opc:2 10000 rn:5 rd:5 \
!constraints { $type == $opc; }
# FRINT (scalar), all rounding modes
-FRINT A64_V 00011110 type:2 1 001 mode:3 10000 rn:5 rd:5 \
+FRINT A64_V 00011110 type:2 1 001 mode:3 10000 rn:5 rd:5 \
!constraints { $type < 2 && $mode != 5; }
+FRINT A64_V82 00011110 type:2 1 001 mode:3 10000 rn:5 rd:5 \
+!constraints { $mode != 5; }
# UnallocatedEncoding: type >= 2
-FRINT_RES1 A64_V 00011110 1 type:1 1 001 mode:3 10000 rn:5 rd:5
+FRINT_RES1 A64_V80 00011110 1 type:1 1 001 mode:3 10000 rn:5 rd:5
# UnallocatedEncoding: rounding mode == 5
-FRINT_RES2 A64_V 00011110 type:2 1 001 101 10000 rn:5 rd:5
+FRINT_RES2 A64_V 00011110 type:2 1 001 101 10000 rn:5 rd:5
+@
# Floating-point data-processing (2 source)
# 31 30 29 28 27 26 25 24 23 22 21 20 16 15 12 11 10 9 5 4 0