VirtualBox

Changeset 13020 in vbox for trunk/src/recompiler


Ignore:
Timestamp:
Oct 6, 2008 4:27:16 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37459
Message:

Knut-compatibility fixes

Location:
trunk/src/recompiler
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/VBoxREMWrapper.cpp

    r13013 r13020  
    645645    { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t), NULL }
    646646};
    647 static const REMPARMDESC g_aArgsPDMApicWRMSR[] =
     647static const REMPARMDESC g_aArgsPDMApicWriteMSR[] =
    648648{
    649649    { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
     
    652652    { REMPARMDESC_FLAGS_INT,        sizeof(uint64_t), NULL }
    653653};
    654 static const REMPARMDESC g_aArgsPDMApicRDMSR[] =
     654static const REMPARMDESC g_aArgsPDMApicReadMSR[] =
    655655{
    656656    { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
     
    10791079    { "PDMApicSetBase",                         (void *)(uintptr_t)&PDMApicSetBase,                 &g_aArgsPDMApicSetBase[0],                  RT_ELEMENTS(g_aArgsPDMApicSetBase),                    REMFNDESC_FLAGS_RET_INT,    sizeof(int),        NULL },
    10801080    { "PDMApicSetTPR",                          (void *)(uintptr_t)&PDMApicSetTPR,                  &g_aArgsPDMApicSetTPR[0],                   RT_ELEMENTS(g_aArgsPDMApicSetTPR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),        NULL },
    1081     { "PDMApicWRMSR",                           (void *)(uintptr_t)&PDMApicWRMSR,                  &g_aArgsPDMApicWRMSR[0],                   RT_ELEMENTS(g_aArgsPDMApicWRMSR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),           NULL },
    1082     { "PDMApicRDMSR",                           (void *)(uintptr_t)&PDMApicRDMSR,                  &g_aArgsPDMApicRDMSR[0],                   RT_ELEMENTS(g_aArgsPDMApicRDMSR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),           NULL },
     1081    { "PDMApicWriteMSR",                        (void *)(uintptr_t)&PDMApicWriteMSR,                  &g_aArgsPDMApicWriteMSR[0],                   RT_ELEMENTS(g_aArgsPDMApicWriteMSR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),           NULL },
     1082    { "PDMApicReadMSR",                         (void *)(uintptr_t)&PDMApicReadMSR,                  &g_aArgsPDMApicReadMSR[0],                   RT_ELEMENTS(g_aArgsPDMApicReadMSR),                     REMFNDESC_FLAGS_RET_INT,    sizeof(int),           NULL },
    10831083    { "PDMR3DmaRun",                            (void *)(uintptr_t)&PDMR3DmaRun,                    &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,                  NULL },
    10841084    { "PDMGetInterrupt",                        (void *)(uintptr_t)&PDMGetInterrupt,                &g_aArgsPDMGetInterrupt[0],                 RT_ELEMENTS(g_aArgsPDMGetInterrupt),                   REMFNDESC_FLAGS_RET_INT,    sizeof(int),        NULL },
  • trunk/src/recompiler/VBoxRecompiler.c

    r13013 r13020  
    40904090{
    40914091    uint64_t value;
    4092     int rc = PDMApicRDMSR(env->pVM, 0/* cpu */, reg, &value);
    4093     if (rc != VINF_SUCCESS)
    4094     {
    4095         /** @todo: exception ? */
    4096         value = 0;
    4097     }
     4092    int rc = PDMApicReadMSR(env->pVM, 0/* cpu */, reg, &value);
     4093    if (VBOX_SUCCESS(rc))
     4094    {
     4095        LogFlow(("cpu_apic_rdms returns %#x\n", value));
     4096        return value;
     4097    }
     4098    /** @todo: exception ? */
     4099    LogFlow(("cpu_apic_rdms returns 0 (rc=%Vrc)\n", rc));
    40984100    return value;
    40994101}
     
    41014103void     cpu_apic_wrmsr(CPUX86State *env, uint32_t reg, uint64_t value)
    41024104{
    4103     int rc = PDMApicWRMSR(env->pVM, 0 /* cpu */, reg, value);
    4104     if (rc != VINF_SUCCESS)
    4105     {
    4106         /** @todo: exception ? */
    4107     }
     4105    int rc = PDMApicWriteMSR(env->pVM, 0 /* cpu */, reg, value);
     4106    /** @todo: exception if error ? */
     4107    LogFlow(("cpu_apic_wrmsr: rc=%Vrc\n", rc)); NOREF(rc);
    41084108}
    41094109/* -+- I/O Ports -+- */
  • trunk/src/recompiler/target-i386/helper.c

    r13013 r13020  
    30773077        /* In X2APIC specification this range is reserved for APIC control. */
    30783078        if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END))
    3079         {
    30803079            cpu_apic_wrmsr(env, ecx, val);
    3081         }
    30823080        else
    3083         {
    3084             /* @todo: exception ? */
    3085         }
     3081            /* @todo: exception ? */;
    30863082        break;
    30873083    }
     
    31393135        /* In X2APIC specification this range is reserved for APIC control. */
    31403136        if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END))
    3141         {
    31423137            val = cpu_apic_rdmsr(env, ecx);
    3143         }
    31443138        else
    3145         {
    31463139            /** @todo: exception ? */
    31473140            val = 0;
    3148             break;
    3149         }
     3141        break;
    31503142    }
    31513143    }
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