VirtualBox

Changeset 12795 in vbox for trunk/src


Ignore:
Timestamp:
Sep 29, 2008 1:07:00 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37140
Message:

HWACCM: fixed unsigned/signed compare warning (x86.h), use const and g_.

Location:
trunk/src/VBox/VMM/VMMR0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp

    r12708 r12795  
    5151static int SVMR0InterpretInvpg(PVM pVM, PCPUMCTXCORE pRegFrame, uint32_t uASID);
    5252
     53/*******************************************************************************
     54*   Global Variables                                                           *
     55*******************************************************************************/
    5356/* IO operation lookup arrays. */
    54 static uint32_t aIOSize[4] = {1, 2, 0, 4};
     57static uint32_t const g_aIOSize[4] = {1, 2, 0, 4};
    5558
    5659/**
     
    18671870                    for (unsigned i=0;i<4;i++)
    18681871                    {
    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)];
    18701873
    18711874                        if (    (IoExitInfo.n.u16Port >= pCtx->dr[i] && IoExitInfo.n.u16Port < pCtx->dr[i] + uBPLen)
  • trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp

    r12793 r12795  
    4646*******************************************************************************/
    4747/* IO operation lookup arrays. */
    48 static uint32_t aIOSize[4]  = {1, 2, 0, 4};
    49 static uint32_t aIOOpAnd[4] = {0xff, 0xffff, 0, 0xffffffff};
     48static uint32_t const g_aIOSize[4]  = {1, 2, 0, 4};
     49static uint32_t const g_aIOOpAnd[4] = {0xff, 0xffff, 0, 0xffffffff};
    5050
    5151
     
    23042304        }
    23052305
    2306         uint32_t cbSize = aIOSize[uIOWidth];
     2306        uint32_t cbSize = g_aIOSize[uIOWidth];
    23072307
    23082308        if (VMX_EXIT_QUALIFICATION_IO_STRING(exitQualification))
     
    23292329        {
    23302330            /* normal in/out */
    2331             uint32_t uAndVal = aIOOpAnd[uIOWidth];
     2331            uint32_t uAndVal = g_aIOOpAnd[uIOWidth];
    23322332
    23332333            Assert(!VMX_EXIT_QUALIFICATION_IO_REP(exitQualification));
     
    23672367                    for (unsigned i=0;i<4;i++)
    23682368                    {
    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)];
    23702370
    23712371                        if (    (uPort >= pCtx->dr[i] && uPort < pCtx->dr[i] + uBPLen)
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