diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-03-18 12:00:39 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2019-05-13 14:44:03 -0700 |
commit | d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579 (patch) | |
tree | 1f3541db753629603d66d5c83783bcf954bd8c77 /tcg/i386 | |
parent | bab1671f0fa928fd678a22f934739f06fd5fd035 (diff) | |
download | qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.zip qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.tar.gz qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.tar.bz2 |
tcg: Add tcg_out_dupm_vec to the backend interface
Currently stubbed out in all backends that support vectors.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/i386')
-rw-r--r-- | tcg/i386/tcg-target.inc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c index 3c8229d..f04933b 100644 --- a/tcg/i386/tcg-target.inc.c +++ b/tcg/i386/tcg-target.inc.c @@ -891,6 +891,13 @@ static bool tcg_out_dup_vec(TCGContext *s, TCGType type, unsigned vece, return true; } +static bool tcg_out_dupm_vec(TCGContext *s, TCGType type, unsigned vece, + TCGReg r, TCGReg base, intptr_t offset) +{ + return false; +} + + static void tcg_out_dupi_vec(TCGContext *s, TCGType type, TCGReg ret, tcg_target_long arg) { |