Changeset 13013 in vbox for trunk/src/recompiler
- Timestamp:
- Oct 6, 2008 2:48:49 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37452
- Location:
- trunk/src/recompiler
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r12655 r13013 645 645 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL } 646 646 }; 647 static const REMPARMDESC g_aArgsPDMApicWRMSR[] = 648 { 649 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL }, 650 { REMPARMDESC_FLAGS_INT, sizeof(VMCPUID), NULL }, 651 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }, 652 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t), NULL } 653 }; 654 static const REMPARMDESC g_aArgsPDMApicRDMSR[] = 655 { 656 { REMPARMDESC_FLAGS_INT, sizeof(PVM), NULL }, 657 { REMPARMDESC_FLAGS_INT, sizeof(VMCPUID), NULL }, 658 { REMPARMDESC_FLAGS_INT, sizeof(uint32_t), NULL }, 659 { REMPARMDESC_FLAGS_INT, sizeof(uint64_t *), NULL } 660 }; 647 661 static const REMPARMDESC g_aArgsPDMGetInterrupt[] = 648 662 { … … 1004 1018 { "REMR3NotifyInterruptClear", (void *)&pfnREMR3NotifyInterruptClear, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1005 1019 { "REMR3NotifyTimerPending", (void *)&pfnREMR3NotifyTimerPending, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1006 1020 { "REMR3NotifyDmaPending", (void *)&pfnREMR3NotifyDmaPending, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1007 1021 { "REMR3NotifyQueuePending", (void *)&pfnREMR3NotifyQueuePending, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1008 1022 { "REMR3NotifyFF", (void *)&pfnREMR3NotifyFF, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, … … 1065 1079 { "PDMApicSetBase", (void *)(uintptr_t)&PDMApicSetBase, &g_aArgsPDMApicSetBase[0], RT_ELEMENTS(g_aArgsPDMApicSetBase), REMFNDESC_FLAGS_RET_INT, sizeof(int), NULL }, 1066 1080 { "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 }, 1067 1083 { "PDMR3DmaRun", (void *)(uintptr_t)&PDMR3DmaRun, &g_aArgsVM[0], RT_ELEMENTS(g_aArgsVM), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1068 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
r12828 r13013 4087 4087 4088 4088 4089 uint64_t cpu_apic_rdmsr(CPUX86State *env, uint32_t reg) 4090 { 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 } 4098 return value; 4099 } 4100 4101 void cpu_apic_wrmsr(CPUX86State *env, uint32_t reg, uint64_t value) 4102 { 4103 int rc = PDMApicWRMSR(env->pVM, 0 /* cpu */, reg, value); 4104 if (rc != VINF_SUCCESS) 4105 { 4106 /** @todo: exception ? */ 4107 } 4108 } 4089 4109 /* -+- I/O Ports -+- */ 4090 4110 -
trunk/src/recompiler/target-i386/cpu.h
r11982 r13013 260 260 #define MSR_EFER_NXE (1 << 11) 261 261 #define MSR_EFER_FFXSR (1 << 14) 262 #define MSR_APIC_RANGE_START 0x800 263 #define MSR_APIC_RANGE_END 0x900 262 264 263 265 #define MSR_STAR 0xc0000081 … … 851 853 uint8_t cpu_get_apic_tpr(CPUX86State *env); 852 854 #endif 855 uint64_t cpu_apic_rdmsr(CPUX86State *env, uint32_t reg); 856 void cpu_apic_wrmsr(CPUX86State *env, uint32_t reg, uint64_t value); 853 857 void cpu_smm_update(CPUX86State *env); 854 858 -
trunk/src/recompiler/target-i386/helper.c
r12679 r13013 3073 3073 #endif 3074 3074 default: 3075 /* XXX: exception ? */ 3076 break; 3075 { 3076 uint32_t ecx = (uint32_t)ECX; 3077 /* In X2APIC specification this range is reserved for APIC control. */ 3078 if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END)) 3079 { 3080 cpu_apic_wrmsr(env, ecx, val); 3081 } 3082 else 3083 { 3084 /* @todo: exception ? */ 3085 } 3086 break; 3087 } 3077 3088 } 3078 3089 } … … 3124 3135 #endif 3125 3136 default: 3126 /* XXX: exception ? */ 3127 val = 0; 3128 break; 3137 { 3138 uint32_t ecx = (uint32_t)ECX; 3139 /* In X2APIC specification this range is reserved for APIC control. */ 3140 if ((ecx >= MSR_APIC_RANGE_START) && (ecx < MSR_APIC_RANGE_END)) 3141 { 3142 val = cpu_apic_rdmsr(env, ecx); 3143 } 3144 else 3145 { 3146 /** @todo: exception ? */ 3147 val = 0; 3148 break; 3149 } 3150 } 3129 3151 } 3130 3152 EAX = (uint32_t)(val);
Note:
See TracChangeset
for help on using the changeset viewer.