s390x/tcg: Implement VECTOR TEST UNDER MASK
commitdb156ebfae0d7707d81d13234e2fd43dd3347298
authorDavid Hildenbrand <david@redhat.com>
Wed, 10 Apr 2019 20:55:16 +0000 (10 22:55 +0200)
committerDavid Hildenbrand <david@redhat.com>
Fri, 17 May 2019 08:54:13 +0000 (17 10:54 +0200)
tree5caf566e136c6f59a25a1411481ef780e1d49be8
parente58de341d948d12cb36bbc5aa4866b7412581880
s390x/tcg: Implement VECTOR TEST UNDER MASK

Let's return the cc value directly via cpu_env. Unfortunately there
isn't a simple way to calculate the value lazily - one would have to
calculate and store e.g. the population count of the mask and the
result so it can be evaluated in a cc helper.

But as VTM only sets the cc, we can assume the value will be needed soon
either way.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
target/s390x/helper.h
target/s390x/insn-data.def
target/s390x/translate_vx.inc.c
target/s390x/vec_int_helper.c