Changeset 36171 in vbox for trunk/src/recompiler/cpu-exec.c
- Timestamp:
- Mar 4, 2011 1:25:06 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70362
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/cpu-exec.c
r36170 r36171 404 404 } 405 405 } 406 if (unlikely(env->exit_request)) { 407 env->exit_request = 0; 408 env->exception_index = EXCP_INTERRUPT; 409 cpu_loop_exit(); 410 } 406 411 407 412 /* … … 451 456 infinite loop and becomes env->current_tb. Avoid 452 457 starting execution if there is a pending interrupt. */ 453 if (unlikely (env-> interrupt_request & CPU_INTERRUPT_EXIT))458 if (unlikely (env->exit_request)) 454 459 env->current_tb = NULL; 455 460 … … 639 644 } 640 645 #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) { 642 647 int ret; 643 648 env->eflags = env->eflags | helper_cc_compute_all(CC_OP) | (DF & DF_MASK); … … 654 659 /* softmmu execution needed */ 655 660 } else { 656 if (env->interrupt_request != 0 ) {661 if (env->interrupt_request != 0 || env->exit_request != 0) { 657 662 /* hardware interrupt will be executed just after */ 658 663 } else { … … 853 858 next_tb = 0; 854 859 } 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(); 860 865 } 861 866 #ifdef DEBUG_EXEC … … 927 932 infinite loop and becomes env->current_tb. Avoid 928 933 starting execution if there is a pending interrupt. */ 929 if (unlikely (env-> interrupt_request & CPU_INTERRUPT_EXIT))934 if (unlikely (env->exit_request)) 930 935 env->current_tb = NULL; 931 936
Note:
See TracChangeset
for help on using the changeset viewer.