Changeset 98993 in vbox for trunk/include/VBox
- Timestamp:
- Mar 15, 2023 6:41:59 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156343
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/iem-armv8.h
r98980 r98993 45 45 * @{ */ 46 46 47 /** @name Instruction mode. 48 * @{ */ 49 typedef uint8_t IEMMODE; 50 /** AARCH64 instruction mode. */ 51 #define IEMMODE_AARCH64 0 52 /** AARCH32 A32 instruction mode. */ 53 #define IEMMODE_AARCH32_A32 1 54 /** AARCH32 T32 (aka Thumb) instruction mode. */ 55 #define IEMMODE_AARCH32_T32 1 56 /** @} */ 57 47 58 48 59 /** The CPUMCTX_EXTRN_XXX mask required to be cleared when interpreting anything. -
trunk/include/VBox/vmm/vm.h
r98970 r98993 137 137 * @remarks This comes first as it allows the use of 8-bit immediates for the 138 138 * first 64 bytes of the structure, reducing code size a wee bit. */ 139 #if def VMM_INCLUDED_SRC_include_IEMInternal_h/* For PDB hacking. */139 #if defined(VMM_INCLUDED_SRC_include_IEMInternal_h) || defined(VMM_INCLUDED_SRC_include_IEMInternal_armv8_h) /* For PDB hacking. */ 140 140 union VMCPUUNIONIEMFULL 141 141 #else … … 143 143 #endif 144 144 { 145 #if def VMM_INCLUDED_SRC_include_IEMInternal_h145 #if defined(VMM_INCLUDED_SRC_include_IEMInternal_h) || defined(VMM_INCLUDED_SRC_include_IEMInternal_armv8_h) 146 146 struct IEMCPU s; 147 147 #endif
Note:
See TracChangeset
for help on using the changeset viewer.