summaryrefslogtreecommitdiffstats
path: root/tcg/i386
diff options
context:
space:
mode:
authorRichard Henderson2019-03-18 20:00:39 +0100
committerRichard Henderson2019-05-13 23:44:03 +0200
commitd6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579 (patch)
tree1f3541db753629603d66d5c83783bcf954bd8c77 /tcg/i386
parenttcg: Manually expand INDEX_op_dup_vec (diff)
downloadqemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.tar.gz
qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.tar.xz
qemu-d6ecb4a978b718dbe108a9fa9ecccc8b7f7cb579.zip
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.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c
index 3c8229d413..f04933bc19 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)
{