Introduce next_cflags as part of CPUState. It controls the compile flags
of the next newly generated TB. After use, it will automatically be reset
to zero. This allows the caller to simply set and then forget about it,
e.g. to ensure that the next, and only the next TB will contain just a
single instruction. To avoid that next_cflags hits the wrong TB,
interrupt delivery is suppressed when this field is non-zero.

Signed-off-by: Jan Kiszka <[EMAIL PROTECTED]>
---
 qemu/cpu-defs.h |    4 ++++
 qemu/cpu-exec.c |    9 +++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

Index: b/qemu/cpu-defs.h
===================================================================
--- a/qemu/cpu-defs.h
+++ b/qemu/cpu-defs.h
@@ -183,6 +183,10 @@ typedef struct CPUWatchpoint {
     } icount_decr;                                                      \
     uint32_t can_do_io; /* nonzero if memory mapped IO is safe.  */     \
                                                                         \
+    /* Compile flags for generating next regular TB.                    \
+       Will be automatically zeroed after use. */                       \
+    uint16_t next_cflags;                                               \
+                                                                        \
     /* from this point: preserved by CPU reset */                       \
     /* ice debug support */                                             \
     CPUBreakpoint *breakpoints;                                         \
Index: b/qemu/cpu-exec.c
===================================================================
--- a/qemu/cpu-exec.c
+++ b/qemu/cpu-exec.c
@@ -154,7 +154,8 @@ static TranslationBlock *tb_find_slow(ta
     }
  not_found:
    /* if no translated code available, then translate it now */
-    tb = tb_gen_code(env, pc, cs_base, flags, 0);
+    tb = tb_gen_code(env, pc, cs_base, flags, env->next_cflags);
+    env->next_cflags = 0;
 
  found:
     /* we add the TB in the virtual pc hash table */
@@ -379,8 +380,12 @@ int cpu_exec(CPUState *env1)
             next_tb = 0; /* force lookup of first TB */
             for(;;) {
                 interrupt_request = env->interrupt_request;
+                /* Deliver interrupt, but only if we are not recompiling some
+                   TB (non-zero next_cflags) and the current single-step mode
+                   doesn't block IRQs. */
                 if (unlikely(interrupt_request) &&
-                    likely(!(env->singlestep_enabled & SSTEP_NOIRQ))) {
+                    likely(env->next_cflags == 0 &&
+                           !(env->singlestep_enabled & SSTEP_NOIRQ))) {
                     if (interrupt_request & CPU_INTERRUPT_DEBUG) {
                         env->interrupt_request &= ~CPU_INTERRUPT_DEBUG;
                         env->exception_index = EXCP_DEBUG;

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to