diff options
author | Richard Henderson | 2019-03-18 16:32:44 +0100 |
---|---|---|
committer | Richard Henderson | 2019-05-13 23:44:03 +0200 |
commit | e7632cfa8b76cdbbc1c76e8737338ef5844e7d60 (patch) | |
tree | 3640a25371b80c87e70b37688d529eeb0dd70282 /tcg/i386 | |
parent | tcg: Support cross-class moves without instruction support (diff) | |
download | qemu-e7632cfa8b76cdbbc1c76e8737338ef5844e7d60.tar.gz qemu-e7632cfa8b76cdbbc1c76e8737338ef5844e7d60.tar.xz qemu-e7632cfa8b76cdbbc1c76e8737338ef5844e7d60.zip |
tcg: Promote tcg_out_{dup,dupi}_vec to backend interface
The i386 backend already has these functions, and the aarch64 backend
could easily split out one. Nothing is done with these functions yet,
but this will aid register allocation of INDEX_op_dup_vec in a later patch.
Adjust the aarch64 tcg_out_dupi_vec signature to match the new interface.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/i386')
-rw-r--r-- | tcg/i386/tcg-target.inc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c index 1198c76392..0d621670c7 100644 --- a/tcg/i386/tcg-target.inc.c +++ b/tcg/i386/tcg-target.inc.c @@ -855,7 +855,7 @@ static bool tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg) return true; } -static void tcg_out_dup_vec(TCGContext *s, TCGType type, unsigned vece, +static bool tcg_out_dup_vec(TCGContext *s, TCGType type, unsigned vece, TCGReg r, TCGReg a) { if (have_avx2) { @@ -888,6 +888,7 @@ static void tcg_out_dup_vec(TCGContext *s, TCGType type, unsigned vece, g_assert_not_reached(); } } + return true; } static void tcg_out_dupi_vec(TCGContext *s, TCGType type, |