[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 11/14] target/s390x: Fix helper_per_ifetch flags
From: |
Richard Henderson |
Subject: |
[PATCH 11/14] target/s390x: Fix helper_per_ifetch flags |
Date: |
Wed, 1 May 2024 22:44:14 -0700 |
CPU state is read on the exception path.
Fixes: 83bb161299c ("target-s390x: PER instruction-fetch nullification event
support")
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/s390x/helper.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/s390x/helper.h b/target/s390x/helper.h
index 5611155ba1..31bd193322 100644
--- a/target/s390x/helper.h
+++ b/target/s390x/helper.h
@@ -361,7 +361,7 @@ DEF_HELPER_FLAGS_1(purge, TCG_CALL_NO_RWG, void, env)
DEF_HELPER_3(lra, i64, env, i64, i64)
DEF_HELPER_FLAGS_3(per_check_exception, TCG_CALL_NO_WG, void, env, i64, i32)
DEF_HELPER_FLAGS_3(per_branch, TCG_CALL_NO_WG, void, env, i64, i32)
-DEF_HELPER_FLAGS_2(per_ifetch, TCG_CALL_NO_RWG, void, env, i64)
+DEF_HELPER_FLAGS_2(per_ifetch, TCG_CALL_NO_WG, void, env, i64)
DEF_HELPER_FLAGS_2(per_store_real, TCG_CALL_NO_WG, noreturn, env, i32)
DEF_HELPER_FLAGS_1(stfl, TCG_CALL_NO_RWG, void, env)
--
2.34.1
- [PATCH 01/14] target/s390x: Do not use unwind for per_check_exception, (continued)
- [PATCH 01/14] target/s390x: Do not use unwind for per_check_exception, Richard Henderson, 2024/05/02
- [PATCH 02/14] target/s390x: Move cpu_get_tb_cpu_state out of line, Richard Henderson, 2024/05/02
- [PATCH 03/14] target/s390x: Update CR9 bits, Richard Henderson, 2024/05/02
- [PATCH 05/14] target/s390x: Disable conditional branch-to-next for PER, Richard Henderson, 2024/05/02
- [PATCH 10/14] target/s390x: Raise exception from per_store_real, Richard Henderson, 2024/05/02
- [PATCH 11/14] target/s390x: Fix helper_per_ifetch flags,
Richard Henderson <=
- [PATCH 13/14] target/s390x: Adjust check of noreturn in translate_one, Richard Henderson, 2024/05/02
- [PATCH 07/14] target/s390x: Simplify help_branch, Richard Henderson, 2024/05/02
- [PATCH 12/14] target/s390x: Simplify per_ifetch, per_check_exception, Richard Henderson, 2024/05/02
- [PATCH 08/14] target/s390x: Split per_breaking_event from per_branch_*, Richard Henderson, 2024/05/02
- [PATCH 09/14] target/s390x: Raise exception from helper_per_branch, Richard Henderson, 2024/05/02
- [PATCH 14/14] tests/tcg/s390x: Add per.S, Richard Henderson, 2024/05/02