Skip to content

Commit

Permalink
s390x/tcg: MVC: Fault-safe handling on destructive overlaps
Browse files Browse the repository at this point in the history
The last remaining bit for MVC is handling destructive overlaps in a
fault-safe way.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
  • Loading branch information
davidhildenbrand committed Sep 23, 2019
1 parent efb1a76 commit b7809f3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions target/s390x/mem_helper.c
Expand Up @@ -438,8 +438,9 @@ static uint32_t do_helper_mvc(CPUS390XState *env, uint32_t l, uint64_t dest,
access_memmove(env, &desta, &srca, ra);
} else {
for (i = 0; i < l; i++) {
uint8_t x = cpu_ldub_data_ra(env, src + i, ra);
cpu_stb_data_ra(env, dest + i, x, ra);
uint8_t byte = access_get_byte(env, &srca, i, ra);

access_set_byte(env, &desta, i, byte, ra);
}
}

Expand Down

0 comments on commit b7809f3

Please sign in to comment.