diff options
author | David Hildenbrand <david@redhat.com> | 2019-04-11 10:43:39 +0200 |
---|---|---|
committer | David Hildenbrand <david@redhat.com> | 2019-05-17 10:54:13 +0200 |
commit | 35f0ba5fe11559bf6349169049f3afdabbf9b9d4 (patch) | |
tree | a2fa5fa59691071bfaf632bd0a14dc1f39e5bb46 /target/s390x/insn-data.def | |
parent | 53e0ca22fdc76e24408689a4c9089e082917651e (diff) | |
download | qemu-35f0ba5fe11559bf6349169049f3afdabbf9b9d4.zip qemu-35f0ba5fe11559bf6349169049f3afdabbf9b9d4.tar.gz qemu-35f0ba5fe11559bf6349169049f3afdabbf9b9d4.tar.bz2 |
s390x/tcg: Implement VECTOR LOAD POSITIVE
Similar to VECTOR LOAD COMPLEMENT.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'target/s390x/insn-data.def')
-rw-r--r-- | target/s390x/insn-data.def | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/s390x/insn-data.def b/target/s390x/insn-data.def index 07868ff..fc8886f 100644 --- a/target/s390x/insn-data.def +++ b/target/s390x/insn-data.def @@ -1096,6 +1096,8 @@ F(0xe7bc, VGFMA, VRR_d, V, 0, 0, 0, 0, vgfma, 0, IF_VEC) /* VECTOR LOAD COMPLEMENT */ F(0xe7de, VLC, VRR_a, V, 0, 0, 0, 0, vlc, 0, IF_VEC) +/* VECTOR LOAD POSITIVE */ + F(0xe7df, VLP, VRR_a, V, 0, 0, 0, 0, vlp, 0, IF_VEC) #ifndef CONFIG_USER_ONLY /* COMPARE AND SWAP AND PURGE */ |