Changeset 10213 in vbox
- Timestamp:
- Jul 4, 2008 10:51:49 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32800
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/x86.h
r9887 r10213 700 700 * @{ 701 701 */ 702 703 /** Time Stamp Counter. */ 704 #define MSR_IA32_TSC 0x10 705 702 706 #ifndef MSR_IA32_APICBASE /* qemu cpu.h klugde */ 703 707 #define MSR_IA32_APICBASE 0x1b … … 708 712 #define MSR_IA32_FEATURE_CONTROL_LOCK RT_BIT(0) 709 713 #define MSR_IA32_FEATURE_CONTROL_VMXON RT_BIT(2) 714 715 /** MTRR Capabilities. */ 716 #define MSR_IA32_MTRR_CAP 0xFE 710 717 711 718 … … 723 730 #endif 724 731 732 /** Machine Check Global Capabilities Register. */ 733 #define MSR_IA32_MCP_CAP 0x179 734 /** Machine Check Global Status Register. */ 735 #define MSR_IA32_MCP_STATUS 0x17A 736 /** Machine Check Global Control Register. */ 737 #define MSR_IA32_MCP_CTRL 0x17B 738 725 739 /* Page Attribute Table. */ 726 740 #define MSR_IA32_CR_PAT 0x277 741 742 /** MTRR Default Range. */ 743 #define MSR_IA32_MTRR_DEF_TYPE 0x2FF 727 744 728 745 /** Basic VMX information. */ -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r10210 r10213 2229 2229 case MSR_K8_KERNEL_GS_BASE: 2230 2230 return "MSR_K8_KERNEL_GS_BASE"; 2231 case MSR_IA32_TSC: 2232 return "Unsupported MSR_IA32_TSC"; 2233 case MSR_IA32_MCP_CAP: 2234 return "Unsupported MSR_IA32_MCP_CAP"; 2235 case MSR_IA32_MCP_STATUS: 2236 return "Unsupported MSR_IA32_MCP_STATUS"; 2237 case MSR_IA32_MCP_CTRL: 2238 return "Unsupported MSR_IA32_MCP_CTRL"; 2239 case MSR_IA32_MTRR_DEF_TYPE: 2240 return "Unsupported MSR_IA32_MTRR_DEF_TYPE"; 2241 case MSR_K7_EVNTSEL0: 2242 return "Unsupported MSR_K7_EVNTSEL0"; 2243 case MSR_K7_EVNTSEL1: 2244 return "Unsupported MSR_K7_EVNTSEL1"; 2245 case MSR_K7_EVNTSEL2: 2246 return "Unsupported MSR_K7_EVNTSEL2"; 2247 case MSR_K7_EVNTSEL3: 2248 return "Unsupported MSR_K7_EVNTSEL3"; 2231 2249 } 2232 2250 return "Unknown MSR";
Note:
See TracChangeset
for help on using the changeset viewer.