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-set.h | |
parent | 213e8d84735f56e16d4485509ef48ccb6488d4a9 (diff) |
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-set.h')
-rw-r--r-- | tcg/arm/tcg-target-con-set.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tcg/arm/tcg-target-con-set.h b/tcg/arm/tcg-target-con-set.h index 27aced5391..f30b3900e0 100644 --- a/tcg/arm/tcg-target-con-set.h +++ b/tcg/arm/tcg-target-con-set.h @@ -30,6 +30,9 @@ C_O1_I2(r, r, rIN) C_O1_I2(r, r, ri) C_O1_I2(r, rZ, rZ) C_O1_I2(w, w, w) +C_O1_I2(w, w, wO) +C_O1_I2(w, w, wV) +C_O1_I2(w, w, wZ) C_O1_I4(r, r, r, rI, rI) C_O1_I4(r, r, rIN, rIK, 0) C_O2_I1(r, r, l) |