qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Christopher Covington <cov@codeaurora.org>
To: qemu-devel@nongnu.org
Cc: Christopher Covington <cov@codeaurora.org>
Subject: [Qemu-devel] [RFC 10/14] bbvec: Move mode/PID change detection to register writes
Date: Wed,  5 Aug 2015 12:51:19 -0400	[thread overview]
Message-ID: <1438793483-12721-11-git-send-email-cov@codeaurora.org> (raw)
In-Reply-To: <1438793483-12721-1-git-send-email-cov@codeaurora.org>

This should speed up basic block detection since these were previously
being checked for on each basic block / instruction.

Written by Aaron Lindsay.

Signed-off-by: Christopher Covington <cov@codeaurora.org>
---
 target-arm/cpu.h           | 13 +++++++++++++
 target-arm/helper-a64.c    |  2 +-
 target-arm/helper.c        | 39 +++++++++++++++++++++++++++++----------
 target-arm/helper.h        |  2 --
 target-arm/translate-a64.c |  2 --
 target-arm/translate.c     |  2 --
 6 files changed, 43 insertions(+), 17 deletions(-)

diff --git a/target-arm/cpu.h b/target-arm/cpu.h
index f6857fa..6c4ba9c 100644
--- a/target-arm/cpu.h
+++ b/target-arm/cpu.h
@@ -670,14 +670,27 @@ static inline uint32_t pstate_read(CPUARMState *env)
         | env->pstate | env->daif;
 }
 
+void update_instruction_count(CPUARMState *env);
+#ifdef CONFIG_BBVEC
+void context_check_mode(CPUARMState *env);
+#endif
+
 static inline void pstate_write(CPUARMState *env, uint32_t val)
 {
+    bool mode_changed = (env->pstate ^ val) & PSTATE_M;
     env->ZF = (~val) & PSTATE_Z;
     env->NF = val;
     env->CF = (val >> 29) & 1;
     env->VF = (val << 3) & 0x80000000;
     env->daif = val & PSTATE_DAIF;
     env->pstate = val & ~CACHED_PSTATE_BITS;
+
+    if (mode_changed) {
+        update_instruction_count(env);
+#ifdef CONFIG_BBVEC
+        context_check_mode(env);
+#endif
+    }
 }
 
 /* Return the current CPSR value.  */
diff --git a/target-arm/helper-a64.c b/target-arm/helper-a64.c
index 8803293..e647b90 100644
--- a/target-arm/helper-a64.c
+++ b/target-arm/helper-a64.c
@@ -558,8 +558,8 @@ void aarch64_cpu_do_interrupt(CPUState *cs)
         env->condexec_bits = 0;
     }
 
-    pstate_write(env, PSTATE_DAIF | new_mode);
     env->aarch64 = 1;
+    pstate_write(env, PSTATE_DAIF | new_mode);
     aarch64_restore_sp(env, new_el);
 
     env->pc = addr;
diff --git a/target-arm/helper.c b/target-arm/helper.c
index a659e67..c1f4c47 100644
--- a/target-arm/helper.c
+++ b/target-arm/helper.c
@@ -387,6 +387,7 @@ static void fcse_write(CPUARMState *env, const ARMCPRegInfo *ri, uint64_t value)
     }
 }
 
+void context_check_pid(CPUARMState *env);
 static void contextidr_write(CPUARMState *env, const ARMCPRegInfo *ri,
                              uint64_t value)
 {
@@ -399,6 +400,9 @@ static void contextidr_write(CPUARMState *env, const ARMCPRegInfo *ri,
         arm_tlb_flush(env, 1);
     }
     raw_write(env, ri, value);
+#ifdef CONFIG_BBVEC
+    context_check_pid(env);
+#endif
 }
 
 static void tlbiall_write(CPUARMState *env, const ARMCPRegInfo *ri,
@@ -4292,29 +4296,34 @@ void HELPER(bbv_profile)(CPUARMState *env)
     }
 }
 
-void HELPER(context_check_mode)(CPUARMState *env)
+void context_check_mode(CPUARMState *env)
 {
-    uint32_t mode;
+    uint32_t priv_mode; /* nonzero if privileged */
+
+    if (!bbtrace_initialized())
+        return;
 
-    /* Get current mode: userspace or privileged */
     if (env->aarch64) {
-        mode = extract32(env->pstate, 2, 2);
+        priv_mode = extract32(env->pstate, 2, 2);
     }
     else if ((env->uncached_cpsr & 0x1f) == ARM_CPU_MODE_USR) {
-        mode = 0;
+        priv_mode = 0;
     }
     /* We don't currently implement the Virtualization or TrustZone
      * extensions, so PL2 and PL3 don't exist for us.
      */
-    else mode = 1;
+    else priv_mode = 1;
 
-    bb_context_check_mode(env->prof_ic, mode);
+    bb_context_check_mode(env->prof_ic, priv_mode);
 }
 
