From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: Andrey Konovalov <andreyknvl@google.com>,
Vincenzo Frascino <vincenzo.frascino@arm.com>,
alex.bennee@linaro.org, peter.maydell@linaro.org
Subject: [PATCH 3/3] target/arm: Merge ISS for data abort from tag check fail
Date: Wed, 12 Aug 2020 10:19:46 -0700 [thread overview]
Message-ID: <20200812171946.2044791-4-richard.henderson@linaro.org> (raw)
In-Reply-To: <20200812171946.2044791-1-richard.henderson@linaro.org>
Merge the ISS data saved by the translator for the originating insn.
Use merge_syn_data_abort so that we properly take the target EL into
account. Set the WnR bit properly in all cases.
Reported-by: Andrey Konovalov <andreyknvl@google.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/mte_helper.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/target/arm/mte_helper.c b/target/arm/mte_helper.c
index a40454588d..2dff4c548d 100644
--- a/target/arm/mte_helper.c
+++ b/target/arm/mte_helper.c
@@ -519,7 +519,7 @@ static void mte_check_fail(CPUARMState *env, uint32_t desc,
{
int mmu_idx = FIELD_EX32(desc, MTEDESC, MIDX);
ARMMMUIdx arm_mmu_idx = core_to_aa64_mmu_idx(mmu_idx);
- int el, reg_el, tcf, select;
+ int el, target_el, reg_el, tcf, select, is_write, syn;
uint64_t sctlr;
reg_el = regime_el(env, arm_mmu_idx);
@@ -543,13 +543,17 @@ static void mte_check_fail(CPUARMState *env, uint32_t desc,
*
* In restore_state_to_opc, we set the exception syndrome
* for the load or store operation. Unwind first so we
- * may overwrite that with the syndrome for the tag check.
+ * may merge that with the syndrome for the tag check.
*/
cpu_restore_state(env_cpu(env), ra, true);
env->exception.vaddress = dirty_ptr;
- raise_exception(env, EXCP_DATA_ABORT,
- syn_data_abort_no_iss(el != 0, 0, 0, 0, 0, 0, 0x11),
- exception_target_el(env));
+
+ target_el = exception_target_el(env);
+ is_write = FIELD_EX32(desc, MTEDESC, WRITE);
+ syn = merge_syn_data_abort(env->exception.syndrome, target_el,
+ target_el == el, 0, 0, is_write, 0x11);
+
+ raise_exception(env, EXCP_DATA_ABORT, syn, target_el);
/* noreturn, but fall through to the assert anyway */
case 0:
--
2.25.1
next prev parent reply other threads:[~2020-08-12 17:22 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-12 17:19 [PATCH 0/3] target/arm: Complete ISS for MTE tag check fail Richard Henderson
2020-08-12 17:19 ` [PATCH 1/3] target/arm: Export merge_syn_data_abort from tlb_helper.c Richard Henderson
2020-08-12 17:19 ` [PATCH 2/3] target/arm: Pass the entire mte descriptor to mte_check_fail Richard Henderson
2020-08-12 17:19 ` Richard Henderson [this message]
2020-08-12 17:38 ` [PATCH 0/3] target/arm: Complete ISS for MTE tag check fail Andrey Konovalov
2020-08-12 17:52 ` Richard Henderson
2020-08-12 18:00 ` Richard Henderson
2020-08-12 18:02 ` Andrey Konovalov
2020-08-12 19:06 ` Evgenii Stepanov
2020-08-13 10:01 ` Kevin Brodsky
2020-08-13 12:26 ` Andrey Konovalov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200812171946.2044791-4-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=andreyknvl@google.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=vincenzo.frascino@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).