Changeset 54674 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 6, 2015 6:02:31 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98827
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CPUMInternal.h
r54561 r54674 5 5 6 6 /* 7 * Copyright (C) 2006-201 4Oracle Corporation7 * Copyright (C) 2006-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 487 487 488 488 /** The standard set of CpuId leaves. */ 489 CPUMCPUID aGuestCpuId Std[6];489 CPUMCPUID aGuestCpuIdPatmStd[6]; 490 490 /** The extended set of CpuId leaves. */ 491 CPUMCPUID aGuestCpuId Ext[10];491 CPUMCPUID aGuestCpuIdPatmExt[10]; 492 492 /** The centaur set of CpuId leaves. */ 493 CPUMCPUID aGuestCpuId Centaur[4];493 CPUMCPUID aGuestCpuIdPatmCentaur[4]; 494 494 /** The default set of CpuId leaves. */ 495 CPUMCPUID GuestCpuId Def;495 CPUMCPUID GuestCpuIdPatmDef; 496 496 497 497 #if HC_ARCH_BITS == 32 -
trunk/src/VBox/VMM/include/CPUMInternal.mac
r52419 r54674 5 5 6 6 ; 7 ; Copyright (C) 2006-201 2Oracle Corporation7 ; Copyright (C) 2006-2015 Oracle Corporation 8 8 ; 9 9 ; This file is part of VirtualBox Open Source Edition (OSE), as … … 81 81 82 82 ; CPUID leafs 83 .aGuestCpuId Stdresb 16*684 .aGuestCpuId Extresb 16*1085 .aGuestCpuId Centaurresb 16*486 .GuestCpuId Defresb 1683 .aGuestCpuIdPatmStd resb 16*6 84 .aGuestCpuIdPatmExt resb 16*10 85 .aGuestCpuIdPatmCentaur resb 16*4 86 .GuestCpuIdPatmDef resb 16 87 87 88 88 %if HC_ARCH_BITS == 32
Note:
See TracChangeset
for help on using the changeset viewer.