Re: [PATCH v2 2/7] target/s390x: vxeh2: vector string search

2022-03-07 Thread Richard Henderson
On 3/6/22 16:03, David Miller wrote: +static DisasJumpType op_vstrs(DisasContext *s, DisasOps *o) +{ +const uint8_t es = get_field(s, m5); +const uint32_t D = get_field(s, m6); + +if (es > ES_32) { +gen_program_exception(s, PGM_SPECIFICATION); +return DISAS_NORETURN; +

[PATCH v2 2/7] target/s390x: vxeh2: vector string search

2022-03-06 Thread David Miller
Signed-off-by: David Miller --- target/s390x/helper.h| 1 + target/s390x/tcg/insn-data.def | 2 + target/s390x/tcg/translate.c | 3 +- target/s390x/tcg/translate_vx.c.inc | 17 target/s390x/tcg/vec_string_helper.c | 65 5 fil