VirtualBox

Changeset 36171 in vbox for trunk/src/recompiler/cpu-exec.c


Ignore:
Timestamp:
Mar 4, 2011 1:25:06 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70362
Message:

rem: Merged in changes from the branches/stable_0_10 (r7249).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/cpu-exec.c

    r36170 r36171  
    404404                    }
    405405                }
     406                if (unlikely(env->exit_request)) {
     407                    env->exit_request = 0;
     408                    env->exception_index = EXCP_INTERRUPT;
     409                    cpu_loop_exit();
     410                }
    406411
    407412                /*
     
    451456                   infinite loop and becomes env->current_tb. Avoid
    452457                   starting execution if there is a pending interrupt. */
    453                 if (unlikely (env->interrupt_request & CPU_INTERRUPT_EXIT))
     458                if (unlikely (env->exit_request))
    454459                    env->current_tb = NULL;
    455460
     
    639644            }
    640645#ifdef USE_KQEMU
    641             if (kqemu_is_ok(env) && env->interrupt_request == 0) {
     646            if (kqemu_is_ok(env) && env->interrupt_request == 0 && env->exit_request == 0) {
    642647                int ret;
    643648                env->eflags = env->eflags | helper_cc_compute_all(CC_OP) | (DF & DF_MASK);
     
    654659                    /* softmmu execution needed */
    655660                } else {
    656                     if (env->interrupt_request != 0) {
     661                    if (env->interrupt_request != 0 || env->exit_request != 0) {
    657662                        /* hardware interrupt will be executed just after */
    658663                    } else {
     
    853858                        next_tb = 0;
    854859                    }
    855                     if (interrupt_request & CPU_INTERRUPT_EXIT) {
    856                         env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
    857                         env->exception_index = EXCP_INTERRUPT;
    858                         cpu_loop_exit();
    859                     }
     860                }
     861                if (unlikely(env->exit_request)) {
     862                    env->exit_request = 0;
     863                    env->exception_index = EXCP_INTERRUPT;
     864                    cpu_loop_exit();
    860865                }
    861866#ifdef DEBUG_EXEC
     
    927932                   infinite loop and becomes env->current_tb. Avoid
    928933                   starting execution if there is a pending interrupt. */
    929                 if (unlikely (env->interrupt_request & CPU_INTERRUPT_EXIT))
     934                if (unlikely (env->exit_request))
    930935                    env->current_tb = NULL;
    931936
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette