From 9023434b67f681a2d77a09ba063a11154338f99d Mon Sep 17 00:00:00 2001 From: David Hildenbrand Date: Thu, 11 Apr 2019 11:12:17 +0200 Subject: s390x/tcg: Implement VECTOR NOT EXCLUSIVE OR Again, part of vector enhancement facility 1. The operation corresponds to an bitwise equality check. Reviewed-by: Richard Henderson Signed-off-by: David Hildenbrand --- target/s390x/translate_vx.inc.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'target/s390x/translate_vx.inc.c') diff --git a/target/s390x/translate_vx.inc.c b/target/s390x/translate_vx.inc.c index 0578ff5999..eb4e00751b 100644 --- a/target/s390x/translate_vx.inc.c +++ b/target/s390x/translate_vx.inc.c @@ -1805,3 +1805,10 @@ static DisasJumpType op_vno(DisasContext *s, DisasOps *o) get_field(s->fields, v3)); return DISAS_NEXT; } + +static DisasJumpType op_vnx(DisasContext *s, DisasOps *o) +{ + gen_gvec_fn_3(eqv, ES_8, get_field(s->fields, v1), get_field(s->fields, v2), + get_field(s->fields, v3)); + return DISAS_NEXT; +} -- cgit v1.2.3