[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 22/30] s390x/tcg: XC: Fault-safe handling
From: |
David Hildenbrand |
Subject: |
[PULL 22/30] s390x/tcg: XC: Fault-safe handling |
Date: |
Mon, 23 Sep 2019 10:07:04 +0200 |
We can process a maximum of 256 bytes, crossing two pages. While at it,
increment the length once.
Reviewed-by: Richard Henderson <address@hidden>
Signed-off-by: David Hildenbrand <address@hidden>
---
target/s390x/mem_helper.c | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/target/s390x/mem_helper.c b/target/s390x/mem_helper.c
index 570e995b77..0d4e0bc45a 100644
--- a/target/s390x/mem_helper.c
+++ b/target/s390x/mem_helper.c
@@ -355,14 +355,19 @@ static uint32_t do_helper_xc(CPUS390XState *env, uint32_t
l, uint64_t dest,
uint64_t src, uintptr_t ra)
{
const int mmu_idx = cpu_mmu_index(env, false);
- S390Access desta;
+ S390Access srca1, srca2, desta;
uint32_t i;
uint8_t c = 0;
HELPER_LOG("%s l %d dest %" PRIx64 " src %" PRIx64 "\n",
__func__, l, dest, src);
- desta = access_prepare(env, dest, l + 1, MMU_DATA_STORE, mmu_idx, ra);
+ /* XC always processes one more byte than specified - maximum is 256 */
+ l++;
+
+ srca1 = access_prepare(env, src, l, MMU_DATA_LOAD, mmu_idx, ra);
+ srca2 = access_prepare(env, dest, l, MMU_DATA_LOAD, mmu_idx, ra);
+ desta = access_prepare(env, dest, l, MMU_DATA_STORE, mmu_idx, ra);
/* xor with itself is the same as memset(0) */
if (src == dest) {
@@ -370,11 +375,12 @@ static uint32_t do_helper_xc(CPUS390XState *env, uint32_t
l, uint64_t dest,
return 0;
}
- for (i = 0; i <= l; i++) {
- uint8_t x = cpu_ldub_data_ra(env, src + i, ra);
- x ^= cpu_ldub_data_ra(env, dest + i, ra);
+ for (i = 0; i < l; i++) {
+ const uint8_t x = access_get_byte(env, &srca1, i, ra) ^
+ access_get_byte(env, &srca2, i, ra);
+
c |= x;
- cpu_stb_data_ra(env, dest + i, x, ra);
+ access_set_byte(env, &desta, i, x, ra);
}
return c != 0;
}
--
2.21.0
- [PULL 12/30] s390x/tcg: MVCS/MVCP: Properly wrap the length, (continued)
- [PULL 12/30] s390x/tcg: MVCS/MVCP: Properly wrap the length, David Hildenbrand, 2019/09/23
- [PULL 13/30] s390x/tcg: MVST: Check for specification exceptions, David Hildenbrand, 2019/09/23
- [PULL 14/30] s390x/tcg: MVST: Fix storing back the addresses to registers, David Hildenbrand, 2019/09/23
- [PULL 15/30] s390x/tcg: Always use MMU_USER_IDX for CONFIG_USER_ONLY, David Hildenbrand, 2019/09/23
- [PULL 16/30] s390x/tcg: Fault-safe memset, David Hildenbrand, 2019/09/23
- [PULL 18/30] s390x/tcg: MVCS/MVCP: Use access_memmove(), David Hildenbrand, 2019/09/23
- [PULL 17/30] s390x/tcg: Fault-safe memmove, David Hildenbrand, 2019/09/23
- [PULL 19/30] s390x/tcg: MVC: Fault-safe handling on destructive overlaps, David Hildenbrand, 2019/09/23
- [PULL 20/30] s390x/tcg: MVCLU: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 21/30] s390x/tcg: OC: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 22/30] s390x/tcg: XC: Fault-safe handling,
David Hildenbrand <=
- [PULL 23/30] s390x/tcg: NC: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 24/30] s390x/tcg: MVCIN: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 25/30] s390x/tcg: MVN: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 26/30] s390x/tcg: MVZ: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 27/30] s390x/tcg: MVST: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 28/30] s390x/tcg: MVO: Fault-safe handling, David Hildenbrand, 2019/09/23
- [PULL 29/30] tests/tcg: target/s390x: Test MVO, David Hildenbrand, 2019/09/23
- [PULL 30/30] tests/tcg: target/s390x: Test MVC, David Hildenbrand, 2019/09/23
- Re: [PULL 00/30] s390x/tcg update, no-reply, 2019/09/23
- Re: [PULL 00/30] s390x/tcg update, no-reply, 2019/09/23