-void HELPER(context_check_pid)(CPUARMState *env)
+void context_check_pid(CPUARMState *env)
 {
     uint64_t pid;
 
+    if (!bbtrace_initialized())
+        return;
+
     /* Read pid from CONTEXTIDR register. In aarch32, if EL1 is not in AArch64
      * mode, we need to shift out the address space identifier in the first 8 bits.
      *
@@ -4331,7 +4340,7 @@ void HELPER(context_check_pid)(CPUARMState *env)
     bb_context_check_pid(env->prof_ic, pid);
 }
 
-void HELPER(update_instruction_count)(CPUARMState *env)
+void update_instruction_count(CPUARMState *env)
 {
     if (bbtrace_initialized()) {
         /*
@@ -4360,7 +4369,7 @@ void HELPER(update_instruction_count)(CPUARMState *env)
 
 #else //!CONFIG_BBVEC
 
-void HELPER(update_instruction_count)(CPUARMState *env)
+void update_instruction_count(CPUARMState *env)
 {
     pmevcntr_increment(env, PMU_COUNTER_TYPE_INSTRUCTIONS, env->prof_ic);
     pmevcntr_increment(env, PMU_COUNTER_TYPE_CYCLES, env->prof_ic);
@@ -4369,6 +4378,11 @@ void HELPER(update_instruction_count)(CPUARMState *env)
 
 #endif //CONFIG_BBVEC
 
+void HELPER(update_instruction_count)(CPUARMState *env)
+{
+    update_instruction_count(env);
+}
+
 /* Sign/zero extend */
 uint32_t HELPER(sxtb16)(uint32_t x)
 {
@@ -4525,6 +4539,11 @@ void switch_mode(CPUARMState *env, int mode)
     if (mode == old_mode)
         return;
 
+        update_instruction_count(env);
+#ifdef CONFIG_BBVEC
+        context_check_mode(env);
+#endif
+
     if (old_mode == ARM_CPU_MODE_FIQ) {
         memcpy (env->fiq_regs, env->regs + 8, 5 * sizeof(uint32_t));
         memcpy (env->regs + 8, env->usr_regs, 5 * sizeof(uint32_t));
diff --git a/target-arm/helper.h b/target-arm/helper.h
index 02edf3a..0f88080 100644
--- a/target-arm/helper.h
+++ b/target-arm/helper.h
@@ -39,8 +39,6 @@ PAS_OP(uh)
 
 #ifdef CONFIG_BBVEC
 DEF_HELPER_1(bbv_profile, void, env)
-DEF_HELPER_1(context_check_mode, void, env)
-DEF_HELPER_1(context_check_pid, void, env)
 #endif // CONFIG_BBVEC
 
 DEF_HELPER_1(update_instruction_count, void, env)
diff --git a/target-arm/translate-a64.c b/target-arm/translate-a64.c
index f6f8832..2471184 100644
--- a/target-arm/translate-a64.c
+++ b/target-arm/translate-a64.c
@@ -11076,14 +11076,12 @@ void gen_intermediate_code_internal_a64(ARMCPU *cpu,
     if (bbtrace_initialized()) {
         gen_helper_bbv_profile(cpu_env);
         gen_store_is_jmp(0);
-        gen_helper_context_check_pid(cpu_env);
     }
 #endif // CONFIG_BBVEC
 
     do {
 #ifdef CONFIG_BBVEC
         if (bbtrace_initialized()) {
-            gen_helper_context_check_mode(cpu_env);
             gen_pc_incr(env, dc);
         }
 #endif // CONFIG_BBVEC
diff --git a/target-arm/translate.c b/target-arm/translate.c
index 113e3b6..f9d69ef 100644
--- a/target-arm/translate.c
+++ b/target-arm/translate.c
@@ -11635,14 +11635,12 @@ static inline void gen_intermediate_code_internal(ARMCPU *cpu,
     if (bbtrace_initialized()) {
         gen_helper_bbv_profile(cpu_env);
         gen_store_is_jmp(0);
-        gen_helper_context_check_pid(cpu_env);
     }
 #endif
 
     do {
 #ifdef CONFIG_BBVEC
         if (bbtrace_initialized()) {
-            gen_helper_context_check_mode(cpu_env);
             gen_pc_incr(env, dc);
             /* FIXME: this call should not be necessary if all the cases
                where the prof_is_jmp flag gets set are correct.   */
-- 
Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

  parent reply	other threads:[~2015-08-05 16:52 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-05 16:51 [Qemu-devel] RFC: ARM Semihosting, PMU, and BBV Changes Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 01/14] Make unknown semihosting calls non-fatal Christopher Covington
2015-08-06  9:11   ` Alex Bennée
2015-08-06 17:59     ` Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 02/14] Added semihosting support for A64 in full-system mode Christopher Covington
2015-08-11 18:16   ` Peter Maydell
2015-08-05 16:51 ` [Qemu-devel] [RFC 03/14] Fix makefile Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 04/14] Modify load exclusive/store exclusive to use physical addresses with the monitor Christopher Covington
2015-09-23 17:19   ` [Qemu-devel] [PATCHv2] target-arm: Use physical addresses for ldrex/strex Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 05/14] Fixed TLB invalidate ops Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 06/14] Added support for block profiling for AArch32 and Aarch64 Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 07/14] Add PMU to ARM virt platform Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 08/14] Add instruction-counting infrastructure to target-arm Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 09/14] Implement remaining PMU functionality Christopher Covington
2016-02-02 21:22   ` Alistair Francis
2016-02-02 23:01     ` Christopher Covington
2016-02-02 23:22       ` Alistair Francis
2016-02-03 18:37         ` Peter Maydell
2016-02-04  0:37           ` Alistair Francis
2015-08-05 16:51 ` Christopher Covington [this message]
2015-08-05 16:51 ` [Qemu-devel] [RFC 11/14] Print bbvec stats on 'magic' exceptions Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 12/14] bbvec: Detect mode changes after uncached_cpsr update Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 13/14] Enable negative icount values for QEMU Christopher Covington
2015-08-05 16:51 ` [Qemu-devel] [RFC 14/14] bbvec: Properly detect conditional thumb2 branching instructions Christopher Covington
2015-08-11 15:27 ` [Qemu-devel] RFC: ARM Semihosting, PMU, and BBV Changes Peter Maydell

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=1438793483-12721-11-git-send-email-cov@codeaurora.org \
    --to=cov@codeaurora.org \
    --cc=qemu-devel@nongnu.org \
    /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).