Changeset 101103 in vbox for trunk/include/VBox
- Timestamp:
- Sep 13, 2023 11:42:14 AM (18 months ago)
- svn:sync-xref-src-repo-rev:
- 159072
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum-armv8.h
r101084 r101103 182 182 /** The maximum linear address width of the CPU. */ 183 183 uint8_t cMaxLinearAddrWidth; 184 185 /** @name Granule sizes supported. 186 * @{ */ 187 /** 4KiB translation granule size supported. */ 188 uint32_t fTGran4K : 1; 189 /** 16KiB translation granule size supported. */ 190 uint32_t fTGran16K : 1; 191 /** 64KiB translation granule size supported. */ 192 uint32_t fTGran64K : 1; 193 /** @} */ 184 194 185 195 /** @name pre-2020 Architecture Extensions. … … 503 513 /** Supports Statistical Profiling Extensions version 1.2 (FEAT_SPEv1p2). */ 504 514 uint32_t fSpeV1p2 : 1; 515 /** Supports AArch64 Extended BFloat16 instructions (FEAT_EBF16). */ 516 uint32_t fEbf16 : 1; 505 517 /** Supports WFE and WFI instructions with timeout (FEAT_WFxT). */ 506 518 uint32_t fWfxt : 1; … … 772 784 /** Content of the ID_AA64ISAR1_EL1 register. */ 773 785 uint64_t u64RegIdAa64Isar1El1; 786 /** Content of the ID_AA64ISAR2_EL1 register. */ 787 uint64_t u64RegIdAa64Isar2El1; 774 788 /** Content of the ID_AA64MMFR0_EL1 register. */ 775 789 uint64_t u64RegIdAa64Mmfr0El1;
Note:
See TracChangeset
for help on using the changeset viewer.