VirtualBox

Changeset 72493 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Jun 10, 2018 4:08:44 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
122978
Message:

IEM,REM,++: Removed code related IEM_VERIFICATION_MODE and friends because it (1) adds aditional complexity and mess, (2) suffers bit rot as it's infrequently used, and (3) prevents using pVCpu->cpum.GstCtx directly.

Location:
trunk/src/recompiler
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/Makefile.kmk

    r69111 r72493  
    6868#VBoxRemPrimary_DEFS           += DEBUG_ALL_LOGGING DEBUG_DISAS DEBUG_PCALL CONFIG_DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB  # Enables huge amounts of debug logging.
    6969#VBoxRemPrimary_DEFS           += DEBUG_DISAS DEBUG_PCALL CONFIG_DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB  # Enables huge amounts of debug logging.
    70 ifdef IEM_VERIFICATION_MODE
    71  VBoxRemPrimary_DEFS          += IEM_VERIFICATION_MODE
    72 endif
    7370ifdef VBOX_WITH_RAW_MODE
    7471 VBoxRemPrimary_DEFS          += VBOX_WITH_RAW_MODE
  • trunk/src/recompiler/VBoxRecompiler.c

    r70948 r72493  
    14121412    uint32_t u32CR0;
    14131413
    1414 #ifdef IEM_VERIFICATION_MODE
    1415     return false;
    1416 #endif
    1417 
    14181414    /* Update counter. */
    14191415    env->pVM->rem.s.cCanExecuteRaw++;
     
    42634259REMR3DECL(void) REMR3NotifyInterruptSet(PVM pVM, PVMCPU pVCpu)
    42644260{
    4265 #ifndef IEM_VERIFICATION_MODE
    42664261    LogFlow(("REMR3NotifyInterruptSet: fInRem=%d interrupts %s\n", pVM->rem.s.fInREM,
    42674262             (pVM->rem.s.Env.eflags & IF_MASK) && !(pVM->rem.s.Env.hflags & HF_INHIBIT_IRQ_MASK) ? "enabled" : "disabled"));
    42684263    if (pVM->rem.s.fInREM)
    4269     {
    4270         ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request,
    4271                        CPU_INTERRUPT_EXTERNAL_HARD);
    4272     }
    4273 #endif
     4264        ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_HARD);
    42744265}
    42754266
     
    43024293REMR3DECL(void) REMR3NotifyTimerPending(PVM pVM, PVMCPU pVCpuDst)
    43034294{
    4304 #ifndef IEM_VERIFICATION_MODE
    43054295#ifndef DEBUG_bird
    43064296    LogFlow(("REMR3NotifyTimerPending: fInRem=%d\n", pVM->rem.s.fInREM));
     
    43194309    else
    43204310        LogIt(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP_TM, ("REMR3NotifyTimerPending: !fInREM; cpu state=%d\n", VMCPU_GET_STATE(pVCpuDst)));
    4321 #endif
    43224311}
    43234312
     
    43314320REMR3DECL(void) REMR3NotifyDmaPending(PVM pVM)
    43324321{
    4333 #ifndef IEM_VERIFICATION_MODE
    43344322    LogFlow(("REMR3NotifyDmaPending: fInRem=%d\n", pVM->rem.s.fInREM));
    43354323    if (pVM->rem.s.fInREM)
    4336     {
    4337         ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request,
    4338                        CPU_INTERRUPT_EXTERNAL_DMA);
    4339     }
    4340 #endif
     4324        ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_DMA);
    43414325}
    43424326
     
    43504334REMR3DECL(void) REMR3NotifyQueuePending(PVM pVM)
    43514335{
    4352 #ifndef IEM_VERIFICATION_MODE
    43534336    LogFlow(("REMR3NotifyQueuePending: fInRem=%d\n", pVM->rem.s.fInREM));
    43544337    if (pVM->rem.s.fInREM)
    4355     {
    4356         ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request,
    4357                        CPU_INTERRUPT_EXTERNAL_EXIT);
    4358     }
    4359 #endif
     4338        ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_EXIT);
    43604339}
    43614340
     
    43694348REMR3DECL(void) REMR3NotifyFF(PVM pVM)
    43704349{
    4371 #ifndef IEM_VERIFICATION_MODE
    43724350    LogFlow(("REMR3NotifyFF: fInRem=%d\n", pVM->rem.s.fInREM));
    43734351    if (pVM->rem.s.fInREM)
    4374     {
    4375         ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request,
    4376                        CPU_INTERRUPT_EXTERNAL_EXIT);
    4377     }
    4378 #endif
     4352        ASMAtomicOrS32((int32_t volatile *)&cpu_single_env->interrupt_request, CPU_INTERRUPT_EXTERNAL_EXIT);
    43794353}
    43804354
  • trunk/src/recompiler/cpu-exec.c

    r69465 r72493  
    350350                                 env->exception_next_eip,
    351351                                 env->exception_is_int == EXCEPTION_IS_INT_VALUE_HARDWARE_IRQ);
    352 #  ifdef IEM_VERIFICATION_MODE /* Ugly hacks */
    353                     cpu_loop_exit();
    354 #  endif
    355352                    /* successfully delivered */
    356353                    env->old_exception = -1;
     
    450447                        /* Clear CPU_INTERRUPT_SINGLE_INSTR and leave CPU_INTERRUPT_SINGLE_INSTR_IN_FLIGHT set. */
    451448                        ASMAtomicAndS32((int32_t volatile *)&env->interrupt_request, ~CPU_INTERRUPT_SINGLE_INSTR);
    452 #  ifdef IEM_VERIFICATION_MODE
    453                         env->exception_index = ret = EXCP_SINGLE_INSTR;
    454                         cpu_loop_exit();
    455 #  endif
    456449                    }
    457450# endif /* VBOX */
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