diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-09-05 15:54:33 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-06-04 11:50:11 -0700 |
commit | d74b86ed4ad452eb5069ca0c168c731a5c429127 (patch) | |
tree | 3089f986650ef268b4d17b50d2022bc969c3c835 /tcg/arm/tcg-target-con-str.h | |
parent | 213e8d84735f56e16d4485509ef48ccb6488d4a9 (diff) | |
download | qemu-d74b86ed4ad452eb5069ca0c168c731a5c429127.zip qemu-d74b86ed4ad452eb5069ca0c168c731a5c429127.tar.gz qemu-d74b86ed4ad452eb5069ca0c168c731a5c429127.tar.bz2 |
tcg/arm: Implement minimal vector operations
Implementing dup2, add, sub, and, or, xor as the minimal set.
This allows us to actually enable neon in the header file.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/arm/tcg-target-con-str.h')
-rw-r--r-- | tcg/arm/tcg-target-con-str.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tcg/arm/tcg-target-con-str.h b/tcg/arm/tcg-target-con-str.h index 255a1ae..8f50114 100644 --- a/tcg/arm/tcg-target-con-str.h +++ b/tcg/arm/tcg-target-con-str.h @@ -20,4 +20,6 @@ REGS('w', ALL_VECTOR_REGS) CONST('I', TCG_CT_CONST_ARM) CONST('K', TCG_CT_CONST_INV) CONST('N', TCG_CT_CONST_NEG) +CONST('O', TCG_CT_CONST_ORRI) +CONST('V', TCG_CT_CONST_ANDI) CONST('Z', TCG_CT_CONST_ZERO) |