From: David Hildenbrand Date: Thu, 11 Apr 2019 09:12:42 +0000 (+0200) Subject: s390x/tcg: Implement VECTOR OR X-Git-Tag: v4.1.0-rc0~98^2~10^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2bbf4dff3f2e580e5c60ac612f1e63c5c3c528e9;p=thirdparty%2Fqemu.git s390x/tcg: Implement VECTOR OR Reuse a gvec helper. Reviewed-by: Richard Henderson Signed-off-by: David Hildenbrand --- diff --git a/target/s390x/insn-data.def b/target/s390x/insn-data.def index b549b76b969..fb74374a0a0 100644 --- a/target/s390x/insn-data.def +++ b/target/s390x/insn-data.def @@ -1140,6 +1140,8 @@ F(0xe76b, VNO, VRR_c, V, 0, 0, 0, 0, vno, 0, IF_VEC) /* VECTOR NOT EXCLUSIVE OR */ F(0xe76c, VNX, VRR_c, VE, 0, 0, 0, 0, vnx, 0, IF_VEC) +/* VECTOR OR */ + F(0xe76a, VO, VRR_c, V, 0, 0, 0, 0, vo, 0, IF_VEC) #ifndef CONFIG_USER_ONLY /* COMPARE AND SWAP AND PURGE */ diff --git a/target/s390x/translate_vx.inc.c b/target/s390x/translate_vx.inc.c index eb4e00751b6..54a5ca0c08e 100644 --- a/target/s390x/translate_vx.inc.c +++ b/target/s390x/translate_vx.inc.c @@ -1812,3 +1812,10 @@ static DisasJumpType op_vnx(DisasContext *s, DisasOps *o) get_field(s->fields, v3)); return DISAS_NEXT; } + +static DisasJumpType op_vo(DisasContext *s, DisasOps *o) +{ + gen_gvec_fn_3(or, ES_8, get_field(s->fields, v1), get_field(s->fields, v2), + get_field(s->fields, v3)); + return DISAS_NEXT; +}