qemu-e2k/tests/tcg/s390x
Pavel Zbitskiy 3cea09271b 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>
2018-08-28 17:37:01 +02:00
..
Makefile.include tests/tcg: enable building for s390x 2018-06-20 20:22:34 +01:00
Makefile.target target/s390x: fix PACK reading 1 byte less and writing 1 byte more 2018-08-28 17:37:01 +02:00
csst.c target/s390x: fix CSST decoding and runtime alignment check 2018-08-28 17:37:01 +02:00
exrl-trt.c target/s390x: add EX support for TRT and TRTR 2018-08-28 17:37:01 +02:00
exrl-trtr.c target/s390x: add EX support for TRT and TRTR 2018-08-28 17:37:01 +02:00
hello-s390x.c tests/tcg: add a simple s390x test 2018-08-28 17:37:01 +02:00
ipm.c target/s390x: fix IPM polluting irrelevant bits 2018-08-28 17:37:01 +02:00
pack.c target/s390x: fix PACK reading 1 byte less and writing 1 byte more 2018-08-28 17:37:01 +02:00