Changeset 37702 in vbox
- Timestamp:
- Jun 30, 2011 10:09:59 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72562
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r33540 r37702 32 32 33 33 #if defined(__L4ENV__) 34 # include <setjmp.h>34 # include <setjmp.h> 35 35 #endif 36 36 … … 368 368 * Operand Parameter. 369 369 */ 370 typedef struct _OP_PARAMETER370 typedef struct OP_PARAMETER 371 371 { 372 372 /** @todo switch param and parval and move disp64 and flags up here with the other 64-bit vars to get more natural alignment and save space. */ … … 416 416 417 417 418 struct _OPCODE;419 418 /** Pointer to opcode. */ 420 typedef struct _OPCODE *POPCODE;419 typedef struct OPCODE *POPCODE; 421 420 /** Pointer to const opcode. */ 422 typedef const struct _OPCODE *PCOPCODE;421 typedef const struct OPCODE *PCOPCODE; 423 422 424 423 typedef DECLCALLBACK(int) FN_DIS_READBYTES(RTUINTPTR pSrc, uint8_t *pDest, unsigned size, void *pvUserdata); 425 424 typedef FN_DIS_READBYTES *PFN_DIS_READBYTES; 426 427 /* forward decl */428 struct _DISCPUSTATE;429 /** Pointer to the disassembler CPU state. */430 typedef struct _DISCPUSTATE *PDISCPUSTATE;431 425 432 426 /** Parser callback. … … 435 429 typedef FNDISPARSE *PFNDISPARSE; 436 430 437 typedef struct _DISCPUSTATE431 typedef struct DISCPUSTATE 438 432 { 439 433 /* Global setting */ … … 513 507 } DISCPUSTATE; 514 508 515 /** Pointer to a const disassembler CPU state. */516 typedef DISCPUSTATE const *PCDISCPUSTATE;517 518 509 /** The storage padding sufficient to hold the largest DISCPUSTATE in all 519 510 * contexts (R3, R0 and RC). Used various places in the VMM internals. */ … … 522 513 /** Opcode. */ 523 514 #pragma pack(4) 524 typedef struct _OPCODE515 typedef struct OPCODE 525 516 { 526 517 #ifndef DIS_CORE_ONLY -
trunk/include/VBox/types.h
r36761 r37702 1054 1054 } CPUMMODE; 1055 1055 1056 1057 /** Pointer to the disassembler CPU state. */ 1058 typedef struct DISCPUSTATE *PDISCPUSTATE; 1059 /** Pointer to a const disassembler CPU state. */ 1060 typedef struct DISCPUSTATE const *PCDISCPUSTATE; 1061 1062 1056 1063 /** @} */ 1057 1064 -
trunk/include/VBox/vmm/em.h
r35361 r37702 29 29 #include <VBox/types.h> 30 30 #include <VBox/vmm/trpm.h> 31 #include <VBox/dis.h>32 31 33 32 … … 189 188 VMMDECL(void) EMRemLock(PVM pVM); 190 189 VMMDECL(bool) EMRemIsLockOwner(PVM pVM); 191 VMMDECL(int) EM TryEnterRemLock(PVM pVM);190 VMMDECL(int) EMRemTryLock(PVM pVM); 192 191 /** @} */ 193 192 -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r36315 r37702 3136 3136 VMMDECL(bool) EMRemIsLockOwner(PVM pVM) 3137 3137 { 3138 if (!PDMCritSectIsInitialized(&pVM->em.s.CritSectREM)) 3139 return true; /* early init */ 3140 3138 3141 return PDMCritSectIsOwner(&pVM->em.s.CritSectREM); 3139 3142 } … … 3145 3148 * @param pVM The VM to operate on. 3146 3149 */ 3147 VMMDECL(int) EMTryEnterRemLock(PVM pVM) 3148 { 3150 VMMDECL(int) EMRemTryLock(PVM pVM) 3151 { 3152 if (!PDMCritSectIsInitialized(&pVM->em.s.CritSectREM)) 3153 return VINF_SUCCESS; /* early init */ 3154 3149 3155 return PDMCritSectTryEnter(&pVM->em.s.CritSectREM); 3150 3156 } -
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r35346 r37702 47 47 */ 48 48 if ( pVM->rem.s.cInvalidatedPages < RT_ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages) 49 && EM TryEnterRemLock(pVM) == VINF_SUCCESS)49 && EMRemTryLock(pVM) == VINF_SUCCESS) 50 50 { 51 51 uint32_t iPage = pVM->rem.s.cInvalidatedPages; -
trunk/src/VBox/VMM/include/REMInternal.h
r36170 r37702 238 238 bool remR3DisasInstr(CPUState *env, int f32BitCode, char *pszPrefix); 239 239 void remR3FlushPage(CPUState *env, RTGCPTR GCPtr); 240 void remR3SetPage(CPUState *env, CPUTLBEntry *pRead, CPUTLBEntry *pWrite, int prot, int is_user);241 240 void remR3FlushTLB(CPUState *env, bool fGlobal); 242 241 void remR3ProtectCode(CPUState *env, RTGCPTR GCPtr); -
trunk/src/recompiler/VBoxRecompiler.c
r37689 r37702 311 311 CPUMGetGuestCpuId(pVCpu, 0x80000001, &u32Dummy, &u32Dummy, &pVM->rem.s.Env.cpuid_ext3_features, &pVM->rem.s.Env.cpuid_ext2_features); 312 312 313 EMRemLock(pVM); 313 314 cpu_reset(&pVM->rem.s.Env); 315 EMRemUnlock(pVM); 314 316 315 317 /* allocate code buffer for single instruction emulation. */ … … 607 609 REMR3DECL(void) REMR3Reset(PVM pVM) 608 610 { 611 EMRemLock(pVM); /* Only pro forma, we're in a rendezvous. */ 612 609 613 /* 610 614 * Reset the REM cpu. … … 622 626 /* Flush the TBs the next time we execute code here. */ 623 627 pVM->rem.s.fFlushTBs = true; 628 629 EMRemUnlock(pVM); 624 630 } 625 631 … … 764 770 765 771 /* 766 * Sync the Load Flush the TLB767 */768 tlb_flush(&pRem->Env, 1);769 770 /*771 772 * Stop ignoring ignorable notifications. 772 773 */ … … 814 815 */ 815 816 interrupt_request = pVM->rem.s.Env.interrupt_request; 816 Assert(!(interrupt_request & ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER | CPU_INTERRUPT_EXTERNAL_HARD | CPU_INTERRUPT_EXTERNAL_EXIT | CPU_INTERRUPT_EXTERNAL_ TIMER)));817 Assert(!(interrupt_request & ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER | CPU_INTERRUPT_EXTERNAL_HARD | CPU_INTERRUPT_EXTERNAL_EXIT | CPU_INTERRUPT_EXTERNAL_FLUSH_TLB | CPU_INTERRUPT_EXTERNAL_TIMER))); 817 818 pVM->rem.s.Env.interrupt_request = 0; 818 819 cpu_single_step(&pVM->rem.s.Env, 1); … … 954 955 { 955 956 int interrupt_request = pVM->rem.s.Env.interrupt_request; 956 Assert(!(interrupt_request & ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER | CPU_INTERRUPT_EXTERNAL_HARD | CPU_INTERRUPT_EXTERNAL_EXIT | CPU_INTERRUPT_EXTERNAL_ TIMER)));957 Assert(!(interrupt_request & ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB | CPU_INTERRUPT_TIMER | CPU_INTERRUPT_EXTERNAL_HARD | CPU_INTERRUPT_EXTERNAL_EXIT | CPU_INTERRUPT_EXTERNAL_FLUSH_TLB | CPU_INTERRUPT_EXTERNAL_TIMER))); 957 958 #ifdef REM_USE_QEMU_SINGLE_STEP_FOR_LOGGING 958 959 cpu_single_step(&pVM->rem.s.Env, 0); … … 1677 1678 int rc; 1678 1679 1680 Assert(EMRemIsLockOwner(env->pVM)); 1681 1679 1682 /* 1680 1683 * When we're replaying invlpg instructions or restoring a saved … … 1786 1789 void remR3FlushTLB(CPUX86State *env, bool fGlobal) 1787 1790 { 1788 PVM pVM = env->pVM;1791 PVM pVM = env->pVM; 1789 1792 PCPUMCTX pCtx; 1793 Assert(EMRemIsLockOwner(pVM)); 1790 1794 1791 1795 /* -
trunk/src/recompiler/cpu-all.h
r37693 r37702 945 945 #ifdef VBOX 946 946 /** Executes a single instruction. cpu_exec() will normally return EXCP_SINGLE_INSTR. */ 947 # define CPU_INTERRUPT_SINGLE_INSTR 0x0 2000000947 # define CPU_INTERRUPT_SINGLE_INSTR 0x01000000 948 948 /** Executing a CPU_INTERRUPT_SINGLE_INSTR request, quit the cpu_loop. (for exceptions and suchlike) */ 949 # define CPU_INTERRUPT_SINGLE_INSTR_IN_FLIGHT 0x0 4000000949 # define CPU_INTERRUPT_SINGLE_INSTR_IN_FLIGHT 0x02000000 950 950 /** VM execution was interrupted by VMR3Reset, VMR3Suspend or VMR3PowerOff. */ 951 # define CPU_INTERRUPT_RC 0x08000000 951 # define CPU_INTERRUPT_RC 0x04000000 952 /** Exit current TB to process an external request. */ 953 # define CPU_INTERRUPT_EXTERNAL_FLUSH_TLB 0x08000000 952 954 /** Exit current TB to process an external request. */ 953 955 # define CPU_INTERRUPT_EXTERNAL_EXIT 0x10000000 -
trunk/src/recompiler/cpu-exec.c
r37689 r37702 417 417 #if defined(TARGET_I386) 418 418 # ifdef VBOX 419 /* Memory registration may post a tlb flush request, process it ASAP. */ 420 if (interrupt_request & (CPU_INTERRUPT_EXTERNAL_FLUSH_TLB)) { 421 tlb_flush(env, true); /* (clears the flush flag) */ 422 } 423 419 424 /* Single instruction exec request, we execute it and return (one way or the other). 420 425 The caller will always reschedule after doing this operation! */ -
trunk/src/recompiler/exec-all.h
r37689 r37702 34 34 # include <VBox/vmm/tm.h> 35 35 # include <VBox/vmm/pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */ 36 # include <VBox/vmm/em.h> /* EMRemIsLockOwner */ 36 37 # ifndef LOG_GROUP 37 38 # define LOG_GROUP LOG_GROUP_REM -
trunk/src/recompiler/exec.c
r37696 r37702 2108 2108 int i; 2109 2109 2110 #ifdef VBOX 2111 Assert(EMRemIsLockOwner(env->pVM)); 2112 ASMAtomicAndS32((int32_t volatile *)&env->interrupt_request, ~CPU_INTERRUPT_EXTERNAL_FLUSH_TLB); 2113 #endif 2114 2110 2115 #if defined(DEBUG_TLB) 2111 2116 printf("tlb_flush:\n"); … … 2151 2156 int mmu_idx; 2152 2157 2158 Assert(EMRemIsLockOwner(env->pVM)); 2153 2159 #if defined(DEBUG_TLB) 2154 2160 printf("tlb_flush_page: " TARGET_FMT_lx "\n", addr); … … 2923 2929 /* since each CPU stores ram addresses in its TLB cache, we must 2924 2930 reset the modified entries */ 2931 #ifndef VBOX 2925 2932 /* XXX: slow ! */ 2926 2933 for(env = first_cpu; env != NULL; env = env->next_cpu) { 2927 2934 tlb_flush(env, 1); 2928 2935 } 2936 #else 2937 /* We have one thread per CPU, so, one of the other EMTs might be executing 2938 code right now and flushing the TLB may crash it. */ 2939 env = first_cpu; 2940 if (EMRemIsLockOwner(env->pVM)) 2941 tlb_flush(env, 1); 2942 else 2943 ASMAtomicOrS32((int32_t volatile *)&env->interrupt_request, 2944 CPU_INTERRUPT_EXTERNAL_FLUSH_TLB); 2945 #endif 2929 2946 } 2930 2947 -
trunk/src/recompiler/target-i386/op_helper.c
r37689 r37702 679 679 void helper_check_external_event() 680 680 { 681 if ( (env->interrupt_request & ( CPU_INTERRUPT_EXTERNAL_EXIT 681 if ( (env->interrupt_request & ( CPU_INTERRUPT_EXTERNAL_FLUSH_TLB 682 | CPU_INTERRUPT_EXTERNAL_EXIT 682 683 | CPU_INTERRUPT_EXTERNAL_TIMER 683 684 | CPU_INTERRUPT_EXTERNAL_DMA)) … … 1476 1477 ~CPU_INTERRUPT_EXTERNAL_TIMER); 1477 1478 remR3TimersRun(env); 1479 } 1480 if (env->interrupt_request & CPU_INTERRUPT_EXTERNAL_FLUSH_TLB) 1481 { 1482 ASMAtomicAndS32((int32_t volatile *)&env->interrupt_request, 1483 ~CPU_INTERRUPT_EXTERNAL_HARD); 1484 cpu_interrupt(env, CPU_INTERRUPT_HARD); 1478 1485 } 1479 1486 } … … 5836 5843 * Exit once we detect an external interrupt and interrupts are enabled 5837 5844 */ 5838 if ( (env->interrupt_request & (CPU_INTERRUPT_EXTERNAL_EXIT |CPU_INTERRUPT_EXTERNAL_TIMER))5845 if ( (env->interrupt_request & (CPU_INTERRUPT_EXTERNAL_EXIT | CPU_INTERRUPT_EXTERNAL_TIMER)) 5839 5846 || ( (env->eflags & IF_MASK) 5840 5847 && !(env->hflags & HF_INHIBIT_IRQ_MASK) … … 5843 5850 { 5844 5851 break; 5852 } 5853 if (env->interrupt_request & CPU_INTERRUPT_EXTERNAL_FLUSH_TLB) { 5854 tlb_flush(env, true); 5845 5855 } 5846 5856 }
Note:
See TracChangeset
for help on using the changeset viewer.