Changeset 67072 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- May 25, 2017 8:26:51 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115735
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r67003 r67072 914 914 /** VEX+ModR/M: reg, r/m (memory) */ 915 915 #define IEMOPFORM_VEX_RM_MEM (IEMOPFORM_VEX_RM | IEMOPFORM_NOT_MOD3) 916 #define IEMOPFORM_VEX_XM IEMOPFORM_VEX_RM_MEM917 916 /** VEX+ModR/M: r/m, reg */ 918 917 #define IEMOPFORM_VEX_MR 5 … … 956 955 /** Ignores the operand size prefix (66h). */ 957 956 #define IEMOPHINT_IGNORES_OZ_PFX RT_BIT_32(10) 958 /** Ignores REX.W . */957 /** Ignores REX.W (aka WIG). */ 959 958 #define IEMOPHINT_IGNORES_REXW RT_BIT_32(11) 960 959 /** Both the operand size prefixes (66h + REX.W) are ignored. */ … … 963 962 #define IEMOPHINT_LOCK_ALLOWED RT_BIT_32(11) 964 963 /** The VEX.L value is ignored (aka LIG). */ 965 #define IEMOPHINT_ IGNORES_VEX_LRT_BIT_32(12)966 /** The VEX.L value must be zero (i.e. 128-bit width ). */964 #define IEMOPHINT_VEX_L_IGNORED RT_BIT_32(12) 965 /** The VEX.L value must be zero (i.e. 128-bit width only). */ 967 966 #define IEMOPHINT_VEX_L_ZERO RT_BIT_32(13) 968 967
Note:
See TracChangeset
for help on using the changeset viewer.