- Timestamp:
- Sep 29, 2008 1:07:00 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37140
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r12708 r12795 51 51 static int SVMR0InterpretInvpg(PVM pVM, PCPUMCTXCORE pRegFrame, uint32_t uASID); 52 52 53 /******************************************************************************* 54 * Global Variables * 55 *******************************************************************************/ 53 56 /* IO operation lookup arrays. */ 54 static uint32_t aIOSize[4]= {1, 2, 0, 4};57 static uint32_t const g_aIOSize[4] = {1, 2, 0, 4}; 55 58 56 59 /** … … 1867 1870 for (unsigned i=0;i<4;i++) 1868 1871 { 1869 unsigned uBPLen = aIOSize[X86_DR7_GET_LEN(pCtx->dr[7], i)];1872 unsigned uBPLen = g_aIOSize[X86_DR7_GET_LEN(pCtx->dr[7], i)]; 1870 1873 1871 1874 if ( (IoExitInfo.n.u16Port >= pCtx->dr[i] && IoExitInfo.n.u16Port < pCtx->dr[i] + uBPLen) -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r12793 r12795 46 46 *******************************************************************************/ 47 47 /* IO operation lookup arrays. */ 48 static uint32_t aIOSize[4] = {1, 2, 0, 4};49 static uint32_t aIOOpAnd[4] = {0xff, 0xffff, 0, 0xffffffff};48 static uint32_t const g_aIOSize[4] = {1, 2, 0, 4}; 49 static uint32_t const g_aIOOpAnd[4] = {0xff, 0xffff, 0, 0xffffffff}; 50 50 51 51 … … 2304 2304 } 2305 2305 2306 uint32_t cbSize = aIOSize[uIOWidth];2306 uint32_t cbSize = g_aIOSize[uIOWidth]; 2307 2307 2308 2308 if (VMX_EXIT_QUALIFICATION_IO_STRING(exitQualification)) … … 2329 2329 { 2330 2330 /* normal in/out */ 2331 uint32_t uAndVal = aIOOpAnd[uIOWidth];2331 uint32_t uAndVal = g_aIOOpAnd[uIOWidth]; 2332 2332 2333 2333 Assert(!VMX_EXIT_QUALIFICATION_IO_REP(exitQualification)); … … 2367 2367 for (unsigned i=0;i<4;i++) 2368 2368 { 2369 unsigned uBPLen = aIOSize[X86_DR7_GET_LEN(pCtx->dr[7], i)];2369 unsigned uBPLen = g_aIOSize[X86_DR7_GET_LEN(pCtx->dr[7], i)]; 2370 2370 2371 2371 if ( (uPort >= pCtx->dr[i] && uPort < pCtx->dr[i] + uBPLen)
Note:
See TracChangeset
for help on using the changeset viewer.