[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 38/43] target/hppa: Implement PSW_X
From: |
Richard Henderson |
Subject: |
[PULL 38/43] target/hppa: Implement PSW_X |
Date: |
Wed, 15 May 2024 11:40:38 +0200 |
Use PAGE_WRITE_INV to temporarily enable write permission
on for a given page, driven by PSW_X being set.
Reviewed-by: Helge Deller <deller@gmx.de>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/hppa/mem_helper.c | 46 +++++++++++++++++++++++-----------------
1 file changed, 27 insertions(+), 19 deletions(-)
diff --git a/target/hppa/mem_helper.c b/target/hppa/mem_helper.c
index d09877afd7..ca7bbe0a7c 100644
--- a/target/hppa/mem_helper.c
+++ b/target/hppa/mem_helper.c
@@ -296,30 +296,38 @@ int hppa_get_physical_address(CPUHPPAState *env, vaddr
addr, int mmu_idx,
goto egress;
}
- /* In reverse priority order, check for conditions which raise faults.
- As we go, remove PROT bits that cover the condition we want to check.
- In this way, the resulting PROT will force a re-check of the
- architectural TLB entry for the next access. */
- if (unlikely(!ent->d)) {
- if (type & PAGE_WRITE) {
- /* The D bit is not set -- TLB Dirty Bit Fault. */
- ret = EXCP_TLB_DIRTY;
- }
- prot &= PAGE_READ | PAGE_EXEC;
- }
- if (unlikely(ent->b)) {
- if (type & PAGE_WRITE) {
- /* The B bit is set -- Data Memory Break Fault. */
- ret = EXCP_DMB;
- }
- prot &= PAGE_READ | PAGE_EXEC;
- }
+ /*
+ * In priority order, check for conditions which raise faults.
+ * Remove PROT bits that cover the condition we want to check,
+ * so that the resulting PROT will force a re-check of the
+ * architectural TLB entry for the next access.
+ */
if (unlikely(ent->t)) {
+ prot &= PAGE_EXEC;
if (!(type & PAGE_EXEC)) {
/* The T bit is set -- Page Reference Fault. */
ret = EXCP_PAGE_REF;
}
- prot &= PAGE_EXEC;
+ } else if (!ent->d) {
+ prot &= PAGE_READ | PAGE_EXEC;
+ if (type & PAGE_WRITE) {
+ /* The D bit is not set -- TLB Dirty Bit Fault. */
+ ret = EXCP_TLB_DIRTY;
+ }
+ } else if (unlikely(ent->b)) {
+ prot &= PAGE_READ | PAGE_EXEC;
+ if (type & PAGE_WRITE) {
+ /*
+ * The B bit is set -- Data Memory Break Fault.
+ * Except when PSW_X is set, allow this single access to succeed.
+ * The write bit will be invalidated for subsequent accesses.
+ */
+ if (env->psw_xb & PSW_X) {
+ prot |= PAGE_WRITE_INV;
+ } else {
+ ret = EXCP_DMB;
+ }
+ }
}
egress:
--
2.34.1
- [PULL 25/43] target/hppa: Use registerfields.h for FPSR, (continued)
- [PULL 25/43] target/hppa: Use registerfields.h for FPSR, Richard Henderson, 2024/05/15
- [PULL 09/43] target/hppa: Delay computation of IAQ_Next, Richard Henderson, 2024/05/15
- [PULL 15/43] target/hppa: Use umax in do_ibranch_priv, Richard Henderson, 2024/05/15
- [PULL 08/43] target/hppa: Add install_link, Richard Henderson, 2024/05/15
- [PULL 28/43] target/hppa: Introduce DisasDelayException, Richard Henderson, 2024/05/15
- [PULL 29/43] target/hppa: Use delay_excp for conditional traps, Richard Henderson, 2024/05/15
- [PULL 16/43] target/hppa: Always make a copy in do_ibranch_priv, Richard Henderson, 2024/05/15
- [PULL 19/43] target/hppa: Rename cond_make_* helpers, Richard Henderson, 2024/05/15
- [PULL 26/43] target/hppa: Use TCG_COND_TST* in trans_ftest, Richard Henderson, 2024/05/15
- [PULL 34/43] target/hppa: Improve hppa_cpu_dump_state, Richard Henderson, 2024/05/15
- [PULL 38/43] target/hppa: Implement PSW_X,
Richard Henderson <=
- [PULL 33/43] target/hppa: Do not mask in copy_iaoq_entry, Richard Henderson, 2024/05/15
- [PULL 30/43] target/hppa: Use delay_excp for conditional trap on overflow, Richard Henderson, 2024/05/15
- [PULL 32/43] target/hppa: Store full iaoq_f and page offset of iaoq_b in TB, Richard Henderson, 2024/05/15
- [PULL 35/43] target/hppa: Split PSW X and B into their own field, Richard Henderson, 2024/05/15
- [PULL 36/43] target/hppa: Manage PSW_X and PSW_B in translator, Richard Henderson, 2024/05/15
- [PULL 37/43] target/hppa: Implement PSW_B, Richard Henderson, 2024/05/15
- [PULL 39/43] target/hppa: Drop tlb_entry return from hppa_get_physical_address, Richard Henderson, 2024/05/15
- [PULL 23/43] target/hppa: Use TCG_COND_TST* in do_unit_addsub, Richard Henderson, 2024/05/15
- [PULL 31/43] linux-user/hppa: Force all code addresses to PRIV_USER, Richard Henderson, 2024/05/15
- [PULL 40/43] target/hppa: Adjust priv for B,GATE at runtime, Richard Henderson, 2024/05/15