All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] icount: remove useless exit_request assignment
@ 2017-02-07  6:54 Pavel Dovgalyuk
  2017-02-07 15:28 ` Paolo Bonzini
  0 siblings, 1 reply; 2+ messages in thread
From: Pavel Dovgalyuk @ 2017-02-07  6:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: 'Paolo Bonzini', 'Pavel Dovgalyuk'

This patch removes unneeded assignment to cpu->exit_request.
cpu_exec_nocache executes all available instructions and therefore
icount becomes 0. Then other conditions will break the execution
loop, making assignment to cpu->exit_request useless.

This patch should be applied over Paolo's series:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg426058.html

Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
---
 cpu-exec.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/cpu-exec.c b/cpu-exec.c
index 5cef8bc..91d1faf 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -577,7 +577,6 @@ static inline void cpu_loop_exec_tb(CPUState *cpu, TranslationBlock *tb,
         if (insns_left > 0) {
             cpu_exec_nocache(cpu, insns_left, tb, false);
         }
-        atomic_set(&cpu->exit_request, 1);
     }
 }
 
-- 
2.8.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH] icount: remove useless exit_request assignment
  2017-02-07  6:54 [Qemu-devel] [PATCH] icount: remove useless exit_request assignment Pavel Dovgalyuk
@ 2017-02-07 15:28 ` Paolo Bonzini
  0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2017-02-07 15:28 UTC (permalink / raw)
  To: Pavel Dovgalyuk, qemu-devel



On 07/02/2017 07:54, Pavel Dovgalyuk wrote:
> This patch removes unneeded assignment to cpu->exit_request.
> cpu_exec_nocache executes all available instructions and therefore
> icount becomes 0. Then other conditions will break the execution
> loop, making assignment to cpu->exit_request useless.
> 
> This patch should be applied over Paolo's series:
> https://www.mail-archive.com/qemu-devel@nongnu.org/msg426058.html
> 
> Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
> ---
>  cpu-exec.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/cpu-exec.c b/cpu-exec.c
> index 5cef8bc..91d1faf 100644
> --- a/cpu-exec.c
> +++ b/cpu-exec.c
> @@ -577,7 +577,6 @@ static inline void cpu_loop_exec_tb(CPUState *cpu, TranslationBlock *tb,
>          if (insns_left > 0) {
>              cpu_exec_nocache(cpu, insns_left, tb, false);
>          }
> -        atomic_set(&cpu->exit_request, 1);
>      }
>  }
>  
> 

Nice, thanks.  We can just squash the two patches with my 7/7 like this:

diff --git a/cpu-exec.c b/cpu-exec.c
index 9a7ff1b..1026cd0 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -517,7 +517,10 @@ static inline bool cpu_handle_interrupt(CPUState *cpu,
             *last_tb = NULL;
         }
     }
-    if (unlikely(atomic_read(&cpu->exit_request) || replay_has_interrupt())) {
+
+    /* Finally, check if we need to exit to the main loop.  */
+    if (unlikely(atomic_read(&cpu->exit_request)
+        || (use_icount && cpu->icount_decr.u16.low + cpu->icount_extra == 0))) {
         atomic_set(&cpu->exit_request, 0);
         cpu->exception_index = EXCP_INTERRUPT;
         return true;
@@ -527,8 +530,7 @@ static inline bool cpu_handle_interrupt(CPUState *cpu,
 }
 
 static inline void cpu_loop_exec_tb(CPUState *cpu, TranslationBlock *tb,
-                                    TranslationBlock **last_tb, int *tb_exit,
-                                    SyncClocks *sc)
+                                    TranslationBlock **last_tb, int *tb_exit)
 {
     uintptr_t ret;
     int32_t insns_left;
@@ -578,10 +580,7 @@ static inline void cpu_loop_exec_tb(CPUState *cpu, TranslationBlock *tb,
          */
         if (insns_left > 0) {
             cpu_exec_nocache(cpu, insns_left, tb, false);
-            align_clocks(sc, cpu);
         }
-        cpu->exception_index = EXCP_INTERRUPT;
-        cpu_loop_exit(cpu);
     }
 }
 
@@ -641,7 +640,7 @@ int cpu_exec(CPUState *cpu)
 
         while (!cpu_handle_interrupt(cpu, &last_tb)) {
             TranslationBlock *tb = tb_find(cpu, last_tb, tb_exit);
-            cpu_loop_exec_tb(cpu, tb, &last_tb, &tb_exit, &sc);
+            cpu_loop_exec_tb(cpu, tb, &last_tb, &tb_exit);
             /* Try to align the host and virtual clocks
                if the guest is in advance */
             align_clocks(&sc, cpu);

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-02-07 15:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-07  6:54 [Qemu-devel] [PATCH] icount: remove useless exit_request assignment Pavel Dovgalyuk
2017-02-07 15:28 ` Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.