Changeset 72493 in vbox for trunk/src/recompiler
- Timestamp:
- Jun 10, 2018 4:08:44 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122978
- Location:
- trunk/src/recompiler
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Makefile.kmk
r69111 r72493 68 68 #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. 69 69 #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_MODE71 VBoxRemPrimary_DEFS += IEM_VERIFICATION_MODE72 endif73 70 ifdef VBOX_WITH_RAW_MODE 74 71 VBoxRemPrimary_DEFS += VBOX_WITH_RAW_MODE -
trunk/src/recompiler/VBoxRecompiler.c
r70948 r72493 1412 1412 uint32_t u32CR0; 1413 1413 1414 #ifdef IEM_VERIFICATION_MODE1415 return false;1416 #endif1417 1418 1414 /* Update counter. */ 1419 1415 env->pVM->rem.s.cCanExecuteRaw++; … … 4263 4259 REMR3DECL(void) REMR3NotifyInterruptSet(PVM pVM, PVMCPU pVCpu) 4264 4260 { 4265 #ifndef IEM_VERIFICATION_MODE4266 4261 LogFlow(("REMR3NotifyInterruptSet: fInRem=%d interrupts %s\n", pVM->rem.s.fInREM, 4267 4262 (pVM->rem.s.Env.eflags & IF_MASK) && !(pVM->rem.s.Env.hflags & HF_INHIBIT_IRQ_MASK) ? "enabled" : "disabled")); 4268 4263 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); 4274 4265 } 4275 4266 … … 4302 4293 REMR3DECL(void) REMR3NotifyTimerPending(PVM pVM, PVMCPU pVCpuDst) 4303 4294 { 4304 #ifndef IEM_VERIFICATION_MODE4305 4295 #ifndef DEBUG_bird 4306 4296 LogFlow(("REMR3NotifyTimerPending: fInRem=%d\n", pVM->rem.s.fInREM)); … … 4319 4309 else 4320 4310 LogIt(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP_TM, ("REMR3NotifyTimerPending: !fInREM; cpu state=%d\n", VMCPU_GET_STATE(pVCpuDst))); 4321 #endif4322 4311 } 4323 4312 … … 4331 4320 REMR3DECL(void) REMR3NotifyDmaPending(PVM pVM) 4332 4321 { 4333 #ifndef IEM_VERIFICATION_MODE4334 4322 LogFlow(("REMR3NotifyDmaPending: fInRem=%d\n", pVM->rem.s.fInREM)); 4335 4323 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); 4341 4325 } 4342 4326 … … 4350 4334 REMR3DECL(void) REMR3NotifyQueuePending(PVM pVM) 4351 4335 { 4352 #ifndef IEM_VERIFICATION_MODE4353 4336 LogFlow(("REMR3NotifyQueuePending: fInRem=%d\n", pVM->rem.s.fInREM)); 4354 4337 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); 4360 4339 } 4361 4340 … … 4369 4348 REMR3DECL(void) REMR3NotifyFF(PVM pVM) 4370 4349 { 4371 #ifndef IEM_VERIFICATION_MODE4372 4350 LogFlow(("REMR3NotifyFF: fInRem=%d\n", pVM->rem.s.fInREM)); 4373 4351 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); 4379 4353 } 4380 4354 -
trunk/src/recompiler/cpu-exec.c
r69465 r72493 350 350 env->exception_next_eip, 351 351 env->exception_is_int == EXCEPTION_IS_INT_VALUE_HARDWARE_IRQ); 352 # ifdef IEM_VERIFICATION_MODE /* Ugly hacks */353 cpu_loop_exit();354 # endif355 352 /* successfully delivered */ 356 353 env->old_exception = -1; … … 450 447 /* Clear CPU_INTERRUPT_SINGLE_INSTR and leave CPU_INTERRUPT_SINGLE_INSTR_IN_FLIGHT set. */ 451 448 ASMAtomicAndS32((int32_t volatile *)&env->interrupt_request, ~CPU_INTERRUPT_SINGLE_INSTR); 452 # ifdef IEM_VERIFICATION_MODE453 env->exception_index = ret = EXCP_SINGLE_INSTR;454 cpu_loop_exit();455 # endif456 449 } 457 450 # endif /* VBOX */
Note:
See TracChangeset
for help on using the changeset viewer.