target/s390x: fix PACK reading 1 byte less and writing 1 byte more
commit3cea09271b3b3a0c4d0ffa3b56ea671bf75d82c3
authorPavel Zbitskiy <pavel.zbitskiy@gmail.com>
Tue, 21 Aug 2018 02:51:03 +0000 (20 22:51 -0400)
committerCornelia Huck <cohuck@redhat.com>
Tue, 28 Aug 2018 15:37:01 +0000 (28 17:37 +0200)
tree0220a87aca578f49c0675a4097749395991803b1
parentad8c851d2e772397e0c35148a16a8fbb559b2a2e
target/s390x: fix PACK reading 1 byte less and writing 1 byte more

PACK fails on the test from the Principles of Operation: F1F2F3F4
becomes 0000234C instead of 0001234C due to an off-by-one error.
Furthermore, it overwrites one extra byte to the left of F1.

If len_dest is 0, then we only want to flip the 1st byte and never loop
over the rest. Therefore, the loop condition should be > and not >=.

If len_src is 1, then we should flip the 1st byte and pack the 2nd.
Since len_src is already decremented before the loop, the first
condition should be >=, and not >.

Likewise for len_src == 2 and the second condition.

Signed-off-by: Pavel Zbitskiy <pavel.zbitskiy@gmail.com>
Message-Id: <20180821025104.19604-7-pavel.zbitskiy@gmail.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
target/s390x/mem_helper.c
tests/tcg/s390x/Makefile.target
tests/tcg/s390x/pack.c [new file with mode: 0644]