Re: [PATCH 7/7] target/s390x: Hoist some computation in access_memmove

2023-01-11 Thread David Hildenbrand
On 09.01.23 21:18, Richard Henderson wrote: Ensure that the total length is in a local variable across the byte loop. Compute size1 difference once. Signed-off-by: Richard Henderson --- target/s390x/tcg/mem_helper.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff -

[PATCH 7/7] target/s390x: Hoist some computation in access_memmove

2023-01-09 Thread Richard Henderson
Ensure that the total length is in a local variable across the byte loop. Compute size1 difference once. Signed-off-by: Richard Henderson --- target/s390x/tcg/mem_helper.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/target/s390x/tcg/mem_helper.c b/target/s3