Changeset 13020 in vbox for trunk/src/recompiler
- Timestamp:
- Oct 6, 2008 4:27:16 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37459
- Location:
- trunk/src/recompiler
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r13013 r13020 645 645 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL } 646 646 }; 647 static const REMPARMDESC g_aArgsPDMApicW RMSR[] =647 static const REMPARMDESC g_aArgsPDMApicWriteMSR[] = 648 648 { 649 649 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL }, … … 652 652 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL } 653 653 }; 654 static const REMPARMDESC g_aArgsPDMApicR DMSR[] =654 static const REMPARMDESC g_aArgsPDMApicReadMSR[] = 655 655 { 656 656 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL }, … … 1079 1079 { "PDMApicSetBase", (void *)(uintptr_t)&PDMApicSetBase, &g_aArgsPDMApicSetBase[0], RT_ELEMENTS(g_aArgsPDMApicSetBase), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1080 1080 { "PDMApicSetTPR", (void *)(uintptr_t)&PDMApicSetTPR, &g_aArgsPDMApicSetTPR[0], RT_ELEMENTS(g_aArgsPDMApicSetTPR), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1081 { "PDMApicW RMSR", (void *)(uintptr_t)&PDMApicWRMSR, &g_aArgsPDMApicWRMSR[0], RT_ELEMENTS(g_aArgsPDMApicWRMSR), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL },1082 { "PDMApicR DMSR", (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 }, 1083 1083 { "PDMR3DmaRun", (void *)(uintptr_t)&PDMR3DmaRun, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1084 1084 { "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 4090 4090 { 4091 4091 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)); 4098 4100 return value; 4099 4101 } … … 4101 4103 void cpu_apic_wrmsr(CPUX86State *env, uint32_t reg, uint64_t value) 4102 4104 { 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); 4108 4108 } 4109 4109 /* -+- I/O Ports -+- */ -
trunk/src/recompiler/target-i386/helper.c
r13013 r13020 3077 3077 /* In X2APIC specification this range is reserved for APIC control. */ 3078 3078 if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END)) 3079 {3080 3079 cpu_apic_wrmsr(env, ecx, val); 3081 }3082 3080 else 3083 { 3084 /* @todo: exception ? */ 3085 } 3081 /* @todo: exception ? */; 3086 3082 break; 3087 3083 } … … 3139 3135 /* In X2APIC specification this range is reserved for APIC control. */ 3140 3136 if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END)) 3141 {3142 3137 val = cpu_apic_rdmsr(env, ecx); 3143 }3144 3138 else 3145 {3146 3139 /** @todo: exception ? */ 3147 3140 val = 0; 3148 break; 3149 } 3141 break; 3150 3142 } 3151 3143 }
Note:
See TracChangeset
for help on using the changeset viewer.